Files
rocm-systems/projects/rocr-runtime/rocrtst/samples/rocm_async/base_test.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
296 B
C++
Raw Normal View History

2025-09-11 10:56:31 -04:00
/*
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
*
* SPDX-License-Identifier: MIT
*/
#include "base_test.hpp"
// Default Constructor
BaseTest::BaseTest(size_t num) {
// Set the numIteration_ to be 10 by default
num_iteration_ = num;
}
BaseTest::~BaseTest() {}