This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tvm | |
import tvm.script.tir as T | |
from collections import namedtuple | |
import numpy as np | |
from utils import dump | |
import os | |
dtype = "float32" | |
M = N = 4096 | |
dim = namedtuple('dim', ['x', 'y', 'z']) |