File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 55 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66*/
77
8+ #include <assert.h>
9+ #include <ctype.h>
10+ #include <errno.h>
11+ #include <stdlib.h>
12+ #include <string.h>
13+
14+ #include <umf/memory_pool.h>
15+ #include <umf/memory_pool_ops.h>
16+ #include <umf/memory_provider.h>
17+
18+ #include "base_alloc_global.h"
819#include "pool_disjoint_internal.h"
20+ #include "provider/provider_tracking.h"
21+ #include "uthash/utlist.h"
22+ #include "utils_common.h"
23+ #include "utils_log.h"
24+ #include "utils_math.h"
925
1026// Temporary solution for disabling memory poisoning. This is needed because
1127// AddressSanitizer does not support memory poisoning for GPU allocations.
Original file line number Diff line number Diff line change 88#ifndef UMF_POOL_DISJOINT_INTERNAL_H
99#define UMF_POOL_DISJOINT_INTERNAL_H 1
1010
11- #include <assert.h>
12- #include <ctype.h>
13- #include <errno.h>
14- #include <math.h>
1511#include <stdbool.h>
16- #include <stdlib.h>
17- #include <string.h>
1812
19- #include <umf/memory_pool.h>
20- #include <umf/memory_pool_ops.h>
21- #include <umf/memory_provider.h>
2213#include <umf/pools/pool_disjoint.h>
2314
2415#include "critnib/critnib.h"
25- #include "uthash/utlist.h"
26-
27- #include "base_alloc_global.h"
28- #include "provider/provider_tracking.h"
29- #include "utils_common.h"
3016#include "utils_concurrency.h"
31- #include "utils_log.h"
32- #include "utils_math.h"
3317
3418typedef struct bucket_t bucket_t ;
3519typedef struct slab_t slab_t ;
You can’t perform that action at this time.
0 commit comments