mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-22 04:47:56 -04:00
12 lines
No EOL
190 B
C
12 lines
No EOL
190 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
|
|
|
|
typedef struct {
|
|
uint32_t num_points;
|
|
uint32_t src_addr;
|
|
uint32_t dst_addr;
|
|
} kernel_arg_t;
|
|
|
|
#endif |