Added tests for prefetch

This commit is contained in:
Santosh Raghav Srivatsan
2021-10-19 17:56:58 -04:00
parent dd12d3f848
commit d219e29f0c
4 changed files with 310 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
typedef struct {
uint32_t num_tasks;
uint32_t task_size;
uint32_t src0_ptr;
uint32_t src1_ptr;
uint32_t dst_ptr;
} kernel_arg_t;
#endif