From 688e2eaf359baa0e810507befa4f9fa0993a02cb Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 13 Feb 2024 15:16:02 +0000 Subject: [PATCH] Improve names of TensorImpl tests --- unit_tests/data/Test_TensorImpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unit_tests/data/Test_TensorImpl.cpp b/unit_tests/data/Test_TensorImpl.cpp index cfcfb45e..aac13226 100644 --- a/unit_tests/data/Test_TensorImpl.cpp +++ b/unit_tests/data/Test_TensorImpl.cpp @@ -19,7 +19,7 @@ using namespace Aidge; -TEST_CASE("Tensor creation") { +TEST_CASE("[backend_cpu/data] Tensor(constructor)","[Tensor]") { SECTION("from const array") { Tensor x = Array3D<int, 2, 2, 2>{{{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}}; @@ -59,7 +59,7 @@ TEST_CASE("Tensor creation") { } } -TEST_CASE("Tensor methods") { +TEST_CASE("[backend_cpu/data] Tensor(methods)", "[Tensor]") { Tensor x = Array3D<int, 2, 2, 2>{{ {{1, 2}, {3, 4}}, @@ -89,7 +89,7 @@ TEST_CASE("Tensor methods") { REQUIRE(y.getImpl() == x.getImpl()); REQUIRE(approxEq<int>(y, Array1D<int, 2>{{3, 4}})); REQUIRE(y.isContiguous()); - + Tensor y2 = x.extract({0, 1, 1}, {2, 1, 1}); REQUIRE(y2.getImpl() == x.getImpl()); REQUIRE(!y2.isContiguous()); -- GitLab