HLO Random operations should match shape constraints.
PiperOrigin-RevId: 323844002
This commit is contained in:
parent
1b0eb4baa7
commit
de5ddaf7c9
|
@ -1324,7 +1324,7 @@ def HLO_RngUniformOp : HLO_Op<"rng_uniform", []>, BASE_HLO_RngUniformOp {
|
||||||
let arguments = (ins
|
let arguments = (ins
|
||||||
HLO_PredIntOrFpTensor:$a,
|
HLO_PredIntOrFpTensor:$a,
|
||||||
HLO_PredIntOrFpTensor:$b,
|
HLO_PredIntOrFpTensor:$b,
|
||||||
I64Tensor:$shape
|
HLO_DimensionTensor:$shape
|
||||||
);
|
);
|
||||||
|
|
||||||
let results = (outs HLO_PredIntOrFpTensor);
|
let results = (outs HLO_PredIntOrFpTensor);
|
||||||
|
@ -1336,7 +1336,7 @@ def HLO_RngNormalOp : HLO_Op<"rng_normal", []>, BASE_HLO_RngNormalOp {
|
||||||
let arguments = (ins
|
let arguments = (ins
|
||||||
HLO_FpTensor:$mu,
|
HLO_FpTensor:$mu,
|
||||||
HLO_FpTensor:$sigma,
|
HLO_FpTensor:$sigma,
|
||||||
I64Tensor:$shape
|
HLO_DimensionTensor:$shape
|
||||||
);
|
);
|
||||||
|
|
||||||
let results = (outs HLO_FpTensor);
|
let results = (outs HLO_FpTensor);
|
||||||
|
|
Loading…
Reference in New Issue