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_LAYOUT_NORMALIZER_H_ 16 #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_REDUCTION_LAYOUT_NORMALIZER_H_ 17 18 #include "absl/types/optional.h" 19 #include "tensorflow/compiler/xla/service/hlo_instructions.h" 20 #include "tensorflow/compiler/xla/service/hlo_module.h" 21 #include "tensorflow/compiler/xla/service/hlo_pass_interface.h" 22 23 namespace xla { 24 namespace gpu { 25 26 // Enforces default (minor-to-major) layout on all reduction inputs. 27 // Note that since reduction output can request a custom layout, 28 // this pass only guarantees standard layout for the input. 29 // 30 // For example, 31 // 32 // f[20,30]{0,1} out = reduce(f[10,20,30]{2,0,1} input, dimensions={0}) 33 // 34 // becomes: 35 // 36 // f[20,10,30] tmp = f[20,10,30] bitcast(f[10,20,30]{2,0,1} input) 37 // f[20,30]{0,1} out = reduce(f[20,10,30]{2,1,0} tmp, dimensions={1}) 38 class ReductionLayoutNormalizer : public HloModulePass { 39 public: name()40 absl::string_view name() const override { 41 return "reduction-layout-normalizer"; 42 } 43 44 StatusOr<bool> Run(HloModule* module) override; 45 }; 46 47 } // namespace gpu 48 } // namespace xla 49 50 #endif // TENSORFLOW_COMPILER_XLA_SERVICE_GPU_REDUCTION_LAYOUT_NORMALIZER_H_ 51