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