mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
- move some files to core - remove unnecessary includes Related-To: NEO-4175 Change-Id: Ib33dff644452c7cfd6fda7e9bb4b68cd6eb3a61c Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
18 lines
413 B
C++
18 lines
413 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/command_stream/csr_definitions.h"
|
|
#include "core/helpers/hw_cmds.h"
|
|
|
|
namespace NEO {
|
|
template <typename GfxFamily>
|
|
struct StateComputeModeHelper {
|
|
static bool isStateComputeModeRequired(CsrSizeRequestFlags &csrSizeRequestFlags, bool isThreadArbitionPolicyProgrammed);
|
|
};
|
|
} // namespace NEO
|