From b8ee3750aa33b5630d73ba05d56b928e00ab0a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Tue, 25 Feb 2025 14:10:42 +0000 Subject: [PATCH] chore : cleanup test expand set setupExpandTest as static function header cleanup removed "using namespace" in favor of "namespace{}" directive --- unit_tests/operator/Test_ExpandImpl.cpp | 26 ++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/unit_tests/operator/Test_ExpandImpl.cpp b/unit_tests/operator/Test_ExpandImpl.cpp index 878c6081..ad30457d 100644 --- a/unit_tests/operator/Test_ExpandImpl.cpp +++ b/unit_tests/operator/Test_ExpandImpl.cpp @@ -13,20 +13,20 @@ #include <catch2/catch_test_macros.hpp> -#include "aidge/backend/cpu/data/TensorImpl.hpp" -#include "aidge/backend/cpu/operator/ExpandImpl.hpp" #include "aidge/data/DataType.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/operator/Expand.hpp" #include "aidge/utils/ArrayHelpers.hpp" -using std::shared_ptr; -using namespace Aidge; +namespace Aidge { + +using std::shared_ptr; -void setupTestExpand(shared_ptr<Tensor> inputData, - shared_ptr<Tensor> inputShape, - shared_ptr<Expand_Op> &op) { +static void setupTestExpand(shared_ptr<Tensor> inputData, + shared_ptr<Tensor> inputShape, + shared_ptr<Expand_Op> &op, + Tensor &expectedOutput) { op->getOutput(0)->setDataType(inputData->dataType()); @@ -35,6 +35,9 @@ void setupTestExpand(shared_ptr<Tensor> inputData, inputShape->setBackend("cpu"); op->associateInput(1, inputShape); + + expectedOutput.setBackend("cpu"); + expectedOutput.setDataType(DataType::Int32); } TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { @@ -49,7 +52,7 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { Array4D<cpptype_t<DataType::Int32>, 1, 3, 4, 2>({{{{{1, 3}, {1, 3}, {1, 3}, {1, 3}}, {{1, 3}, {1, 3}, {1, 3}, {1, 3}}, {{1, 3}, {1, 3}, {1, 3}, {1, 3}}}}}); - setupTestExpand(inputData, inputShape, op); + setupTestExpand(inputData, inputShape, op, expectedOutput); // forwardDims has already been tested in core CHECK(op->forwardDims(true)); @@ -63,7 +66,7 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { std::make_shared<Tensor>(Array1D<std::int64_t, 2>({2, 3})); Tensor expectedOutput = Array3D<cpptype_t<DataType::Int32>, 2, 2, 3>( {{{{2, 1, 3}, {2, 1, 3}}, {{2, 1, 3}, {2, 1, 3}}}}); - setupTestExpand(inputData, inputShape, op); + setupTestExpand(inputData, inputShape, op,expectedOutput); // forwardDims has already been tested in core CHECK(op->forwardDims(true)); @@ -77,7 +80,7 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { std::make_shared<Tensor>(Array1D<std::int64_t, 1>({1})); Tensor expectedOutput = Array4D<cpptype_t<DataType::Int32>, 2, 1, 3, 1>({{{2, 1, 3}, {2, 1, 3}}}); - setupTestExpand(inputData, inputShape, op); + setupTestExpand(inputData, inputShape, op, expectedOutput); // forwardDims has already been tested in core CHECK(op->forwardDims(true)); @@ -91,7 +94,7 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { std::make_shared<Tensor>(Array1D<std::int64_t, 3>({2, 1, 1})); Tensor expectedOutput = Array4D<cpptype_t<DataType::Int32>, 1, 2, 3, 1>({{{{2, 1, 3}, {2, 1, 3}}}}); - setupTestExpand(inputData, inputShape, op); + setupTestExpand(inputData, inputShape, op,expectedOutput); // forwardDims has already been tested in core CHECK(op->forwardDims(true)); @@ -101,3 +104,4 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") { SECTION("N-Dim to N-Dim") {} auto inputData = std::shared_ptr<Tensor>(); } +} // namespace Aidge -- GitLab