2b2b8329b5
Signed-off-by: Alysa Liu <Alysa.Liu@amd.com>
22 rader
414 B
C++
22 rader
414 B
C++
/*
|
|
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "common.hpp"
|
|
#include "rocm_async.hpp"
|
|
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include <algorithm>
|
|
#include <unistd.h>
|
|
#include <cctype>
|
|
#include <sstream>
|
|
|
|
void RocmAsync::RunIOBenchmark(async_trans_t& trans) {
|
|
|
|
std::cout << "Unsupported Request - Read / Write" << std::endl;
|
|
exit(1);
|
|
}
|