Skip to content

Commit 8b75db9

Browse files
committed
try again on a succeeding windows intel machine
1 parent f626d65 commit 8b75db9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/Feature/HLSLLib/distance.fp16.denorm.test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ void main() {
2323
// distance({inf, NaN, -inf, inf}, {1.0, 1.0, 1.0, NaN}) = NaN
2424
Result[4] = distance(X[0].xyzw, Y[0].xyzw);
2525

26-
// distance({denorm}, {1.0}) = denorm
26+
// distance({denorm}, {1.0}) = 1.0
2727
Result[5] = distance(Y[0].z, Y[0].x);
2828

29-
// distance({-denorm}, {1.0}) = denorm
29+
// distance({-denorm}, {1.0}) = 1.0
3030
Result[6] = distance(Y[0].y, Y[0].x);
3131
}
3232

@@ -45,15 +45,15 @@ Buffers:
4545
- Name: Y
4646
Format: Float16
4747
Stride: 8
48-
Data: [ 0x003C, 0x8001, 0x0001, 0x7E00 ]
48+
Data: [ 0x3C00, 0x8001, 0x0001, 0x7E00 ]
4949
- Name: Result
5050
Format: Float16
5151
Stride: 2
5252
ZeroInitSize: 16
5353
- Name: ExpectedResult
5454
Format: Float16
5555
Stride: 2
56-
Data: [ 0x7C00, 0x7E00, 0x7C00, 0x7E00, 0x7E00, 0x3B, 0x3D, 0x0 ]
56+
Data: [ 0x7C00, 0x7E00, 0x7C00, 0xFE00, 0xFE00, 0x3C00, 0x3C00, 0x0 ]
5757
Results:
5858
- Result: CheckResult
5959
Rule: BufferFloatULP

0 commit comments

Comments
 (0)