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
TNN 1.1.0
pts/tnn-1.1.0
- 18 June 2021 -
Update against TNN 0.3 upstream release.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/Tencent/TNN/archive/refs/tags/v0.3.0.tar.gz</URL> <MD5>0ed1742a0ba7d17257efa3e4afb27d64</MD5> <SHA256>852853c7b4622e12065ef5ac07e533ad005f020ec31c28f9435dd0cd6ba6d667</SHA256> <FileName>TNN-0.3.0.tar.gz</FileName> <FileSize>22506770</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf TNN-0.3.0.tar.gz cd TNN-0.3.0/ mkdir build cd build cmake .. -DTNN_TEST_ENABLE=ON -DTNN_CPU_ENABLE=ON -DCMAKE_BUILD_TYPE=Release -DTNN_BENCHMARK_MODE=ON -DTNN_OPENMP_ENABLE=ON -DTNN_OPENCL_ENABLE=OFF make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~/ cat>tnn<<EOT #!/bin/sh cd TNN-0.3.0/build/ ./test/TNNTest -wc 10 -ic 60 -th \$NUM_CPU_CORES 0 -mt TNN \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status EOT chmod +x tnn
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>TNN Benchmark time cost: min = #_MIN_RESULT_# ms | max = #_MAX_RESULT_# ms | avg = #_RESULT_# ms </OutputTemplate> <LineHint>time cost:</LineHint> <DeleteOutputBefore>TNN Benchmark</DeleteOutputBefore> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <TestInformation> <Title>TNN</Title> <AppVersion>0.3</AppVersion> <Description>TNN is an open-source deep learning reasoning framework developed by Tencent.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Scientific</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>cmake, build-utilities</ExternalDependencies> <EnvironmentSize>65</EnvironmentSize> <ProjectURL>https://github.com/Tencent/TNN</ProjectURL> <RepositoryURL>https://github.com/Tencent/TNN</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Target</DisplayName> <Identifier>target</Identifier> <ArgumentPrefix>-dt </ArgumentPrefix> <Menu> <Entry> <Name>CPU</Name> <Value>NAIVE</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Model</DisplayName> <Identifier>model</Identifier> <ArgumentPrefix>-mp </ArgumentPrefix> <Menu> <Entry> <Name>DenseNet</Name> <Value>../benchmark/benchmark-model/densenet.tnnproto</Value> </Entry> <Entry> <Name>MobileNet v2</Name> <Value>../benchmark/benchmark-model/mobilenet_v2.tnnproto</Value> </Entry> <Entry> <Name>SqueezeNet v1.1</Name> <Value>../benchmark/benchmark-model/squeezenet_v1.1.tnnproto</Value> </Entry> <Entry> <Name>SqueezeNet v2</Name> <Value>../benchmark/benchmark-model/shufflenet_v2.tnnproto</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>