blob: 661644a9195fcb22ab516363be8a7fdc2cd5020c [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
2#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Tim Hall79d07d22020-04-27 18:20:16 +010016# Description:
17# Allocate tensor addresses using a greedy algorithm.
Tim Hall79d07d22020-04-27 18:20:16 +010018from . import numeric_util
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020019from .errors import AllocationError
Tim Hall79d07d22020-04-27 18:20:16 +010020
21
22class GreedyAllocator:
23 def __init__(self, nng, arch, live_ranges, mem_area):
24 self.nng = nng
25 self.arch = arch
26 self.mem_area = mem_area
27
28 self.live_ranges = live_ranges
29 self.memory_required = 0
30
31 self.current_allocs = []
32
33 def alloc(self, new_lr):
34 size = new_lr.size
35 current_top = 0
36 if self.current_allocs:
37 current_top = max(start_addr + lr.size for start_addr, lr in self.current_allocs)
38 best_offset = numeric_util.round_up(current_top, new_lr.get_alignment())
39 best_offset_fit = (1 << 64) - 1
40
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020041 aligned_size = numeric_util.round_up(size, new_lr.get_alignment())
Tim Hall79d07d22020-04-27 18:20:16 +010042 current_offset = 0
43 for start_addr, lr in self.current_allocs:
44 aligned_current_offset = numeric_util.round_up(current_offset, new_lr.get_alignment())
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020045 if aligned_current_offset + aligned_size <= start_addr and start_addr - current_offset < best_offset_fit:
Tim Hall79d07d22020-04-27 18:20:16 +010046 best_offset = current_offset
47 best_offset_fit = start_addr - current_offset
48
49 current_offset = start_addr + lr.size
50
Charles Xu5b3dcd72020-05-28 07:20:52 +020051 best_offset = new_lr.set_address(best_offset)
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020052 self.memory_required = max(self.memory_required, best_offset + aligned_size)
Tim Hall79d07d22020-04-27 18:20:16 +010053 self.current_allocs.append((best_offset, new_lr))
54 self.current_allocs = list(sorted(self.current_allocs))
55
56 def dealloc(self, lr_to_dealloc):
57 self.current_allocs = [(start_addr, lr) for start_addr, lr in self.current_allocs if lr != lr_to_dealloc]
58
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020059 def allocate_live_ranges(self, verbose_allocation, alignment):
Tim Hall79d07d22020-04-27 18:20:16 +010060 lrs = set()
61 for lr in self.live_ranges.ranges.values():
62 lrs.add((lr.start_time, lr.end_time, lr))
63
64 lrs = sorted(lrs)
65
66 for curr_time, _, new_lr in lrs:
67 for _, lr in list(self.current_allocs):
68 if lr.end_time < curr_time:
69 self.dealloc(lr)
70
71 self.alloc(new_lr)
72
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020073 self.verify_allocation(alignment)
Tim Hall79d07d22020-04-27 18:20:16 +010074 return self.memory_required
75
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020076 def verify_allocation(self, alignment):
Tim Hall79d07d22020-04-27 18:20:16 +010077 lrs = list(self.live_ranges.ranges.values())
78 for n in lrs:
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020079 for tens in n.tensors:
80 if not all(op and op.run_on_npu for op in tens.ops + tens.consumer_list):
81 # This is a CPU tensor, verify alignment
82 if tens.address % alignment != 0:
83 raise AllocationError("Tensor {} not aligned to {} bytes".format(tens.name, alignment))
84
Tim Hall79d07d22020-04-27 18:20:16 +010085 for m in lrs:
86 if n != m and n.overlaps_ranges(m):
87 overlap, tens_n, tens_m = n.overlaps_address(m)
Louis Verhaard0b8268a2020-08-05 16:11:29 +020088 if overlap and not (tens_n.equivalent(tens_m) and tens_n.address == tens_m.address):
Jacob Bohlin0628a8c2020-08-28 13:25:14 +020089 raise AllocationError(
90 "Overlapping buffers: {}: {} -> {} and {}: {} -> {}".format(
91 n.name,
92 tens_n.address,
93 tens_n.address + n.size,
94 m.name,
95 tens_m.address,
96 tens_m.address + m.size,
97 )
98 )
Tim Hall79d07d22020-04-27 18:20:16 +010099
100
Jacob Bohlin0628a8c2020-08-28 13:25:14 +0200101def allocate_live_ranges(nng, arch, live_ranges, mem_area, alignment, verbose_allocation=False):
Tim Hall79d07d22020-04-27 18:20:16 +0100102 g = GreedyAllocator(nng, arch, live_ranges, mem_area)
Jacob Bohlin0628a8c2020-08-28 13:25:14 +0200103 return g.allocate_live_ranges(verbose_allocation, alignment)