mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: Ie67a8ef7b6f010a44b252666e9d9ef48fdeac9e0 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
25 lines
510 B
C++
25 lines
510 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/program/program.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
|
|
const std::vector<std::string> Program::internalOptionsToExtract = {"-cl-intel-gtpin-rera", "-cl-intel-greater-than-4GB-buffer-required"};
|
|
|
|
bool Program::isFlagOption(const std::string &option) {
|
|
return true;
|
|
}
|
|
|
|
bool Program::isOptionValueValid(const std::string &option, const std::string &value) {
|
|
return false;
|
|
}
|
|
|
|
}; // namespace NEO
|