forked from Github_Repos/cvw
Merge branch 'main' of https://github.com/davidharrishmc/riscv-wally
This commit is contained in:
commit
86f0327f79
@ -114,7 +114,12 @@ void portable_free(void *p) {
|
||||
#define read_csr(reg) ({ unsigned long __tmp; \
|
||||
asm volatile ("csrr %0, " #reg : "=r"(__tmp)); \
|
||||
__tmp; })
|
||||
#define GETMYTIME(_t) (_t = *(volatile unsigned long long*)0x0200BFF8)
|
||||
// #if (XLEN==64)
|
||||
// typedef unsigned long long ee_ptr_int;
|
||||
// #else
|
||||
// typedef unsigned long ee_ptr_int;
|
||||
// #endif
|
||||
#define GETMYTIME(_t) (_t = *(volatile ee_ptr_int*)0x0200BFF8)
|
||||
#define MYTIMEDIFF(fin,ini) ((fin)-(ini))
|
||||
// Changing TIMER_RES_DIVIDER to 1000000 sets EE_TICKS_PER_SEC to 1000 (now counting ticks per ms)
|
||||
#define TIMER_RES_DIVIDER 10000
|
||||
@ -196,8 +201,8 @@ void stop_time(void) {
|
||||
CORE_TICKS get_time(void) {
|
||||
CORE_TICKS elapsed=(CORE_TICKS)(MYTIMEDIFF(stop_time_val, start_time_val));
|
||||
unsigned long instructions = minstretDiff();
|
||||
long long cm100 = 1000000000 / elapsed; // coremark score * 100
|
||||
long long cpi100 = elapsed*100/instructions; // CPI * 100
|
||||
ee_ptr_int cm100 = 1000000000 / elapsed; // coremark score * 100
|
||||
ee_ptr_int cpi100 = elapsed*100/instructions; // CPI * 100
|
||||
ee_printf(" WALLY CoreMark Results (from get_time)\n");
|
||||
ee_printf(" Elapsed MTIME: %u\n", elapsed);
|
||||
ee_printf(" Elapsed MINSTRET: %lu\n", instructions);
|
||||
|
@ -69,14 +69,16 @@ typedef clock_t CORE_TICKS;
|
||||
// #elif (XLEN==32)
|
||||
// #include <sys/types.h>
|
||||
// typedef ee_u32 CORE_TICKS;
|
||||
#else
|
||||
/* Configuration: size_t and clock_t
|
||||
Note these need to match the size of the clock output and the xLen the processor supports
|
||||
*/
|
||||
#elif (XLEN==64)
|
||||
typedef unsigned long int size_t;
|
||||
typedef unsigned long int clock_t;
|
||||
typedef clock_t CORE_TICKS;
|
||||
#else
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
typedef clock_t CORE_TICKS;
|
||||
|
||||
/* Definitions: COMPILER_VERSION, COMPILER_FLAGS, MEM_LOCATION
|
||||
Initialize these strings per platform
|
||||
|
Loading…
Reference in New Issue
Block a user