Skip to content

Commit

Permalink
Disallow unranked complex tensors (#2120)
Browse files Browse the repository at this point in the history
This was missed in #2045.
  • Loading branch information
mlevesquedion authored Mar 22, 2024
1 parent 2c82fb4 commit 7c8815a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stablehlo/dialect/Base.td
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def HLO_NonQuantizedTensor : RankedTensorOf<[HLO_Float, HLO_Pred, HLO_Int, HLO_C

def HLO_TensorOrPerAxisQuantizedTensor : RankedTensorOf<[HLO_Float, HLO_Pred, HLO_Int, HLO_Complex, HLO_QuantizedInt, HLO_PerAxisQuantizedInt]>;

def HLO_ComplexTensor : TensorOf<[HLO_Complex]>;
def HLO_ComplexTensor : RankedTensorOf<[HLO_Complex]>;

def HLO_Tuple : NestedTupleOf<[HLO_Tensor, HLO_PerAxisQuantizedIntTensor, HLO_Token]>;

Expand Down

0 comments on commit 7c8815a

Please sign in to comment.