mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/file_io.h"
|
|
#include "shared/test/common/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(Context *pContext,
|
|
const ClDeviceVector &deviceVector,
|
|
const std::string &binaryFileName,
|
|
cl_int &retVal,
|
|
const std::string &options = "");
|
|
|
|
void createProgramFromBinary(Context *pContext,
|
|
const ClDeviceVector &deviceVector,
|
|
const std::string &binaryFileName,
|
|
const std::string &options = "");
|
|
|
|
void createProgramWithSource(Context *pContext,
|
|
const std::string &sourceFileName);
|
|
|
|
protected:
|
|
void setUp() {
|
|
}
|
|
|
|
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
|