This is an automated email from the ASF dual-hosted git repository.
sanirudh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new ee54e98c78 Remove duplicate 'from' word inside python script (#15582)
ee54e98c78 is described below
commit ee54e98c7843279256a72f62ad2e34cced573fce
Author: Max Base <[email protected]>
AuthorDate: Thu Aug 17 07:12:36 2023 +0100
Remove duplicate 'from' word inside python script (#15582)
---
.../test_tir_transform_merge_dynamic_shared_memory_allocations.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tests/python/unittest/test_tir_transform_merge_dynamic_shared_memory_allocations.py
b/tests/python/unittest/test_tir_transform_merge_dynamic_shared_memory_allocations.py
index 0c585bb978..37372059a2 100644
---
a/tests/python/unittest/test_tir_transform_merge_dynamic_shared_memory_allocations.py
+++
b/tests/python/unittest/test_tir_transform_merge_dynamic_shared_memory_allocations.py
@@ -330,7 +330,7 @@ def test_dyn_shared_more_dtype():
class TestMatmul(tvm.testing.CompareBeforeAfter):
"""Shared allocations should be merged, preserving DeclBuffer if present
- This test uses a matmul PrimFunc adapted from from
+ This test uses a matmul PrimFunc adapted from
test_matmul_dyn_shared, using either `T.Buffer` (Allocate without
DeclBuffer) or `T.decl_buffer` (Allocate followed by DeclBuffer)
for the replaced allocations.