From 865b6d2331d0f36c32af702a184385297fe78a30 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <Olivier.bichler@cea.fr> Date: Fri, 4 Aug 2023 14:19:20 +0200 Subject: [PATCH] Moved and renammed aidge_cpu.hpp to aidge/aidge_backend_cpu.hpp --- include/{aidge_cpu.hpp => aidge/aidge_backend_cpu.hpp} | 0 python_binding/pybind_cpu.cpp | 2 +- unit_tests/Test_Scheduler.cpp | 2 +- unit_tests/operator/Test_AddImpl.cpp | 2 +- unit_tests/operator/Test_AvgPoolingImpl.cpp | 2 +- unit_tests/operator/Test_BatchNormImpl.cpp | 2 +- unit_tests/operator/Test_ConvDepthWiseImpl.cpp | 2 +- unit_tests/operator/Test_ConvImpl.cpp | 2 +- unit_tests/operator/Test_FCImpl.cpp | 2 +- unit_tests/operator/Test_LeakyReLUImpl.cpp | 2 +- unit_tests/operator/Test_ReLUImpl.cpp | 2 +- unit_tests/operator/Test_SoftmaxImpl.cpp | 2 +- 12 files changed, 11 insertions(+), 11 deletions(-) rename include/{aidge_cpu.hpp => aidge/aidge_backend_cpu.hpp} (100%) diff --git a/include/aidge_cpu.hpp b/include/aidge/aidge_backend_cpu.hpp similarity index 100% rename from include/aidge_cpu.hpp rename to include/aidge/aidge_backend_cpu.hpp diff --git a/python_binding/pybind_cpu.cpp b/python_binding/pybind_cpu.cpp index 9e7c9714..afe12515 100644 --- a/python_binding/pybind_cpu.cpp +++ b/python_binding/pybind_cpu.cpp @@ -1,6 +1,6 @@ #include <pybind11/pybind11.h> // Need to call this header to register every impl -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" namespace py = pybind11; diff --git a/unit_tests/Test_Scheduler.cpp b/unit_tests/Test_Scheduler.cpp index e83d8e97..055f4efe 100644 --- a/unit_tests/Test_Scheduler.cpp +++ b/unit_tests/Test_Scheduler.cpp @@ -18,7 +18,7 @@ #include "aidge/graph/GraphView.hpp" #include "aidge/graph/OpArgs.hpp" #include "aidge/scheduler/Scheduler.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_AddImpl.cpp b/unit_tests/operator/Test_AddImpl.cpp index 998e9bce..3443ac6b 100644 --- a/unit_tests/operator/Test_AddImpl.cpp +++ b/unit_tests/operator/Test_AddImpl.cpp @@ -13,7 +13,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/Add.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_AvgPoolingImpl.cpp b/unit_tests/operator/Test_AvgPoolingImpl.cpp index 4348291a..178f1ba2 100644 --- a/unit_tests/operator/Test_AvgPoolingImpl.cpp +++ b/unit_tests/operator/Test_AvgPoolingImpl.cpp @@ -15,7 +15,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/AvgPooling.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_BatchNormImpl.cpp b/unit_tests/operator/Test_BatchNormImpl.cpp index 92d1e5f2..9436ceb3 100644 --- a/unit_tests/operator/Test_BatchNormImpl.cpp +++ b/unit_tests/operator/Test_BatchNormImpl.cpp @@ -14,7 +14,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/BatchNorm.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_ConvDepthWiseImpl.cpp b/unit_tests/operator/Test_ConvDepthWiseImpl.cpp index eccf262a..48a6cc88 100644 --- a/unit_tests/operator/Test_ConvDepthWiseImpl.cpp +++ b/unit_tests/operator/Test_ConvDepthWiseImpl.cpp @@ -14,7 +14,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/ConvDepthWise.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_ConvImpl.cpp b/unit_tests/operator/Test_ConvImpl.cpp index d747eec8..2c314af4 100644 --- a/unit_tests/operator/Test_ConvImpl.cpp +++ b/unit_tests/operator/Test_ConvImpl.cpp @@ -15,7 +15,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/Conv.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_FCImpl.cpp b/unit_tests/operator/Test_FCImpl.cpp index 7ef92875..be672ecc 100644 --- a/unit_tests/operator/Test_FCImpl.cpp +++ b/unit_tests/operator/Test_FCImpl.cpp @@ -12,7 +12,7 @@ #include <catch2/catch_test_macros.hpp> #include <memory> -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/data/TensorImpl.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/operator/FC.hpp" diff --git a/unit_tests/operator/Test_LeakyReLUImpl.cpp b/unit_tests/operator/Test_LeakyReLUImpl.cpp index b3ca9205..b6686d89 100644 --- a/unit_tests/operator/Test_LeakyReLUImpl.cpp +++ b/unit_tests/operator/Test_LeakyReLUImpl.cpp @@ -13,7 +13,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/LeakyReLU.hpp" using namespace Aidge; diff --git a/unit_tests/operator/Test_ReLUImpl.cpp b/unit_tests/operator/Test_ReLUImpl.cpp index c8d04401..8d3a2b91 100644 --- a/unit_tests/operator/Test_ReLUImpl.cpp +++ b/unit_tests/operator/Test_ReLUImpl.cpp @@ -13,7 +13,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/ReLU.hpp" #include <memory> diff --git a/unit_tests/operator/Test_SoftmaxImpl.cpp b/unit_tests/operator/Test_SoftmaxImpl.cpp index 785d5bb3..10406212 100644 --- a/unit_tests/operator/Test_SoftmaxImpl.cpp +++ b/unit_tests/operator/Test_SoftmaxImpl.cpp @@ -13,7 +13,7 @@ #include "aidge/data/Tensor.hpp" #include "aidge/data/TensorImpl.hpp" -#include "aidge_cpu.hpp" +#include "aidge/aidge_backend_cpu.hpp" #include "aidge/operator/Softmax.hpp" #include <memory> -- GitLab