mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
fix: Dont directly use gtId as TileId
gtId is not same as tileId. instead use gtIdToTileId to retrieve tileId based on gtId. Related-To: NEO-11104 Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
1ce795c265
commit
8f5a0995e0
@@ -133,6 +133,9 @@ class IoctlHelperXe : public IoctlHelper {
|
||||
bool resourceRegistrationEnabled() override { return true; }
|
||||
bool isPreemptionSupported() override { return true; }
|
||||
bool isTimestampsRefreshEnabled() override { return true; }
|
||||
int getTileIdFromGtId(int gtId) const override {
|
||||
return gtIdToTileId[gtId];
|
||||
}
|
||||
|
||||
protected:
|
||||
static constexpr uint32_t maxContextSetProperties = 4;
|
||||
|
||||
Reference in New Issue
Block a user