From 9332095bbae431d7dfaece8fa3dc812d564db420 Mon Sep 17 00:00:00 2001 From: Jitendra Sharma Date: Thu, 6 May 2021 17:04:18 +0000 Subject: [PATCH] Print PCI address function also in zello_sysman PCI test Signed-off-by: Jitendra Sharma --- level_zero/tools/test/black_box_tests/zello_sysman.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/level_zero/tools/test/black_box_tests/zello_sysman.cpp b/level_zero/tools/test/black_box_tests/zello_sysman.cpp index d0c8bb9b3c..2c271397c8 100644 --- a/level_zero/tools/test/black_box_tests/zello_sysman.cpp +++ b/level_zero/tools/test/black_box_tests/zello_sysman.cpp @@ -245,6 +245,7 @@ void testSysmanPci(ze_device_handle_t &device) { std::cout << "properties.address.domain = " << properties.address.domain << std::endl; std::cout << "properties.address.bus = " << properties.address.bus << std::endl; std::cout << "properties.address.device = " << properties.address.device << std::endl; + std::cout << "properties.address.function = " << properties.address.function << std::endl; std::cout << "properties.maxSpeed.gen = " << properties.maxSpeed.gen << std::endl; std::cout << "properties.maxSpeed.width = " << properties.maxSpeed.width << std::endl; std::cout << "properties.maxSpeed.maxBandwidth = " << properties.maxSpeed.maxBandwidth << std::endl;