File tree 1 file changed +2
-2
lines changed
source/standalone/benchmarks
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,15 +151,15 @@ def main():
151
151
scene = InteractiveScene (scene_cfg )
152
152
# Stop the timer for creating the scene
153
153
setup_time_end = time .perf_counter_ns ()
154
- print (f"[INFO]: Scene time: { (setup_time_end - setup_time_begin ) / 1e6 :.2f} ms" )
154
+ print (f"[INFO]: Scene creation time: { (setup_time_end - setup_time_begin ) / 1e6 :.2f} ms" )
155
155
156
156
# Start the timer for reset
157
157
reset_time_begin = time .perf_counter_ns ()
158
158
# Play the simulator
159
159
sim .reset ()
160
160
# Stop the timer for reset
161
161
reset_time_end = time .perf_counter_ns ()
162
- print (f"[INFO]: Reset time: { (reset_time_end - reset_time_begin ) / 1e6 :.2f} ms" )
162
+ print (f"[INFO]: Sim start time: { (reset_time_end - reset_time_begin ) / 1e6 :.2f} ms" )
163
163
164
164
# Run the simulator
165
165
run_simulator (sim , scene )
You can’t perform that action at this time.
0 commit comments