mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-12 00:59:38 +08:00
- address_patch.h - options.h - registered_method_dispatcher.h - grf_config.h Rename OCL_RUNTIME_PROFILING -> KMD_PROFILING Related-To: NEO-3982 Change-Id: I06cf72729e9d7d7d2ff0bd169fcbada00c4b509a Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
30 lines
873 B
C++
30 lines
873 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/kmd_notify_properties.h"
|
|
#include "core/helpers/options.h"
|
|
#include "test.h"
|
|
|
|
namespace NEO {
|
|
|
|
class MockKmdNotifyHelper : public KmdNotifyHelper {
|
|
public:
|
|
using KmdNotifyHelper::getBaseTimeout;
|
|
|
|
MockKmdNotifyHelper(const KmdNotifyProperties *newProperties) : KmdNotifyHelper(newProperties){};
|
|
};
|
|
|
|
TEST(KmdNotifyLinuxTests, givenTaskCountDiffGreaterThanOneWhenBaseTimeoutRequestedThenMultiply) {
|
|
auto localProperties = (platformDevices[0]->capabilityTable.kmdNotifyProperties);
|
|
localProperties.delayKmdNotifyMicroseconds = 10;
|
|
const int64_t multiplier = 10;
|
|
|
|
MockKmdNotifyHelper helper(&localProperties);
|
|
EXPECT_EQ(localProperties.delayKmdNotifyMicroseconds * multiplier, helper.getBaseTimeout(multiplier));
|
|
}
|
|
} // namespace NEO
|