Changeset 2538 in Sophya for trunk/Eval


Ignore:
Timestamp:
May 18, 2004, 11:16:54 AM (21 years ago)
Author:
ansari
Message:

Amelioration texte descriptif usage - Reza 18/05/2004

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Eval/Speed/cpupower.c

    r2537 r2538  
    110110    printf("--- Programme cpupower: (Puissance de calcul) ---- \n");
    111111    printf("  Usage cpupower Op=1/2/3 [Size=20000] [CkPrt=0] \n");
    112     printf("  Op=1 Double Loop: z[k] = Somme_i(x[k]*y[i]) \n");
     112    printf("  Op=1 Double Loop: z[k] = Somme_i(x[k]*y[i])  \n");
     113    printf("    Op=1 *,+=2 op / tour de boucle \n");
    113114    printf("  Op=2 Double Loop: z[k] = Somme_i(x[k]*y[i]+x[i]*y[k]) \n");
     115    printf("    Op=2 2x(*,+)=4 op /  tour de boucle \n");
    114116    printf("  Op=3 Double Loop: z[k] = Somme_i(x[k]*y[i]+x[i]*y[k]-0.85*(y[k]+x[k])) \n");
     117    printf("    Op=3  7 op (*,+) /  tour de boucle \n");
    115118    printf("  Op=4 Double Loop: z[k] = Somme_i(x[k]*sin(y[i])+y[k]*cos(x[i])) \n");
     119    printf("    Op=4   ~ 70 op float /  tour de boucle \n");
    116120    printf("  Op=5 Double Loop: z[k] = Somme_i(x[k]*sin(y[i])+log(fabs(x[i])+0.1)+y[k]) \n");
     121    printf("    Op=5   ~ 100 op float /  tour de boucle \n");
    117122    return 1;
    118123  }
Note: See TracChangeset for help on using the changeset viewer.