[Bugfix] Fix a bug for simplifier #425
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates a submodule and introduces a new test file to validate functionality for copying tensors using the TileLang library. The most significant changes include updating the
tvmsubmodule and adding a new test for TileLang's tensor copy functionality.Submodule Update:
tvmsubmodule to the latest commitb16c9f298bc37fa502ffdb2ea809c2793e2a0bd6to incorporate upstream changes.New Test for TileLang:
testing/python/language/test_tilelang_language_copy.pyto test tensor copy functionality with TileLang. This includes:tilelang_copyfunction that defines a TileLang kernel for copying tensors.run_tilelang_copyfunction to compile and execute the kernel, validating the results using PyTorch.test_tilelang_copyfunction to run multiple test cases with varying tensor sizes and data types.