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
|