mirror of https://github.com/llvm/torch-mlir
[torch] Add folder for torch.aten.*.Scalar comparisons (#3000)
This folds small version of the tensor-scalar comparison operators as they are commonly used for shape computations. This includes le, lt, ge, gt, eq, and ne.pull/3001/head
parent
80c7bc3f7a
commit
0723584936
|
@ -2131,288 +2131,6 @@ def Torch_AtenDiv_ScalarOp : Torch_Op<"aten.div_.Scalar", [
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
def Torch_AtenNeScalarOp : Torch_Op<"aten.ne.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::ne.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenNeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenNeScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenNe_ScalarOp : Torch_Op<"aten.ne_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::ne_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenNe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenNe_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenEqScalarOp : Torch_Op<"aten.eq.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::eq.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenEqScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenEqScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenEq_ScalarOp : Torch_Op<"aten.eq_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::eq_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenEq_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenEq_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenGtScalarOp : Torch_Op<"aten.gt.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::gt.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenGtScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenGtScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenGt_ScalarOp : Torch_Op<"aten.gt_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::gt_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenGt_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenGt_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenGeScalarOp : Torch_Op<"aten.ge.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::ge.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenGeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenGeScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenGe_ScalarOp : Torch_Op<"aten.ge_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::ge_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenGe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenGe_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenLtScalarOp : Torch_Op<"aten.lt.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::lt.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenLtScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenLtScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenLt_ScalarOp : Torch_Op<"aten.lt_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::lt_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenLt_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenLt_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenLeScalarOp : Torch_Op<"aten.le.Scalar", [
|
|
||||||
AllowsTypeRefinement,
|
|
||||||
HasValueSemantics,
|
|
||||||
ReadOnly
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::le.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
AnyTorchTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
AnyTorchTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenLeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenLeScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenLe_ScalarOp : Torch_Op<"aten.le_.Scalar", [
|
|
||||||
IsTrailingUnderscoreInplaceVariant,
|
|
||||||
AllowsTypeRefinement
|
|
||||||
]> {
|
|
||||||
let summary = "Generated op for `aten::le_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
|
||||||
let arguments = (ins
|
|
||||||
Torch_NonValueTensorType:$self,
|
|
||||||
AnyTorchScalarType:$other
|
|
||||||
);
|
|
||||||
let results = (outs
|
|
||||||
Torch_NonValueTensorType:$result
|
|
||||||
);
|
|
||||||
let hasCustomAssemblyFormat = 1;
|
|
||||||
let extraClassDefinition = [{
|
|
||||||
ParseResult AtenLe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
|
||||||
return parseDefaultTorchOp(parser, result, 2, 1);
|
|
||||||
}
|
|
||||||
void AtenLe_ScalarOp::print(OpAsmPrinter &printer) {
|
|
||||||
printDefaultTorchOp(printer, *this, 2, 1);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
def Torch_AtenFmodScalarOp : Torch_Op<"aten.fmod.Scalar", [
|
def Torch_AtenFmodScalarOp : Torch_Op<"aten.fmod.Scalar", [
|
||||||
AllowsTypeRefinement,
|
AllowsTypeRefinement,
|
||||||
HasValueSemantics,
|
HasValueSemantics,
|
||||||
|
@ -4115,6 +3833,294 @@ def Torch_AtenEq_TensorOp : Torch_Op<"aten.eq_.Tensor", [
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def Torch_AtenLeScalarOp : Torch_Op<"aten.le.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::le.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenLeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenLeScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenLe_ScalarOp : Torch_Op<"aten.le_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::le_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenLe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenLe_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenLtScalarOp : Torch_Op<"aten.lt.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::lt.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenLtScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenLtScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenLt_ScalarOp : Torch_Op<"aten.lt_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::lt_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenLt_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenLt_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenGtScalarOp : Torch_Op<"aten.gt.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::gt.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenGtScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenGtScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenGt_ScalarOp : Torch_Op<"aten.gt_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::gt_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenGt_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenGt_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenGeScalarOp : Torch_Op<"aten.ge.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::ge.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenGeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenGeScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenGe_ScalarOp : Torch_Op<"aten.ge_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::ge_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenGe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenGe_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenEqScalarOp : Torch_Op<"aten.eq.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::eq.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenEqScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenEqScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenEq_ScalarOp : Torch_Op<"aten.eq_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::eq_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenEq_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenEq_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenNeScalarOp : Torch_Op<"aten.ne.Scalar", [
|
||||||
|
AllowsTypeRefinement,
|
||||||
|
HasValueSemantics,
|
||||||
|
ReadOnly
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::ne.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
AnyTorchTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
AnyTorchTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenNeScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenNeScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
let hasFolder = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
def Torch_AtenNe_ScalarOp : Torch_Op<"aten.ne_.Scalar", [
|
||||||
|
IsTrailingUnderscoreInplaceVariant,
|
||||||
|
AllowsTypeRefinement
|
||||||
|
]> {
|
||||||
|
let summary = "Generated op for `aten::ne_.Scalar : (Tensor, Scalar) -> (Tensor)`";
|
||||||
|
let arguments = (ins
|
||||||
|
Torch_NonValueTensorType:$self,
|
||||||
|
AnyTorchScalarType:$other
|
||||||
|
);
|
||||||
|
let results = (outs
|
||||||
|
Torch_NonValueTensorType:$result
|
||||||
|
);
|
||||||
|
let hasCustomAssemblyFormat = 1;
|
||||||
|
let extraClassDefinition = [{
|
||||||
|
ParseResult AtenNe_ScalarOp::parse(OpAsmParser &parser, OperationState &result) {
|
||||||
|
return parseDefaultTorchOp(parser, result, 2, 1);
|
||||||
|
}
|
||||||
|
void AtenNe_ScalarOp::print(OpAsmPrinter &printer) {
|
||||||
|
printDefaultTorchOp(printer, *this, 2, 1);
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
def Torch_AtenFloorOp : Torch_Op<"aten.floor", [
|
def Torch_AtenFloorOp : Torch_Op<"aten.floor", [
|
||||||
AllowsTypeRefinement,
|
AllowsTypeRefinement,
|
||||||
HasValueSemantics,
|
HasValueSemantics,
|
||||||
|
|
|
@ -591,7 +591,7 @@ void mlir::torch::onnx_c::populateDefaultDomainGtoP(
|
||||||
Value one = rewriter.create<Torch::ConstantIntOp>(
|
Value one = rewriter.create<Torch::ConstantIntOp>(
|
||||||
loc, intTy, rewriter.getI64IntegerAttr(1));
|
loc, intTy, rewriter.getI64IntegerAttr(1));
|
||||||
Value lt =
|
Value lt =
|
||||||
rewriter.create<Torch::AtenLeScalarOp>(loc, boolTy, indices, zero);
|
rewriter.create<Torch::AtenLtScalarOp>(loc, boolTy, indices, zero);
|
||||||
Value dim =
|
Value dim =
|
||||||
rewriter.create<Torch::AtenSizeIntOp>(loc, intTy, data, index);
|
rewriter.create<Torch::AtenSizeIntOp>(loc, intTy, data, index);
|
||||||
Value add = rewriter.create<Torch::AtenAddScalarOp>(loc, indicesTy,
|
Value add = rewriter.create<Torch::AtenAddScalarOp>(loc, indicesTy,
|
||||||
|
|
|
@ -1481,6 +1481,197 @@ OpFoldResult AtenEqTensorOp::fold(FoldAdaptor adaptor) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenLeScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
using ComparisonFoldFpOperator = std::function<bool(double, double)>;
|
||||||
|
using ComparisonFoldIntOperator = std::function<bool(APInt, APInt, bool)>;
|
||||||
|
|
||||||
|
static OpFoldResult comparisonScaleFolder(DenseElementsAttr lhs, Attribute rhs,
|
||||||
|
ValueTensorType resultTy,
|
||||||
|
ComparisonFoldFpOperator fpFolder,
|
||||||
|
ComparisonFoldIntOperator intFolder) {
|
||||||
|
constexpr int64_t kMaxFold = 16;
|
||||||
|
if (!lhs || !rhs || !resultTy)
|
||||||
|
return nullptr;
|
||||||
|
if (!resultTy.hasSizes() || !resultTy.hasDtype())
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
for (auto size : resultTy.getSizes())
|
||||||
|
if (size == Torch::kUnknownSize)
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
auto ctx = lhs.getContext();
|
||||||
|
auto resultETy = resultTy.getDtype();
|
||||||
|
auto tensorETy = cast<RankedTensorType>(lhs.getType()).getElementType();
|
||||||
|
if (lhs.isSplat()) {
|
||||||
|
if (auto intAttr = dyn_cast<IntegerAttr>(rhs)) {
|
||||||
|
auto unsign = cast<IntegerType>(tensorETy).isUnsigned();
|
||||||
|
auto scalarAP = intAttr.getValue();
|
||||||
|
auto tensorAP = lhs.getSplatValue<IntegerAttr>().getValue();
|
||||||
|
tensorAP = APInt(
|
||||||
|
scalarAP.getBitWidth(),
|
||||||
|
unsign ? tensorAP.getZExtValue() : tensorAP.getSExtValue(), !unsign);
|
||||||
|
auto resultBool = intFolder(tensorAP, scalarAP, unsign);
|
||||||
|
auto resultAP = IntegerAttr::get(IntegerType::get(ctx, 1), resultBool);
|
||||||
|
return DenseElementsAttr::get(resultTy.toBuiltinTensor().clone(resultETy),
|
||||||
|
resultAP);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (auto floatAttr = dyn_cast<FloatAttr>(rhs)) {
|
||||||
|
APFloat scalarAP = floatAttr.getValue();
|
||||||
|
APFloat tensorAP = lhs.getSplatValue<FloatAttr>().getValue();
|
||||||
|
auto resultBool =
|
||||||
|
fpFolder(tensorAP.convertToDouble(), scalarAP.convertToDouble());
|
||||||
|
auto resultAP = IntegerAttr::get(IntegerType::get(ctx, 1), resultBool);
|
||||||
|
return DenseElementsAttr::get(resultTy.toBuiltinTensor().clone(resultETy),
|
||||||
|
resultAP);
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
int64_t count = 1;
|
||||||
|
for (auto size : resultTy.getSizes())
|
||||||
|
count *= size;
|
||||||
|
|
||||||
|
if (count > kMaxFold)
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
if (auto intAttr = dyn_cast<IntegerAttr>(rhs)) {
|
||||||
|
auto unsign = cast<IntegerType>(tensorETy).isUnsigned();
|
||||||
|
llvm::SmallVector<bool> values;
|
||||||
|
for (auto tensorAP : lhs.getValues<APInt>()) {
|
||||||
|
auto scalarAP = intAttr.getValue();
|
||||||
|
tensorAP = APInt(
|
||||||
|
scalarAP.getBitWidth(),
|
||||||
|
unsign ? tensorAP.getZExtValue() : tensorAP.getSExtValue(), !unsign);
|
||||||
|
auto resultBool = intFolder(tensorAP, scalarAP, unsign);
|
||||||
|
values.push_back(resultBool);
|
||||||
|
}
|
||||||
|
return DenseElementsAttr::get(resultTy.toBuiltinTensor().clone(resultETy),
|
||||||
|
values);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (auto floatAttr = dyn_cast<FloatAttr>(rhs)) {
|
||||||
|
llvm::SmallVector<bool> values;
|
||||||
|
for (auto tensorAP : lhs.getValues<APFloat>()) {
|
||||||
|
APFloat scalarAP = floatAttr.getValue();
|
||||||
|
auto resultBool =
|
||||||
|
fpFolder(tensorAP.convertToDouble(), scalarAP.convertToDouble());
|
||||||
|
values.push_back(resultBool);
|
||||||
|
}
|
||||||
|
return DenseElementsAttr::get(resultTy.toBuiltinTensor().clone(resultETy),
|
||||||
|
values);
|
||||||
|
}
|
||||||
|
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
OpFoldResult AtenLeScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs <= rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return unsign ? lhs.ule(rhs) : lhs.sle(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenLtScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
OpFoldResult AtenLtScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs < rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return unsign ? lhs.ult(rhs) : lhs.slt(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenGtScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
OpFoldResult AtenGtScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs > rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return unsign ? lhs.ugt(rhs) : lhs.sgt(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenGeScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
OpFoldResult AtenGeScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs >= rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return unsign ? lhs.uge(rhs) : lhs.sge(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenEqScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
OpFoldResult AtenEqScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs == rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return lhs.eq(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// AtenNeScalarOp
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
OpFoldResult AtenNeScalarOp::fold(FoldAdaptor adaptor) {
|
||||||
|
auto self = dyn_cast_or_null<DenseElementsAttr>(adaptor.getSelf());
|
||||||
|
auto other = adaptor.getOther();
|
||||||
|
auto resultTy = dyn_cast<ValueTensorType>(getType());
|
||||||
|
|
||||||
|
auto fpFold = [](double lhs, double rhs) -> bool { return lhs != rhs; };
|
||||||
|
|
||||||
|
auto intFold = [](APInt lhs, APInt rhs, bool unsign) -> bool {
|
||||||
|
return lhs.ne(rhs);
|
||||||
|
};
|
||||||
|
|
||||||
|
return comparisonScaleFolder(self, other, resultTy, fpFold, intFold);
|
||||||
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// AtenFloorOp
|
// AtenFloorOp
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
|
@ -1495,11 +1495,6 @@ ONNX_XFAIL_SET = {
|
||||||
"FlipNegativeIndexModule_basic",
|
"FlipNegativeIndexModule_basic",
|
||||||
"HardsigmoidModule_basic",
|
"HardsigmoidModule_basic",
|
||||||
"HardsigmoidRandomModule_basic",
|
"HardsigmoidRandomModule_basic",
|
||||||
"IndexSelectDynamicInputSizeModule_basic",
|
|
||||||
"IndexSelectWholeDimensionModule_basic",
|
|
||||||
"IndexSelectWholeTensorModule_basic",
|
|
||||||
"IndexTensorStaticModule_basic",
|
|
||||||
"IndexTensorStaticNonContiguousWithNoneModule_basic",
|
|
||||||
"PixelShuffleModuleStaticRank4Float32_basic",
|
"PixelShuffleModuleStaticRank4Float32_basic",
|
||||||
"ResNet18Module_basic",
|
"ResNet18Module_basic",
|
||||||
"SliceCopyEndGreaterThanDimSize_Module_basic",
|
"SliceCopyEndGreaterThanDimSize_Module_basic",
|
||||||
|
@ -1998,24 +1993,15 @@ ONNX_XFAIL_SET = {
|
||||||
"NativeDropoutTrainModule_basic",
|
"NativeDropoutTrainModule_basic",
|
||||||
"NativeDropoutTrainStaticShapeModule_basic",
|
"NativeDropoutTrainStaticShapeModule_basic",
|
||||||
"ReduceProdDimIntFloatModule_basic",
|
"ReduceProdDimIntFloatModule_basic",
|
||||||
"StdCorrectionAllDimReduceModule_basic",
|
|
||||||
"StdCorrectionKeepDimModule_basic",
|
|
||||||
"StdCorrectionLargeInputModule_basic",
|
"StdCorrectionLargeInputModule_basic",
|
||||||
"StdCorrectionModule_basic",
|
"StdCorrectionModule_basic",
|
||||||
"StdCorrectionNoneModule_basic",
|
"StdCorrectionNoneModule_basic",
|
||||||
"StdDimNoneDimModule_basic",
|
"StdDimNoneDimModule_basic",
|
||||||
"StdUnbiasedModule_basic",
|
"StdUnbiasedModule_basic",
|
||||||
"VarCorrectionAllDimReduceModule_basic",
|
|
||||||
"VarCorrectionKeepDimModule_basic",
|
|
||||||
"VarCorrectionLargeInputModule_basic",
|
"VarCorrectionLargeInputModule_basic",
|
||||||
"VarCorrectionModule_basic",
|
"VarCorrectionModule_basic",
|
||||||
"VarCorrectionNoneModule_basic",
|
"VarCorrectionNoneModule_basic",
|
||||||
"VarDimAllDimReduceModule_basic",
|
|
||||||
"VarDimModule_basic",
|
|
||||||
"VarDimMultiDimModule_basic",
|
|
||||||
"VarDimNoneDimModule_basic",
|
"VarDimNoneDimModule_basic",
|
||||||
"VarDimSingleDimModule_basic",
|
|
||||||
"VarDimUnbiasedModule_basic",
|
|
||||||
"VarMeanCorrectionNoneModule_basic",
|
"VarMeanCorrectionNoneModule_basic",
|
||||||
"VarMeanUnbiasedModule_basic",
|
"VarMeanUnbiasedModule_basic",
|
||||||
"VarUnbiasedModule_basic",
|
"VarUnbiasedModule_basic",
|
||||||
|
@ -2110,9 +2096,6 @@ ONNX_XFAIL_SET = {
|
||||||
"IndexTensorMultiInputOneDim_basic",
|
"IndexTensorMultiInputOneDim_basic",
|
||||||
"IndexTensorMultiInputThreeIndexers_basic",
|
"IndexTensorMultiInputThreeIndexers_basic",
|
||||||
"IndexTensorMultiInput_basic",
|
"IndexTensorMultiInput_basic",
|
||||||
"IndexTensorStaticContiguousWithNoneModule_basic",
|
|
||||||
"SelectIntModule_basic",
|
|
||||||
"SliceSingleIdxModule_basic",
|
|
||||||
"ViewFlattenAndExpandModule_basic",
|
"ViewFlattenAndExpandModule_basic",
|
||||||
"ViewSizeDimFollowedByCollapsedOnesModule_basic",
|
"ViewSizeDimFollowedByCollapsedOnesModule_basic",
|
||||||
"ViewSizeDimFollowedByExpandedOnesModule_basic",
|
"ViewSizeDimFollowedByExpandedOnesModule_basic",
|
||||||
|
@ -2151,7 +2134,6 @@ ONNX_XFAIL_SET = {
|
||||||
"FlattenDynamicModule_basic",
|
"FlattenDynamicModule_basic",
|
||||||
"GluStaticModule_basic",
|
"GluStaticModule_basic",
|
||||||
"GroupNormModule_basic",
|
"GroupNormModule_basic",
|
||||||
"IndexSelectDynamicModulebasic",
|
|
||||||
"IndexTensorHackedTwinModule3dInput_basic",
|
"IndexTensorHackedTwinModule3dInput_basic",
|
||||||
"IndexTensorHackedTwinModule_basic",
|
"IndexTensorHackedTwinModule_basic",
|
||||||
"IndexTensorModule3dInput_basic",
|
"IndexTensorModule3dInput_basic",
|
||||||
|
@ -2169,11 +2151,5 @@ ONNX_XFAIL_SET = {
|
||||||
"TensorsStackPromoteDTypeModule_basic",
|
"TensorsStackPromoteDTypeModule_basic",
|
||||||
}
|
}
|
||||||
|
|
||||||
if torch_version_for_comparison() < version.parse("2.3.0.dev"):
|
|
||||||
ONNX_XFAIL_SET = ONNX_XFAIL_SET | {
|
|
||||||
# ERROR: dtype (torch.float64) is not equal to golden dtype (torch.float32)
|
|
||||||
"ElementwiseWhereScalarModule_basic",
|
|
||||||
}
|
|
||||||
|
|
||||||
ONNX_CRASHING_SET = { }
|
ONNX_CRASHING_SET = { }
|
||||||
|
|
||||||
|
|
|
@ -301,12 +301,6 @@ def emit_ops(emitter_td: TextEmitter, registry: Registry):
|
||||||
"aten::le.Tensor : (Tensor, Tensor) -> (Tensor)",
|
"aten::le.Tensor : (Tensor, Tensor) -> (Tensor)",
|
||||||
"aten::ne.Tensor : (Tensor, Tensor) -> (Tensor)",
|
"aten::ne.Tensor : (Tensor, Tensor) -> (Tensor)",
|
||||||
"aten::div.Scalar : (Tensor, Scalar) -> (Tensor)",
|
"aten::div.Scalar : (Tensor, Scalar) -> (Tensor)",
|
||||||
"aten::ne.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::eq.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::gt.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::ge.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::lt.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::le.Scalar : (Tensor, Scalar) -> (Tensor)",
|
|
||||||
"aten::fmod.Scalar : (Tensor, Scalar) -> (Tensor)",
|
"aten::fmod.Scalar : (Tensor, Scalar) -> (Tensor)",
|
||||||
"aten::masked_fill.Scalar : (Tensor, Tensor, Scalar) -> (Tensor)",
|
"aten::masked_fill.Scalar : (Tensor, Tensor, Scalar) -> (Tensor)",
|
||||||
"aten::clamp : (Tensor, Scalar?, Scalar?) -> (Tensor)",
|
"aten::clamp : (Tensor, Scalar?, Scalar?) -> (Tensor)",
|
||||||
|
@ -347,6 +341,12 @@ def emit_ops(emitter_td: TextEmitter, registry: Registry):
|
||||||
emit_with_mutating_variants("aten::sub.Scalar : (Tensor, Scalar, Scalar) -> (Tensor)", has_canonicalizer=True)
|
emit_with_mutating_variants("aten::sub.Scalar : (Tensor, Scalar, Scalar) -> (Tensor)", has_canonicalizer=True)
|
||||||
emit_with_mutating_variants("aten::mul.Scalar : (Tensor, Scalar) -> (Tensor)", has_canonicalizer=True)
|
emit_with_mutating_variants("aten::mul.Scalar : (Tensor, Scalar) -> (Tensor)", has_canonicalizer=True)
|
||||||
emit_with_mutating_variants("aten::eq.Tensor : (Tensor, Tensor) -> (Tensor)", has_folder=True)
|
emit_with_mutating_variants("aten::eq.Tensor : (Tensor, Tensor) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::le.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::lt.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::gt.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::ge.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::eq.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
|
emit_with_mutating_variants("aten::ne.Scalar : (Tensor, Scalar) -> (Tensor)", has_folder=True)
|
||||||
emit_with_mutating_variants("aten::floor : (Tensor) -> (Tensor)", has_canonicalizer=True)
|
emit_with_mutating_variants("aten::floor : (Tensor) -> (Tensor)", has_canonicalizer=True)
|
||||||
emit_with_mutating_variants("aten::masked_fill.Tensor : (Tensor, Tensor, Tensor) -> (Tensor)", has_canonicalizer=True)
|
emit_with_mutating_variants("aten::masked_fill.Tensor : (Tensor, Tensor, Tensor) -> (Tensor)", has_canonicalizer=True)
|
||||||
|
|
||||||
|
|
|
@ -413,7 +413,7 @@ class ElementwiseWhereScalarModule(torch.nn.Module):
|
||||||
([-1, -1, -1], torch.float32, True),
|
([-1, -1, -1], torch.float32, True),
|
||||||
])
|
])
|
||||||
def forward(self, a):
|
def forward(self, a):
|
||||||
return torch.where(a > 0.5, 4.0, 8.0)
|
return torch.where(a > 0.5, 4.0, 8.0).to(torch.float)
|
||||||
|
|
||||||
|
|
||||||
@register_test_case(module_factory=lambda: ElementwiseWhereScalarModule())
|
@register_test_case(module_factory=lambda: ElementwiseWhereScalarModule())
|
||||||
|
|
|
@ -42,7 +42,7 @@ func.func @test_gather_nd(%arg0: !torch.vtensor<[3,4,5],f32>, %arg1: !torch.vten
|
||||||
// CHECK: %[[AXIS:.+]] = torch.constant.int 0
|
// CHECK: %[[AXIS:.+]] = torch.constant.int 0
|
||||||
// CHECK: %[[ZERO:.+]] = torch.constant.int 0
|
// CHECK: %[[ZERO:.+]] = torch.constant.int 0
|
||||||
// CHECK: %[[ONE:.+]] = torch.constant.int 1
|
// CHECK: %[[ONE:.+]] = torch.constant.int 1
|
||||||
// CHECK: %[[LT:.+]] = torch.aten.le.Scalar %arg1, %[[ZERO]]
|
// CHECK: %[[LT:.+]] = torch.aten.lt.Scalar %arg1, %[[ZERO]]
|
||||||
// CHECK: %[[SZ:.+]] = torch.aten.size.int %arg0, %[[AXIS]]
|
// CHECK: %[[SZ:.+]] = torch.aten.size.int %arg0, %[[AXIS]]
|
||||||
// CHECK: %[[ADD:.+]] = torch.aten.add.Scalar %arg1, %[[SZ]], %[[ONE]]
|
// CHECK: %[[ADD:.+]] = torch.aten.add.Scalar %arg1, %[[SZ]], %[[ONE]]
|
||||||
// CHECK: %[[SEL:.+]] = torch.aten.where.self %[[LT]], %[[ADD]], %arg1
|
// CHECK: %[[SEL:.+]] = torch.aten.where.self %[[LT]], %[[ADD]], %arg1
|
||||||
|
@ -72,7 +72,7 @@ func.func @test_gather_scalar(%arg0: !torch.vtensor<[3,4,5],f32>, %arg1: !torch.
|
||||||
// CHECK: %[[AXIS:.+]] = torch.constant.int 0
|
// CHECK: %[[AXIS:.+]] = torch.constant.int 0
|
||||||
// CHECK: %[[ZERO:.+]] = torch.constant.int 0
|
// CHECK: %[[ZERO:.+]] = torch.constant.int 0
|
||||||
// CHECK: %[[ONE:.+]] = torch.constant.int 1
|
// CHECK: %[[ONE:.+]] = torch.constant.int 1
|
||||||
// CHECK: %[[LT:.+]] = torch.aten.le.Scalar %arg1, %[[ZERO]]
|
// CHECK: %[[LT:.+]] = torch.aten.lt.Scalar %arg1, %[[ZERO]]
|
||||||
// CHECK: %[[SZ:.+]] = torch.aten.size.int %arg0, %[[AXIS]]
|
// CHECK: %[[SZ:.+]] = torch.aten.size.int %arg0, %[[AXIS]]
|
||||||
// CHECK: %[[ADD:.+]] = torch.aten.add.Scalar %arg1, %[[SZ]], %[[ONE]]
|
// CHECK: %[[ADD:.+]] = torch.aten.add.Scalar %arg1, %[[SZ]], %[[ONE]]
|
||||||
// CHECK: %[[SEL:.+]] = torch.aten.where.self %[[LT]], %[[ADD]], %arg1
|
// CHECK: %[[SEL:.+]] = torch.aten.where.self %[[LT]], %[[ADD]], %arg1
|
||||||
|
|
|
@ -2708,3 +2708,128 @@ func.func @aten_cat_zero(%arg0 : !torch.vtensor<[4,5,6],f32>, %arg1 : !torch.vte
|
||||||
%0 = torch.aten.cat %list, %dim : !torch.list<vtensor>, !torch.int -> !torch.vtensor<[4,5,6],f32>
|
%0 = torch.aten.cat %list, %dim : !torch.list<vtensor>, !torch.int -> !torch.vtensor<[4,5,6],f32>
|
||||||
return %0 : !torch.vtensor<[4,5,6],f32>
|
return %0 : !torch.vtensor<[4,5,6],f32>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_scalar_lt
|
||||||
|
func.func @aten_tensor_scalar_lt() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[CST:.+]] = torch.vtensor.literal(dense<true> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[CST]], %[[CST]] : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
%intTensor = torch.vtensor.literal(dense<1> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<1.0> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 2
|
||||||
|
%fpScalar = torch.constant.float 2.0
|
||||||
|
%intBool = torch.aten.lt.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.lt.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_lt
|
||||||
|
func.func @aten_tensor_tensor_lt() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<true> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[true, false, false, false]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.lt.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.lt.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.lt.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_le
|
||||||
|
func.func @aten_tensor_tensor_le() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<true> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[true, true, false, false]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.le.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.le.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.le.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_ge
|
||||||
|
func.func @aten_tensor_tensor_ge() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<false> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[false, true, true, true]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.ge.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.ge.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.ge.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_gt
|
||||||
|
func.func @aten_tensor_tensor_gt() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<false> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[false, false, true, true]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.gt.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.gt.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.gt.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_eq
|
||||||
|
func.func @aten_tensor_tensor_eq() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<false> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[false, true, false, false]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.eq.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.eq.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.eq.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----
|
||||||
|
|
||||||
|
// CHECK-LABEL: @aten_tensor_tensor_ne
|
||||||
|
func.func @aten_tensor_tensor_ne() -> (!torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>) {
|
||||||
|
// CHECK: %[[UNSIGN:.+]] = torch.vtensor.literal(dense<true> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: %[[SIGNED:.+]] = torch.vtensor.literal(dense<[true, false, true, true]> : tensor<4xi1>) : !torch.vtensor<[4],i1>
|
||||||
|
// CHECK: return %[[UNSIGN]], %[[SIGNED]], %[[SIGNED]]
|
||||||
|
%intTensor = torch.vtensor.literal(dense<[127, -128, -127, -126]> : tensor<4xsi8>) : !torch.vtensor<[4],si8>
|
||||||
|
%uintTensor = torch.vtensor.literal(dense<[127, 128, 129, 130]> : tensor<4xui8>) : !torch.vtensor<[4],ui8>
|
||||||
|
%fpTensor = torch.vtensor.literal(dense<[127.0, 128.0, 129.0, 130.0]> : tensor<4xf32>) : !torch.vtensor<[4],f32>
|
||||||
|
%intScalar = torch.constant.int 128
|
||||||
|
%fpScalar = torch.constant.float 128.0
|
||||||
|
%intBool = torch.aten.ne.Scalar %intTensor, %intScalar : !torch.vtensor<[4],si8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%uintBool = torch.aten.ne.Scalar %uintTensor, %intScalar : !torch.vtensor<[4],ui8>, !torch.int -> !torch.vtensor<[4],i1>
|
||||||
|
%fpBool = torch.aten.ne.Scalar %fpTensor, %fpScalar : !torch.vtensor<[4],f32>, !torch.float -> !torch.vtensor<[4],i1>
|
||||||
|
return %intBool, %uintBool, %fpBool : !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>, !torch.vtensor<[4],i1>
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue