mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: Ib32164cad623da46c5424feca74a140b39eb9a2c Related-To: NEO-3314 Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
15 lines
306 B
C++
15 lines
306 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"};
|
|
};
|