mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
23 lines
331 B
C
23 lines
331 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2021 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
#include <unordered_map>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
struct TopologyMapping {
|
||
|
|
std::vector<int> sliceIndices;
|
||
|
|
};
|
||
|
|
|
||
|
|
using TopologyMap = std::unordered_map<uint32_t, TopologyMapping>;
|
||
|
|
|
||
|
|
} // namespace NEO
|