mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 20:12:03 +08:00
This decoupling is needed to move makeResidentResidencyAllocations into WddmResidencyController, where we have only contextId, not the context itself Change-Id: I0d79f1dc7a51fa6b1d713deb6e9003aa2b7be1d4 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
23 lines
561 B
C++
23 lines
561 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/memory_manager/residency.h"
|
|
#include "runtime/os_interface/os_context.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
void ResidencyData::updateCompletionData(uint64_t newFenceValue, uint32_t contextId) {
|
|
if (contextId + 1 > lastFenceValues.size()) {
|
|
lastFenceValues.resize(contextId + 1);
|
|
}
|
|
lastFenceValues[contextId] = newFenceValue;
|
|
}
|
|
|
|
uint64_t ResidencyData::getFenceValueForContextId(uint32_t contextId) {
|
|
return lastFenceValues[contextId];
|
|
}
|