mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-25 14:27:32 -04:00
11 lines
No EOL
158 B
C
11 lines
No EOL
158 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
|
|
|
|
struct kernel_arg_t {
|
|
uint32_t num_points;
|
|
uint32_t src_ptr;
|
|
};
|
|
|
|
#endif |