File tree Expand file tree Collapse file tree 5 files changed +15
-682
lines changed
test/Conversion/TosaToTensor Expand file tree Collapse file tree 5 files changed +15
-682
lines changed Original file line number Diff line number Diff line change 70
70
#include " mlir/Conversion/TosaToLinalg/TosaToLinalg.h"
71
71
#include " mlir/Conversion/TosaToMLProgram/TosaToMLProgram.h"
72
72
#include " mlir/Conversion/TosaToSCF/TosaToSCF.h"
73
- #include " mlir/Conversion/TosaToTensor/TosaToTensor.h"
73
+ /* #include "mlir/Conversion/TosaToTensor/TosaToTensor.h" */
74
74
#include " mlir/Conversion/UBToLLVM/UBToLLVM.h"
75
75
#include " mlir/Conversion/UBToSPIRV/UBToSPIRV.h"
76
76
#include " mlir/Conversion/VectorToArmSME/VectorToArmSME.h"
Original file line number Diff line number Diff line change @@ -1216,18 +1216,18 @@ def TosaToSCF : Pass<"tosa-to-scf"> {
1216
1216
// TosaToTensor
1217
1217
//===----------------------------------------------------------------------===//
1218
1218
1219
- def TosaToTensor : Pass<"tosa-to-tensor"> {
1220
- let summary = "Lower TOSA to the Tensor dialect";
1221
- let dependentDialects = [
1222
- "tensor::TensorDialect",
1223
- ];
1224
- let description = [{
1225
- Pass that converts TOSA operations to the equivalent operations using the
1226
- operations in the Tensor dialect.
1227
- }];
1228
-
1229
- let constructor = "tosa::createTosaToTensor()";
1230
- }
1219
+ // def TosaToTensor : Pass<"tosa-to-tensor"> {
1220
+ // let summary = "Lower TOSA to the Tensor dialect";
1221
+ // let dependentDialects = [
1222
+ // "tensor::TensorDialect",
1223
+ // ];
1224
+ // let description = [{
1225
+ // Pass that converts TOSA operations to the equivalent operations using the
1226
+ // operations in the Tensor dialect.
1227
+ // }];
1228
+ //
1229
+ // let constructor = "tosa::createTosaToTensor()";
1230
+ // }
1231
1231
1232
1232
//===----------------------------------------------------------------------===//
1233
1233
// UBToLLVM
Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ add_subdirectory(TosaToArith)
78
78
add_subdirectory (TosaToLinalg )
79
79
add_subdirectory (TosaToMLProgram )
80
80
add_subdirectory (TosaToSCF )
81
- add_subdirectory (TosaToTensor )
81
+ # FIXME(askrebko): cannot be compiled: no conversion between ShapedType and TensorType
82
+ # add_subdirectory(TosaToTensor)
82
83
add_subdirectory (UBToLLVM )
83
84
add_subdirectory (UBToSPIRV )
84
85
add_subdirectory (VectorToArmSME )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments