Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
PLATFORM: gpu

Linux_CPU_Test:
if: ${{ false && github.repository == 'MetaX-MACA/mcTVM' }}
if: ${{ github.repository == 'MetaX-MACA/mcTVM' }}
runs-on: ubuntu-latest
env:
PLATFORM: cpu
Expand Down
4 changes: 2 additions & 2 deletions tests/python/codegen/test_target_codegen_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ def popen_check():
# Load the system wide library
dev = tvm.maca()
a_np = np.random.uniform(size=12).astype("float32")
a_nd = tvm.nd.array(a_np, dev)
b_nd = tvm.nd.array(a_np, dev)
a_nd = tvm.runtime.tensor(a_np, dev)
b_nd = tvm.runtime.tensor(a_np, dev)
syslibA = tvm.runtime.system_lib("modA_")
syslibB = tvm.runtime.system_lib("modB_")
# reload same lib twice
Expand Down
Loading