Added support for the RandomNormalLike, Softplus and Where operators in the aidge_core module
requested to merge usmansajid/aidge_core:add-new-operators_softplus_randomnormallike_where_v2 into dev
Context
This MR is linked to issue[#322 (closed)].
I have added the support for the following operators in aidge_core module.
- RandomNormalLike
- Softplus
- Where
I have added the headers, implementation and python bindings for these 3 opeartors inside aidge_core module. The detailed list about the modifications that I have done is given below.
Modifications
- Added RandomNormalLike.hpp, Softplus.hpp and Where.hpp inside include/aidge/operator folder.
- Added RandomNormalLike.cpp, Softplus.cpp and Where.cpp inside src/operator folder.
- Added pybind_RandomNormalLike.cpp, pybind_Softplus.cpp and pybind_Where.cpp inside python_binding/operator folder.
- Modiefied OperatorStats.hpp inside include/aidge/analysis folder.
- Modified OperatorStats.cpp inside src/analysis folder.
- Modified pybind_core.cpp inside python_binding folder.