mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 07:08:04 +08:00
RelatedTo: NEO-4515 Change-Id: I1f719ea1f60f313fba44d49f84fe2caf6ea4e5c4 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/file_io.h"
|
|
#include "shared/test/unit_test/helpers/test_files.h"
|
|
|
|
#include "opencl/source/program/program.h"
|
|
#include "opencl/test/unit_test/mocks/mock_program.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace NEO {
|
|
|
|
class ProgramFixture {
|
|
public:
|
|
void CreateProgramFromBinary(cl_context context,
|
|
cl_device_id *pDeviceList,
|
|
const std::string &binaryFileName,
|
|
cl_int &retVal,
|
|
const std::string &options = "");
|
|
|
|
void CreateProgramFromBinary(cl_context pContext,
|
|
cl_device_id *pDeviceList,
|
|
const std::string &binaryFileName,
|
|
const std::string &options = "");
|
|
|
|
void CreateProgramWithSource(cl_context pContext,
|
|
cl_device_id *pDeviceList,
|
|
const std::string &sourceFileName);
|
|
|
|
protected:
|
|
virtual void SetUp() {
|
|
}
|
|
|
|
virtual void TearDown() {
|
|
Cleanup();
|
|
}
|
|
|
|
void Cleanup() {
|
|
if (pProgram != nullptr) {
|
|
pProgram->release();
|
|
}
|
|
knownSource.reset();
|
|
}
|
|
|
|
MockProgram *pProgram = nullptr;
|
|
std::unique_ptr<char[]> knownSource;
|
|
size_t knownSourceSize = 0u;
|
|
};
|
|
} // namespace NEO
|