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
Google Draco 1.0.0
pts/draco-1.0.0
- 20 April 2021 -
Initial commit of Draco benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/google/draco/archive/refs/tags/1.4.1.tar.gz</URL> <MD5>f697603c26a97270df3e28868aad629e</MD5> <SHA256>83aa5637d36a835103a61f96af7ff04c6d6528e643909466595d51ee715417a9</SHA256> <FileName>draco-1.4.1.tar.gz</FileName> <FileSize>34368654</FileSize> </Package> <Package> <URL>https://cdn.artec3d.com/3Dmodels/church-facade-ply.zip</URL> <MD5>397ea673bf245456c925615a09295619</MD5> <SHA256>d89b9efb2b5866c175b6d5b8a41acbc43e996829a3b5386b80216b30a0200744</SHA256> <FileName>church-facade-ply.zip</FileName> <FileSize>70130230</FileSize> </Package> <Package> <URL>https://cdn.artec3d.com/3Dmodels/lion-statue_ply.zip</URL> <MD5>4d7e19c974fb4cb1cf4a500729e107f2</MD5> <SHA256>3704b1f75e5ca6eef3a53d247478336c10667f53879544ef3ea3ecc4cf2c8e06</SHA256> <FileName>lion-statue_ply.zip</FileName> <FileSize>70130230</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf draco-1.4.1.tar.gz cd draco-1.4.1 mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j $NUM_CPU_CORES echo \$? > ~/install-exit-status cd ~ unzip -o church-facade-ply.zip mv Church\ façade.ply draco-1.4.1/build/church.ply unzip -o lion-statue_ply.zip mv Lion\ statue_ply/Lion\ statue.ply draco-1.4.1/build/lion.ply cd ~ echo "#!/bin/sh cd draco-1.4.1/build ./draco_encoder \$@ -o out.drc -cl 10 -qp 14 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > draco chmod +x draco
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Encoded mesh saved to out.drc #_RESULT_# ms to encode).</OutputTemplate> <LineHint>Encoded mesh saved to out.drc</LineHint> <StripFromResult>(</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <TestInformation> <Title>Google Draco</Title> <AppVersion>1.4.1</AppVersion> <Description>Draco is a library developed by Google for compressing/decompressing 3D geometric meshes and point clouds. This test profile uses some Artec3D PLY models as the sample 3D model input formats for Draco compression/decompression.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake</ExternalDependencies> <EnvironmentSize>310</EnvironmentSize> <ProjectURL>https://google.github.io/draco/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Model</DisplayName> <Identifier>model</Identifier> <ArgumentPrefix>-i </ArgumentPrefix> <Menu> <Entry> <Name>Church Facade</Name> <Value>church.ply</Value> </Entry> <Entry> <Name>Lion</Name> <Value>lion.ply</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>