Fix MaxPool and Clip operator
- Added second output for
MaxPool
and fix backward. - Fixed
Clip
backward in edge cases; - Fixed wrong filler type (
Conv
instead ofConv2D
); - Fixed non-accumulating gradient for
Add
andDiv
operators; - Parallelized
Conv
andFC
backward.
Some constrains in OptArgs
are relaxed (ASSERT
transformed in Log.warn()
) to support Sequential with operators with optional outputs, like MaxPool
.
Edited by Olivier BICHLER