mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 03:01:20 +08:00
14 lines
261 B
C++
14 lines
261 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "runtime/program/program.h"
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
namespace OCLRT {
|
||
|
|
const std::vector<std::string> Program::internalOptionsToExtract = {"-cl-intel-gtpin-rera"};
|
||
|
|
};
|