[MLIR:HLO] Rename LMHLO Infeed and Outfeed to InfeedOp and OutfeedOp.
- To be consistent with other operation names. PiperOrigin-RevId: 348824379
This commit is contained in:
parent
8252eafa99
commit
bd8e768e23
|
@ -575,14 +575,14 @@ def LHLO_CholeskyOp: LHLO_Op<"cholesky", [SameOperandsElementType]>, BASE_HLO_Ch
|
|||
);
|
||||
}
|
||||
|
||||
def LHLO_Infeed: LHLO_Op<"infeed", []>, BASE_HLO_InfeedOp {
|
||||
def LHLO_InfeedOp: LHLO_Op<"infeed", []>, BASE_HLO_InfeedOp {
|
||||
let arguments = (ins
|
||||
Arg<LHLO_Buffer, "", [MemWrite]>:$output,
|
||||
DefaultValuedAttr<StrAttr, "">:$config
|
||||
);
|
||||
}
|
||||
|
||||
def LHLO_Outfeed: LHLO_Op<"outfeed", []> {
|
||||
def LHLO_OutfeedOp: LHLO_Op<"outfeed", []> {
|
||||
let arguments = (ins
|
||||
Arg<LHLO_Buffer, "", [MemRead]>:$operand,
|
||||
DefaultValuedAttr<StrAttr, "">:$config
|
||||
|
|
Loading…
Reference in New Issue