Commit 57d96d7a authored by Kelly Guo's avatar Kelly Guo Committed by Kelly Guo

Updates benchmark default output format for dashboard (#161)

# Description

Updates the benchmark scripts with new additional output format that can
be used for tracking results on a dashboard.

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->
parent 35e715f9
......@@ -28,9 +28,9 @@ parser.add_argument("--num_frames", type=int, default=100, help="Number of envir
parser.add_argument(
"--benchmark_backend",
type=str,
default="OsmoKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile"],
help="Benchmarking backend options, defaults OsmoKPIFile",
default="OmniPerfKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile", "OmniPerfKPIFile"],
help="Benchmarking backend options, defaults OmniPerfKPIFile",
)
# append AppLauncher cli args
......
......@@ -28,9 +28,9 @@ parser.add_argument("--max_iterations", type=int, default=10, help="RL Policy tr
parser.add_argument(
"--benchmark_backend",
type=str,
default="OsmoKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile"],
help="Benchmarking backend options, defaults OsmoKPIFile",
default="OmniPerfKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile", "OmniPerfKPIFile"],
help="Benchmarking backend options, defaults OmniPerfKPIFile",
)
# append AppLauncher cli args
......
......@@ -32,9 +32,9 @@ parser.add_argument("--max_iterations", type=int, default=10, help="RL Policy tr
parser.add_argument(
"--benchmark_backend",
type=str,
default="OsmoKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile"],
help="Benchmarking backend options, defaults OsmoKPIFile",
default="OmniPerfKPIFile",
choices=["LocalLogMetrics", "JSONFileMetrics", "OsmoKPIFile", "OmniPerfKPIFile"],
help="Benchmarking backend options, defaults OmniPerfKPIFile",
)
# append RSL-RL cli arguments
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment