Intel® MPI Library
Get help with building, analyzing, optimizing, and scaling high-performance computing (HPC) applications.
2161 Discussions

peak floating point operations of Intel Xeon E5345

Farea__Afrah
Beginner
978 Views

I want to find the peak floating point operations of  Intel Xeon E5345 prcessor. i searched about that and found it 9.332 GFlop/s . I want to make sure . There is a formula(please correct me if I am wrong) :

Flops/s = #instructions per second * clock cycle

The clock cycle is 2.33 GHz( I ma not sure ) and I did not find the number of instructions per second the machine can perform.

Any idea

0 Kudos
1 Reply
McCalpinJohn
Honored Contributor III
978 Views

It can be challenging to work through all the code names for older processors....

  1. A search for "Xeon E5345" brings up a pointer to the Intel ark specification page: https://ark.intel.com/products/28032/Intel-Xeon-Processor-E5345-8M-Cache-2_33-GHz-1333-MHz-FSB
    1. This lists the "Code Name" as "Products formerly Clovertown"
  2. From https://en.wikipedia.org/wiki/List_of_Intel_Xeon_microprocessors "Clovertown" is listed as a 65nm product based on the "Core" microarchitecture.
  3. From http://www.agner.org/optimize/instruction_tables.pdf the only listing for a 65nm Intel processor is "Merom"
    1. In the chapter for "Merom", look for the section labelled "Floating Point XMM instructions", then the subsection labelled "Arithmetic".
    2. The table shows that the processor can dispatch one ADDPD instruction every cycle to Port 1, and one MULPD instruction every cycle to Port 0.  Each of these instructions performs two 64-bit operations (on a pair of 64-bit values packed into 128-bit XMM registers), for a total of 4 floating-point operations per cycle (per core).
  4. The Xeon E5345 processor has four cores, each running at 2.33 GHz.  Each core has a peak 64-bit floating-point execution rate of 2.33*4=9.33 GFLOPS, giving the entire processor a peak 64-bit floating-point execution rate of 9.33*4 = 37.33 GFLOPS.  A system configured with two Xeon E5345 processors would have a peak 64-bit floating-point execution rate of 2*37.33 = 74.66 GFLOPS.
0 Kudos
Reply