adding stress test

This commit is contained in:
Blaise Tine
2021-05-03 03:37:28 -07:00
parent fc7c8e1639
commit c1f40e081d
4 changed files with 354 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
#define NUM_LOADS 2
struct kernel_arg_t {
uint32_t num_tasks;
uint32_t size;
uint32_t stride;
uint32_t src0_ptr;
uint32_t src1_ptr;
uint32_t dst_ptr;
};
#endif