lxiongh opened a new issue, #15460:
URL: https://github.com/apache/tvm/issues/15460

   
https://github.com/apache/tvm/blob/b77d659c9afcfe3b80ea9b10a748cb15f4fe6539/src/runtime/graph_executor/graph_executor.cc#L153-L158
   
   it should be
   ```c++
   uint32_t eid = this->entry_id(out);
   CHECK_LE(eid, attrs_.shape.size());
   auto shape = attrs_.shape[eid];
   shape_dict.Set(name, ShapeTuple(shape));
   CHECK_LE(eid, attrs_.dltype.size());
   auto dtype = attrs_.dltype[eid];
   dtype_dict.Set(name, String(dtype));
   ```


-- 
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]

Reply via email to