| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/time.h>
- void kernel_cpu(int *A0,int *A1,int *A2,int *A3,float *B0,float *B1,float *B2,int N){
- for(int i=0;i<N;i++){
- A0[i] = A3[i]*A3[i];
- A1[i] = A3[i]*A2[i]*A2[i]+A3[i];
- B0[i] = B2[i]+B2[i]*B2[i];
- }
- }
- int main(int argc,char **argv) {
- int size=879248;
- int intBytes = size*sizeof(int);
- int floatBytes = size*sizeof(float);
- int *A0;
- A0 = (int *)malloc(intBytes);
- int *A1;
- A1 = (int *)malloc(intBytes);
- int *A2;
- A2 = (int *)malloc(intBytes);
- int *A3;
- A3 = (int *)malloc(intBytes);
- float *B0;
- B0 = (float *)malloc(floatBytes);
- float *B1;
- B1 = (float *)malloc(floatBytes);
- float *B2;
- B2 = (float *)malloc(floatBytes);
- for(int i=0;i<879248;i++){
- A0[i] = 67+i+1;
- A1[i] = 20*i+1;
- A2[i] = 3+i+1;
- A3[i] = 66*i+1;
- B0[i] = 3.95308011802+i+1;
- B1[i] = 3.11771203721*i+1;
- B2[i] = 50.558738032+i+1;
- }
- struct timeval time0,time1;
- gettimeofday(&time0,NULL);
- FILE *file_for_block_of_interest = fopen("./profile_in_block.txt","w");
- if(file_for_block_of_interest) {
- char Buf[2] = "1";
- fwrite(Buf, 1, 1, file_for_block_of_interest);
- fclose(file_for_block_of_interest);}
- kernel_cpu(A0,A1,A2,A3,B0,B1,B2,879248);
- file_for_block_of_interest = fopen("./profile_in_block.txt","w");
- if(file_for_block_of_interest) {
- char Buf[2] = "0";
- fwrite(Buf, 1, 1, file_for_block_of_interest);
- fclose(file_for_block_of_interest);}
- gettimeofday(&time1,NULL);
- double totaltime10 = (time1.tv_sec*1000000.0 + time1.tv_usec) - (time0.tv_sec*1000000.0 + time0.tv_usec);
- fprintf(stderr, "CPU time: %lf msecs ", (totaltime10)/1000.0F);
- free(A0);
- free(A1);
- free(A2);
- free(A3);
- free(B0);
- free(B1);
- free(B2);
- printf("\n");return 0; }
|