From f7a2a26d28fb430abe9c9142fb1c3a11d1630f4e Mon Sep 17 00:00:00 2001 From: JP Lehr Date: Wed, 12 Nov 2025 13:45:18 -0600 Subject: [PATCH] [HIP] Increase blender perf diff threshold This parameter sets how much difference in runtime the blender workloads are allowed to show when run in the testing. In reality it was advised to set this to 15% instead of the 5% shown here. With this patch, we increase the default threshold to 10% to see if this gives us enough wiggle room out of the box to not see any runtime related flakiness. --- External/HIP/workload/blender/test_blender.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/External/HIP/workload/blender/test_blender.sh.in b/External/HIP/workload/blender/test_blender.sh.in index c9a5583986..0001af10c2 100644 --- a/External/HIP/workload/blender/test_blender.sh.in +++ b/External/HIP/workload/blender/test_blender.sh.in @@ -1,7 +1,7 @@ #!/bin/bash TEST_SUITE_HIP_ROOT=${TEST_SUITE_HIP_ROOT:-"@TEST_SUITE_HIP_ROOT@"} -perf_thresh=${HIP_BLENDER_TEST_PERF_THRESH:-5} +perf_thresh=${HIP_BLENDER_TEST_PERF_THRESH:-10} export CCC_OVERRIDE_OPTIONS=${HIP_BLENDER_TEST_CCC_OVERRIDE_OPTIONS:-"+-v"}