mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
16 lines
227 B
C
16 lines
227 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#ifndef TYPE
|
|
#define TYPE int
|
|
#endif
|
|
|
|
typedef struct {
|
|
uint32_t num_tasks;
|
|
uint32_t task_size;
|
|
uint64_t src0_addr;
|
|
uint64_t src1_addr;
|
|
uint64_t dst_addr;
|
|
} kernel_arg_t;
|
|
|
|
#endif
|