intel/mlir-extensions

ExplicitPadding Test case fails on GPU pipeline

Closed this issue · 0 comments

The explicitpadding.mlir test case https://github.com/intel/mlir-extensions/blob/refactor/test/PlaidML/OpTest.ExplicitPadding.mlir gives incorrect results on the gpu pipeline on refactor branch.

Expected output is :
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 1, 2, 3, 0]
[0, 4, 5, 6, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]

But the gpu pipeline produces this output:
[1, 2, 3, 0, 0]
[4, 5, 6, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]