We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4f6d5b commit 4ec3b91Copy full SHA for 4ec3b91
python/tvm/topi/hexagon/utils.py
@@ -66,6 +66,7 @@ def nc_512c_2d(n, c):
66
"""Return index map for nc_512c 2d layout"""
67
return [n, c // 512, te.AXIS_SEPARATOR, c % 512]
68
69
+
70
def nc_1024c_2d(n, c):
71
"""Return index map for nc_1024c 2d layout"""
72
return [n, c // 1024, te.AXIS_SEPARATOR, c % 1024]
0 commit comments