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
|
// Copyright (C) 2019 - 2022 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 <complex>
#include <hipfft/hipfft.h>
#include <iostream>
#include <vector>
DISABLE_WARNING_PUSH
DISABLE_WARNING_DEPRECATED_DECLARATIONS
DISABLE_WARNING_RETURN_TYPE
#include <hip/hip_runtime_api.h>
DISABLE_WARNING_POP
#include "../hipfft_params.h"
int main()
{
std::cout << "hipfft 1D single-precision real-to-complex transform showing "
"work memory usage\n";
int major_version;
hipfftGetProperty(HIPFFT_MAJOR_VERSION, &major_version);
std::cout << "hipFFT major_version " << major_version << std::endl;
const size_t N = 9;
const size_t Ncomplex = (N / 2 + 1);
std::vector<float> rdata(N);
std::vector<std::complex<float>> cdata(Ncomplex);
size_t real_bytes = sizeof(decltype(rdata)::value_type) * rdata.size();
size_t complex_bytes = sizeof(decltype(cdata)::value_type) * cdata.size();
hipError_t hip_rt = hipSuccess;
hipfftResult hipfft_rt = HIPFFT_SUCCESS;
std::cout << "input:\n";
for(size_t i = 0; i < N; i++)
{
rdata[i] = i;
}
for(size_t i = 0; i < N; i++)
{
std::cout << rdata[i] << " ";
}
std::cout << std::endl;
// Create HIP device object.
hipfftReal* x;
hip_rt = hipMalloc(&x, real_bytes);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipMalloc failed");
hipfftComplex* y;
hip_rt = hipMalloc(&y, complex_bytes);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipMalloc failed");
// Copy input data to device
hip_rt = hipMemcpy(x, rdata.data(), real_bytes, hipMemcpyHostToDevice);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipMemcpy failed");
size_t workSize;
hipfft_rt = hipfftEstimate1d(N, HIPFFT_R2C, 1, &workSize);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftEstimate1d failed");
std::cout << "hipfftEstimate 1d workSize: " << workSize << std::endl;
hipfftHandle plan = hipfft_params::INVALID_PLAN_HANDLE;
hipfft_rt = hipfftCreate(&plan);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftCreate failed");
hipfft_rt = hipfftSetAutoAllocation(plan, 0);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftSetAutoAllocation failed");
hipfft_rt = hipfftMakePlan1d(plan, N, HIPFFT_R2C, 1, &workSize);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftMakePlan1d failed");
// Set work buffer
hipfftComplex* workBuf;
hip_rt = hipMalloc(&workBuf, workSize);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipMalloc failed");
hipfft_rt = hipfftSetWorkArea(plan, workBuf);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftSetWorkArea failed");
hipfft_rt = hipfftGetSize(plan, &workSize);
if(hipfft_rt != HIPFFT_SUCCESS)
throw std::runtime_error("hipfftGetSize failed");
std::cout << "hipfftGetSize workSize: " << workSize << std::endl;
// Execute plan
hipfft_rt = hipfftExecR2C(plan, x, (hipfftComplex*)y);
// Copy result back to host
hip_rt = hipMemcpy(cdata.data(), y, complex_bytes, hipMemcpyDeviceToHost);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipMemcpy failed");
std::cout << "output:\n";
for(size_t i = 0; i < Ncomplex; i++)
{
std::cout << cdata[i] << " ";
}
std::cout << std::endl;
hipfftDestroy(plan);
hip_rt = hipFree(x);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipFree failed");
hip_rt = hipFree(workBuf);
if(hip_rt != hipSuccess)
throw std::runtime_error("hipFree failed");
return 0;
}
|