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