Files
compute-runtime/shared/source/helpers/topology_map.h
Mateusz Hoppe 4d8d2412f9 Add subslice ID remapping for single slice configs
Related-To: NEO-6565

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2022-02-01 16:38:57 +01:00

24 lines
374 B
C++

/*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
#include <unordered_map>
#include <vector>
namespace NEO {
struct TopologyMapping {
std::vector<int> sliceIndices;
std::vector<int> subsliceIndices;
};
using TopologyMap = std::unordered_map<uint32_t, TopologyMapping>;
} // namespace NEO