cupy_cuComplex.h 424 Bytes
Newer Older
root's avatar
root committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef INCLUDE_GUARD_HIP_CUPY_COMPLEX_H
#define INCLUDE_GUARD_HIP_CUPY_COMPLEX_H

extern "C" {

///////////////////////////////////////////////////////////////////////////////
// cuComplex.h
///////////////////////////////////////////////////////////////////////////////

struct cuComplex{
    float x, y;
};

struct cuDoubleComplex{
    double x, y;
};

} // extern "C"

#endif // #ifndef INCLUDE_GUARD_HIP_CUPY_COMPLEX_H