Files
compute-runtime/shared/source/helpers/api_specific_config.h
Milczarek, Slawomir e5237c2368 Enable stateless compression on xehp
Related-To: NEO-5107

Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
2021-08-03 16:01:44 +02:00

19 lines
438 B
C++

/*
* Copyright (C) 2020-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
struct ApiSpecificConfig {
enum ApiType { OCL,
L0 };
static bool isStatelessCompressionSupported();
static bool getHeapConfiguration();
static bool getBindlessConfiguration();
static ApiType getApiType();
static const char *getAubPrefixForSpecificApi();
};
} // namespace NEO