mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-21 18:43:02 +08:00
- Move logic from product helper to compiler product helper - Add method for adjusting fp16 and extra capabilities using release helper (if present). Signed-off-by: Kacper Nowak <kacper.nowak@intel.com>
15 lines
286 B
C++
15 lines
286 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "CL/cl.h"
|
|
|
|
namespace NEO {
|
|
class ReleaseHelper;
|
|
void verifyAnyRemainingOpenclCFeatures(const ReleaseHelper *releaseHelper, const cl_name_version *&iterator);
|
|
}; // namespace NEO
|