summaryrefslogtreecommitdiff
path: root/scripts/benchmark
AgeCommit message (Collapse)Author
2020-10-05Allow single graph / subplot on plotWitold Baryluk
`plt.subplots` tries to be special, and return array or not-array depending on a number of subplots. It is not actually helpful, and IMHO bad design. Make it always `ndarray`. The `and not type(axes) is np.ndarray`, is just in case matplotlib decides to make their behavior more uniform. For now work around it. Also, no need for `ndarray.flat` really. Confirmed to work with existing benchmarks (i.e. rows=2, cols=3), and with single graphs (rows=1, cols=1).
2020-10-04Fix a typo in benchmark when running fp 16 vs 32Witold Baryluk
The intention here was to limit the iteration range to common indexes only. Fix that.
2020-10-04Merge pull request #397 from baryluk/patch-1Cedric Nugteren
Fix Python SyntaxWarning
2020-10-04Fix --load_from_disk argument help messageWitold Baryluk
2020-10-04Fix Python SyntaxWarningWitold Baryluk
There is no guarantee that all empty strings objects are the same or share object with `""` literal.
2020-10-02Fix a Python 3 bug in the benchmark scriptCedric Nugteren
2018-03-10Made benchmarking script also work for complex numbersCedric Nugteren
2018-01-27Some fixes to the benchmark scriptsCedric Nugteren
2018-01-26Minor displaying improvements to the graph plotting scriptsCedric Nugteren
2018-01-25Improved the benchmark scripts; added gemmstridedbatched benchmarkCedric Nugteren
2018-01-14Small improvements to benchmarking for cuBLASCedric Nugteren
2017-12-31Made plotting script more flexible: extra argument to set the comparison libraryCedric Nugteren
2017-12-20Made plotting script more resilient to missing dataCedric Nugteren
2017-05-24changing "wb" to "w" when saving json file (text mode) - compatibility for ↵Grigori Fursin
Python 3
2017-05-11Minor naming fixes to the benchmark scriptCedric Nugteren
2017-04-21Removed the words SUMMARY from the title of the benchmark script when ↵Cedric Nugteren
benchmarking the summary
2017-04-20Updated the settings for the batched benchmarksCedric Nugteren
2017-04-16Set proper settings for the benchmarks of batched routinesCedric Nugteren
2017-04-16Added settings for benchmarking batched routinesCedric Nugteren
2017-04-14Added a benchmark-all script to run multiple benchmarks automaticallyCedric Nugteren
2017-04-14Tuned the num-runs settings for the benchmarksCedric Nugteren
2017-04-14Added output-folder for benchmarking and removed the requirement on XCedric Nugteren
2017-04-14Made the number of runs a benchmark-specific setting in the benchmark scriptsCedric Nugteren
2017-04-02Various tweaks to the new benchmark scriptCedric Nugteren
2017-04-01Tuned the plots for a tight-layout for in papers and presentationsCedric Nugteren
2017-03-26Replaced the R graph scripts with Python/Matplotlib benchmark scriptsCedric Nugteren