mbrookhart commented on pull request #9169: URL: https://github.com/apache/tvm/pull/9169#issuecomment-931611507
@Mousius > Could you construct a test that goes over 32 entries? It should fail in ci_i386. I don't think that would do it. The problem is that when I'm tuning on a 64 bit host and measuring on a 32 bit edge device, the size_t on the host is a 64 bit value which gets serialized into a byte stream. When the 32bit edge device tries to read that, it thinks the value should be a 32 bit size_t, and ends up corrupting the data stream as it reads it. I don't think it's possible to test that without running RPC across architectures. -- 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]
