Change feature level of Resample3 to 6.4 (#577)

This commit is contained in:
Patrice Vignola 2024-04-11 15:06:11 -07:00 коммит произвёл GitHub
Родитель d3918ea66a
Коммит 5897d34ae2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -3445,7 +3445,7 @@ namespace dml
Span<const float> scales = {},
Span<const float> inputPixelOffsets = {},
Span<const float> outputPixelOffsets = {}
#if DML_TARGET_VERSION >= 0x6300
#if DML_TARGET_VERSION >= 0x6400
, bool antialiased = false
#endif
)
@ -3485,7 +3485,7 @@ namespace dml
TensorDesc outputTensor(inputTensor.dataType, std::move(outputSizes), builder->GetTensorPolicy());
#if DML_TARGET_VERSION >= 0x6300
#if DML_TARGET_VERSION >= 0x6400
DML_RESAMPLE3_OPERATOR_DESC desc = {};
desc.RoundingDirection = roundingDirection;
desc.Antialiased = antialiased;
@ -3506,7 +3506,7 @@ namespace dml
detail::NodeOutput* const inputs[] = { input.Impl() };
#if DML_TARGET_VERSION >= 0x6300
#if DML_TARGET_VERSION >= 0x6400
detail::NodeID node = builder->CreateOperatorNode(DML_OPERATOR_RESAMPLE3, &desc, inputs);
#elif DML_TARGET_VERSION >= 0x5100
detail::NodeID node = builder->CreateOperatorNode(DML_OPERATOR_RESAMPLE2, &desc, inputs);