123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- // Benchmarking tool
- #define word char
- #include "lib/math.c"
- #include "lib/stdlib.c"
- #include "lib/sys.c"
- #define N 256 // Decimals of pi to compute.
- #define LEN 854 // (10*N) / 3 + 1
- #define TMPMEM_LOCATION 0x440000
- word frameCount = 0;
- //word a[LEN];
- word *a = (char*) TMPMEM_LOCATION;
- void spigotPiBench()
- {
- frameCount = 0;
- while (frameCount == 0); // wait until next frame to start
- frameCount = 0;
- word j = 0;
- word predigit = 0;
- word nines = 0;
- word x = 0;
- word q = 0;
- word k = 0;
- word len = 0;
- word i = 0;
- word y = 0;
- for(j=N; j; )
- {
- q = 0;
- k = LEN+LEN-1;
- for(i=LEN; i; --i)
- {
- if (j == N)
- {
- x = 20 + q*i;
- }
- else
- {
- x = (10*a[i-1]) + q*i;
- }
- q = MATH_div(x, k);
- a[i-1] = (x-q*k);
- k -= 2;
- }
- k = MATH_mod(x, 10);
- if (k==9)
- {
- ++nines;
- }
- else
- {
- if (j)
- {
- --j;
- y = predigit+MATH_div(x,10);
- bdos_printdec(y);
- }
- for(; nines; --nines)
- {
- if (j)
- {
- --j;
- if (x >= 10)
- {
- bdos_printc('0');
- }
- else
- {
- bdos_printc('9');
- }
- }
- }
- predigit = k;
- }
- }
- bdos_print("\nPiBench256 took ");
- bdos_printdec(frameCount);
- bdos_print(" frames\n");
- }
- // LoopBench: a simple increase and loop bench for a set amount of time.
- // reads framecount from memory in the loop.
- // no pipeline clears within the loop.
- int loopBench()
- {
- word retval = 0;
- asm(
- "push r1\npush r2\npush r3\npush r4\n"
- "addr2reg frameCount r2\n"
- "write 0 r2 r0 ; reset frameCount\n"
- "load 0 r4 ; score\n"
- "Label_ASM_Loop:\n"
- "read 0 r2 r3 ; read frameCount\n"
- "slt r3 300 r3 ; TESTDURATION here in frames\n"
- "beq r3 r0 3 ; check if done \n"
- "add r4 1 r4 ; increase score and loop\n"
- "jump Label_ASM_Loop\n"
- "jump Label_ASM_Done\n"
-
- "Label_ASM_Done:\n"
- "or r4 r0 r2 ; set return value\n"
- "write -4 r14 r2 ; write to stack to return\n"
- "pop r4\npop r3\npop r2\npop r1\n"
- );
- return retval;
- }
- // CountMillionBench: how many frames it takes to do a C for loop to a million
- int countMillionBench()
- {
- frameCount = 0;
- while (frameCount == 0); // wait until next frame to start
- frameCount = 0;
- int i;
- for (i = 0; i < 1000000; i++);
- return frameCount;
- }
- int main()
- {
- bdos_println("---------------FPGCbench---------------\n");
- bdos_print("LoopBench: ");
- frameCount = 0;
- while (frameCount == 0); // wait until next frame to start
- bdos_printdec(loopBench());
- bdos_printc('\n');
- bdos_print("\nCountMillionBench: ");
- bdos_printdec(countMillionBench());
- bdos_print(" frames\n");
- bdos_print("\nPiBench256:\n");
- spigotPiBench();
- return 'q';
- }
- void interrupt()
- {
- // Handle all interrupts
- word i = get_int_id();
- switch(i)
- {
- case INTID_TIMER1:
- timer1Value = 1; // Notify ending of timer1
- break;
- case INTID_GPU:
- frameCount++;
- break;
- }
- }
|