2018-10-02 15:08:23 +02:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2018-10-02 15:08:23 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/program/program.h"
|
|
|
|
|
|
2019-12-01 16:13:21 +01:00
|
|
|
#include "compiler_options.h"
|
|
|
|
|
|
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-12-01 16:13:21 +01:00
|
|
|
const std::vector<ConstStringRef> Program::internalOptionsToExtract = {CompilerOptions::gtpinRera,
|
|
|
|
|
CompilerOptions::greaterThan4gbBuffersRequired};
|
2019-11-27 14:56:48 +01:00
|
|
|
|
2019-12-01 16:13:21 +01:00
|
|
|
bool Program::isFlagOption(ConstStringRef option) {
|
2019-11-27 14:56:48 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-01 16:13:21 +01:00
|
|
|
bool Program::isOptionValueValid(ConstStringRef option, ConstStringRef value) {
|
2019-11-27 14:56:48 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}; // namespace NEO
|