Skip to content
Snippets Groups Projects
Commit 12105cbe authored by Maxence Naud's avatar Maxence Naud Committed by Maxence Naud
Browse files

[WIP] forward test

parent 3bb65e6e
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!165[Add] DepthToSpace Operator
...@@ -74,4 +74,14 @@ TEST_CASE("[core/operator] DepthToSpace_Op", "[DepthToSpace][forwardDims]") { ...@@ -74,4 +74,14 @@ TEST_CASE("[core/operator] DepthToSpace_Op", "[DepthToSpace][forwardDims]") {
REQUIRE(myDTS_should_not_throw.getOutput(0)->dims() == std::vector<std::size_t>({1,1,400,400})); REQUIRE(myDTS_should_not_throw.getOutput(0)->dims() == std::vector<std::size_t>({1,1,400,400}));
} }
} }
} // namspace Aidge
\ No newline at end of file TEST_CASE("[core/operator] DepthToSpace_Op impl", "[DepthToSpace][forward]") {
// Create a random number generator
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution<std::size_t> dimsDist(1, 10);
}
} // namespace Aidge
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment