mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-25 19:48:11 +00:00
Bug in DmlOperatorResize.cpp with m_inputDimensions (#9456)
This commit is contained in:
parent
9639eded4b
commit
12f216aab5
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ public:
|
|||
// Find any useless dimensions of size 1 that occur in both input and output.
|
||||
for (size_t i = 0, rank = m_outputDimensions.size(); i < rank; ++i)
|
||||
{
|
||||
if (m_inputDimensions[i] = 1 && m_outputDimensions[i] == 1)
|
||||
if (m_inputDimensions[i] == 1 && m_outputDimensions[i] == 1)
|
||||
{
|
||||
squeezableDimensionIndices.push_back(gsl::narrow_cast<uint32_t>(i));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue