addAllBenchToDatabase.bat 795 B

1234567891011121314151617181920212223242526
  1. echo "Basic Maths"
  2. python addToDB.py -f bench.txt BasicBenchmarks
  3. echo "Complex Maths"
  4. python addToDB.py -f bench.txt ComplexBenchmarks
  5. echo "FIR"
  6. python addToDB.py -f bench.txt FIR
  7. echo "Convolution / Correlation"
  8. python addToDB.py -f bench.txt MISC
  9. echo "Decimation / Interpolation"
  10. python addToDB.py -f bench.txt DECIM
  11. echo "BiQuad"
  12. python addToDB.py -f bench.txt BIQUAD
  13. echo "Controller"
  14. python addToDB.py -f bench.txt Controller
  15. echo "Fast Math"
  16. python addToDB.py -f bench.txt FastMath
  17. echo "Barycenter"
  18. python addToDB.py -f bench.txt SupportBarF32
  19. echo "Support"
  20. python addToDB.py -f bench.txt Support
  21. echo "Unary Matrix"
  22. python addToDB.py -f bench.txt Unary
  23. echo "Binary Matrix"
  24. python addToDB.py -f bench.txt Binary
  25. echo "Transform"
  26. python addToDB.py -f bench.txt Transform