Skip to content

Commit d8755d3

Browse files
authored
Small fixes (#1054)
1 parent 9f5a264 commit d8755d3

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

include/TPP/Passes.td

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def LoadTppDialects : Pass<"load-tpp-dialects", "ModuleOp"> {
2525
"check::CheckDialect",
2626
"perf::PerfDialect",
2727
"omp::OpenMPDialect",
28+
"amx::AMXDialect",
2829
"async::AsyncDialect"];
2930
}
3031

lib/TPP/LoadTppDialects.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "TPP/Dialect/Xsmm/XsmmDialect.h"
1616
#include "mlir/Dialect/Async/IR/Async.h"
1717
#include "mlir/Dialect/OpenMP/OpenMPDialect.h"
18+
#include "mlir/Dialect/AMX/AMXDialect.h"
1819

1920

2021
namespace mlir {

python/mlir/dialects/perf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ._check_ops_gen import *
1+
from ._perf_ops_gen import *
22
from .._mlir_libs._tppDialects.perf import *
33

44
from .._mlir_libs import get_dialect_registry

python/mlir/dialects/xsmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ._check_ops_gen import *
1+
from ._xsmm_ops_gen import *
22
from .._mlir_libs._tppDialects.xsmm import *
33

44
from .._mlir_libs import get_dialect_registry

0 commit comments

Comments
 (0)