Learning backend cuda
Context
Suppport Learning with backend_cuda:
- For DataProvider, add a backend attribute to allow reading batch on supported backends
- Add operators to compute Accuracy with a graph: ArgMax, And, ReduceSum
Modified files
-
DataProvider.hpp
,DataProvider.cpp
andpybind_DataProvider.cpp
, add backend member to DataProvider; -
ArgMax.hpp
,ArgMax.cpp
andpybind_ArgMax.cpp
, add ArgMax operator; -
And.hpp
,And.cpp
andpybind_And.cpp
, add And operator; -
ReduceSum.hpp
,ReduceSum.cpp
andpybind_ReduceSum.cpp
, add ReduceSum operator;
This MR also fixes: #155 (closed)
TODO
-
Support backend_cuda in DataProvider -
Add ArgMax operator for Accuracy computation -
Add And operator for Accuracy computation -
Add ReduceSum operator for Accuracy computation
Edited by Houssem ROUIS
Merge request reports
Activity
Filter activity
added 1 commit
- 2629485b - change keepDims and noopWithEmptyAxes into bool
added 30 commits
-
2629485b...2f0b5ba2 - 29 commits from branch
eclipse/aidge:dev
- eab19d86 - Merge branch 'dev' of gitlab.eclipse.org:eclipse/aidge/aidge_core into learning_backend_cuda
-
2629485b...2f0b5ba2 - 29 commits from branch
requested review from @thibaultallenet
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
- Resolved by Houssem ROUIS
Review for 3 MR 'Learning backend cuda' in core, backend_cpu, backend_cuda.
Content
- Add a check gradient (based on the numerical differentiation) tool to test the backpropagation kernels. Reference : https://github.com/CEA-LIST/N2D2/blob/master/src/GradientCheck.cpp
@olivierbichler , Any idea how to incorporate this tool ? I think it is an important tool to test backward kernels, especially before trying to reproduce Quantization methods like LSQ or SAT.
Documentation
- Document each arguments of the constructors (for each operator : And, ArgMax, ReduceSum, ReduceMean) in the C++ doxygen documentation and python (pybind files). The locations have been highlighted in comments.
Tests
- In the backend_cpu MR : add tests for the
forwardDims
functions of each operator (especially ReduceSum, ReduceMean) - Add tests that covers the new part of code in the TensorImpl_backend_cuda : aidge_backend_cuda!33 (diffs)
Edited by Thibault Allenetadded 26 commits
-
d6e9c816...0e48b653 - 25 commits from branch
eclipse/aidge:dev
- 8d287f91 - Merge branch 'dev' of gitlab.eclipse.org:eclipse/aidge/aidge_core into learning_backend_cuda
-
d6e9c816...0e48b653 - 25 commits from branch
Please register or sign in to reply