From af4ded2ef9d7cf7b15a23c94a92956940e638551 Mon Sep 17 00:00:00 2001 From: Michal Zientkiewicz Date: Fri, 20 Sep 2024 17:12:33 +0200 Subject: [PATCH] Adjust test epsilons for CUDA 12.8 / sm100 Signed-off-by: Michal Zientkiewicz --- dali/kernels/test/resampling_test/separable_3D_test.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dali/kernels/test/resampling_test/separable_3D_test.cu b/dali/kernels/test/resampling_test/separable_3D_test.cu index 3460b4cc32..52f5520c8f 100644 --- a/dali/kernels/test/resampling_test/separable_3D_test.cu +++ b/dali/kernels/test/resampling_test/separable_3D_test.cu @@ -1,4 +1,4 @@ -// Copyright (c) 2019, 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +// Copyright (c) 2019, 2022, 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -501,7 +501,7 @@ class Resample3DTest> Check(out_cpu[i], ref_cpu[i]); } else { // Epsilons are quite big because: - // - GPU uses fma + // - GPU uses fma (the reference implementation is GPU!) // - GPU uses different rounding // - processing order in the reference is forced to be XYZ or YXZ, whereas // the tested implementation can use any order.