2021-07-05 14:52:03 +00:00
|
|
|
/*
|
2024-05-14 16:26:05 +00:00
|
|
|
* Copyright (C) 2021-2024 Intel Corporation
|
2021-07-05 14:52:03 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "shared/source/aub/aub_helper.h"
|
2021-12-07 11:22:25 +00:00
|
|
|
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
|
2021-07-05 14:52:03 +00:00
|
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
|
|
|
|
2022-11-23 09:14:27 +00:00
|
|
|
#include "aubstream/aubstream.h"
|
2021-07-05 14:52:03 +00:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
void AubHelper::setTbxConfiguration() {
|
2024-05-14 16:26:05 +00:00
|
|
|
aub_stream::setTbxServerIpLegacy(debugManager.flags.TbxServer.get());
|
2023-11-30 08:32:25 +00:00
|
|
|
aub_stream::setTbxServerPort(debugManager.flags.TbxPort.get());
|
|
|
|
|
aub_stream::setTbxFrontdoorMode(debugManager.flags.TbxFrontdoorMode.get());
|
2021-07-05 14:52:03 +00:00
|
|
|
}
|
|
|
|
|
} // namespace NEO
|