2020-02-06 16:21:40 -06:00
|
|
|
/*
|
2021-07-02 11:19:03 -07:00
|
|
|
Copyright (c) 2015 - 2021 Advanced Micro Devices, Inc. All rights reserved.
|
2020-02-06 16:21:40 -06:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANNTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INNCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANNY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER INN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
OUT OF OR INN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* HIT_START
|
2021-08-10 10:16:04 +05:30
|
|
|
* BUILD: %t %s ../../test_common.cpp NVCC_OPTIONS -std=c++11 EXCLUDE_HIP_PLATFORM nvidia
|
2020-02-06 16:21:40 -06:00
|
|
|
* TEST: %t
|
|
|
|
|
* HIT_END
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "hip/hip_runtime.h"
|
|
|
|
|
#include "hip/hip_runtime_api.h"
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <thread>
|
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
|
|
#include "test_common.h"
|
|
|
|
|
|
|
|
|
|
#define LEN 64
|
|
|
|
|
#define SIZE LEN << 2
|
2020-04-30 03:34:07 -04:00
|
|
|
#define THREADS 8
|
|
|
|
|
#define MAX_THREADS 512
|
2020-02-06 16:21:40 -06:00
|
|
|
|
|
|
|
|
#define FILENAME "vcpy_kernel.code"
|
|
|
|
|
#define kernel_name "hello_world"
|
|
|
|
|
|
2020-04-30 03:34:07 -04:00
|
|
|
std::vector<char> load_file() {
|
|
|
|
|
std::ifstream file(FILENAME, std::ios::binary | std::ios::ate);
|
|
|
|
|
std::streamsize fsize = file.tellg();
|
|
|
|
|
file.seekg(0, std::ios::beg);
|
|
|
|
|
|
|
|
|
|
std::vector<char> buffer(fsize);
|
|
|
|
|
if (!file.read(buffer.data(), fsize)) {
|
|
|
|
|
failed("could not open code object '%s'\n", FILENAME);
|
|
|
|
|
}
|
|
|
|
|
return buffer;
|
2020-02-10 15:52:34 -06:00
|
|
|
}
|
|
|
|
|
|
2020-02-13 16:34:05 +05:30
|
|
|
void run(const std::vector<char>& buffer) {
|
2020-04-30 03:34:07 -04:00
|
|
|
hipModule_t Module;
|
|
|
|
|
hipFunction_t Function;
|
|
|
|
|
|
|
|
|
|
float *A, *B, *Ad, *Bd;
|
|
|
|
|
A = new float[LEN];
|
|
|
|
|
B = new float[LEN];
|
|
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < LEN; i++) {
|
|
|
|
|
A[i] = i * 1.0f;
|
|
|
|
|
B[i] = 0.0f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HIPCHECK(hipMalloc((void**)&Ad, SIZE));
|
|
|
|
|
HIPCHECK(hipMalloc((void**)&Bd, SIZE));
|
|
|
|
|
|
|
|
|
|
HIPCHECK(hipMemcpy(Ad, A, SIZE, hipMemcpyHostToDevice));
|
|
|
|
|
HIPCHECK(hipMemcpy(Bd, B, SIZE, hipMemcpyHostToDevice));
|
|
|
|
|
|
2020-07-22 09:27:16 -04:00
|
|
|
HIPCHECK(hipModuleLoadData(&Module, &buffer[0]));
|
|
|
|
|
HIPCHECK(hipModuleGetFunction(&Function, Module, kernel_name));
|
|
|
|
|
|
2020-04-30 03:34:07 -04:00
|
|
|
hipStream_t stream;
|
|
|
|
|
HIPCHECK(hipStreamCreate(&stream));
|
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
void* _Ad;
|
|
|
|
|
void* _Bd;
|
|
|
|
|
} args;
|
|
|
|
|
args._Ad = (void*) Ad;
|
|
|
|
|
args._Bd = (void*) Bd;
|
|
|
|
|
size_t size = sizeof(args);
|
|
|
|
|
|
|
|
|
|
void* config[] = {HIP_LAUNCH_PARAM_BUFFER_POINTER, &args, HIP_LAUNCH_PARAM_BUFFER_SIZE, &size,
|
|
|
|
|
HIP_LAUNCH_PARAM_END};
|
|
|
|
|
HIPCHECK(hipModuleLaunchKernel(Function, 1, 1, 1, LEN, 1, 1, 0, stream, NULL, (void**)&config));
|
|
|
|
|
|
2021-07-22 00:06:45 -04:00
|
|
|
HIPCHECK(hipStreamSynchronize(stream));
|
|
|
|
|
|
2020-04-30 03:34:07 -04:00
|
|
|
HIPCHECK(hipStreamDestroy(stream));
|
|
|
|
|
|
|
|
|
|
HIPCHECK(hipModuleUnload(Module));
|
|
|
|
|
|
|
|
|
|
HIPCHECK(hipMemcpy(B, Bd, SIZE, hipMemcpyDeviceToHost));
|
|
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < LEN; i++) {
|
|
|
|
|
assert(A[i] == B[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hipFree(Ad);
|
|
|
|
|
hipFree(Bd);
|
|
|
|
|
delete[] A;
|
|
|
|
|
delete[] B;
|
2020-02-06 16:21:40 -06:00
|
|
|
}
|
|
|
|
|
|
2020-04-30 03:34:07 -04:00
|
|
|
struct joinable_thread : std::thread {
|
|
|
|
|
template <class... Xs>
|
|
|
|
|
joinable_thread(Xs&&... xs) : std::thread(std::forward<Xs>(xs)...) {} // NOLINT
|
|
|
|
|
|
|
|
|
|
joinable_thread& operator=(joinable_thread&& other) = default;
|
|
|
|
|
joinable_thread(joinable_thread&& other) = default;
|
|
|
|
|
|
|
|
|
|
~joinable_thread() {
|
|
|
|
|
if (this->joinable())
|
|
|
|
|
this->join();
|
|
|
|
|
}
|
2020-02-06 16:21:40 -06:00
|
|
|
};
|
|
|
|
|
|
2020-02-13 16:34:05 +05:30
|
|
|
void run_multi_threads(uint32_t n, const std::vector<char>& buffer) {
|
2020-04-30 03:34:07 -04:00
|
|
|
std::vector<joinable_thread> threads;
|
|
|
|
|
for (uint32_t i = 0; i < n; i++) {
|
2021-07-22 00:06:45 -04:00
|
|
|
threads.emplace_back(std::thread{[&] {
|
2020-04-30 03:34:07 -04:00
|
|
|
run(buffer);
|
|
|
|
|
}});
|
|
|
|
|
}
|
2020-02-06 16:21:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main() {
|
2020-04-30 03:34:07 -04:00
|
|
|
HIPCHECK(hipInit(0));
|
|
|
|
|
auto buffer = load_file();
|
2021-06-25 11:12:33 -04:00
|
|
|
auto file_size = buffer.size() / (1024 * 1024);
|
|
|
|
|
auto thread_count = getHostThreadCount(file_size + 10);
|
|
|
|
|
if(thread_count == 0) {
|
|
|
|
|
failed("Thread Count is zero");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
run_multi_threads(thread_count, buffer);
|
2020-02-06 16:21:40 -06:00
|
|
|
|
2020-04-30 03:34:07 -04:00
|
|
|
passed();
|
2020-02-06 16:21:40 -06:00
|
|
|
}
|