mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Related-To: NEO-4447 Change-Id: I6bf3d7edd9d8085c37995b75989b8d412a17bdd9 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
18 lines
437 B
C++
18 lines
437 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_stream/csr_definitions.h"
|
|
#include "shared/source/helpers/hw_cmds.h"
|
|
|
|
namespace NEO {
|
|
template <typename GfxFamily>
|
|
struct StateComputeModeHelper {
|
|
static bool isStateComputeModeRequired(const CsrSizeRequestFlags &csrSizeRequestFlags, bool isThreadArbitionPolicyProgrammed);
|
|
};
|
|
} // namespace NEO
|