Skip to content

Commit a23d586

Browse files
Merge pull request #30 from NVIDIA-ISAAC-ROS/release-3.2
Isaac 3.2 Update 5
2 parents 4bb4d4c + 83563b1 commit a23d586

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ros2_benchmark/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SPDX-License-Identifier: Apache-2.0
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>ros2_benchmark</name>
24-
<version>3.2.4</version>
24+
<version>3.2.5</version>
2525
<description>Benchmarking framework for ROS 2 graphs</description>
2626

2727
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

ros2_benchmark/ros2_benchmark/ros2_benchmark_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ def determine_max_sustainable_framerate(self, test_func) -> float:
917917
# Check if this probe frequency was sustainable
918918
first_monitor_perf = self.get_performance_results_of_first_monitor_calculator(
919919
probe_perf_results)
920-
if (first_monitor_perf[BasicPerformanceMetrics.MEAN_FRAME_RATE] >=
920+
if (first_monitor_perf.get(BasicPerformanceMetrics.MEAN_FRAME_RATE, 0) >=
921921
first_monitor_perf[BasicPerformanceMetrics.MEAN_PLAYBACK_FRAME_RATE] -
922922
self.config.binary_search_acceptable_frame_rate_drop
923923
) and (

ros2_benchmark_interfaces/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SPDX-License-Identifier: Apache-2.0
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>ros2_benchmark_interfaces</name>
24-
<version>3.2.4</version>
24+
<version>3.2.5</version>
2525
<description>Interfaces for benchmark testing</description>
2626

2727
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

0 commit comments

Comments
 (0)