shingjan commented on code in PR #10892:
URL: https://github.com/apache/tvm/pull/10892#discussion_r845473398
##########
src/printer/tvmscript_printer.cc:
##########
@@ -577,6 +577,9 @@ bool TVMScriptPrinter::IsSimpleBuffer(const Buffer& buf) {
return false;
}
for (const PrimExpr& shp_i : buf->shape) {
+ if (shp_i.dtype() != DataType::Int(32)) {
+ return false;
+ }
Review Comment:
@MasterJH5574 The initial code change of this PR is to act as a temporary
fix to address your
[comment](https://github.com/apache/tvm/pull/10789#issuecomment-1079625981)
here.
--
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]