#include <stdio.h> #include <stdlib.h> #include <string.h> #include <cutil.h> #include <sys/time.h> #include <unistd.h> typedef struct __align__(8) { float real; float imaginary; } Complex; __device__ __host__ void initComplex( Complex *_arg_this, float _arg_real, float _arg_imaginary ) { _arg_this->real = _arg_real; _arg_this->imaginary = _arg_imaginary; } __device__ void addComplex( Complex *_ar
{{#tags}}- {{label}}
{{/tags}}