mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
17 lines
248 B
C++
17 lines
248 B
C++
/*
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <unordered_map>
|
|
|
|
namespace NEO {
|
|
|
|
using specConstValuesMap = std::unordered_map<uint32_t, uint64_t>;
|
|
|
|
} // namespace NEO
|