xref: /aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/all_reduce_key.h (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1 /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_ALL_REDUCE_KEY_H_
17 #define TENSORFLOW_COMPILER_XLA_SERVICE_ALL_REDUCE_KEY_H_
18 
19 #include <tuple>
20 #include <vector>
21 
22 #include "tensorflow/compiler/xla/service/hlo_domain_map.h"
23 #include "tensorflow/compiler/xla/service/hlo_instruction.h"
24 
25 namespace xla {
26 
27 // Encapsulates all of the properties which must match for two all-reduce
28 // instructions to be compatible with each other (and hence be possible to
29 // combine the instructions).
30 using AllReduceKey =
31     std::tuple<HloOpcode, PrimitiveType,
32                /*domain metadata id*/ int64_t,
33                /*has channel id*/ bool,
34                /*use_global_device_ids*/ bool,
35                /*replica_groups*/ std::vector<std::vector<int64_t>>>;
36 
37 std::optional<AllReduceKey> GetAllReduceKey(
38     const HloInstruction* instruction, const HloDomainMap* domain_map = nullptr,
39     bool ignore_replica_groups = false);
40 
41 }  // namespace xla
42 
43 #endif  // TENSORFLOW_COMPILER_XLA_SERVICE_ALL_REDUCE_KEY_H_
44