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() {
63
63
echo " Render $input "
64
64
65
65
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
67
67
blender_return_code=${PIPESTATUS[0]}
68
68
69
69
average_time=$( grep -P " ^\s*Path Tracing\s+\d+\.\d+\s+\d+\.\d+" $blender_output | awk ' {print $4}' )
70
70
71
71
log_kernel_compilation_time $blender_output
72
72
73
73
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
75
75
compare_return_code=${PIPESTATUS[0]}
76
76
77
77
ssim=$( grep " SSIM Index:" $compare_output | awk ' {print $3}' )
78
78
mse=$( grep " MSE Value:" $compare_output | awk ' {print $3}' )
79
-
79
+
80
80
previous_average=" "
81
81
percentage_difference=" "
82
82
perf_regress=0
You can’t perform that action at this time.
0 commit comments