xref: /aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/memory_space_assignment_utils.h (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1 /* Copyright 2020 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_MEMORY_SPACE_ASSIGNMENT_UTILS_H_
17 #define TENSORFLOW_COMPILER_XLA_SERVICE_MEMORY_SPACE_ASSIGNMENT_UTILS_H_
18 
19 #include "tensorflow/compiler/xla/service/heap_simulator.h"
20 
21 namespace xla {
22 
23 // Encapsulates common utility methods for memory space assignment.
24 class MemorySpaceAssignmentUtils {
25  public:
26   // Returns true if this buffer is allowed to be placed in the alternate
27   // memory.
28   static bool IsIntervalAllowedInAlternateMemory(
29       const GlobalDecreasingSizeBestFitHeap<HloValue>::BufferInterval&
30           interval);
31 
32   // Returns true if the HloValue is allowed to be placed in alternate memory.
33   static bool IsValueAllowedInAlternateMemory(const HloValue* value);
34 
35   // Modifies the schedules in the given module to hoist (move earlier) constant
36   // operations. This increases the opportunities to prefetch constant ops.
37   static void HoistConstantOperations(HloModule& module);
38 };
39 
40 }  // namespace xla
41 
42 #endif  // TENSORFLOW_COMPILER_XLA_SERVICE_MEMORY_SPACE_ASSIGNMENT_UTILS_H_
43