/* * Copyright (c) 2017, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "cl_api_tests.h" #include "runtime/helpers/base_object.h" #include "runtime/compiler_interface/compiler_interface.h" #include "runtime/context/context.h" #include "runtime/device/device.h" #include "runtime/helpers/file_io.h" #include "runtime/helpers/hw_info.h" #include "runtime/helpers/options.h" #include "runtime/program/program.h" #include "unit_tests/helpers/kernel_binary_helper.h" #include "unit_tests/helpers/test_files.h" #include "unit_tests/helpers/memory_management.h" using namespace OCLRT; typedef api_tests clBuildProgramTests; namespace ULT { TEST_F(clBuildProgramTests, FromSourceBasic) { cl_program pProgram = nullptr; void *pSource = nullptr; size_t sourceSize = 0; std::string testFile; KernelBinaryHelper kbHelper("CopyBuffer_simd8", false); testFile.append(clFiles); testFile.append("CopyBuffer_simd8.cl"); sourceSize = loadDataFromFile( testFile.c_str(), pSource); ASSERT_NE(0u, sourceSize); ASSERT_NE(nullptr, pSource); pProgram = clCreateProgramWithSource( pContext, 1, (const char **)&pSource, &sourceSize, &retVal); EXPECT_NE(nullptr, pProgram); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clBuildProgram( pProgram, num_devices, devices, nullptr, nullptr, nullptr); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clReleaseProgram(pProgram); EXPECT_EQ(CL_SUCCESS, retVal); deleteDataReadFromFile(pSource); CompilerInterface::shutdown(); pProgram = clCreateProgramWithSource( nullptr, 1, (const char **)&pSource, &sourceSize, nullptr); EXPECT_EQ(nullptr, pProgram); } TEST_F(clBuildProgramTests, FromBinaryBasic) { cl_program pProgram = nullptr; cl_int binaryStatus = CL_SUCCESS; void *pBinary = nullptr; size_t binarySize = 0; std::string testFile(testFiles); testFile.append("CopyBuffer_simd8_"); testFile.append(hardwarePrefix[platformDevices[0]->pPlatform->eProductFamily]); testFile.append(".bin"); binarySize = loadDataFromFile( testFile.c_str(), pBinary); ASSERT_NE(0u, binarySize); ASSERT_NE(nullptr, pBinary); pProgram = clCreateProgramWithBinary( pContext, num_devices, devices, &binarySize, (const unsigned char **)&pBinary, &binaryStatus, &retVal); deleteDataReadFromFile(pBinary); EXPECT_NE(nullptr, pProgram); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clBuildProgram( pProgram, num_devices, devices, nullptr, nullptr, nullptr); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clReleaseProgram(pProgram); EXPECT_EQ(CL_SUCCESS, retVal); CompilerInterface::shutdown(); } TEST_F(clBuildProgramTests, GivenProgramCreatedFromBinaryWhenBuildProgramWithOptionsIsCalledThenStoredOptionsAreUsed) { cl_program pProgram = nullptr; cl_int binaryStatus = CL_SUCCESS; void *pBinary = nullptr; size_t binarySize = 0; std::string testFile(testFiles); testFile.append("CopyBuffer_simd8_"); testFile.append(hardwarePrefix[platformDevices[0]->pPlatform->eProductFamily]); testFile.append(".bin"); binarySize = loadDataFromFile( testFile.c_str(), pBinary); ASSERT_NE(0u, binarySize); ASSERT_NE(nullptr, pBinary); pProgram = clCreateProgramWithBinary( pContext, num_devices, devices, &binarySize, (const unsigned char **)&pBinary, &binaryStatus, &retVal); auto pInternalProgram = castToObject(pProgram); deleteDataReadFromFile(pBinary); auto storedOptionsSize = pInternalProgram->getOptions().size(); EXPECT_NE(nullptr, pProgram); ASSERT_EQ(CL_SUCCESS, retVal); const char *newBuildOption = "cl-fast-relaxed-math"; retVal = clBuildProgram( pProgram, num_devices, devices, newBuildOption, nullptr, nullptr); ASSERT_EQ(CL_SUCCESS, retVal); auto optionsAfterBuildSize = pInternalProgram->getOptions().size(); EXPECT_EQ(optionsAfterBuildSize, storedOptionsSize); retVal = clReleaseProgram(pProgram); EXPECT_EQ(CL_SUCCESS, retVal); CompilerInterface::shutdown(); } TEST_F(clBuildProgramTests, FromBinarySpir) { cl_program pProgram = nullptr; cl_int binaryStatus = CL_SUCCESS; void *pBinary = nullptr; size_t binarySize = 0; KernelBinaryHelper kbHeler("CopyBuffer_simd8", false); std::string testFile(testFiles); testFile.append("CopyBuffer_simd8_"); testFile.append(hardwarePrefix[platformDevices[0]->pPlatform->eProductFamily]); testFile.append(".bc"); binarySize = loadDataFromFile( testFile.c_str(), pBinary); ASSERT_NE(0u, binarySize); ASSERT_NE(nullptr, pBinary); pProgram = clCreateProgramWithBinary( pContext, num_devices, devices, &binarySize, (const unsigned char **)&pBinary, &binaryStatus, &retVal); deleteDataReadFromFile(pBinary); EXPECT_NE(nullptr, pProgram); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clBuildProgram( pProgram, num_devices, devices, "-x spir -spir-std=1.2", nullptr, nullptr); ASSERT_EQ(CL_SUCCESS, retVal); retVal = clReleaseProgram(pProgram); EXPECT_EQ(CL_SUCCESS, retVal); CompilerInterface::shutdown(); } TEST_F(clBuildProgramTests, NullProgramReturnsError) { retVal = clBuildProgram( nullptr, 1, nullptr, nullptr, nullptr, nullptr); EXPECT_EQ(CL_INVALID_PROGRAM, retVal); } } // namespace ULT