2025-09-11 10:56:31 -04:00
|
|
|
/*
|
2026-01-08 14:36:57 -06:00
|
|
|
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
|
|
|
*
|
2025-09-11 10:56:31 -04:00
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
2026-01-08 14:36:57 -06:00
|
|
|
|
2016-02-15 18:11:44 -05:00
|
|
|
#ifndef GET_INFO_H
|
|
|
|
|
#define GET_INFO_H
|
|
|
|
|
|
2016-03-14 18:42:31 -05:00
|
|
|
#include "samples/common/hsa_test.h"
|
2016-02-15 18:11:44 -05:00
|
|
|
|
|
|
|
|
class GetInfo : public HsaTest {
|
|
|
|
|
public:
|
|
|
|
|
GetInfo();
|
|
|
|
|
~GetInfo();
|
|
|
|
|
|
|
|
|
|
void Run() override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // GET_INFO_H
|