OLD | NEW |
(Empty) | |
| 1 # This file contains a list of Mojo benchmarks. For description of the file |
| 2 # format, see `mojo_benchmark --help`. |
| 3 |
| 4 benchmarks = [ |
| 5 { |
| 6 'name': 'Trace me', |
| 7 'app': 'https://core.mojoapps.io/trace_me.mojo', |
| 8 'duration': 10, |
| 9 'measurements': [ |
| 10 'time_until/trace_me/DoWork', |
| 11 'avg_duration/trace_me/DoWork', |
| 12 ] |
| 13 }, |
| 14 { |
| 15 'name': 'Spinning cube', |
| 16 'app': 'https://core.mojoapps.io/spinning_cube.mojo', |
| 17 'duration': 10, |
| 18 'measurements': [ |
| 19 'time_until/gpu/GpuScheduler:PutChanged', |
| 20 ] |
| 21 }, |
| 22 ] |
| 23 |
OLD | NEW |