/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "opencl/source/compiler_interface/compiler_interface.h" #include "opencl/source/helpers/file_io.h" #include "opencl/test/unit_test/helpers/memory_management.h" #include "opencl/test/unit_test/helpers/test_files.h" #include "cl_api_tests.h" using namespace NEO; typedef api_tests ContextTest; namespace ULT { // multiplier of reference ratio that is compared ( checked if less than ) with current result const double multiplier = 1.5000; // ratio results that are not checked be EXPECT ( very short time tests are not chceked due to high fluctuations ) const double ratioThreshold = 0.005; //------------------------------------------------------------------------------ // clCreateContext //------------------------------------------------------------------------------ TEST_F(ContextTest, WhenCreatingContextThenTimeIsLowerThanReference) { double previousRatio = -1.0; uint64_t hash = getHash(__FUNCTION__, strlen(__FUNCTION__)); bool success = getTestRatio(hash, previousRatio); long long times[3] = {0, 0, 0}; for (int i = 0; i < 3; i++) { Timer t; t.start(); auto context = clCreateContext(nullptr, num_devices, devices, nullptr, nullptr, &retVal); t.end(); times[i] = t.get(); ((Context *)context)->release(); } long long time = majorityVote(times[0], times[1], times[2]); double ratio = static_cast(time) / static_cast(refTime); if (success && previousRatio > ratioThreshold) { EXPECT_TRUE(isLowerThanReference(ratio, previousRatio, multiplier)) << "Current: " << ratio << " previous: " << previousRatio << "\n"; } updateTestRatio(hash, ratio); } TEST_F(ContextTest, WhenReleasingContextThenTimeIsLowerThanReference) { double previousRatio = -1.0; uint64_t hash = getHash(__FUNCTION__, strlen(__FUNCTION__)); bool success = getTestRatio(hash, previousRatio); long long times[3] = {0, 0, 0}; cl_context contexts[3]; cl_device_id clDevice = pDevice; for (int i = 0; i < 3; i++) { contexts[i] = Context::create(nullptr, DeviceVector(&clDevice, 1), nullptr, nullptr, retVal); Timer t; t.start(); auto retVal = clReleaseContext(contexts[i]); t.end(); times[i] = t.get(); } long long time = majorityVote(times[0], times[1], times[2]); double ratio = static_cast(time) / static_cast(refTime); if (success && previousRatio > ratioThreshold) { EXPECT_TRUE(isLowerThanReference(ratio, previousRatio, multiplier)) << "Current: " << ratio << " previous: " << previousRatio << "\n"; } updateTestRatio(hash, ratio); } TEST_F(ContextTest, WhenRetainingContextThenTimeIsLowerThanReference) { double previousRatio = -1.0; uint64_t hash = getHash(__FUNCTION__, strlen(__FUNCTION__)); bool success = getTestRatio(hash, previousRatio); long long times[3] = {0, 0, 0}; for (int i = 0; i < 3; i++) { Timer t; t.start(); auto retVal = clRetainContext(pContext); t.end(); times[i] = t.get(); pContext->release(); } long long time = majorityVote(times[0], times[1], times[2]); double ratio = static_cast(time) / static_cast(refTime); if (success && previousRatio > ratioThreshold) { EXPECT_TRUE(isLowerThanReference(ratio, previousRatio, multiplier)) << "Current: " << ratio << " previous: " << previousRatio << "\n"; } updateTestRatio(hash, ratio); } } // namespace ULT