mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-13 10:14:36 +08:00
- add ult configuration to level zero core tests Change-Id: Ie291395adb607df8c558b924e32ce2cedbce3f93 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
21 lines
445 B
C++
21 lines
445 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/tests_configuration.h"
|
|
|
|
#include "opencl/source/tbx/tbx_sockets_imp.h"
|
|
#include "opencl/test/unit_test/mocks/mock_tbx_sockets.h"
|
|
|
|
namespace NEO {
|
|
TbxSockets *TbxSockets::create() {
|
|
if (testMode == TestMode::AubTestsWithTbx) {
|
|
return new TbxSocketsImp;
|
|
}
|
|
return new MockTbxSockets;
|
|
}
|
|
} // namespace NEO
|