8b529e7b29
In order for pre-commit to be useful, everything needs to meet a common baseline. Signed-off-by: Mario Limonciello (AMD) <superm1@kernel.org>
21 líneas
303 B
C++
21 líneas
303 B
C++
/*
|
|
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef GET_INFO_H
|
|
#define GET_INFO_H
|
|
|
|
#include "samples/common/hsa_test.h"
|
|
|
|
class GetInfo : public HsaTest {
|
|
public:
|
|
GetInfo();
|
|
~GetInfo();
|
|
|
|
void Run() override;
|
|
};
|
|
|
|
#endif // GET_INFO_H
|