relu test added

This commit is contained in:
Nico Castaneda
2023-10-06 13:20:31 -07:00
parent d69a64c32c
commit 8296e6be0f
11 changed files with 2434 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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