Skip to content
Snippets Groups Projects

[Add] DepthToSpace Operator

Merged Maxence Naud requested to merge feat_140_add-operator-depthToSpace into dev
1 file
+ 11
1
Compare changes
  • Side-by-side
  • Inline
@@ -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}));
}
}
} // 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
Loading