Greyguy1948
Member
I have both so i can compare most software. Normally 8700 is somewhat faster on integer but not on floating point. Some Open MP programs are confusing me.
Look at this:
http://people.sc.fsu.edu/~jburkardt/c_src/openmp/
http://people.sc.fsu.edu/~jburkardt/c_src/quad2d_openmp/quad2d_openmp.html
Compute_pi is comparing SEQ and OMP. Both are bad for 8700 even compared with Athlon 845....
FFT_openmp is normally faster on 8700.
OS Fedora 64-bit
gcc -O3 -fopenmp
You can use this to test how many threads to use:
export OMP_NUM_THREADS=1
./a.out
export OMP_NUM_THREADS=2
./a.out
export OMP_NUM_THREADS=4
./a.out
export OMP_NUM_THREADS=8
./a.out
export OMP_NUM_THREADS=16
./a.out
Look at this:
http://people.sc.fsu.edu/~jburkardt/c_src/openmp/
http://people.sc.fsu.edu/~jburkardt/c_src/quad2d_openmp/quad2d_openmp.html
Compute_pi is comparing SEQ and OMP. Both are bad for 8700 even compared with Athlon 845....
FFT_openmp is normally faster on 8700.
OS Fedora 64-bit
gcc -O3 -fopenmp
You can use this to test how many threads to use:
export OMP_NUM_THREADS=1
./a.out
export OMP_NUM_THREADS=2
./a.out
export OMP_NUM_THREADS=4
./a.out
export OMP_NUM_THREADS=8
./a.out
export OMP_NUM_THREADS=16
./a.out