1 /* Copyright 2019 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 #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_GPU_REDUCTION_DIMENSION_GROUPER_H_ 16 #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_REDUCTION_DIMENSION_GROUPER_H_ 17 18 #include <optional> 19 20 #include "tensorflow/compiler/xla/service/hlo_instructions.h" 21 #include "tensorflow/compiler/xla/service/hlo_module.h" 22 #include "tensorflow/compiler/xla/service/hlo_pass_interface.h" 23 24 namespace xla { 25 namespace gpu { 26 27 // Groups adjacent (logically and physically) reduced dimensions in reduction 28 // input. 29 // 30 // Precondition: ReductionLayoutNormalizer has been run (physical proximity and 31 // logical proximity become the same). 32 // 33 // For example, 34 // 35 // f[] out = reduce(f[10,20,30] input, dimensions={0,1,2}) 36 // 37 // becomes: 38 // 39 // f[600] tmp = f[600] bitcast(f[10,20,30] input) 40 // f[] out = reduce(f[600] tmp, dimensions={0}) 41 // 42 class ReductionDimensionGrouper : public HloModulePass { 43 public: name()44 absl::string_view name() const override { 45 return "reduction-dimension-grouper"; 46 } 47 using HloPassInterface::Run; 48 StatusOr<bool> Run( 49 HloModule* module, 50 const absl::flat_hash_set<absl::string_view>& execution_threads) override; 51 }; 52 53 } // namespace gpu 54 } // namespace xla 55 56 #endif // TENSORFLOW_COMPILER_XLA_SERVICE_GPU_REDUCTION_DIMENSION_GROUPER_H_ 57