L0 Device slice id mapping

Related-To: NEO-5640


Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2021-07-06 14:26:44 +00:00
committed by Compute-Runtime-Automation
parent 9166f9223a
commit bbb27cdb8a
8 changed files with 555 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
/*
* 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