array_atan.cuh 1.45 KB
#ifndef STIM_CUDA_ARRAY_ATAN_H
#define STIM_CUDA_ARRAY_ATAN_H

#include <iostream>
#include <cuda.h>
#include <cmath>
#include <stim/cuda/cudatools.h>

namespace stim{
	namespace cuda{

		template<typename T>
		__global__ void cuda_atan(T* ptr1, T* out, unsigned int N){

			//calculate the 1D index for this thread
			int idx = blockIdx.x * blockDim.x + threadIdx.x;

			if(idx < N){
				out[idx] = atan(ptr1[idx]);
			}

		}

		template<typename T>
		void gpu_atan(T* ptr1, T* out, unsigned int N){

			//get the maximum number of threads per block for the CUDA device
			int threads = stim::maxThreadsPerBlock();

			//calculate the number of blocks
			int blocks = N / threads + 1;

			//call the kernel to do the multiplication
			cuda_atan <<< blocks, threads >>>(ptr1, out, N);

		}

		template<typename T>
		void cpu_atan(T* ptr1, T* cpu_out, unsigned int N){

			//allocate memory on the GPU for the array
			T* gpu_ptr1; 
			T* gpu_out;
			HANDLE_ERROR( cudaMalloc( &gpu_ptr1, N * sizeof(T) ) );
			HANDLE_ERROR( cudaMalloc( &gpu_out, N * sizeof(T) ) );

			//copy the array to the GPU
			HANDLE_ERROR( cudaMemcpy( gpu_ptr1, ptr1, N * sizeof(T), cudaMemcpyHostToDevice) );

			//call the GPU version of this function
			gpu_atan<T>(gpu_ptr1 ,gpu_out, N);

			//copy the array back to the CPU
			HANDLE_ERROR( cudaMemcpy( cpu_out, gpu_out, N * sizeof(T), cudaMemcpyDeviceToHost) );

			//free allocated memory
			cudaFree(gpu_ptr1);
			cudaFree(gpu_out);

		}
		
	}
}



#endif