PatrikPerssonInceptron opened a new pull request, #17537: URL: https://github.com/apache/tvm/pull/17537
The following assert in the `_verify_scatter_nd_inputs` function could fail if the shapes contain prim expressions: `assert indices.shape[i + 1] == updates.shape[i]`. I updated it to `analyzer.can_prove_equal(indices.shape[i + 1], updates.shape[i])` using the arithmetic analyzer instead. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
