File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
External/HIP/workload/blender Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,20 +63,20 @@ render() {
6363 echo " Render $input "
6464
6565 blender_output=$( mktemp)
66- timeout 300 $blender_dir /blender -b $input -F PNG -o ${output} # ## -f $frame $blender_options 2>&1 | tee $blender_output
66+ timeout 600 $blender_dir /blender -b $input -F PNG -o ${output} # ## -f $frame $blender_options 2>&1 | tee $blender_output
6767 blender_return_code=${PIPESTATUS[0]}
6868
6969 average_time=$( grep -P " ^\s*Path Tracing\s+\d+\.\d+\s+\d+\.\d+" $blender_output | awk ' {print $4}' )
7070
7171 log_kernel_compilation_time $blender_output
7272
7373 compare_output=$( mktemp)
74- timeout 300 python3 compare_image.py --image $scene_dir /out/${out_file_full} --ref $scene_dir /ref/${out_file_full} 2>&1 | tee $compare_output
74+ timeout 600 python3 compare_image.py --image $scene_dir /out/${out_file_full} --ref $scene_dir /ref/${out_file_full} 2>&1 | tee $compare_output
7575 compare_return_code=${PIPESTATUS[0]}
7676
7777 ssim=$( grep " SSIM Index:" $compare_output | awk ' {print $3}' )
7878 mse=$( grep " MSE Value:" $compare_output | awk ' {print $3}' )
79-
79+
8080 previous_average=" "
8181 percentage_difference=" "
8282 perf_regress=0
You can’t perform that action at this time.
0 commit comments