2016-08-23 14:19:15 -05:00
|
|
|
/*
|
|
|
|
|
Copyright (c) 2015-2016 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-05-09 08:42:00 +05:30
|
|
|
/* HIT_START
|
|
|
|
|
* BUILD_CMD: vcpy_kernel.code %hc --genco %S/vcpy_kernel.cpp -o vcpy_kernel.code
|
2019-05-09 18:17:19 +05:30
|
|
|
* BUILD: %t %s ../../test_common.cpp NVCC_OPTIONS -std=c++11
|
2019-05-09 08:42:00 +05:30
|
|
|
* TEST: %t
|
|
|
|
|
* HIT_END
|
|
|
|
|
*/
|
|
|
|
|
|
2016-10-04 22:20:50 +05:30
|
|
|
#include "hip/hip_runtime.h"
|
|
|
|
|
#include "hip/hip_runtime_api.h"
|
2018-03-12 11:29:03 +05:30
|
|
|
#include <iostream>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <thread>
|
|
|
|
|
#include <chrono>
|
2016-08-23 13:50:19 -05:00
|
|
|
|
2016-09-02 09:38:42 -05:00
|
|
|
#include "test_common.h"
|
|
|
|
|
|
2016-08-23 13:50:19 -05:00
|
|
|
#define LEN 64
|
2018-03-12 11:29:03 +05:30
|
|
|
#define SIZE LEN << 2
|
2016-08-23 13:50:19 -05:00
|
|
|
|
2017-02-09 17:22:55 -06:00
|
|
|
#define fileName "vcpy_kernel.code"
|
2016-08-23 13:50:19 -05:00
|
|
|
#define kernel_name "hello_world"
|
|
|
|
|
|
2019-05-09 08:42:00 +05:30
|
|
|
#define HIP_CHECK(status) \
|
|
|
|
|
if (status != hipSuccess) { \
|
|
|
|
|
std::cout << "Got Status: " << status << " at Line: " << __LINE__ << std::endl; \
|
|
|
|
|
exit(0); \
|
|
|
|
|
}
|
2016-08-23 13:50:19 -05:00
|
|
|
|
2018-03-12 11:29:03 +05:30
|
|
|
int main() {
|
2019-05-09 08:42:00 +05:30
|
|
|
float *A, *B;
|
|
|
|
|
hipDeviceptr_t Ad, Bd;
|
2018-03-12 11:29:03 +05:30
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 08:42:00 +05:30
|
|
|
HIPCHECK(hipInit(0));
|
|
|
|
|
|
|
|
|
|
hipDevice_t device;
|
|
|
|
|
hipCtx_t context;
|
|
|
|
|
HIPCHECK(hipDeviceGet(&device, 0));
|
|
|
|
|
HIPCHECK(hipCtxCreate(&context, 0, device));
|
|
|
|
|
|
2018-03-12 11:29:03 +05:30
|
|
|
HIPCHECK(hipMalloc((void**)&Ad, SIZE));
|
|
|
|
|
HIPCHECK(hipMalloc((void**)&Bd, SIZE));
|
2019-05-09 18:17:19 +05:30
|
|
|
HIPCHECK(hipMemcpyHtoD(Ad, A, SIZE));
|
|
|
|
|
HIPCHECK(hipMemcpyHtoD(Bd, B, SIZE));
|
2019-05-09 08:42:00 +05:30
|
|
|
|
2018-03-12 11:29:03 +05:30
|
|
|
hipModule_t Module;
|
|
|
|
|
hipFunction_t Function;
|
|
|
|
|
HIPCHECK(hipModuleLoad(&Module, fileName));
|
|
|
|
|
HIPCHECK(hipModuleGetFunction(&Function, Module, kernel_name));
|
2019-05-09 08:42:00 +05:30
|
|
|
|
2018-03-12 11:29:03 +05:30
|
|
|
hipStream_t stream;
|
|
|
|
|
HIPCHECK(hipStreamCreate(&stream));
|
|
|
|
|
|
2019-05-09 08:42:00 +05:30
|
|
|
struct {
|
|
|
|
|
void* _Ad;
|
|
|
|
|
void* _Bd;
|
|
|
|
|
} args;
|
|
|
|
|
args._Ad = (void*) Ad;
|
|
|
|
|
args._Bd = (void*) Bd;
|
|
|
|
|
size_t size = sizeof(args);
|
2018-03-12 11:29:03 +05:30
|
|
|
|
2019-05-09 08:42:00 +05:30
|
|
|
void* config[] = {HIP_LAUNCH_PARAM_BUFFER_POINTER, &args, HIP_LAUNCH_PARAM_BUFFER_SIZE, &size,
|
|
|
|
|
HIP_LAUNCH_PARAM_END};
|
|
|
|
|
HIP_CHECK(hipModuleLaunchKernel(Function, 1, 1, 1, LEN, 1, 1, 0, stream, NULL, (void**)&config));
|
2018-03-12 11:29:03 +05:30
|
|
|
|
|
|
|
|
HIPCHECK(hipStreamDestroy(stream));
|
|
|
|
|
|
2019-05-09 18:17:19 +05:30
|
|
|
HIPCHECK(hipMemcpyDtoH(B, Bd, SIZE));
|
2018-03-12 11:29:03 +05:30
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < LEN; i++) {
|
|
|
|
|
assert(A[i] == B[i]);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-18 22:40:33 -04:00
|
|
|
HIPCHECK(hipModuleUnload(Module));
|
|
|
|
|
HIPCHECK(hipCtxDestroy(context));
|
2018-03-12 11:29:03 +05:30
|
|
|
passed();
|
2016-08-23 13:50:19 -05:00
|
|
|
}
|