"sims/net/wire/net_wire.c" did not exist on "5728d26cb6f67225f5d4b392c7d3eef27ec0fa02"
Add more supported operators and optimizations for the cpu backend (#746)
* Add eliminate_data_type pass * Formatting * Auto convert quant ops * Formatting * Flip the order of decompose * Compute max size differently * Formatting * Clamp values in convert * Formatting * Fix loss of precision in reduce * Formatting * Fix bugs in reduction * Fix accumulator type in reference softmax implementation * Formatting * Update convert test * Remove unused variables * Remove unnecessary quant_dot check * Formatting * Add tests * Formatting * Remove unused code * Remove duplicate ops * Remove blaze dependency * Use set since shape::type_t is no hashable on gcc 5 * Formatting * Add dnnl binary op * Formatting * Add binary and eltwise * Formatting * Add softmax * Formatting * Remove unused operators * Add missing files * Formatting * Add lrn * Formatting * Add deconvolution * Formatting * Change allocate default * Add reorder * Formatting * Add reductions * Formatting * Sort lines * Change literals in another loop * Add pow operator * Formatting * Add pow operator * Formatting * Make sure shapes are packed * Allow broadcasted inputs * Remove unused operators * Simplify functions * Remove softmax * Add sub and erf functions * Formatting * Fix bug * Formatting * Improve parallism * Formatting * Allow multiple batch dimensions * Formatting * Move literal transforms out of lowering * Formatting * Add gather operator * Sort lines * Add early exit for carry * Formatting * Add missing concat * Rename macro * Fix deep nesting * Formatting * Fix cppcheck issues * Remov else * Move attribute to typedef * Formatting * Disable maybe-uninitialized warning since its broken on gcc * Add constexpr default constructor * Formatting * Fix compiler warnings * Fix adjust_allocation test Co-authored-by:Shucai Xiao <shucai@gmail.com> Co-authored-by:
mvermeulen <5479696+mvermeulen@users.noreply.github.com>
Showing
src/targets/cpu/reorder.cpp
0 → 100644
src/targets/cpu/target.cpp
100644 → 100755
test/gpu/adjust_allocation.cpp
100644 → 100755
test/verify/test_acos.cpp
100644 → 100755
test/verify/test_asin.cpp
100644 → 100755
test/verify/test_asinh.cpp
100644 → 100755
test/verify/test_atan.cpp
100644 → 100755
test/verify/test_atanh.cpp
100644 → 100755
test/verify/test_cos.cpp
100644 → 100755
test/verify/test_cosh.cpp
100644 → 100755
test/verify/test_logsoftmax.cpp
100644 → 100755
test/verify/test_recip.cpp
100644 → 100755
test/verify/test_sinh.cpp
100644 → 100755
test/verify/test_softmax.cpp
100644 → 100755
Please register or sign in to comment