aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_module.h')
-rw-r--r--tensorflow/compiler/xla/service/hlo_module.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_module.h b/tensorflow/compiler/xla/service/hlo_module.h
index 735804e827..9b9dc3ba9f 100644
--- a/tensorflow/compiler/xla/service/hlo_module.h
+++ b/tensorflow/compiler/xla/service/hlo_module.h
@@ -31,6 +31,7 @@ limitations under the License.
#include "tensorflow/compiler/xla/service/hlo.pb.h"
#include "tensorflow/compiler/xla/service/hlo_clone_context.h"
#include "tensorflow/compiler/xla/service/hlo_computation.h"
+#include "tensorflow/compiler/xla/service/hlo_input_output_alias_config.h"
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
#include "tensorflow/compiler/xla/service/hlo_module_config.h"
#include "tensorflow/compiler/xla/service/hlo_schedule.h"
@@ -212,6 +213,15 @@ class HloModule {
return result;
}
+ // input_output_alias_config indicates the list of aliased buffers that are
+ // expected from the module.
+ HloInputOutputAliasConfig& input_output_alias_config() {
+ return input_output_alias_config_;
+ }
+ const HloInputOutputAliasConfig& input_output_alias_config() const {
+ return input_output_alias_config_;
+ }
+
// Returns the number of unique intruction ids given out. All ids up to
// this point are guaranteed to be in the range [0..NumUniqueInstructionIds())
int NumUniqueInstructionIds() const { return next_unique_id_; }
@@ -284,6 +294,10 @@ class HloModule {
// sequential order of instructions for each non-fusion computation in the
// module.
absl::optional<HloSchedule> schedule_;
+
+ // alias_config indicates the alias information of input/output buffers that
+ // are expected from the module.
+ HloInputOutputAliasConfig input_output_alias_config_;
};
} // namespace xla