Skip to content

Commit

Permalink
changes for tensorflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bragadeesh committed Mar 23, 2018
1 parent dfcad74 commit 38e445b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions library/include/rocfft/hipfft.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#define __HIPFFT_H__

#include <hip/hip_runtime_api.h>
#include <hip/hip_complex.h>

#define DLL_PUBLIC __attribute__ ((visibility ("default")))

Expand Down Expand Up @@ -46,8 +47,8 @@ typedef enum hipfftType_t {

typedef struct hipfftHandle_t *hipfftHandle;

typedef float hipfftComplex[2];
typedef double hipfftDoubleComplex[2];
typedef hipComplex hipfftComplex;
typedef hipDoubleComplex hipfftDoubleComplex;
typedef float hipfftReal;
typedef double hipfftDoubleReal;

Expand Down

0 comments on commit 38e445b

Please sign in to comment.