Fix T78777: Cycles motion blur test differences between AVX/AVX2

This appears to be slight precision differences in the Embree implementation,
simply increase the diff threshold a little for these motion blur tests.
This commit is contained in:
2020-08-05 11:20:25 +02:00
parent 4a289081a5
commit de53178b26
2 changed files with 14 additions and 2 deletions

View File

@@ -63,6 +63,11 @@ def main():
report.set_pixelated(True)
report.set_reference_dir("cycles_renders")
report.set_compare_engines('cycles', 'eevee')
# Increase threshold for motion blur, see T78777.
if test_dir == 'motion_blur':
report.set_fail_threshold(0.032)
ok = report.run(test_dir, blender, get_arguments, batch=True)
sys.exit(not ok)