mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 18:06:27 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
708 B
Text
10 lines
708 B
Text
flops.c is a C program which attempts to estimate your system's floating-
|
|
point 'MFLOPS' rating for the FADD, FSUB, FMUL, and FDIV operations based on
|
|
specific 'instruction mixes' (discussed below). The program provides an
|
|
estimate of PEAK MFLOPS performance by making maximal use of register
|
|
variables with minimal interaction with main memory. The execution loops
|
|
are all small so that they will fit in any cache. The flops.c execution
|
|
modules include various percent weightings of FDIV's (from 0% to 25% FDIV's)
|
|
so that the range of performance can be obtained when using FDIV's. FDIV's,
|
|
being computationally more intensive than FADD's or FMUL's, can impact
|
|
performance considerably on some systems.
|