/* * ============================================================================= * ROC Runtime Conformance Release License * ============================================================================= * The University of Illinois/NCSA * Open Source License (NCSA) * * Copyright (c) 2022, Advanced Micro Devices, Inc. * All rights reserved. * * Developed by: * * AMD Research and AMD ROC Software Development * * Advanced Micro Devices, Inc. * * www.amd.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal with the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimers. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimers in * the documentation and/or other materials provided with the distribution. * - Neither the names of , * nor the names of its contributors may be used to endorse or promote * products derived from this Software without specific prior written * permission. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS WITH THE SOFTWARE. * */ #include #include #include #include #include #include "amd_smi/amdsmi.h" #include "api_support_read.h" #include "../test_common.h" #include "../test_utils.h" TestAPISupportRead::TestAPISupportRead() : TestBase() { set_title("AMDSMI API Support Read Test"); set_description("This test verifies that the supported APIs are corretly " "identified."); } TestAPISupportRead::~TestAPISupportRead(void) { } void TestAPISupportRead::SetUp(void) { TestBase::SetUp(); return; } void TestAPISupportRead::DisplayTestInfo(void) { TestBase::DisplayTestInfo(); } void TestAPISupportRead::DisplayResults(void) const { TestBase::DisplayResults(); return; } void TestAPISupportRead::Close() { // This will close handles opened within amdsmitst utility calls and call // amdsmi_shut_down(), so it should be done after other hsa cleanup TestBase::Close(); } void TestAPISupportRead::Run(void) { amdsmi_status_t err; TestBase::Run(); if (setup_failed_) { IF_VERB(STANDARD) { std::cout << "** SetUp Failed for this test. Skipping.**" << std::endl; } return; } amdsmi_func_id_iter_handle_t iter_handle, var_iter, sub_var_iter; amdsmi_func_id_value_t value; for (uint32_t x = 0; x < num_iterations(); ++x) { for (uint32_t i = 0; i < num_monitor_devs(); ++i) { IF_VERB(STANDARD) { PrintDeviceHeader(device_handles_[i]); std::cout << "Supported AMDSMI Functions:" << std::endl; std::cout << "\tVariants (Monitors)" << std::endl; } err = amdsmi_dev_open_supported_func_iterator(device_handles_[i], &iter_handle); CHK_ERR_ASRT(err) while (1) { err = amdsmi_get_func_iter_value(iter_handle, &value); CHK_ERR_ASRT(err) IF_VERB(STANDARD) { std::cout << "Function Name: " << value.name << std::endl; } err = amdsmi_dev_open_supported_variant_iterator(iter_handle, &var_iter); if (err != AMDSMI_STATUS_NO_DATA) { CHK_ERR_ASRT(err) IF_VERB(STANDARD) { std::cout << "\tVariants/Monitors: "; } while (1) { err = amdsmi_get_func_iter_value(var_iter, &value); CHK_ERR_ASRT(err) IF_VERB(STANDARD) { if (value.id == AMDSMI_DEFAULT_VARIANT) { std::cout << "Default Variant "; } else { std::cout << value.id; } std::cout << " ("; } err = amdsmi_dev_open_supported_variant_iterator(var_iter, &sub_var_iter); if (err != AMDSMI_STATUS_NO_DATA) { CHK_ERR_ASRT(err) while (1) { err = amdsmi_get_func_iter_value(sub_var_iter, &value); CHK_ERR_ASRT(err) IF_VERB(STANDARD) { std::cout << value.id << ", "; } err = amdsmi_next_func_iter(sub_var_iter); if (err == AMDSMI_STATUS_NO_DATA) { break; } CHK_ERR_ASRT(err) } err = amdsmi_dev_close_supported_func_iterator(&sub_var_iter); CHK_ERR_ASRT(err) } IF_VERB(STANDARD) { std::cout << "), "; } err = amdsmi_next_func_iter(var_iter); if (err == AMDSMI_STATUS_NO_DATA) { break; } CHK_ERR_ASRT(err) } IF_VERB(STANDARD) { std::cout << std::endl; } err = amdsmi_dev_close_supported_func_iterator(&var_iter); CHK_ERR_ASRT(err) } err = amdsmi_next_func_iter(iter_handle); if (err == AMDSMI_STATUS_NO_DATA) { break; } CHK_ERR_ASRT(err) // err = amdsmi_dev_open_supported_variant_iterator(iter_handle, &var_iter); // } err = amdsmi_dev_close_supported_func_iterator(&iter_handle); CHK_ERR_ASRT(err) } } }