mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
17 lines
493 B
Plaintext
17 lines
493 B
Plaintext
|
|
/*
|
||
|
|
* Copyright (C) 2024 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
template <>
|
||
|
|
void PreemptionHelper::programCmdStream<GfxFamily>(LinearStream &cmdStream, PreemptionMode newPreemptionMode,
|
||
|
|
PreemptionMode oldPreemptionMode, GraphicsAllocation *preemptionCsr) {
|
||
|
|
}
|
||
|
|
|
||
|
|
template <>
|
||
|
|
size_t PreemptionHelper::getRequiredCmdStreamSize<GfxFamily>(PreemptionMode newPreemptionMode, PreemptionMode oldPreemptionMode) {
|
||
|
|
return 0u;
|
||
|
|
}
|