Commit 88bd939a authored by Andrey Filippov's avatar Andrey Filippov

CLAUDE: pose_corr console hint -> tests_bin/test_pose_corr_jna (the tol-0 verdict binary)

Measured on the first real case: an offline nvcc build cannot be bit-exact
vs the NVRTC-JIT production module (FMA/codegen divergence) - the direct
-G binary is the stepping companion; the NVRTC-module replay
(jna/test_pose_corr_jna) PASSed bit-exact @tol 0, all 4 iterations.
Co-Authored-By: 's avatarClaude Fable 5 <noreply@anthropic.com>
parent 98e4ee98
...@@ -525,8 +525,13 @@ public class CuasRT { ...@@ -525,8 +525,13 @@ public class CuasRT {
} else } else
AvgTdExport.compareResults(dir_path, debugLevel); AvgTdExport.compareResults(dir_path, debugLevel);
} else { } else {
// pose_corr: the tol-0 verdict binary is the NVRTC-module replay (an offline
// nvcc build cannot be bit-exact vs the NVRTC JIT - measured 07/13/2026;
// tests_bin/test_pose_corr stays as the cuda-gdb stepping companion).
// By Claude on 07/13/2026.
final String test_bin = "pose_corr".equals(kernel) ? "pose_corr_jna" : kernel;
System.out.println("kernelTest("+kernel+"): now run (tile_processor_gpu): tests_bin/test_"+ System.out.println("kernelTest("+kernel+"): now run (tile_processor_gpu): tests_bin/test_"+
kernel+" --data "+dir_path+" --tol 0"); test_bin+" --data "+dir_path+" --tol 0");
} }
} catch (IOException e) { } catch (IOException e) {
System.out.println("kernelTest("+kernel+"): export/compare FAILED: "+e.getMessage()); System.out.println("kernelTest("+kernel+"): export/compare FAILED: "+e.getMessage());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment