Home
last modified time | relevance | path

Searched refs:ranked_shape (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dtransform_unranked_hlo.cc353 SmallVector<int64_t, 6> ranked_shape(targeted_rank, 1); in createBroadcastToKnownRank() local
361 ranked_shape)); in createBroadcastToKnownRank()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_a_m.cc1339 auto ranked_shape = shape.getType().dyn_cast<RankedTensorType>(); in Verify() local
1340 if (!ranked_shape) continue; in Verify()
1342 if (ranked_shape.getRank() != 1) in Verify()
1345 << ranked_shape.getRank(); in Verify()
1347 if (!ranked_shape.hasStaticShape()) continue; in Verify()
1349 int64_t ranked_shape_dim = ranked_shape.getDimSize(0); in Verify()