File: cache_policy.h

package info (click to toggle)
intel-compute-runtime 25.35.35096.9-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 79,324 kB
  • sloc: cpp: 926,243; lisp: 3,433; sh: 715; makefile: 162; python: 21
file content (48 lines) | stat: -rw-r--r-- 1,106 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (C) 2018-2025 Intel Corporation
 *
 * SPDX-License-Identifier: MIT
 *
 */

#pragma once
#include "neo_igfxfmid.h"

#include <cstddef>
#include <cstdint>

namespace NEO {
class GraphicsAllocation;
class ProductHelper;

bool isL3Capable(const void *ptr, size_t size);
bool isL3Capable(const GraphicsAllocation &graphicsAllocation);

template <PRODUCT_FAMILY gfxProduct>
struct L1CachePolicyHelper {

    static const char *getCachingPolicyOptions(bool isDebuggerActive);

    static uint32_t getDefaultL1CachePolicy(bool isDebuggerActive);

    static uint32_t getUncachedL1CachePolicy();

    static uint32_t getL1CachePolicy(bool isDebuggerActive);
};

struct L1CachePolicy {
    L1CachePolicy() = default;
    L1CachePolicy(const ProductHelper &helper) {
        init(helper);
    }
    void init(const ProductHelper &helper);
    uint32_t getL1CacheValue(bool isDebuggerActive) {
        return isDebuggerActive ? defaultDebuggerActive : defaultDebuggerInactive;
    }

  protected:
    uint32_t defaultDebuggerActive = 0;
    uint32_t defaultDebuggerInactive = 0;
};

} // namespace NEO