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 src/Accelerators/NNPA/Dialect/ZHigh/ZHigh.td
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def ZHigh_Dialect : Dialect {
let summary = "A high-level dialect for the ONNX NNPA accelerator ISA.";
let cppNamespace = "::onnx_mlir::zhigh";
let useDefaultAttributePrinterParser = 1;
let usePropertiesForAttributes = 0;
//let usePropertiesForAttributes = 0;
}

//===----------------------------------------------------------------------===//
Expand Down
2 changes: 1 addition & 1 deletion src/Accelerators/NNPA/Dialect/ZLow/ZLow.td
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def ZLow_Dialect : Dialect {
let name = "zlow";
let summary = "A low-level dialect for the ONNX NNPA accelerator ISA.";
let cppNamespace = "::onnx_mlir::zlow";
let usePropertiesForAttributes = 0;
//let usePropertiesForAttributes = 0;
}

// Base class for ZLow dialect operations. This operation inherits from the
Expand Down
2 changes: 1 addition & 1 deletion src/Dialect/Krnl/Krnl.td
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ include "src/Interface/SpecializedKernelOpInterface.td"
def Krnl_Dialect : Dialect {
let name = "krnl";
let cppNamespace = "::mlir";
let usePropertiesForAttributes = 0;
//let usePropertiesForAttributes = 0;
let useDefaultTypePrinterParser = 1;
let dependentDialects = [
"affine::AffineDialect",
Expand Down
2 changes: 1 addition & 1 deletion src/Dialect/ONNX/ONNX.td
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def ONNX_Dialect : Dialect {
let cppNamespace = "::mlir";
let useDefaultTypePrinterParser = 1;
let useDefaultAttributePrinterParser = 0;
let usePropertiesForAttributes = 0;
//let usePropertiesForAttributes = 0;
let dependentDialects = ["func::FuncDialect"];
let hasConstantMaterializer = 1;
let extraClassDeclaration = [{
Expand Down
Loading