mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
Change-Id: I4d1f9e64e0f4099e7903234e62b070ad4235347a Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
18 lines
417 B
C++
18 lines
417 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_stream/csr_definitions.h"
|
|
#include "runtime/gen_common/hw_cmds.h"
|
|
|
|
namespace NEO {
|
|
template <typename GfxFamily>
|
|
struct StateComputeModeHelper {
|
|
static bool isStateComputeModeRequired(CsrSizeRequestFlags &csrSizeRequestFlags, bool isThreadArbitionPolicyProgrammed);
|
|
};
|
|
} // namespace NEO
|