aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_instruction.h')
-rw-r--r--tensorflow/compiler/xla/service/hlo_instruction.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_instruction.h b/tensorflow/compiler/xla/service/hlo_instruction.h
index 374862c4b6..44f776ebac 100644
--- a/tensorflow/compiler/xla/service/hlo_instruction.h
+++ b/tensorflow/compiler/xla/service/hlo_instruction.h
@@ -734,6 +734,16 @@ class HloInstruction {
const Shape& shape, absl::Span<HloInstruction* const> operands,
absl::string_view custom_call_target, absl::string_view opaque = "");
+ // Overload which constrains the layouts of the operand and result. 'shape'
+ // and 'operand_shapes_with_layout' must have layouts.
+ // 'operand_shapes_with_layout' must have a compatible element for each
+ // operand.
+ static std::unique_ptr<HloInstruction> CreateCustomCall(
+ const Shape& shape, absl::Span<HloInstruction* const> operands,
+ absl::string_view custom_call_target,
+ absl::Span<const Shape> operand_shapes_with_layout,
+ absl::string_view opaque = "");
+
// Creates a tuple instruction with the given elements. This is a convenience
// wrapper around CreateVariadic.
static std::unique_ptr<HloInstruction> CreateTuple(