2018-10-02 15:08:23 +02:00
|
|
|
/*
|
2019-02-27 11:39:32 +01:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2018-10-02 15:08:23 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "runtime/program/program.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2018-10-02 15:08:23 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-11-27 14:56:48 +01:00
|
|
|
|
2019-07-19 11:51:00 +02:00
|
|
|
const std::vector<std::string> Program::internalOptionsToExtract = {"-cl-intel-gtpin-rera", "-cl-intel-greater-than-4GB-buffer-required"};
|
2019-11-27 14:56:48 +01:00
|
|
|
|
|
|
|
|
bool Program::isFlagOption(const std::string &option) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Program::isOptionValueValid(const std::string &option, const std::string &value) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}; // namespace NEO
|