junrushao opened a new pull request, #15659: URL: https://github.com/apache/tvm/pull/15659
This PR refactors the NDArrayCache support with the following changes: - Support loading metadata from a string rather than a concrete JSON file on disc; - Remove dependency to std::filesystem as it is not well supported in certain platforms yet. Details: https://github.com/apache/tvm/pull/15654#issuecomment-1703282818. - Simplify format used in `shard-info.json` as detailed below: ``` // Existing format [ { "name": "x0", "shard_dim": 0, }, { "name": "x1", "shard_dim": 1, } ] // New format { "x0": 0, "x1": 1, } ``` -- 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]
