From 4e1f953be6683dd75fbd84dd8a275d12bb331dd2 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 21 Mar 2024 10:22:36 +0100 Subject: [PATCH] Sync changes with core dev branch --- include/aidge/backend/cuda.hpp | 1 - .../backend/cuda/operator/ProducerImpl.hpp | 40 ------------------- .../aidge/backend/cuda/utils/CudaContext.hpp | 6 +-- .../aidge/backend/cuda/utils/CudaUtils.hpp | 2 + src/operator/ProducerImpl.cpp | 34 ---------------- src/utils/CudaUtils.cpp | 2 +- unit_tests/Test_CastMove.cpp | 2 +- 7 files changed, 7 insertions(+), 80 deletions(-) delete mode 100644 include/aidge/backend/cuda/operator/ProducerImpl.hpp delete mode 100644 src/operator/ProducerImpl.cpp diff --git a/include/aidge/backend/cuda.hpp b/include/aidge/backend/cuda.hpp index cfae53b..a6bae17 100644 --- a/include/aidge/backend/cuda.hpp +++ b/include/aidge/backend/cuda.hpp @@ -14,6 +14,5 @@ #include "aidge/backend/cuda/data/TensorImpl.hpp" #include "aidge/backend/cuda/operator/ConvImpl.hpp" -#include "aidge/backend/cuda/operator/ProducerImpl.hpp" #endif /* AIDGE_BACKEND_CUDA_IMPORTS_H_ */ \ No newline at end of file diff --git a/include/aidge/backend/cuda/operator/ProducerImpl.hpp b/include/aidge/backend/cuda/operator/ProducerImpl.hpp deleted file mode 100644 index 9912133..0000000 --- a/include/aidge/backend/cuda/operator/ProducerImpl.hpp +++ /dev/null @@ -1,40 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#ifndef AIDGE_CUDA_OPERATOR_PRODUCERIMPL_H_ -#define AIDGE_CUDA_OPERATOR_PRODUCERIMPL_H_ - -#include <memory> - -#include "aidge/backend/OperatorImpl.hpp" -#include "aidge/operator/Producer.hpp" -#include "aidge/utils/Registrar.hpp" -#include "aidge/utils/Types.h" - -namespace Aidge { -class ProducerImpl_cuda : public OperatorImpl { -public: - ProducerImpl_cuda(const Producer_Op &op) : OperatorImpl(op) {} - - static std::unique_ptr<ProducerImpl_cuda> create(const Producer_Op &op) { - return std::make_unique<ProducerImpl_cuda>(op); - } - - NbElts_t getNbProducedData(const IOIndex_t outputIdx) const override final; - void forward() override; -}; - -namespace { -static Registrar<Producer_Op> registrarProducerImpl_cuda("cuda", Aidge::ProducerImpl_cuda::create); -} // namespace -} // namespace Aidge - -#endif /* AIDGE_CUDA_OPERATOR_PRODUCERIMPL_H_ */ diff --git a/include/aidge/backend/cuda/utils/CudaContext.hpp b/include/aidge/backend/cuda/utils/CudaContext.hpp index 82dd395..7218cc2 100644 --- a/include/aidge/backend/cuda/utils/CudaContext.hpp +++ b/include/aidge/backend/cuda/utils/CudaContext.hpp @@ -2,8 +2,8 @@ #define AIDGE_BACKEND_CUDA_CUDA_CONTEXT_H #include <vector> -#include <cstdio> +#include "aidge/utils/ErrorHandling.hpp" #include "aidge/backend/cuda/utils/CudaUtils.hpp" namespace Aidge { @@ -87,7 +87,7 @@ public: if (cublas_h[dev] == NULL) { CHECK_CUBLAS_STATUS(cublasCreate(&cublas_h[dev])); - printf("CUBLAS initialized on device #%d\n", dev); + fmt::print("CUBLAS initialized on device #{}\n", dev); } return cublas_h[dev]; @@ -113,7 +113,7 @@ public: if (cudnn_h[dev] == NULL) { CHECK_CUDNN_STATUS(cudnnCreate(&cudnn_h[dev])); - printf("CUDNN initialized on device #%d\n", dev); + fmt::print("CUDNN initialized on device #{}\n", dev); } return cudnn_h[dev]; diff --git a/include/aidge/backend/cuda/utils/CudaUtils.hpp b/include/aidge/backend/cuda/utils/CudaUtils.hpp index 2f66d0e..c492936 100644 --- a/include/aidge/backend/cuda/utils/CudaUtils.hpp +++ b/include/aidge/backend/cuda/utils/CudaUtils.hpp @@ -11,6 +11,8 @@ #include <cuda.h> #include <cudnn.h> +#include "aidge/utils/ErrorHandling.hpp" + #define CHECK_CUDNN_STATUS(status) \ do { \ const cudnnStatus_t e = (status); \ diff --git a/src/operator/ProducerImpl.cpp b/src/operator/ProducerImpl.cpp deleted file mode 100644 index aca3c49..0000000 --- a/src/operator/ProducerImpl.cpp +++ /dev/null @@ -1,34 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <cassert> -#include <numeric> // std::accumulate -#include <vector> - -#include "aidge/data/Tensor.hpp" -#include "aidge/operator/Producer.hpp" -#include "aidge/utils/Types.h" - -#include "aidge/backend/cuda/operator/ProducerImpl.hpp" - -Aidge::DimSize_t Aidge::ProducerImpl_cuda::getNbProducedData( - Aidge::IOIndex_t outputIdx) const -{ - // Requires the whole tensors, regardless of available data on inputs - assert(outputIdx == 0 && "operator has only one output"); - (void) outputIdx; - - return std::static_pointer_cast<Tensor>(mOp.getRawOutput(0))->size(); -} - -void Aidge::ProducerImpl_cuda::forward() -{ -} diff --git a/src/utils/CudaUtils.cpp b/src/utils/CudaUtils.cpp index a6e0514..ca3263a 100644 --- a/src/utils/CudaUtils.cpp +++ b/src/utils/CudaUtils.cpp @@ -40,7 +40,7 @@ void Aidge::Cuda::setMultiDevicePeerAccess(unsigned int size, unsigned int* devi CHECK_CUDA_STATUS(cudaSetDevice(devices[j])); const cudaError_t status = cudaDeviceEnablePeerAccess(devices[i], 0); if (status == cudaErrorPeerAccessAlreadyEnabled) { - printf("Peer access already enabled between device %d and device %d\n", devices[j], devices[i]); + fmt::print("Peer access already enabled between device {} and device {}\n", devices[j], devices[i]); } else { CHECK_CUDA_STATUS(status); } diff --git a/unit_tests/Test_CastMove.cpp b/unit_tests/Test_CastMove.cpp index 0b68a4f..53bf3bd 100644 --- a/unit_tests/Test_CastMove.cpp +++ b/unit_tests/Test_CastMove.cpp @@ -19,7 +19,7 @@ #include "aidge/graph/GraphView.hpp" #include "aidge/graph/OpArgs.hpp" #include "aidge/scheduler/Scheduler.hpp" -#include "aidge/recipies/Recipies.hpp" +#include "aidge/recipes/Recipes.hpp" #include "aidge/backend/cuda.hpp" -- GitLab