Split mod operation into fmod & mod equivalents
Since onnx's Mod operation changes behavior based on whether the fmod flag is set, functionality is now split to mirror python's fmod() functionality. For the integer mod case, I had to use a componsition of std::fmod() so that floating and integral types are all handled while also perserving sign to be identital to the python numpy::mod() case.
Showing
src/onnx/parse_mod.cpp
0 → 100644
test/verify/test_fmod.cpp
0 → 100644
Please register or sign in to comment