You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failed to run Pool2d tests with outputSizes [4,4] or roundingType as ceil on DML.
These following six tests could run pass by native OpenVINO backend, while run fail by native DML backend
This issue would also make test them fail by Node binding for DML backend.
DirectML native API requires the output tensor shape which contains the outputSizes, it will not use roundingType as parameter since outputSizes can already predict the roundingType.
While using DirectMlX.h as the wrapper of DirectML native API, we can't set correct outputSizes which need to match the specified roundingType. Using DirectMlX.h will let pool2d perform as specifying floor roundingType.
Fixing this issue will depend on #172 to remove DirectMLX.h.
The text was updated successfully, but these errors were encountered:
Failed to run Pool2d tests with outputSizes [4,4] or roundingType as ceil on DML.
These following six tests could run pass by native OpenVINO backend, while run fail by native DML backend
Their output data are not as expected.
This issue would also make test them fail by Node binding for DML backend.
DirectML native API requires the output tensor shape which contains the outputSizes, it will not use roundingType as parameter since outputSizes can already predict the roundingType.
While using DirectMlX.h as the wrapper of DirectML native API, we can't set correct outputSizes which need to match the specified roundingType. Using DirectMlX.h will let pool2d perform as specifying floor roundingType.
Fixing this issue will depend on #172 to remove DirectMLX.h.
The text was updated successfully, but these errors were encountered: