代码搜索:Benchmark
找到约 3,891 项符合「Benchmark」的源代码
代码结果 3,891
www.eeworm.com/read/285975/8798036
022_prob ch17.022_prob
##############################################################################
## Code fragment (NOT RECOMMENDED) from Chapter 17 of "Perl Best Practices" ##
## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/378188/9242419
incl make.incl
#
# Makefile for program modxxx of the EuroBen OpenMP Benchmark Version 2.0.
SHELL = /bin/sh
FC = ifc
FFLAGS = -O3 -openmp
CFLAGS = -O3
INCS =
LD = ${FC}
LDFLAGS = ${FFLAGS}
LIBS
www.eeworm.com/read/378186/9242836
all x.all
#!/bin/sh
#
# Execute script for program dddot of the EuroBen Efficiency Benchmark.
#
exec 1>> dddot.log 2>&1
echo 'start dddot at' `date` 'id =' $$
time mpirun -np 16 x.dddot
#time mpiexec -n 16 x.dd
www.eeworm.com/read/378186/9242929
all x.all
#!/bin/sh
#
# Execute script for program smxv of the EuroBen Efficiency Benchmark.
#
exec 1>> smxv.log 2>&1
echo 'start smxv at' `date` 'id =' $$
time x.smxv
echo 'end smxv at' `date` 'id =' $$
www.eeworm.com/read/378186/9242972
all x.all
#!/bin/sh
#
# Execute script for program linful of the EuroBen Efficiency Benchmark.
#
exec 1>> linful.log 2>&1
echo 'start linful at' `date` 'id =' $$
time x.linful
echo 'end linful at' `date` 'id ='
www.eeworm.com/read/378186/9242975
makeframe
# Makefile for program pingpong of the EuroBen Efficiency Benchmark.
# (MPI version).
INTLIB = ../basics/intlib.a
OBJECTS = numerics.o pingpong.o state.o csetup.o
EXEC = x.pingpong
.IGNORE:
${
www.eeworm.com/read/378186/9242979
all x.all
#!/bin/sh
#
# Execute script for program pingpong of the EuroBen Efficiency Benchmark.
#
exec 1>> pingpong.log 2>&1
echo 'start pingpong at' `date` 'id =' $$
time mpirun -np 2 x.pingpong
#time mpiexec
www.eeworm.com/read/378186/9242989
makeframe
#
# Makefile for distributed 2-D Transpose in EuroBen efficiency Benchmark.
#
OBJECTS = numerics.o distmod.o transp.o check.o cntdpls.o btrans.o \
gendat.o gtrans.o ltrans.o siz
www.eeworm.com/read/378186/9243001
all x.all
#!/bin/sh
#
# Execute script for program transp of the EuroBen Efficiency Benchmark.
#
exec 1>> transp.log 2>&1
echo 'start transp at' `date` 'id =' $$
time mpirun -np 8 x.transp
#time mpiexec -n 8 x.
www.eeworm.com/read/378186/9243016
all x.all
#!/bin/sh
#
# Execute script for program ping of the EuroBen Efficiency Benchmark.
#
exec 1>> ping.log 2>&1
echo 'start ping at' `date` 'id =' $$
time mpirun -np 2 x.ping
#time mpiexec -n 2 x.ping
ech