Skip to content

Commit

Permalink
fix 128bit err
Browse files Browse the repository at this point in the history
  • Loading branch information
pvelesko committed Aug 19, 2024
1 parent 7284471 commit e4693d3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bitcode/ROCm-Device-Libs
2 changes: 0 additions & 2 deletions tests/known_failures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ ANY:
TestAssert: 'Works only on dGPU, otherwise, things being printed out of order'
TestAssertFail: 'Works only on dGPU, otherwise, things being printed out of order'
abort: 'Works only on dGPU, otherwise, things being printed out of order'
hipcc-invalid-bitwidth-128: 'InvalidBitWidth: Invalid bit width in input: 128'
host-math-funcs: 'host and dev results differ'
shfl_sync: 'masks outside of 0xFFFFFFFF are not supported'
# Invalid test (if it is the one from HIP/ submodule instead of hip-tests/).
# The source allocation 'Ah' is not initialized (this is fixed in hip-tests/)
Expand Down
2 changes: 1 addition & 1 deletion tests/runtime/host-math-funcs.hip
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ __global__ void mathFunctionsKernel(double* results) {
results[9] = normcdff(0.8f);
results[10] = normcdfinv(0.95f);
results[11] = normcdfinvf(0.95f);
// results[12] = rcbrt(8.0); // causes 128bit error
results[12] = rcbrt(8.0); // causes 128bit error
results[13] = rcbrtf(27.0f);
double sincos_result_cos;
double sincos_result_sin;
Expand Down

0 comments on commit e4693d3

Please sign in to comment.