Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Caffe 1.3.3
pts/caffe-1.3.3
- 01 April 2018 -
Basic fix for OpenCV 3.4.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/caffe-20161229.tar.bz2</URL> <MD5>fe72ca889cdeda44fe6981d9190eceab</MD5> <SHA256>bdb69f38037c213b1d2c7a3221f9213ae1fd33af6b04e4eb588b2118f1794955</SHA256> <FileSize>8456229</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh # Not all of these dependencies below may be covered automatically by PTS # sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler # sudo apt-get install libgflags-dev libgoogle-glog-dev liblmdb-dev libatlas-base-dev # sudo apt-get install --no-install-recommends libboost-all-dev rm -rf caffe-git tar -xjvf caffe-20161229.tar.bz2 cd caffe-git if [ -d /usr/local/cuda ] then PATH="/usr/local/cuda/bin:$PATH" LD_LIBRARY_PATH=/usr/local/cuda/lib:$LD_LIBRARY_PATH fi if which nvcc >/dev/null 2>&1 ; then cp -f Makefile.config.nvidia Makefile.config make -j$NUM_CPU_CORES all fi cp -f Makefile.config.cpu Makefile.config if [ -e /usr/lib64/libopenblas.so ] then sed -i -e "s/BLAS :=.*/BLAS := open/g" Makefile.config fi if [ -e /usr/lib64/libopencv_core.so.3.1 ] then sed -i -e "s/# OPENCV_VERSION := 3/OPENCV_VERSION := 3/g" Makefile.config fi if [ -e /usr/lib64/libopencv_core.so.3.2 ] then sed -i -e "s/# OPENCV_VERSION := 3/OPENCV_VERSION := 3/g" Makefile.config fi if [ -e /usr/lib64/libopencv_core.so.3.4 ] then sed -i -e "s/# OPENCV_VERSION := 3/OPENCV_VERSION := 3/g" Makefile.config fi make -j$NUM_CPU_CORES all echo $? > ~/install-exit-status cd ~/ echo "#!/bin/sh cd caffe-git export LD_LIBRARY_PATH=/usr/local/cuda/lib64:\$LD_LIBRARY_PATH ./\$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > caffe chmod +x caffe
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>I1114 20:10:12.401626 25345 caffe.cpp:372] Total Time: #_RESULT_# ms.</OutputTemplate> <LineHint>Total Time</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <TestInformation> <Title>Caffe</Title> <AppVersion>2016-12-29</AppVersion> <Description>This is a benchmark of the Caffe deep learning framework and currently supports the AlexNet and Googlenet model.</Description> <ResultScale>Milli-Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.3.3</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cuda, python, blas-development, boost-development, atlas-development</ExternalDependencies> <EnvironmentSize>100</EnvironmentSize> <ProjectURL>http://caffe.berkeleyvision.org/</ProjectURL> <InternalTags>CUDA, SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Build</DisplayName> <Identifier>build</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>CUDA AlexNet</Name> <Value>./build-nvidia/tools/caffe time --model=models/bvlc_alexnet/deploy.prototxt -gpu 0 -iterations 1000</Value> <Message></Message> </Entry> <Entry> <Name>CPU AlexNet</Name> <Value>./build-cpu/tools/caffe time --model=models/bvlc_alexnet/deploy.prototxt -iterations 200</Value> <Message></Message> </Entry> <Entry> <Name>CUDA Googlenet</Name> <Value>./build-nvidia/tools/caffe time --model=models/bvlc_googlenet/deploy.prototxt -gpu 0 -iterations 1000</Value> <Message></Message> </Entry> <Entry> <Name>CPU Googlenet</Name> <Value>./build-cpu/tools/caffe time --model=models/bvlc_googlenet/deploy.prototxt -iterations 200</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>