1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/* ************************************************************************
* Copyright (C) 2023-2024 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 WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* ************************************************************************ */
#include <hip/library_types.h>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "hipblas.h"
#include "hipblas_init.hpp"
#include "utility.h"
#ifndef CHECK_HIP_ERROR
#define CHECK_HIP_ERROR(error) \
if(error != hipSuccess) \
{ \
fprintf(stderr, \
"Hip error: '%s'(%d) at %s:%d\n", \
hipGetErrorString(error), \
error, \
__FILE__, \
__LINE__); \
exit(EXIT_FAILURE); \
}
#endif
#ifndef CHECK_HIPBLAS_ERROR
#define CHECK_HIPBLAS_ERROR(error) \
if(error != HIPBLAS_STATUS_SUCCESS) \
{ \
fprintf(stderr, "hipBLAS error: "); \
if(error == HIPBLAS_STATUS_NOT_INITIALIZED) \
fprintf(stderr, "HIPBLAS_STATUS_NOT_INITIALIZED"); \
if(error == HIPBLAS_STATUS_ALLOC_FAILED) \
fprintf(stderr, "HIPBLAS_STATUS_ALLOC_FAILED"); \
if(error == HIPBLAS_STATUS_INVALID_VALUE) \
fprintf(stderr, "HIPBLAS_STATUS_INVALID_VALUE"); \
if(error == HIPBLAS_STATUS_MAPPING_ERROR) \
fprintf(stderr, "HIPBLAS_STATUS_MAPPING_ERROR"); \
if(error == HIPBLAS_STATUS_EXECUTION_FAILED) \
fprintf(stderr, "HIPBLAS_STATUS_EXECUTION_FAILED"); \
if(error == HIPBLAS_STATUS_INTERNAL_ERROR) \
fprintf(stderr, "HIPBLAS_STATUS_INTERNAL_ERROR"); \
if(error == HIPBLAS_STATUS_NOT_SUPPORTED) \
fprintf(stderr, "HIPBLAS_STATUS_NOT_SUPPORTED"); \
if(error == HIPBLAS_STATUS_INVALID_ENUM) \
fprintf(stderr, "HIPBLAS_STATUS_INVALID_ENUM"); \
if(error == HIPBLAS_STATUS_UNKNOWN) \
fprintf(stderr, "HIPBLAS_STATUS_UNKNOWN"); \
fprintf(stderr, "\n"); \
exit(EXIT_FAILURE); \
}
#endif
/* ============================================================================================ */
int main()
{
// Testing scalEx with alpha_type == x_type == f16_r; execution_type = f32_r
int N = 10240;
hipblasStatus_t status;
hipblasHalf alpha = float_to_half(10.0f);
// Naming: dX is in GPU (device) memory. hK is in CPU (host) memory, plz follow this practice
std::vector<hipblasHalf> hx(N);
hipblasHalf* dx;
double gpu_time_used;
hipblasHandle_t handle;
hipblasCreate(&handle);
// allocate memory on device
CHECK_HIP_ERROR(hipMalloc(&dx, N * sizeof(hipblasHalf)));
// Initial Data on CPU
srand(1);
hipblas_init<hipblasHalf>(hx.data(), 1, N, 1);
// copy vector is easy in STL; hz(hx): save a copy in hz which will be output of CPU BLAS
std::vector<hipblasHalf> hz(hx);
CHECK_HIP_ERROR(hipMemcpy(dx, hx.data(), sizeof(hipblasHalf) * N, hipMemcpyHostToDevice));
printf("N hipblas(us) \n");
gpu_time_used = get_time_us(); // in microseconds
/* =====================================================================
ROCBLAS C interface
=================================================================== */
#ifdef HIPBLAS_V2
status = hipblasScalEx(handle, N, &alpha, HIP_R_16F, dx, HIP_R_16F, 1, HIP_R_32F);
#else
status = hipblasScalEx(handle, N, &alpha, HIPBLAS_R_16F, dx, HIPBLAS_R_16F, 1, HIPBLAS_R_32F);
#endif
if(status != HIPBLAS_STATUS_SUCCESS)
{
printf("Bad return status from hipblasScalEx: %d\n", status);
CHECK_HIP_ERROR(hipFree(dx));
hipblasDestroy(handle);
return status;
}
gpu_time_used = get_time_us() - gpu_time_used;
// copy output from device to CPU
CHECK_HIP_ERROR(hipMemcpy(hx.data(), dx, sizeof(hipblasHalf) * N, hipMemcpyDeviceToHost));
// verify hipblas_scal result
bool error_in_element = false;
for(int i = 0; i < N; i++)
{
hipblasHalf cpu_res = float_to_half(half_to_float(hz[i]) * half_to_float(alpha));
if(cpu_res != hx[i])
{
printf("error in element %d: CPU=%f, GPU=%f ",
i,
half_to_float(cpu_res),
half_to_float(hx[i]));
error_in_element = true;
break;
}
}
printf("%d %8.2f \n", (int)N, gpu_time_used);
if(error_in_element)
{
printf("SCALEX TEST FAILS\n");
}
else
{
printf("SCALEX TEST PASSES\n");
}
CHECK_HIP_ERROR(hipFree(dx));
hipblasDestroy(handle);
return EXIT_SUCCESS;
}
|