Rebuild ob-cache for 10.8.5 point release
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
1
ob-cache/test-profiles/pts/astcenc-1.5.1/changelog.json
Normal file
1
ob-cache/test-profiles/pts/astcenc-1.5.1/changelog.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"1.5.1":{"last_updated":"1712425383","commit_description":"Update against upstream astcenc 4.7."},"1.4.0":{"last_updated":"1658482206","commit_description":"Update against ASTC Encoder 4.0 upstream."},"1.3.1":{"last_updated":"1639354655","commit_description":"Copy paste fix for Windows install script."},"1.3.0":{"last_updated":"1633908577","commit_description":"Update against astcenc 3.2 upstream."},"1.2.0":{"last_updated":"1622719648","commit_description":"Update against ASTC Encoder 3.0."},"1.1.0":{"last_updated":"1615549409","commit_description":"Update against upstream ASTCENC 2.4."},"1.0.2":{"last_updated":"1605809112","commit_description":"Fix for building on AArch64."},"1.0.1":{"last_updated":"1605145784","commit_description":"Fix for macOS build."},"1.0.0":{"last_updated":"1597761825","commit_description":"Initial commit of Arm ASTC Encoder (astcenc) benchmark."}}
|
||||||
37
ob-cache/test-profiles/pts/astcenc-1.5.1/downloads.xml
Normal file
37
ob-cache/test-profiles/pts/astcenc-1.5.1/downloads.xml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>http://phoronix-test-suite.com/benchmark-files/png-samples-1.tar.xz</URL>
|
||||||
|
<MD5>3f928e4d08777e6e84c54202a00429de</MD5>
|
||||||
|
<SHA256>9810c8fd3afd35b4755c2a46f14fc66e2b9199c22e46a5946123c9250f2d1ccd</SHA256>
|
||||||
|
<FileName>png-samples-1.tar.xz</FileName>
|
||||||
|
<FileSize>58346628</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/ARM-software/astc-encoder/archive/refs/tags/4.7.0.tar.gz</URL>
|
||||||
|
<MD5>443519c5b340fb4c6525888723a028a6</MD5>
|
||||||
|
<SHA256>a57c81f79055aa7c9f8c82ac5464284e3df9bba682895dee09fa35bd1fdbab93</SHA256>
|
||||||
|
<FileName>astc-encoder-4.7.0.tar.gz</FileName>
|
||||||
|
<FileSize>36135038</FileSize>
|
||||||
|
<PlatformSpecific>Linux</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/ARM-software/astc-encoder/releases/download/4.7.0/astcenc-4.7.0-macos-universal.zip</URL>
|
||||||
|
<MD5>e3ff7bff13ae4cee9df9995820409393</MD5>
|
||||||
|
<SHA256>176b2c0bf2673d15eb1ba11c1e2691ccb041b79e4076fccd6cd0ece3f75aa2bc</SHA256>
|
||||||
|
<FileName>astcenc-4.7.0-macos-universal.zip</FileName>
|
||||||
|
<FileSize>1105192</FileSize>
|
||||||
|
<PlatformSpecific>MacOSX</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/ARM-software/astc-encoder/releases/download/4.7.0/astcenc-4.7.0-windows-x64.zip</URL>
|
||||||
|
<MD5>6b49137b520f1be53457e91e1936f501</MD5>
|
||||||
|
<SHA256>deb20ea0cb4ef522ca1eecee82358bfc9cdafd8d4101bc22f28502a0165180bd</SHA256>
|
||||||
|
<FileName>astcenc-4.7.0-windows-x64.zip</FileName>
|
||||||
|
<FileSize>1618844</FileSize>
|
||||||
|
<PlatformSpecific>Windows</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/astcenc-1.5.1/generated.json
Normal file
1
ob-cache/test-profiles/pts/astcenc-1.5.1/generated.json
Normal file
File diff suppressed because one or more lines are too long
29
ob-cache/test-profiles/pts/astcenc-1.5.1/install.sh
Normal file
29
ob-cache/test-profiles/pts/astcenc-1.5.1/install.sh
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf png-samples-1.tar.xz
|
||||||
|
tar -xf astc-encoder-4.7.0.tar.gz
|
||||||
|
cd astc-encoder-4.7.0
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
ASTCISA="-DASTCENC_ISA_AVX2=on"
|
||||||
|
ASTCBIN="avx2"
|
||||||
|
if [ $OS_ARCH = "aarch64" ]
|
||||||
|
then
|
||||||
|
ASTCISA="-DASTCENC_ISA_NEON=on"
|
||||||
|
ASTCBIN="neon"
|
||||||
|
fi
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release -DASTCENC_ISA_NATIVE=ON $ASTCISA -DCMAKE_CXX_FLAGS="-O3 -DNDEBUG" ..
|
||||||
|
make -j $NUM_CPU_CORES
|
||||||
|
EXIT_STATUS=$?
|
||||||
|
if [ $EXIT_STATUS -ne 0 ];
|
||||||
|
then
|
||||||
|
# GCC 14 fix
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release -DASTCENC_ISA_NATIVE=ON $ASTCISA -DCMAKE_CXX_FLAGS="-O3 -DNDEBUG -Wno-error=calloc-transposed-args" ..
|
||||||
|
make -j $NUM_CPU_CORES
|
||||||
|
EXIT_STATUS=$?
|
||||||
|
fi
|
||||||
|
echo $EXIT_STATUS > ~/install-exit-status
|
||||||
|
cd ~
|
||||||
|
echo "#!/bin/sh
|
||||||
|
./astc-encoder-4.7.0/build/Source/astcenc-$ASTCBIN \$@ > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > astcenc
|
||||||
|
chmod +x astcenc
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf png-samples-1.tar.xz
|
||||||
|
unzip -o astcenc-4.7.0-macos-universal.zip
|
||||||
|
chmod +x bin/astcenc
|
||||||
|
echo "#!/bin/sh
|
||||||
|
./bin/astcenc \$@ > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > astcenc
|
||||||
|
chmod +x astcenc
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf png-samples-1.tar.xz
|
||||||
|
unzip -o astcenc-4.7.0-windows-x64.zip
|
||||||
|
chmod +x bin/astcenc-avx2.exe
|
||||||
|
echo "#!/bin/sh
|
||||||
|
./bin/astcenc-avx2.exe \$@ > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > astcenc
|
||||||
|
chmod +x astcenc
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate> Coding rate: #_RESULT_# MT/s</OutputTemplate>
|
||||||
|
<DeleteOutputAfter>Decoding time:</DeleteOutputAfter>
|
||||||
|
</ResultsParser>
|
||||||
|
</PhoronixTestSuite>
|
||||||
56
ob-cache/test-profiles/pts/astcenc-1.5.1/test-definition.xml
Normal file
56
ob-cache/test-profiles/pts/astcenc-1.5.1/test-definition.xml
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>ASTC Encoder</Title>
|
||||||
|
<AppVersion>4.7</AppVersion>
|
||||||
|
<Description>ASTC Encoder (astcenc) is for the Adaptive Scalable Texture Compression (ASTC) format commonly used with OpenGL, OpenGL ES, and Vulkan graphics APIs. This test profile does a coding test of both compression/decompression.</Description>
|
||||||
|
<ResultScale>MT/s</ResultScale>
|
||||||
|
<Proportion>HIB</Proportion>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.5.1</Version>
|
||||||
|
<SupportedPlatforms>Linux, Windows, MacOSX</SupportedPlatforms>
|
||||||
|
<SoftwareType>Benchmark</SoftwareType>
|
||||||
|
<TestType>System</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, cmake</ExternalDependencies>
|
||||||
|
<EnvironmentSize>230</EnvironmentSize>
|
||||||
|
<ProjectURL>https://github.com/ARM-software/astc-encoder/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/ARM-software/astc-encoder</RepositoryURL>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
<TestSettings>
|
||||||
|
<Default>
|
||||||
|
<Arguments>-tl sample-4.png 1.png 8x6 </Arguments>
|
||||||
|
</Default>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Preset</DisplayName>
|
||||||
|
<Identifier>preset</Identifier>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>Fast</Name>
|
||||||
|
<Value>-fast -repeats 150</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Medium</Name>
|
||||||
|
<Value>-medium -repeats 40</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Thorough</Name>
|
||||||
|
<Value>-thorough -repeats 20</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Very Thorough</Name>
|
||||||
|
<Value>-verythorough -repeats 10</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Exhaustive</Name>
|
||||||
|
<Value>-exhaustive -repeats 6</Value>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
</TestSettings>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/avifenc-1.4.1/changelog.json
Normal file
1
ob-cache/test-profiles/pts/avifenc-1.4.1/changelog.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"1.4.1":{"last_updated":"1712423392","commit_description":"Update to 1.0.4 point release to fix newer compiler problems, fix Windows build."},"1.4.0":{"last_updated":"1693265286","commit_description":"Update against libavif 1.0 upstream."},"1.3.0":{"last_updated":"1665791888","commit_description":"Update against avifenc 0.11 upstream."},"1.2.0":{"last_updated":"1649288237","commit_description":"Update against libavif 0.10 upstream new release."},"1.1.1":{"last_updated":"1614096760","commit_description":"Limit job count to 64 otherwise the program exits abnormally."},"1.1.0":{"last_updated":"1614092144","commit_description":"Update against upstream libavif 0.9.0."},"1.0.0":{"last_updated":"1591110261","commit_description":"Initial commit of libavif avifenc encode benchmark."}}
|
||||||
35
ob-cache/test-profiles/pts/avifenc-1.4.1/downloads.xml
Normal file
35
ob-cache/test-profiles/pts/avifenc-1.4.1/downloads.xml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>http://www.phoronix-test-suite.com/benchmark-files/aom-350.tar.xz</URL>
|
||||||
|
<MD5>4bad477efe71208b0a190efd1fc5da8b</MD5>
|
||||||
|
<SHA256>7d4d88d2b0cea58243aa422f5ee4656a676b8a74170fbc29a2f36eb310446740</SHA256>
|
||||||
|
<FileName>aom-350.tar.xz</FileName>
|
||||||
|
<FileSize>3690192</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/AOMediaCodec/libavif/archive/refs/tags/v1.0.4.tar.gz</URL>
|
||||||
|
<MD5>8c786fd21f8757ace8cc011401e4d420</MD5>
|
||||||
|
<SHA256>dc56708c83a4b934a8af2b78f67f866ba2fb568605c7cf94312acf51ee57d146</SHA256>
|
||||||
|
<FileName>libavif-1.0.4.tar.gz</FileName>
|
||||||
|
<FileSize>10575992</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/AOMediaCodec/libavif/releases/download/v1.0.4/libavif-v1.0.4-avifenc-avifdec-windows.zip</URL>
|
||||||
|
<MD5>25492f3db250e0af46b80ab12352e717</MD5>
|
||||||
|
<SHA256>bb9d6adb68f4f11ba9524613bd5984eaecd2f425a686e3c5b0ed51293b5f41ea</SHA256>
|
||||||
|
<FileName>libavif-v1.0.4-avifenc-avifdec-windows.zip</FileName>
|
||||||
|
<FileSize>9991626</FileSize>
|
||||||
|
<PlatformSpecific>Windows</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>http://upload.wikimedia.org/wikipedia/commons/2/2c/Mars_topography_%28MOLA_dataset%29_with_poles_HiRes.jpg</URL>
|
||||||
|
<MD5>033f3dfec0031912d39bcfb48679ae85</MD5>
|
||||||
|
<SHA256>21aaf7b1b7d324cc4e79f779de4e277d861e4dbd445a08846cd13dd3c81ed345</SHA256>
|
||||||
|
<FileName>sample-photo-mars.jpg</FileName>
|
||||||
|
<FileSize>20369694</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/avifenc-1.4.1/generated.json
Normal file
1
ob-cache/test-profiles/pts/avifenc-1.4.1/generated.json
Normal file
File diff suppressed because one or more lines are too long
23
ob-cache/test-profiles/pts/avifenc-1.4.1/install.sh
Normal file
23
ob-cache/test-profiles/pts/avifenc-1.4.1/install.sh
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf libavif-1.0.4.tar.gz
|
||||||
|
cd libavif-1.0.4/ext
|
||||||
|
tar -xf ~/aom-350.tar.xz
|
||||||
|
mkdir aom/build.libavif
|
||||||
|
cd aom/build.libavif
|
||||||
|
export CXXFLAGS="-O3 -fPIC -Wno-error $CXXFLAGS"
|
||||||
|
export CFLAGS="-O3 -fPIC -Wno-error $CFLAGS"
|
||||||
|
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCS=0 -DENABLE_EXAMPLES=0 -DENABLE_TESTDATA=0 -DENABLE_TESTS=0 -DENABLE_TOOLS=0 -DBUILD_SHARED_LIBS=1 ..
|
||||||
|
ninja
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
cd ~/libavif-1.0.4/
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -DAVIF_CODEC_AOM=1 -DAVIF_LOCAL_AOM=1 -DAVIF_BUILD_APPS=1 ..
|
||||||
|
make -j $NUM_CPU_CORES
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
cd ~
|
||||||
|
echo "#!/bin/bash
|
||||||
|
THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES))
|
||||||
|
./libavif-1.0.4/build/avifenc -j \$THREADCOUNT \$@
|
||||||
|
echo \$? > ~/test-exit-status" > avifenc
|
||||||
|
chmod +x avifenc
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
unzip -o libavif-v1.0.4-avifenc-avifdec-windows.zip
|
||||||
|
chmod +x avifenc.exe
|
||||||
|
echo "#!/bin/bash
|
||||||
|
THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES))
|
||||||
|
./avifenc.exe -j \$THREADCOUNT \$@" > avifenc
|
||||||
|
chmod +x avifenc
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
63
ob-cache/test-profiles/pts/avifenc-1.4.1/test-definition.xml
Normal file
63
ob-cache/test-profiles/pts/avifenc-1.4.1/test-definition.xml
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>libavif avifenc</Title>
|
||||||
|
<AppVersion>1.0</AppVersion>
|
||||||
|
<Description>This is a test of the AOMedia libavif library testing the encoding of a JPEG image to AV1 Image Format (AVIF).</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.4.1</Version>
|
||||||
|
<SupportedPlatforms>Linux, MacOSX, BSD, Windows</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, cmake, perl, yasm, meson, nasm, libpng-development, jpeg-development</ExternalDependencies>
|
||||||
|
<EnvironmentSize>70</EnvironmentSize>
|
||||||
|
<ProjectURL>https://github.com/AOMediaCodec/libavif/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/AOMediaCodec/libavif</RepositoryURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
<SystemDependencies>libyuv.h</SystemDependencies>
|
||||||
|
</TestProfile>
|
||||||
|
<TestSettings>
|
||||||
|
<Default>
|
||||||
|
<PostArguments>--autotiling sample-photo-mars.jpg output.avif</PostArguments>
|
||||||
|
</Default>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Encoder Speed</DisplayName>
|
||||||
|
<Identifier>enc-mode</Identifier>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>0</Name>
|
||||||
|
<Value>-s 0</Value>
|
||||||
|
<Message>Slowest</Message>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>2</Name>
|
||||||
|
<Value>-s 2</Value>
|
||||||
|
<Message>Slow</Message>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>6</Name>
|
||||||
|
<Value>-s 6</Value>
|
||||||
|
<Message>Default</Message>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>6, Lossless</Name>
|
||||||
|
<Value>-s 6 -l</Value>
|
||||||
|
<Message>Default Speed + Lossless</Message>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>10, Lossless</Name>
|
||||||
|
<Value>-s 10 -l</Value>
|
||||||
|
<Message>Faster</Message>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
</TestSettings>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/blender-4.1.0/changelog.json
Normal file
1
ob-cache/test-profiles/pts/blender-4.1.0/changelog.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"4.1.0":{"last_updated":"1711473967","commit_description":"Update against Blender 4.1 upstream, add Junkshop scene too."},"4.0.0":{"last_updated":"1699970143","commit_description":"Update against Blender 4.0 upstream."},"3.6.0":{"last_updated":"1687881242","commit_description":"Update against Blender 3.6 upstream."},"3.5.0":{"last_updated":"1680105434","commit_description":"Update against Blender 3.5 upstream."},"3.4.0":{"last_updated":"1670457242","commit_description":"Update against Blender 3.4 upstream."},"3.3.1":{"last_updated":"1662760669","commit_description":"Update SHA256 \/ MD5 for Blender 3.3 Linux as upstream appears to have respun that build. Fixes: https:\/\/github.com\/phoronix-test-suite\/phoronix-test-suite\/issues\/671"},"3.3.0":{"last_updated":"1662551060","commit_description":"Update against Blender 3.3 upstream, add Intel oneAPI back-end option."},"3.2.0":{"last_updated":"1654716318","commit_description":"Update against Blender 3.2 upstram, expose Radeon HIP option, switch to using --cycles-device option in recent versions for setting device acceleration."},"3.0.0":{"last_updated":"1638562112","commit_description":"Update against Blender 3.0 upstream release."},"1.9.1":{"last_updated":"1636050137","commit_description":"Update download links for Barbershop blend files, old mirror broke."},"1.9.0":{"last_updated":"1614283338","commit_description":"Update against Blender 2.92 upstream."},"1.8.0":{"last_updated":"1598910871","commit_description":"Update against upstream Blender 2.90."},"1.7.1":{"last_updated":"1589744036","commit_description":"Add macOS support, add more download mirrors."},"1.7.0":{"last_updated":"1581710823","commit_description":"Update against Blender 2.82 upstream."},"1.6.0":{"last_updated":"1574386092","commit_description":"Update against Blender 2.81."},"1.5.1":{"last_updated":"1569772534","commit_description":"Fix for Blender 2.80 Python API preferences handling for GPU selection."},"1.5.0":{"last_updated":"1565620792","commit_description":"Update against Blender 2.80 upstream."},"1.4.1":{"last_updated":"1519915637","commit_description":"Square away the Windows support."},"1.4.0":{"last_updated":"1519908194","commit_description":"Update against Blender 2.79a, plumb in initial Windows support."},"1.3.2":{"last_updated":"1511730328","commit_description":"Fix GPU download link"},"1.3.1":{"last_updated":"1511620463","commit_description":"Add new Barbershop scene."},"1.3.0":{"last_updated":"1505574952","commit_description":"Update against Blender 2.79 upstream"},"1.2.0":{"last_updated":"1492554910","commit_description":"Update to upstream 2.78c"},"1.1.1":{"last_updated":"1483631096","commit_description":"Add explicit CPU-only \/ NONE acceleration option"},"1.1.0":{"last_updated":"1478116949","commit_description":"Update against upstream Blender 2.78a"},"1.0.0":{"last_updated":"1468242581","commit_description":"Initial commit"}}
|
||||||
61
ob-cache/test-profiles/pts/blender-4.1.0/downloads.xml
Normal file
61
ob-cache/test-profiles/pts/blender-4.1.0/downloads.xml
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://download.blender.org/release/Blender4.1/blender-4.1.0-linux-x64.tar.xz, http://ftp.vim.org/graphics/blender/release/Blender4.1/blender-4.1.0-linux-x64.tar.xz, https://mirror.clarkson.edu/blender/release/Blender4.1/blender-4.1.0-linux-x64.tar.xz</URL>
|
||||||
|
<MD5>c217ef2d5599e10baa39fd3091bb1270</MD5>
|
||||||
|
<SHA256>d2ac5390f4a9cb9416c8eb23bdd8fa8e49e68165a889575fd8f56563f5cccaf1</SHA256>
|
||||||
|
<FileName>blender-4.1.0-linux-x64.tar.xz</FileName>
|
||||||
|
<FileSize>299117800</FileSize>
|
||||||
|
<PlatformSpecific>Linux</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://download.blender.org/release/Blender4.1/blender-4.1.0-windows-x64.zip, http://ftp.vim.org/graphics/blender/release/Blender4.1/blender-4.1.0-windows-x64.zip, https://mirror.clarkson.edu/blender/release/Blender4.1/blender-4.1.0-windows-x64.zip</URL>
|
||||||
|
<MD5>995166b0c8c4cd461f212fd7778ceb5c</MD5>
|
||||||
|
<SHA256>566154c0aefc3ad5d0b42b5290dcc61830ba83cc968688f2bed7907f89d72e3a</SHA256>
|
||||||
|
<FileName>blender-4.1.0-windows-x64.zip</FileName>
|
||||||
|
<FileSize>421690005</FileSize>
|
||||||
|
<PlatformSpecific>Windows</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://download.blender.org/release/Blender4.1/blender-4.1.0-macos-x64.dmg, http://ftp.vim.org/graphics/blender/release/Blender4.1/blender-4.1.0-macos-x64.dmg, https://mirror.clarkson.edu/blender/release/Blender4.1/blender-4.1.0-macos-x64.dmg</URL>
|
||||||
|
<MD5>fe86dc632a5f86c0278323122b8d7759</MD5>
|
||||||
|
<SHA256>e7575e7bb12715984f1195fba3537cb890e12355b473e47a8f55e7bab184f509</SHA256>
|
||||||
|
<FileName>blender-4.1.0-macos-x64.dmg</FileName>
|
||||||
|
<FileSize>295967542</FileSize>
|
||||||
|
<PlatformSpecific>MacOSX</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>http://download.blender.org/demo/test/cycles_benchmark_20160228.zip, http://ftp.vim.org/ftp/pub/ftp/graphics/blender/demo/test/cycles_benchmark_20160228.zip, http://ftp.nl.freebsd.org/ftp/graphics/blender/demo/test/cycles_benchmark_20160228.zip</URL>
|
||||||
|
<MD5>61dabc9cc92dec9549f73f7453d9a875</MD5>
|
||||||
|
<SHA256>026e7499a7bd9e0d41fe4d43e611a145a62d8d5df4fe347a6a08c6f0e98cf0c6</SHA256>
|
||||||
|
<FileName>cycles_benchmark_20160228.zip</FileName>
|
||||||
|
<FileSize>530883683</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://svn.blender.org/svnroot/bf-blender/tags/blender-2.92-release/lib/benchmarks/cycles/barbershop_interior/barbershop_interior_cpu.blend</URL>
|
||||||
|
<MD5>2b1cb4c2f4f1813ab7a8d95dceabf48d</MD5>
|
||||||
|
<SHA256>95972b56180462cac47ec82f3a755bd9111ec18ca37a6196a319c013db994130</SHA256>
|
||||||
|
<FileName>barbershop_interior_cpu.blend</FileName>
|
||||||
|
<FileSize>287574804</FileSize>
|
||||||
|
<Optional>TRUE</Optional>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://svn.blender.org/svnroot/bf-blender/tags/blender-2.92-release/lib/benchmarks/cycles/barbershop_interior/barbershop_interior_gpu.blend</URL>
|
||||||
|
<MD5>10e5a559064df9f1da9dd43bef3f4523</MD5>
|
||||||
|
<SHA256>4a79ec95e7d96602ab16d475370f6b765a713a546edfa420dd53a4c25e464417</SHA256>
|
||||||
|
<FileName>barbershop_interior_gpu.blend</FileName>
|
||||||
|
<FileSize>287594564</FileSize>
|
||||||
|
<Optional>TRUE</Optional>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://svn.blender.org/svnroot/bf-blender/tags/blender-4.1-release/lib/benchmarks/cycles/junkshop/junkshop.blend</URL>
|
||||||
|
<MD5>413551c69e977f5af5c304df3524071a</MD5>
|
||||||
|
<SHA256>197988106ac3232219cf62d2b26de9541a8326fde960abd0718e043049467afb</SHA256>
|
||||||
|
<FileName>junkshop.blend</FileName>
|
||||||
|
<FileSize>403887400</FileSize>
|
||||||
|
<Optional>TRUE</Optional>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/blender-4.1.0/generated.json
Normal file
1
ob-cache/test-profiles/pts/blender-4.1.0/generated.json
Normal file
File diff suppressed because one or more lines are too long
19
ob-cache/test-profiles/pts/blender-4.1.0/install.sh
Normal file
19
ob-cache/test-profiles/pts/blender-4.1.0/install.sh
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf blender-4.1.0-linux-x64.tar.xz
|
||||||
|
unzip -o cycles_benchmark_20160228.zip
|
||||||
|
mv benchmark/bmw27/*.blend ~
|
||||||
|
mv benchmark/classroom/*.blend ~
|
||||||
|
mv benchmark/fishy_cat/*.blend ~
|
||||||
|
mv benchmark/pabellon_barcelona/*.blend ~
|
||||||
|
rm -rf benchmark
|
||||||
|
echo "#!/bin/bash
|
||||||
|
cd blender-4.1.0-linux-x64
|
||||||
|
BLEND_ARGS=\$@
|
||||||
|
if [[ \$@ =~ .*CPU.* ]]
|
||||||
|
then
|
||||||
|
BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu}
|
||||||
|
fi
|
||||||
|
./blender \$BLEND_ARGS > \$LOG_FILE 2> /dev/null
|
||||||
|
echo \$? > ~/test-exit-status
|
||||||
|
rm -f output.test" > blender
|
||||||
|
chmod +x blender
|
||||||
17
ob-cache/test-profiles/pts/blender-4.1.0/install_macosx.sh
Normal file
17
ob-cache/test-profiles/pts/blender-4.1.0/install_macosx.sh
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
unzip -o cycles_benchmark_20160228.zip
|
||||||
|
mv benchmark/bmw27/*.blend ~
|
||||||
|
mv benchmark/classroom/*.blend ~
|
||||||
|
mv benchmark/fishy_cat/*.blend ~
|
||||||
|
mv benchmark/pabellon_barcelona/*.blend ~
|
||||||
|
echo "#!/bin/bash
|
||||||
|
[ ! -d /Volumes/Blender/ ] && hdid blender-4.1.0-macos-x64.dmg
|
||||||
|
BLEND_ARGS=\$@
|
||||||
|
if [[ \$@ =~ .*CPU.* ]]
|
||||||
|
then
|
||||||
|
BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu}
|
||||||
|
fi
|
||||||
|
cd benchmark
|
||||||
|
/Volumes/Blender/Blender.app/Contents/MacOS/Blender \$BLEND_ARGS > \$LOG_FILE
|
||||||
|
rm -f output.test" > blender
|
||||||
|
chmod +x blender
|
||||||
20
ob-cache/test-profiles/pts/blender-4.1.0/install_windows.sh
Normal file
20
ob-cache/test-profiles/pts/blender-4.1.0/install_windows.sh
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
unzip -o blender-4.1.0-windows-x64.zip
|
||||||
|
unzip -o cycles_benchmark_20160228.zip
|
||||||
|
mv benchmark/bmw27/*.blend ~
|
||||||
|
mv benchmark/classroom/*.blend ~
|
||||||
|
mv benchmark/fishy_cat/*.blend ~
|
||||||
|
mv benchmark/pabellon_barcelona/*.blend ~
|
||||||
|
rm -rf benchmark
|
||||||
|
echo "#!/bin/bash
|
||||||
|
cd blender-4.1.0-windows-x64
|
||||||
|
BLEND_ARGS=\$@
|
||||||
|
if [[ \$@ =~ .*CPU.* ]]
|
||||||
|
then
|
||||||
|
BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu}
|
||||||
|
fi
|
||||||
|
export HOME=\"\$DEBUG_HOME\"
|
||||||
|
export PATH=\$DEBUG_PATH
|
||||||
|
./blender.exe \$BLEND_ARGS > \$LOG_FILE
|
||||||
|
rm -f output.test" > blender
|
||||||
|
chmod +x blender
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate>Time: #_RESULT_# (Saving: 00:00.03)</OutputTemplate>
|
||||||
|
<LineHint>Saving:</LineHint>
|
||||||
|
</ResultsParser>
|
||||||
|
</PhoronixTestSuite>
|
||||||
94
ob-cache/test-profiles/pts/blender-4.1.0/test-definition.xml
Normal file
94
ob-cache/test-profiles/pts/blender-4.1.0/test-definition.xml
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Blender</Title>
|
||||||
|
<AppVersion>4.1</AppVersion>
|
||||||
|
<Description>Blender is an open-source 3D creation and modeling software project. This test is of Blender's Cycles performance with various sample files. GPU computing via NVIDIA OptiX and NVIDIA CUDA is currently supported as well as HIP for AMD Radeon GPUs and Intel oneAPI for Intel Graphics.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>4.1.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, Windows, MacOSX</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>System</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<SupportedArchitectures>x86_64</SupportedArchitectures>
|
||||||
|
<EnvironmentSize>1500</EnvironmentSize>
|
||||||
|
<ProjectURL>https://www.blender.org/</ProjectURL>
|
||||||
|
<RepositoryURL>https://git.blender.org/gitweb/gitweb.cgi/blender.git</RepositoryURL>
|
||||||
|
<InternalTags>CUDA</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
<TestSettings>
|
||||||
|
<Default>
|
||||||
|
<Arguments>-noaudio --enable-autoexec</Arguments>
|
||||||
|
</Default>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Blend File</DisplayName>
|
||||||
|
<Identifier>blend</Identifier>
|
||||||
|
<ArgumentPrefix>-b </ArgumentPrefix>
|
||||||
|
<ArgumentPostfix> -o output.test -x 1 -F JPEG -f 1</ArgumentPostfix>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>BMW27</Name>
|
||||||
|
<Value>../bmw27_gpu.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Classroom</Name>
|
||||||
|
<Value>../classroom_gpu.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Fishy Cat</Name>
|
||||||
|
<Value>../fishy_cat_gpu.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Pabellon Barcelona</Name>
|
||||||
|
<Value>../pavillon_barcelone_gpu.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Barbershop</Name>
|
||||||
|
<Value>../barbershop_interior_gpu.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Junkshop</Name>
|
||||||
|
<Value>../junkshop.blend</Value>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Compute</DisplayName>
|
||||||
|
<Identifier>compute</Identifier>
|
||||||
|
<ArgumentPrefix>-- --cycles-device </ArgumentPrefix>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>CPU-Only</Name>
|
||||||
|
<Value>CPU</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>NVIDIA CUDA</Name>
|
||||||
|
<Value>CUDA</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>NVIDIA OptiX</Name>
|
||||||
|
<Value>OPTIX</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Radeon HIP</Name>
|
||||||
|
<Value>HIP</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>macOS Metal</Name>
|
||||||
|
<Value>METAL</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Intel oneAPI</Name>
|
||||||
|
<Value>ONEAPI</Value>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
</TestSettings>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/brl-cad-1.6.0/changelog.json
Normal file
1
ob-cache/test-profiles/pts/brl-cad-1.6.0/changelog.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"1.6.0":{"last_updated":"1710883414","commit_description":"Update against BRL-CAD 7.38.2 upstream."},"1.5.0":{"last_updated":"1690469240","commit_description":"Update against BRL-CAD 7.36 upstream."},"1.4.0":{"last_updated":"1672762853","commit_description":"Update against BRL-CAD 7.34 upstream."},"1.3.0":{"last_updated":"1662464575","commit_description":"Update against BRL-CAD 7.32.6 upstream."},"1.2.0":{"last_updated":"1622485848","commit_description":"Update against BRL-CAD 7.32.2 to work with newer compilers \/ distributions."},"1.1.2":{"last_updated":"1607706672","commit_description":"BSD build fix per https:\/\/github.com\/apurvanandan1997\/pts-test-profiles-dev\/commit\/2426d18ee21cbd95bab2898f753f7d64d7f50899#diff-8074891d75800c73e983a9e342094e82800c066916aa8c43f9777da5df6f0920"},"1.1.1":{"last_updated":"1605196378","commit_description":"Enable building on macOS."},"1.1.0":{"last_updated":"1589712382","commit_description":"Update BRL-CAD per https:\/\/github.com\/phoronix-test-suite\/phoronix-test-suite\/pull\/438"},"1.0.1":{"last_updated":"1538607971","commit_description":"Update download URLs."},"1.0.0":{"last_updated":"1538519408","commit_description":"Initial commit of BRL-CAD solid modeling software benchmark."}}
|
||||||
13
ob-cache/test-profiles/pts/brl-cad-1.6.0/downloads.xml
Normal file
13
ob-cache/test-profiles/pts/brl-cad-1.6.0/downloads.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/BRL-CAD/brlcad/archive/refs/tags/rel-7-38-2.tar.gz</URL>
|
||||||
|
<MD5>658a363c6064532bf17cba5924cab7f1</MD5>
|
||||||
|
<SHA256>ed32bb88c6ba9e9661beb08f22b00151568eefa4f638bcb9eac0d96a94961bc1</SHA256>
|
||||||
|
<FileName>brlcad-rel-7-38-2.tar.gz</FileName>
|
||||||
|
<FileSize>201404094</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/brl-cad-1.6.0/generated.json
Normal file
1
ob-cache/test-profiles/pts/brl-cad-1.6.0/generated.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"59c7fed087ff591e1c14fc2fa2069302338fbf1c":{"description":"VGR Performance Metric","test_version":"1.6.x","app_version":"7.38.2","unit":"VGR Performance Metric","samples":112,"timing_samples":112,"hib":1,"first_appeared":1710888085,"last_appeared":1713471919,"run_time_avg":1078,"stddev_avg":0,"percentiles":[78739,79133,79272,81286,81825,81913,85972,85972,86032,122838,122838,123265,123265,129714,129714,131132,131132,135991,137529,143423,143423,144251,144251,144595,146617,147908,148457,148959,155503,155503,155860,155860,167057,167521,167932,170618,170618,181031,187148,187668,188430,188736,188971,189384,197598,197629,211860,211860,212029,212029,221812,222150,385971,387261,388416,388697,420528,424641,425778,483240,502996,511240,511686,518977,520682,522046,568970,833892,836974,881241,881342,884408,916904,922059,922059,927081,1244893,1244893,1251895,1255013,1255256,1260871,1274397,3906839,3906839,3991802,3991802,4136969,4482152,5186677,5248584,5248584,5340792,5526743,5794040,5927564,5927564,5927564,5956612,5956612],"run_time_percentiles":[456,467,467,479,479,505,536,536,544,552,571,571,583,596,596,623,636,651,651,667,674,675,677,681,684,691,702,702,708,738,741,741,745,753,758,759,769,775,798,798,817,819,827,831,835,836,837,839,845,848,868,880,893,893,895,896,902,902,905,906,914,918,933,933,943,981,992,1029,1100,1100,1142,1142,1144,1144,1144,1270,1307,1569,1647,1791,1800,1800,1903,1949,1976,1984,1984,1984,1985,2062,2084,2084,2098,2098,2098,2170,2175,2175,2175,2194],"tested_archs":["x86_64"]}}}
|
||||||
19
ob-cache/test-profiles/pts/brl-cad-1.6.0/install.sh
Normal file
19
ob-cache/test-profiles/pts/brl-cad-1.6.0/install.sh
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf brlcad-rel-7-38-2.tar.gz
|
||||||
|
cp brlcad-rel-7-38-2/src/other/libpng/scripts/pnglibconf.h.prebuilt brlcad-rel-7-38-2/src/other/libpng/pnglibconf.h
|
||||||
|
mkdir brlcad-rel-7-38-2/build
|
||||||
|
cd brlcad-rel-7-38-2/build
|
||||||
|
cmake .. -DBRLCAD_ENABLE_STRICT=NO -DBRLCAD_BUNDLED_LIBS=ON -DBRLCAD_OPTIMIZED=ON -DBRLCAD_PNG=OFF -DCMAKE_BUILD_TYPE=Release -DBRLCAD_WARNINGS=OFF
|
||||||
|
if [ "$OS_TYPE" = "BSD" ]
|
||||||
|
then
|
||||||
|
gmake -j $NUM_CPU_CORES
|
||||||
|
else
|
||||||
|
make -j $NUM_CPU_CORES
|
||||||
|
fi
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
cd ~
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd brlcad-rel-7-38-2/build
|
||||||
|
./bench/benchmark run -P\$NUM_CPU_CORES > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > brl-cad
|
||||||
|
chmod +x brl-cad
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate>Benchmark results indicate an approximate VGR performance metric of #_RESULT_#</OutputTemplate>
|
||||||
|
</ResultsParser>
|
||||||
|
</PhoronixTestSuite>
|
||||||
26
ob-cache/test-profiles/pts/brl-cad-1.6.0/test-definition.xml
Normal file
26
ob-cache/test-profiles/pts/brl-cad-1.6.0/test-definition.xml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>BRL-CAD</Title>
|
||||||
|
<AppVersion>7.38.2</AppVersion>
|
||||||
|
<Description>BRL-CAD is a cross-platform, open-source solid modeling system with built-in benchmark mode.</Description>
|
||||||
|
<ResultScale>VGR Performance Metric</ResultScale>
|
||||||
|
<Proportion>HIB</Proportion>
|
||||||
|
<SubTitle>VGR Performance Metric</SubTitle>
|
||||||
|
<TimesToRun>1</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.6.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, Solaris, BSD, MacOSX</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>System</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, cmake, flex, tcl, zlib-development, libpng-development</ExternalDependencies>
|
||||||
|
<EnvironmentSize>4100</EnvironmentSize>
|
||||||
|
<ProjectURL>https://brlcad.org/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/BRL-CAD/brlcad</RepositoryURL>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"7.0.0":{"last_updated":"1712330817","commit_description":"Update against FFmpeg 7.0 upstream."},"6.1.0":{"last_updated":"1699709499","commit_description":"Update against FFmpeg 6.1 to fix GCC 13 build."},"6.0.0":{"last_updated":"1677589855","commit_description":"Update against FFmpeg 6.0 upstream."},"1.1.0":{"last_updated":"1622287070","commit_description":"Update against upstream FFmpeg 4.4."},"1.0.2":{"last_updated":"1607708365","commit_description":"BSD fixes per https:\/\/github.com\/apurvanandan1997\/pts-test-profiles-dev\/tree\/master\/build-ffmpeg-1.0.1"},"1.0.1":{"last_updated":"1581212484","commit_description":"TimesToRun should be 3."},"1.0.0":{"last_updated":"1581212310","commit_description":"Initial commit."}}
|
||||||
13
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/downloads.xml
Normal file
13
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/downloads.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>http://ffmpeg.org/releases/ffmpeg-7.0.tar.xz</URL>
|
||||||
|
<MD5>d2edfc6ec6494c432828876e3102f740</MD5>
|
||||||
|
<SHA256>4426a94dd2c814945456600c8adfc402bee65ec14a70e8c531ec9a2cd651da7b</SHA256>
|
||||||
|
<FileName>ffmpeg-7.0.tar.xz</FileName>
|
||||||
|
<FileSize>10791240</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"30caceca5752d51b665f5deb37d32e80813b536b":{"description":"Time To Compile","test_version":"7.0.x","app_version":"7.0","unit":"Seconds","samples":115,"timing_samples":22,"hib":0,"first_appeared":1712279498,"last_appeared":1713582587,"run_time_avg":72,"stddev_avg":0.05,"percentiles":[16.734,16.888,17.004,17.027,17.027,17.152,17.152,17.389,17.9,17.962,17.981,18.077,19.085,19.4,19.559,21.165,21.165,21.165,21.285,21.357,21.536,21.536,22.132,23.14,23.543,23.93,24.021,24.175,24.175,24.175,25.466,26.729,26.751,26.853,27.328,27.472,27.544,27.561,27.601,27.602,27.786,28.108,30.011,30.018,30.122,30.829,30.948,46.095,46.095,47.369,47.369,52.91,53.138,53.323,53.547,54.948,55.116,57.786,57.786,65.888,68.618,68.85,69.781,70.332,70.784,70.875,70.95,71.032,71.097,71.097,71.118,71.388,72.397,72.397,74.488,74.819,74.993,77.278,77.278,79.051,80.315,81.404,83.784,83.911,83.92,83.966,84.903,108.866,108.866,109.408,109.408,115.396,115.937,116.404,130.236,130.418,227.65,227.65,230.195,230.195],"run_time_percentiles":[44,44,44,44,44,51,51,51,51,51,52,52,52,52,52,52,52,52,52,57,57,57,57,59,59,59,59,59,59,59,59,59,64,64,64,64,64,64,64,64,64,66,66,66,66,66,69,69,69,69,70,70,70,70,70,71,71,71,71,71,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,79,79,79,79,82,82,82,82,82,82,82,82,82,99,99,99,99,99,165,165,165,165],"tested_archs":["x86_64","riscv64"]}}}
|
||||||
12
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/install.sh
Normal file
12
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/install.sh
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf ffmpeg-7.0.tar.xz
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd ffmpeg-7.0
|
||||||
|
if [ \$OS_TYPE = \"BSD\" ]
|
||||||
|
then
|
||||||
|
gmake -s -j \$NUM_CPU_CORES 2>&1
|
||||||
|
else
|
||||||
|
make -s -j \$NUM_CPU_CORES 2>&1
|
||||||
|
fi
|
||||||
|
echo \$? > ~/test-exit-status" > build-ffmpeg
|
||||||
|
chmod +x build-ffmpeg
|
||||||
8
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/interim.sh
Normal file
8
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/interim.sh
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd ffmpeg-7.0
|
||||||
|
if [ $OS_TYPE = "BSD" ]
|
||||||
|
then
|
||||||
|
gmake clean
|
||||||
|
else
|
||||||
|
make clean
|
||||||
|
fi
|
||||||
2
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/post.sh
Normal file
2
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/post.sh
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf ffmpeg-7.0
|
||||||
11
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/pre.sh
Normal file
11
ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/pre.sh
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf ffmpeg-7.0
|
||||||
|
tar -xf ffmpeg-7.0.tar.xz
|
||||||
|
cd ffmpeg-7.0
|
||||||
|
./configure --disable-zlib --disable-doc > /dev/null
|
||||||
|
if [ $OS_TYPE = "BSD" ]
|
||||||
|
then
|
||||||
|
gmake clean
|
||||||
|
else
|
||||||
|
make clean
|
||||||
|
fi
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Timed FFmpeg Compilation</Title>
|
||||||
|
<AppVersion>7.0</AppVersion>
|
||||||
|
<Description>This test times how long it takes to build the FFmpeg multimedia library.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>Time To Compile</SubTitle>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>7.0.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, yasm, nasm</ExternalDependencies>
|
||||||
|
<EnvironmentSize>978</EnvironmentSize>
|
||||||
|
<ProjectURL>https://www.ffmpeg.org/</ProjectURL>
|
||||||
|
<RepositoryURL>https://git.ffmpeg.org/ffmpeg.git</RepositoryURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
<SystemDependencies>pkg-config</SystemDependencies>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.16.0":{"last_updated":"1710342080","commit_description":"Update against Linux 6.8 upstream."},"1.15.0":{"last_updated":"1670862464","commit_description":"Update against v6.1 upstream. Also add cpio as possible system dependency - Fixes: https:\/\/github.com\/phoronix-test-suite\/test-profiles\/issues\/263"},"1.14.0":{"last_updated":"1655839308","commit_description":"Update against Linux 5.18 upstream, pull in via https:\/\/github.com\/phoronix-test-suite\/test-profiles\/pull\/227 Closes: https:\/\/github.com\/phoronix-test-suite\/test-profiles\/pull\/227"},"1.13.0":{"last_updated":"1641808781","commit_description":"Update against Linux 5.16 upstream to address build problems on newer distros. Also add allmodconfig run-time option."},"1.12.0":{"last_updated":"1630316769","commit_description":"Update against Linux 5.14 upstream since prior version used is having build issues on newer distros."},"1.11.0":{"last_updated":"1614862576","commit_description":"Move to Linux 5.10 LTS series (5.10.20) kernel build."},"1.10.2":{"last_updated":"1592922804","commit_description":"Add libelf.h as a SystemDependencies, addressing possible build issue outlined in https:\/\/github.com\/phoronix-test-suite\/phoronix-test-suite\/pull\/430"},"1.10.1":{"last_updated":"1587820347","commit_description":"Update against latest Linux 5.4 LTS point release to fix GCC 10 build problems."},"1.10.0":{"last_updated":"1571012226","commit_description":"Update against latest Linux 5.4 snapshot"},"1.9.1":{"last_updated":"1534975311","commit_description":"Somehow TimesToRun got overrode to 1 on upload..."},"1.9.0":{"last_updated":"1534975166","commit_description":"Update against upstream Linux 4.18, add bison\/flex\/openssl external dependencies, tweak the def config to avoid libelf dependency."},"1.8.0":{"last_updated":"1507045682","commit_description":"Update against Linux 4.13 upstream"},"1.7.0":{"last_updated":"1483547804","commit_description":"Update against upstream Linux 4.9.0 kernel"},"1.6.0":{"last_updated":"1446568600","commit_description":"Update against Linux 4.3.0 kernel."},"1.5.3":{"last_updated":"1417834983","commit_description":"Add bc as external dependency -- not installed by default on Arch."},"1.5.2":{"last_updated":"1417144349","commit_description":"Simplify make defconfig to better support other architectures."},"1.5.1":{"last_updated":"1417144070","commit_description":"Fix rc3\/rc6 typo in previous commit pre.sh"},"1.5.0":{"last_updated":"1417142505","commit_description":"Update against Linux 3.18-rc6 kernel due to the explicit GNU89 kernel change recently to allow this to work better on GCC5."},"1.4.0":{"last_updated":"1415570404","commit_description":"Update against latest upstream Linux kernel."},"1.3.0":{"last_updated":"1323299447","commit_description":"Update against Linux 3.1 vanilla kernel."},"1.2.0":{"last_updated":"1291663693","commit_description":"Initial import into OpenBenchmarking.org"}}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>http://fr2.rpmfind.net/linux/kernel/v6.x/linux-6.8.tar.xz, http://ftp.jaist.ac.jp/pub/Linux/kernel.org/linux/kernel/v6.x/linux-6.8.tar.xz, https://mirror.clarkson.edu/linux/linux/kernel/v6.x/linux-6.8.tar.xz, https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.8.tar.xz</URL>
|
||||||
|
<MD5>72d623b959a11850b57406f0b9fe3946</MD5>
|
||||||
|
<SHA256>c969dea4e8bb6be991bbf7c010ba0e0a5643a3a8d8fb0a2aaa053406f1e965f3</SHA256>
|
||||||
|
<FileName>linux-6.8.tar.xz</FileName>
|
||||||
|
<FileSize>142502100</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"a94fc255324a86f95ba5207758d45b3e012d6e50":{"description":"Build: defconfig","test_version":"1.16.x","app_version":"6.8","unit":"Seconds","samples":325,"timing_samples":226,"hib":0,"first_appeared":1710432604,"last_appeared":1713666564,"run_time_avg":1226,"stddev_avg":1.07,"percentiles":[21.439,25.767,26.074,26.88,27.042,27.193,27.457,28.619,29.264,29.704,29.981,31.329,35.492,35.532,37.639,38.462,38.778,39.425,40.008,40.22,40.815,40.869,40.94,44.095,45.753,48.473,48.928,49.243,49.972,50.163,50.357,51.213,51.517,51.727,52.561,52.812,54.133,54.671,55.496,57.987,58.85,60.771,60.9,61.794,65.88,70.265,72.107,74.36,79.382,84.063,88.742,90.505,91.85,93.026,94.273,94.901,101.465,102.268,103.694,108.884,119.94,123.253,129.496,134.002,139.142,141.736,143.5,147.112,152.41,162.739,166.498,170.028,174.951,195.398,209.1,216.08,228.333,231.416,253.658,259.535,267.713,278.406,364.223,370.994,400.317,422.413,424.694,429.283,436.963,450.727,476.187,496.16,509.874,562.044,570.701,808.92,907.374,1382.255,1802.587,3858.782],"run_time_percentiles":[90,116,117,119,121,122,123,135,143,144,146,147,150,152,155,155,158,163,164,166,173,174,175,177,181,183,185,195,197,199,201,213,215,216,218,220,223,226,227,231,236,249,252,258,266,266,278,281,291,304,307,316,319,336,358,364,377,387,403,425,445,470,512,525,649,685,761,771,791,803,995,1001,1003,1006,1052,1085,1169,1271,1286,1295,1308,1456,1530,1540,1613,1712,1896,1964,2090,2489,2527,2617,2827,3339,4147,5408,7262,7316,8296,11520],"tested_archs":["x86_64","aarch64","riscv64"]},"cb81925dba817594f846f03a3bc29a81ef048649":{"description":"Build: allmodconfig","test_version":"1.16.x","app_version":"6.8","unit":"Seconds","samples":162,"timing_samples":84,"hib":0,"first_appeared":1710432604,"last_appeared":1713604768,"run_time_avg":3140,"stddev_avg":0.17,"percentiles":[147.749,172.494,181.564,182.434,189.739,192.53,196.881,198.99,198.99,202.902,207.066,218.57,224.559,233.607,233.995,238.344,258.171,270.607,272.759,274.81,288.61,307.502,307.502,311.745,316.727,317.724,317.724,318.755,318.755,348.018,350.294,362.454,366.315,367.813,369.247,391.027,391.934,396.16,411.687,452.548,453.034,467.671,470.151,473.727,475.171,475.44,476.459,490.076,490.322,597.034,597.898,616.419,620.352,622.959,647.413,647.807,649.151,753.728,765.196,774.931,937.285,943.624,944.983,982.782,1001.139,1025.879,1038.162,1139.501,1308.279,1308.543,1308.976,1310.863,1311.874,1406.626,1410.639,1456.219,1533.004,1599.013,1600.595,1600.595,1790.872,1814.745,2018.834,2050.239,2061.975,2061.975,2064.329,2069.486,2198.954,2412.036,2412.546,2517.677,2587.39,2616.59,2800.759,3288.073,3296.146,6713.285,6726.464,11275.604],"run_time_percentiles":[443,443,517,569,571,578,591,591,591,597,597,656,668,668,678,775,811,812,815,815,824,824,866,923,923,923,923,935,935,950,951,1044,1044,1084,1087,1099,1188,1198,1198,1235,1356,1358,1359,1360,1360,1403,1403,1410,1421,1425,1426,1426,1426,1428,1429,1467,1790,1790,1851,1861,1940,1942,1943,1943,1943,1947,1994,2261,2296,2296,2297,2325,2357,2380,2812,2831,2831,2831,2948,3003,3203,3419,3419,3916,3936,4133,4369,4430,4430,4599,6157,7553,8402,9864,9864,11081,20139,20179,22050,33827],"tested_archs":["x86_64","aarch64","riscv64"]}}}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd linux-6.8
|
||||||
|
make -s -j \$NUM_CPU_CORES 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > build-linux-kernel
|
||||||
|
chmod +x build-linux-kernel
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd linux-6.8
|
||||||
|
make clean
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf linux-6.8
|
||||||
15
ob-cache/test-profiles/pts/build-linux-kernel-1.16.0/pre.sh
Normal file
15
ob-cache/test-profiles/pts/build-linux-kernel-1.16.0/pre.sh
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
rm -rf linux-6.8
|
||||||
|
tar -xf linux-6.8.tar.xz
|
||||||
|
cd linux-6.8
|
||||||
|
if [ -z "$@" ]
|
||||||
|
then
|
||||||
|
# This is for old PTS clients not passing anything per older old test profile configs that may be in suite...
|
||||||
|
export LINUX_MAKE_CONFIG="defconfig"
|
||||||
|
else
|
||||||
|
export LINUX_MAKE_CONFIG="$1"
|
||||||
|
fi
|
||||||
|
echo "make $LINUX_MAKE_CONFIG"
|
||||||
|
make "$LINUX_MAKE_CONFIG"
|
||||||
|
make clean
|
||||||
|
scripts/config --set-val CONFIG_WERROR n
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Timed Linux Kernel Compilation</Title>
|
||||||
|
<AppVersion>6.8</AppVersion>
|
||||||
|
<Description>This test times how long it takes to build the Linux kernel in a default configuration (defconfig) for the architecture being tested or alternatively an allmodconfig for building all possible kernel modules for the build.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>Time To Compile</SubTitle>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.16.0</Version>
|
||||||
|
<SupportedPlatforms>Linux</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, bc, bison, flex, openssl-development</ExternalDependencies>
|
||||||
|
<EnvironmentSize>982</EnvironmentSize>
|
||||||
|
<ProjectURL>https://www.kernel.org/</ProjectURL>
|
||||||
|
<RepositoryURL>https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git</RepositoryURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
<SystemDependencies>libelf.h, cpio</SystemDependencies>
|
||||||
|
</TestProfile>
|
||||||
|
<TestSettings>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Build</DisplayName>
|
||||||
|
<Identifier>build</Identifier>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>defconfig</Name>
|
||||||
|
<Value>defconfig</Value>
|
||||||
|
<Message>Default Kernel Build</Message>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>allmodconfig</Name>
|
||||||
|
<Value>allmodconfig</Value>
|
||||||
|
<Message>This option is *much* more time consuming...</Message>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
</TestSettings>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.1.0":{"last_updated":"1711326711","commit_description":"Update against Mesa 24.0 to fix modern build problems."},"1.0.0":{"last_updated":"1616001249","commit_description":"Add Mesa build test."}}
|
||||||
13
ob-cache/test-profiles/pts/build-mesa-1.1.0/downloads.xml
Normal file
13
ob-cache/test-profiles/pts/build-mesa-1.1.0/downloads.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://archive.mesa3d.org/mesa-24.0.3.tar.xz</URL>
|
||||||
|
<MD5>fb1794acf5f714e4835be3bf2ab010fe</MD5>
|
||||||
|
<SHA256>77aec9a2a37b7d3596ea1640b3cc53d0b5d9b3b52abed89de07e3717e91bfdbe</SHA256>
|
||||||
|
<FileName>mesa-24.0.3.tar.xz</FileName>
|
||||||
|
<FileSize>20021264</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"e40d6565e0c575145dc453b94f3ca3ca2807fdeb":{"description":"Time To Compile","test_version":"1.1.x","app_version":"24.0","unit":"Seconds","samples":124,"timing_samples":40,"hib":0,"first_appeared":1711431157,"last_appeared":1713552350,"run_time_avg":93,"stddev_avg":0.22,"percentiles":[11.58,11.623,11.639,11.639,11.644,12.799,14.463,14.463,14.465,14.529,14.66,14.66,14.66,14.756,14.756,14.756,14.786,15.01,15.124,15.158,15.222,15.322,15.336,15.746,15.799,16.146,16.183,16.379,16.379,16.529,17.258,17.266,18.104,18.293,18.803,18.812,19.226,19.229,19.511,19.511,19.888,19.888,25.529,26.37,26.37,28.379,28.571,28.571,28.571,31.329,32.622,34.889,34.889,36.759,36.759,37.261,37.417,37.597,37.68,37.949,37.949,38.025,38.025,39.651,40.318,40.318,40.432,40.839,40.839,41.437,42.783,43.435,43.986,43.986,44.071,44.555,44.555,56.13,57.087,57.087,57.265,58.728,58.728,62.049,62.897,62.897,62.911,62.911,72.318,72.555,123.779,123.779,124.301,130.87,134.66,134.66,134.718,143.249,143.249,143.674],"run_time_percentiles":[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,38,38,44,44,44,44,44,44,44,44,44,44,44,44,45,45,45,45,45,46,46,46,46,46,46,46,46,46,46,52,52,52,52,52,54,54,54,55,55,56,56,56,56,56,56,56,56,58,58,58,58,58,59,59,60,60,60,65,65,65,65,65,94,94,111,111,111,168,168,293,293,293,293,293,293,293,293,298,298,298,298,298,393,393],"tested_archs":["x86_64"]}}}
|
||||||
7
ob-cache/test-profiles/pts/build-mesa-1.1.0/install.sh
Normal file
7
ob-cache/test-profiles/pts/build-mesa-1.1.0/install.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
pip3 install --user mako
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd mesa-24.0.3
|
||||||
|
ninja -C build
|
||||||
|
echo \$? > ~/test-exit-status" > build-mesa
|
||||||
|
chmod +x build-mesa
|
||||||
4
ob-cache/test-profiles/pts/build-mesa-1.1.0/interim.sh
Normal file
4
ob-cache/test-profiles/pts/build-mesa-1.1.0/interim.sh
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd mesa-24.0.3
|
||||||
|
rm -rf build/
|
||||||
|
cp -va build-meson build
|
||||||
2
ob-cache/test-profiles/pts/build-mesa-1.1.0/post.sh
Normal file
2
ob-cache/test-profiles/pts/build-mesa-1.1.0/post.sh
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf mesa-24.0.3
|
||||||
6
ob-cache/test-profiles/pts/build-mesa-1.1.0/pre.sh
Normal file
6
ob-cache/test-profiles/pts/build-mesa-1.1.0/pre.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf mesa-24.0.3
|
||||||
|
tar -xf mesa-24.0.3.tar.xz
|
||||||
|
cd mesa-24.0.3
|
||||||
|
meson --buildtype=release -Dglx=xlib -Dvulkan-drivers= -Dgallium-drivers=swrast -Dplatforms=x11 -Dgallium-omx=disabled -Dllvm=disabled build
|
||||||
|
cp -va build build-meson
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Timed Mesa Compilation</Title>
|
||||||
|
<AppVersion>24.0</AppVersion>
|
||||||
|
<Description>This test profile times how long it takes to compile Mesa with Meson/Ninja. For minimizing build dependencies and avoid versioning conflicts, test this is just the core Mesa build without LLVM or the extra Gallium3D/Mesa drivers enabled.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>Time To Compile</SubTitle>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.1.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, BSD, MacOSX</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, python, meson, glew, xorg-development</ExternalDependencies>
|
||||||
|
<ProjectURL>https://www.mesa3d.org/</ProjectURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
<SystemDependencies>xcb/randr.h, X11/Xproto.h, GL/glxproto.h, X11/extensions/Xext.h, X11/extensions/Xrandr.h, X11/Xutil.h, xcb/xfixes.h</SystemDependencies>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.4.0":{"last_updated":"1712409319","commit_description":"Update against latest upstream to fix Python 3.12."},"1.3.0":{"last_updated":"1679506574","commit_description":"Update against Node.js 19.8.1 for GCC 13 and Python 3.11 build fixes."},"1.2.0":{"last_updated":"1662053145","commit_description":"Update against Node.js 18.8 upstream to address GCC 12 build issues."},"1.1.1":{"last_updated":"1640808437","commit_description":"interim.sh change to accommodate upstream difference around cleaning and building Node.js"},"1.1.0":{"last_updated":"1640805399","commit_description":"Update against nodejs 17.3 upstream to enable Python 3.10 compatibility."},"1.0.0":{"last_updated":"1616000073","commit_description":"Add Node.js timed compilation benchmark."}}
|
||||||
13
ob-cache/test-profiles/pts/build-nodejs-1.4.0/downloads.xml
Normal file
13
ob-cache/test-profiles/pts/build-nodejs-1.4.0/downloads.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://nodejs.org/dist/v21.7.2/node-v21.7.2.tar.xz</URL>
|
||||||
|
<MD5>dcfdf215f9694560243bfaf1cfc9d8cd</MD5>
|
||||||
|
<SHA256>b4b1e2a07e96f85f6ce34a2fbfea348691aefe5cb219aa6951e23ccc991f9e2f</SHA256>
|
||||||
|
<FileName>node-v21.7.2.tar.xz</FileName>
|
||||||
|
<FileSize>42378944</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"51299189295d5db20bb2b1678954f8bce193c9cb":{"description":"Time To Compile","test_version":"1.4.x","app_version":"21.7.2","unit":"Seconds","samples":82,"timing_samples":22,"hib":0,"first_appeared":1712503084,"last_appeared":1714867288,"run_time_avg":1630,"stddev_avg":0.07,"percentiles":[136.971,136.971,136.971,137.695,137.695,145.413,145.413,145.988,159.738,160.059,160.616,160.76,160.76,170.811,172.821,172.99,213.785,213.785,214.36,214.36,214.36,214.431,217.567,217.567,217.567,217.567,246.473,246.604,246.604,246.695,254.003,255.361,255.656,255.874,255.874,315.576,315.576,316.596,316.596,316.596,335.597,335.597,336.144,336.144,391.719,391.719,392.202,392.841,392.887,393.303,393.389,393.389,393.429,395.184,609.808,612.834,612.834,826.723,828.184,829.237,915.937,927.019,927.019,927.504,927.504,927.504,928.144,928.144,928.144,928.144,929.646,1116.523,1209.167,1209.167,1210.939,1252.68,1470.724,1470.724,1470.724,1483.894,1483.894,1519.308,1531.22,1531.752,1531.752,1533.462,1588.35,1660.62,1663.507,1663.507,1663.507,1669.19,1669.19,1839.833,1844.454,1844.454,1846.246,2232.743,2381.362,2381.362],"run_time_percentiles":[436,436,436,436,436,438,438,438,438,438,482,482,482,482,518,518,518,518,518,519,519,519,519,641,641,641,641,641,643,643,643,643,740,740,740,740,740,762,762,762,762,768,768,768,768,768,1175,1175,1175,1175,1177,1177,1177,1177,1177,1179,1179,1179,1179,1179,1179,1179,1179,1179,1190,1190,1190,1190,1190,1829,1829,1829,1829,1838,1838,1838,1838,1838,2748,2748,2748,2748,2789,2789,2789,2789,2789,3350,3350,3350,3350,4765,4765,4765,4765,4765,6698,6698,6698,6698],"tested_archs":["x86_64"]}}}
|
||||||
6
ob-cache/test-profiles/pts/build-nodejs-1.4.0/install.sh
Normal file
6
ob-cache/test-profiles/pts/build-nodejs-1.4.0/install.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd node-v21.7.2
|
||||||
|
make -s -j \$NUM_CPU_CORES 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > build-nodejs
|
||||||
|
chmod +x build-nodejs
|
||||||
5
ob-cache/test-profiles/pts/build-nodejs-1.4.0/interim.sh
Normal file
5
ob-cache/test-profiles/pts/build-nodejs-1.4.0/interim.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf node-v21.7.2
|
||||||
|
tar -xf node-v21.7.2.tar.xz
|
||||||
|
cd node-v21.7.2
|
||||||
|
./configure
|
||||||
2
ob-cache/test-profiles/pts/build-nodejs-1.4.0/post.sh
Normal file
2
ob-cache/test-profiles/pts/build-nodejs-1.4.0/post.sh
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf node-v21.7.2
|
||||||
5
ob-cache/test-profiles/pts/build-nodejs-1.4.0/pre.sh
Normal file
5
ob-cache/test-profiles/pts/build-nodejs-1.4.0/pre.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf node-v21.7.2
|
||||||
|
tar -xf node-v21.7.2.tar.xz
|
||||||
|
cd node-v21.7.2
|
||||||
|
./configure
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Timed Node.js Compilation</Title>
|
||||||
|
<AppVersion>21.7.2</AppVersion>
|
||||||
|
<Description>This test profile times how long it takes to build/compile Node.js itself from source. Node.js is a JavaScript run-time built from the Chrome V8 JavaScript engine while itself is written in C/C++.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>Time To Compile</SubTitle>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.4.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, BSD, MacOSX</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, python, openssl-development</ExternalDependencies>
|
||||||
|
<ProjectURL>https://nodejs.org/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/nodejs/node</RepositoryURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.7.0":{"last_updated":"1712506432","commit_description":"Update against PHP 8.3.4 to fix GCC 14 building."},"1.6.0":{"last_updated":"1662054611","commit_description":"Update against PHP 8.1 upstream."},"1.5.1":{"last_updated":"1581214001","commit_description":"TimesToRun should be 3"},"1.5.0":{"last_updated":"1581213879","commit_description":"Update against latest upstream, other modernization improvements."},"1.4.0":{"last_updated":"1504970313","commit_description":"Update against php 7.1.9 build"},"1.3.1":{"last_updated":"1327853981","commit_description":"Update upstream PHP 5.2.9 download links."},"1.3.0":{"last_updated":"1291663718","commit_description":"Initial import into OpenBenchmarking.org"}}
|
||||||
13
ob-cache/test-profiles/pts/build-php-1.7.0/downloads.xml
Normal file
13
ob-cache/test-profiles/pts/build-php-1.7.0/downloads.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>http://mirror.cogentco.com/pub/php/php-8.3.4.tar.xz, http://ftp.ntu.edu.tw/php/distributions/php-8.3.4.tar.xz, http://mirror.internode.on.net/pub/php/php-8.3.4.tar.xz</URL>
|
||||||
|
<MD5>598f9d78cbf4bbe4dc1c008a43459e61</MD5>
|
||||||
|
<SHA256>39a337036a546e5c28aea76cf424ac172db5156bd8a8fd85252e389409a5ba63</SHA256>
|
||||||
|
<FileName>php-8.3.4.tar.xz</FileName>
|
||||||
|
<FileSize>12443980</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"d4dc7e40aa7ccacd71d7e19616c4ddb0753b7509":{"description":"Time To Compile","test_version":"1.7.x","app_version":"8.3.4","unit":"Seconds","samples":97,"timing_samples":32,"hib":0,"first_appeared":1712279498,"last_appeared":1714867288,"run_time_avg":181,"stddev_avg":0.13,"percentiles":[33.017,33.017,33.063,33.128,33.13,33.221,33.302,33.309,33.418,33.436,33.567,33.58,37.083,37.083,37.31,37.31,40.381,40.727,41.404,41.454,41.454,41.454,41.663,41.663,41.663,41.817,41.817,41.846,41.988,41.988,43.105,43.105,43.296,43.296,43.296,46.439,46.644,47.063,47.962,47.986,48.002,48.007,48.889,48.951,49.003,54.449,55.051,55.311,55.311,55.311,55.339,55.912,56.222,56.222,56.222,58.309,58.549,58.688,61.639,73.43,73.43,74.022,74.022,75.28,75.845,75.969,76.327,76.327,76.75,77.265,78.784,79.016,82.471,82.666,82.852,82.916,83.056,83.056,83.461,83.461,84.127,85.525,85.525,85.757,85.757,88.665,88.665,88.807,88.807,106.349,106.449,107.056,125.356,125.72,127.015,189.59,189.59,190.602,190.602,1479.485],"run_time_percentiles":[97,97,97,97,99,99,99,99,99,99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,111,111,111,111,111,111,112,112,112,121,121,121,122,122,122,124,124,124,126,126,126,126,129,129,129,129,129,129,139,139,139,140,140,140,144,144,144,144,144,144,147,147,147,147,147,147,147,147,147,147,163,163,163,166,166,166,168,168,168,249,249,249,678,678,678,1262,1262,1262],"tested_archs":["x86_64","riscv64"]}}}
|
||||||
6
ob-cache/test-profiles/pts/build-php-1.7.0/install.sh
Normal file
6
ob-cache/test-profiles/pts/build-php-1.7.0/install.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd php-8.3.4
|
||||||
|
make -s -j \$NUM_CPU_CORES 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > time-compile-php
|
||||||
|
chmod +x time-compile-php
|
||||||
3
ob-cache/test-profiles/pts/build-php-1.7.0/interim.sh
Normal file
3
ob-cache/test-profiles/pts/build-php-1.7.0/interim.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd php-8.3.4
|
||||||
|
make clean
|
||||||
2
ob-cache/test-profiles/pts/build-php-1.7.0/post.sh
Normal file
2
ob-cache/test-profiles/pts/build-php-1.7.0/post.sh
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf php-8.3.4
|
||||||
6
ob-cache/test-profiles/pts/build-php-1.7.0/pre.sh
Normal file
6
ob-cache/test-profiles/pts/build-php-1.7.0/pre.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf php-8.3.4
|
||||||
|
tar -xf php-8.3.4.tar.xz
|
||||||
|
cd php-8.3.4
|
||||||
|
./configure --without-sqlite3 --without-pdo-sqlite
|
||||||
|
make clean
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<SystemMonitor>
|
||||||
|
<Sensor>sys.time</Sensor>
|
||||||
|
</SystemMonitor>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.5-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Timed PHP Compilation</Title>
|
||||||
|
<AppVersion>8.3.4</AppVersion>
|
||||||
|
<Description>This test times how long it takes to build PHP.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>Time To Compile</SubTitle>
|
||||||
|
<Executable>time-compile-php</Executable>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.7.0</Version>
|
||||||
|
<SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities, libxml2</ExternalDependencies>
|
||||||
|
<EnvironmentSize>114</EnvironmentSize>
|
||||||
|
<ProjectURL>http://www.php.net/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/php/php-src</RepositoryURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.6.1":{"last_updated":"1709911082","commit_description":"Update download links Closes: https:\/\/github.com\/phoronix-test-suite\/test-profiles\/pull\/287"},"1.6.0":{"last_updated":"1644670620","commit_description":"Update against latest point release and increase the file size for more intensity on modern CPUs... Not that this test is popular but the prior download mirrors were down."},"1.5.0":{"last_updated":"1450108838","commit_description":"Update against pbzip 1.1.12, switch to using Linux 4.3 kernel source package as compression source."},"1.4.1":{"last_updated":"1444337725","commit_description":"Update download links."},"1.4.0":{"last_updated":"1349319954","commit_description":"Update BZIP2 against upstream 1.0.6 and update PBZIP2 against upstream 1.1.6 source."},"1.3.0":{"last_updated":"1291664232","commit_description":"Initial import into OpenBenchmarking.org"}}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz, https://sources.openwrt.org/bzip2-1.0.8.tar.gz</URL>
|
||||||
|
<MD5>67e051268d0c475ea773822f7500d0e5</MD5>
|
||||||
|
<SHA256>ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269</SHA256>
|
||||||
|
<FileName>bzip2-1.0.8.tar.gz</FileName>
|
||||||
|
<FileSize>810029</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://launchpad.net/pbzip2/1.1/1.1.13/+download/pbzip2-1.1.13.tar.gz</URL>
|
||||||
|
<MD5>4cb87da2dba05540afce162f34b3a9a6</MD5>
|
||||||
|
<SHA256>8fd13eaaa266f7ee91f85c1ea97c86d9c9cc985969db9059cdebcb1e1b7bdbe6</SHA256>
|
||||||
|
<FileName>pbzip2-1.1.13.tar.gz</FileName>
|
||||||
|
<FileSize>48015</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>http://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/ISO-IMAGES/13.0/FreeBSD-13.0-RELEASE-amd64-memstick.img</URL>
|
||||||
|
<MD5>e0e21f7421e26f1da29b723895f42bb8</MD5>
|
||||||
|
<SHA256>3a1b0ef1e2211f03980eb00fdeedeb3cd9ead03f1bfcd9f6a1eb335c3b994377</SHA256>
|
||||||
|
<FileName>FreeBSD-13.0-RELEASE-amd64-memstick.img</FileName>
|
||||||
|
<FileSize>1090900480</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"cf383fd884ee444349b5cf03c7b5fac725ae7e7a":{"description":"FreeBSD-13.0-RELEASE-amd64-memstick.img Compression","test_version":"1.6.x","app_version":"1.1.13","unit":"Seconds","samples":1188,"timing_samples":954,"hib":0,"first_appeared":1644674289,"last_appeared":1713656192,"run_time_avg":137,"stddev_avg":2.38,"percentiles":[1.235156,1.458424,2.054,2.177,2.395,2.543,2.679,2.778,2.826,2.937,3.085842,3.327,3.44,3.511,3.674,3.859,4.086,4.348,4.713,4.911,5.007,5.194,5.269,5.314,5.542,5.667,5.871,6.072,6.319,6.684,6.862,7.012,7.067,7.14,7.290079,7.602462,7.764,7.938,8.061,8.162,8.401,8.59,8.700015,8.934,9.096578,9.259,9.504,9.738,10.021,10.161,10.236,10.316,10.384,10.571,10.664,10.784,10.88,11.023,11.128,11.387,11.551,11.783,12.034,12.197,12.508,12.65,12.874,13.143,13.296,13.824,14.258,14.666,15.101,15.437,15.631,15.88,16.628,17.048,17.922,18.742,19.689,21.368,22.1,22.977,24.893,25.808,27.60262,28.58124,30.14,32.618,39.911,42.391,47.03,52.813,63.122,91.713,114.446,115.74,168.046,200.91],"run_time_percentiles":[2.059999999999999,6.159999999999999,8.53,10,11,13,15,16,17,18,20,21,21,22,23,24,26,28,28,30,30,31,32,32,32,33,33,34,34,35,36,37,37,38,38,39,40,40,41,42,43,43,44,45,46,47,48,49,50,51,51,53,54,55,58,59,61,63,64,66,71,75,77,82,84,86,90,94,100,105,110,115,119,123,127,131,141,148,153,156,164,168,174,188,201,220,233,237,259,281,312,329,363,386,462,540,583,729,1214,1501],"tested_archs":["aarch64","loongarch64","x86_64","ppc64le","riscv64","arm64"]}},"capabilities":{"shared_libraries":["libc.so.6","libm.so.6"],"default_instructions":["MMX","SSE","SSE2"],"max_instructions":["MMX","SSE","SSE2"],"honors_cflags":"0","scales_cpu_cores":"1"}}
|
||||||
18
ob-cache/test-profiles/pts/compress-pbzip2-1.6.1/install.sh
Normal file
18
ob-cache/test-profiles/pts/compress-pbzip2-1.6.1/install.sh
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -zxvf bzip2-1.0.8.tar.gz
|
||||||
|
tar -zxvf pbzip2-1.1.13.tar.gz
|
||||||
|
cd bzip2-1.0.8/
|
||||||
|
make
|
||||||
|
cp -f libbz2.a ../pbzip2-1.1.13
|
||||||
|
cp -f bzlib.h ../pbzip2-1.1.13
|
||||||
|
cd ..
|
||||||
|
cd pbzip2-1.1.13/
|
||||||
|
make pbzip2-static
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
cd ~
|
||||||
|
cat > compress-pbzip2 <<EOT
|
||||||
|
#!/bin/sh
|
||||||
|
cd pbzip2-1.1.13/
|
||||||
|
./pbzip2 -v -c -p\$NUM_CPU_CORES -r -5 ../FreeBSD-13.0-RELEASE-amd64-memstick.img > /dev/null 2>\$LOG_FILE
|
||||||
|
EOT
|
||||||
|
chmod +x compress-pbzip2
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate> Wall Clock: #_RESULT_# seconds</OutputTemplate>
|
||||||
|
</ResultsParser>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Parallel BZIP2 Compression</Title>
|
||||||
|
<AppVersion>1.1.13</AppVersion>
|
||||||
|
<Description>This test measures the time needed to compress a file (FreeBSD-13.0-RELEASE-amd64-memstick.img) using Parallel BZIP2 compression.</Description>
|
||||||
|
<ResultScale>Seconds</ResultScale>
|
||||||
|
<Proportion>LIB</Proportion>
|
||||||
|
<SubTitle>FreeBSD-13.0-RELEASE-amd64-memstick.img Compression</SubTitle>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.6.1</Version>
|
||||||
|
<SupportedPlatforms>Linux, MacOSX, Solaris</SupportedPlatforms>
|
||||||
|
<SoftwareType>Utility</SoftwareType>
|
||||||
|
<TestType>Processor</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>build-utilities</ExternalDependencies>
|
||||||
|
<EnvironmentSize>647</EnvironmentSize>
|
||||||
|
<EnvironmentTestingSize>647</EnvironmentTestingSize>
|
||||||
|
<ProjectURL>http://compression.ca/pbzip2/</ProjectURL>
|
||||||
|
<InternalTags>SMP</InternalTags>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
</TestProfile>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.7.0":{"last_updated":"1710520517","commit_description":"Update against DeepSparse 1.7 upstream, add Llama 2 chat test."},"1.6.0":{"last_updated":"1702331950","commit_description":"Update against deepsparse 1.6 upstream."},"1.5.2":{"last_updated":"1690401148","commit_description":"Update against 1.5.2 point release, add more models."},"1.5.0":{"last_updated":"1686138718","commit_description":"Update against Deepsparse 1.5 upstream."},"1.3.2":{"last_updated":"1674432303","commit_description":"Update against DeepSparse 1.3.2 upstream."},"1.0.1":{"last_updated":"1665683259","commit_description":"Initial commit of DeepSparse benchmark."}}
|
||||||
File diff suppressed because one or more lines are too long
19
ob-cache/test-profiles/pts/deepsparse-1.7.0/install.sh
Normal file
19
ob-cache/test-profiles/pts/deepsparse-1.7.0/install.sh
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf ~/.cache/
|
||||||
|
pip3 install --user deepsparse==1.7.0 sparsezoo==1.7.0
|
||||||
|
~/.local/bin/sparsezoo.download zoo:nlp/text_classification/distilbert-none/pytorch/huggingface/mnli/base-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/base-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:nlp/token_classification/bert-base/pytorch/huggingface/conll2003/base-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:nlp/document_classification/obert-base/pytorch/huggingface/imdb/base-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:cv/segmentation/yolact-darknet53/pytorch/dbolya/coco/pruned90-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/base-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/pruned95_uniform_quant-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:cv/detection/yolov5-s/pytorch/ultralytics/coco/pruned85-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:nlp/sentiment_analysis/oberta-base/pytorch/huggingface/sst2/pruned90_quant-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:nlp/question_answering/obert-large/pytorch/huggingface/squad/pruned97_quant-none
|
||||||
|
~/.local/bin/sparsezoo.download zoo:llama2-7b-llama2_chat_llama2_pretrain-base_quantized
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
echo "#!/bin/sh
|
||||||
|
~/.local/bin/deepsparse.benchmark \$@ > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > deepsparse
|
||||||
|
chmod +x deepsparse
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate>Throughput (items/sec): #_RESULT_#</OutputTemplate>
|
||||||
|
<ResultScale>items/sec</ResultScale>
|
||||||
|
<ResultProportion>HIB</ResultProportion>
|
||||||
|
</ResultsParser>
|
||||||
|
<ResultsParser>
|
||||||
|
<OutputTemplate>Latency Mean (ms/batch): #_RESULT_#</OutputTemplate>
|
||||||
|
<ResultScale>ms/batch</ResultScale>
|
||||||
|
<ResultProportion>LIB</ResultProportion>
|
||||||
|
</ResultsParser>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Neural Magic DeepSparse</Title>
|
||||||
|
<AppVersion>1.7</AppVersion>
|
||||||
|
<Description>This is a benchmark of Neural Magic's DeepSparse using its built-in deepsparse.benchmark utility and various models from their SparseZoo (https://sparsezoo.neuralmagic.com/).</Description>
|
||||||
|
<ResultScale>items/sec</ResultScale>
|
||||||
|
<Proportion>HIB</Proportion>
|
||||||
|
<TimesToRun>3</TimesToRun>
|
||||||
|
</TestInformation>
|
||||||
|
<TestProfile>
|
||||||
|
<Version>1.7.0</Version>
|
||||||
|
<SupportedPlatforms>Linux</SupportedPlatforms>
|
||||||
|
<SoftwareType>Benchmark</SoftwareType>
|
||||||
|
<TestType>System</TestType>
|
||||||
|
<License>Free</License>
|
||||||
|
<Status>Verified</Status>
|
||||||
|
<ExternalDependencies>python</ExternalDependencies>
|
||||||
|
<InstallRequiresInternet>TRUE</InstallRequiresInternet>
|
||||||
|
<EnvironmentSize>9200</EnvironmentSize>
|
||||||
|
<ProjectURL>https://neuralmagic.com/deepsparse-engine/</ProjectURL>
|
||||||
|
<RepositoryURL>https://github.com/neuralmagic/deepsparse</RepositoryURL>
|
||||||
|
<Maintainer>Michael Larabel</Maintainer>
|
||||||
|
<SystemDependencies>pip3</SystemDependencies>
|
||||||
|
</TestProfile>
|
||||||
|
<TestSettings>
|
||||||
|
<Default>
|
||||||
|
<PostArguments> -t 30 -w 5</PostArguments>
|
||||||
|
</Default>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Model</DisplayName>
|
||||||
|
<Identifier>model</Identifier>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>NLP Text Classification, BERT base uncased SST2, Sparse INT8</Name>
|
||||||
|
<Value>zoo:nlp/sentiment_analysis/oberta-base/pytorch/huggingface/sst2/pruned90_quant-none --input_shapes='[1,128]'</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>NLP Text Classification, DistilBERT mnli</Name>
|
||||||
|
<Value>zoo:nlp/text_classification/distilbert-none/pytorch/huggingface/mnli/base-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>CV Classification, ResNet-50 ImageNet</Name>
|
||||||
|
<Value>zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/base-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>NLP Token Classification, BERT base uncased conll2003</Name>
|
||||||
|
<Value>zoo:nlp/token_classification/bert-base/pytorch/huggingface/conll2003/base-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>CV Detection, YOLOv5s COCO, Sparse INT8</Name>
|
||||||
|
<Value>zoo:cv/detection/yolov5-s/pytorch/ultralytics/coco/pruned85-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>NLP Document Classification, oBERT base uncased on IMDB</Name>
|
||||||
|
<Value>zoo:nlp/document_classification/obert-base/pytorch/huggingface/imdb/base-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>CV Segmentation, 90% Pruned YOLACT Pruned</Name>
|
||||||
|
<Value>zoo:cv/segmentation/yolact-darknet53/pytorch/dbolya/coco/pruned90-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>ResNet-50, Baseline</Name>
|
||||||
|
<Value>zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/base-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>ResNet-50, Sparse INT8</Name>
|
||||||
|
<Value>zoo:cv/classification/resnet_v1-50/pytorch/sparseml/imagenet/pruned95_uniform_quant-none</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>BERT-Large, NLP Question Answering, Sparse INT8</Name>
|
||||||
|
<Value>zoo:nlp/question_answering/obert-large/pytorch/huggingface/squad/pruned97_quant-none --input_shapes='[1,128]'</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Llama2 Chat 7b Quantized</Name>
|
||||||
|
<Value>zoo:llama2-7b-llama2_chat_llama2_pretrain-base_quantized</Value>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
<Option>
|
||||||
|
<DisplayName>Scenario</DisplayName>
|
||||||
|
<Identifier>scenario</Identifier>
|
||||||
|
<ArgumentPrefix>--scenario </ArgumentPrefix>
|
||||||
|
<Menu>
|
||||||
|
<Entry>
|
||||||
|
<Name>Synchronous Single-Stream</Name>
|
||||||
|
<Value>sync</Value>
|
||||||
|
</Entry>
|
||||||
|
<Entry>
|
||||||
|
<Name>Asynchronous Multi-Stream</Name>
|
||||||
|
<Value>async</Value>
|
||||||
|
</Entry>
|
||||||
|
</Menu>
|
||||||
|
</Option>
|
||||||
|
</TestSettings>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/draco-1.6.1/changelog.json
Normal file
1
ob-cache/test-profiles/pts/draco-1.6.1/changelog.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"1.6.1":{"last_updated":"1709935053","commit_description":"Update download links. Fixes: https:\/\/github.com\/phoronix-test-suite\/test-profiles\/pull\/288"},"1.6.0":{"last_updated":"1679072431","commit_description":"Update against Draco 1.5.6 upstream."},"1.5.0":{"last_updated":"1642541881","commit_description":"Update against Draco 1.5, also fixes building on newer distros like Ubuntu 22.04."},"1.0.0":{"last_updated":"1618926731","commit_description":"Initial commit of Draco benchmark."}}
|
||||||
27
ob-cache/test-profiles/pts/draco-1.6.1/downloads.xml
Normal file
27
ob-cache/test-profiles/pts/draco-1.6.1/downloads.xml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/google/draco/archive/refs/tags/1.5.6.tar.gz</URL>
|
||||||
|
<MD5>dbe3a9e286ee5b79016470349d78b2a3</MD5>
|
||||||
|
<SHA256>0280888e5b8e4c4fb93bf40e65e4e8a1ba316a0456f308164fb5c2b2b0c282d6</SHA256>
|
||||||
|
<FileName>draco-1.5.6.tar.gz</FileName>
|
||||||
|
<FileSize>60386658</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://cdn.artec3d.com/content-hub-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/content-hub-3dmodels/lion-statue_ply.zip</URL>
|
||||||
|
<MD5>4d7e19c974fb4cb1cf4a500729e107f2</MD5>
|
||||||
|
<SHA256>3704b1f75e5ca6eef3a53d247478336c10667f53879544ef3ea3ecc4cf2c8e06</SHA256>
|
||||||
|
<FileName>lion-statue_ply.zip</FileName>
|
||||||
|
<FileSize>49755877</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
1
ob-cache/test-profiles/pts/draco-1.6.1/generated.json
Normal file
1
ob-cache/test-profiles/pts/draco-1.6.1/generated.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"f6124ad8f9966a9fca6124ac8f3ce8e74420f735":{"description":"Model: Lion","test_version":"1.6.x","app_version":"1.5.6","unit":"ms","samples":472,"timing_samples":241,"hib":0,"first_appeared":1678702391,"last_appeared":1713582587,"run_time_avg":38,"stddev_avg":0.47,"percentiles":[2993,3070,3136,3161,3324,3443,3455,3498,3526,3582,3588,3614,3666,3702,3861,3930,3944,3953,4072,4190,4413,4553,4607,4648,4696,4709,4719,4733,4736,4749,4760,4818,4867,4870,4885,4939,4952,4962,5009,5015,5052,5094,5167,5173,5199,5243,5258,5270,5296,5314,5339,5359,5408,5457,5463,5486,5495,5502,5521,5540,5576,5617,5675,5718,5798,5912,5960,6054,6059,6082,6106,6129,6137,6142,6146,6155,6157,6166,6168,6192,6201,6250,6255,6287,6322,6694,6733,6932,7314,7435,7689,8138,8391,9503,9591,9640,9988,10841,17550,36045],"run_time_percentiles":[12,12,12,13,14,14,14,14,16,17,17,17,17,18,19,19,19,19,19,19,20,20,20,20,20,20,20,21,22,22,22,22,22,22,22,23,23,23,24,24,25,25,25,25,25,25,25,25,26,28,29,31,31,31,31,33,34,35,36,36,36,36,36,37,37,38,39,39,39,39,39,39,40,40,41,41,42,44,44,48,48,48,48,48,48,50,52,53,61,69,69,95,96,113,114,115,118,118,122,165],"tested_archs":["x86_64","riscv64","aarch64"]},"c2182c1656777f7fc05206b18918c42e97f0d45b":{"description":"Model: Church Facade","test_version":"1.6.x","app_version":"1.5.6","unit":"ms","samples":472,"timing_samples":231,"hib":0,"first_appeared":1678702391,"last_appeared":1713582587,"run_time_avg":35,"stddev_avg":0.3,"percentiles":[3614,3632,3699,4021,4160,4295,4328,4367,4400,4488,4514,4576,4591,4621,4700,4820,5066,5214,5286,5406,5421,5498,5670,5688,5729,5821,5833,5872,5899,5916,6043,6313,6396,6404,6411,6422,6457,6487,6531,6559,6654,6702,6721,6748,6765,6776,6788,6833,6872,6888,6933,7094,7197,7573,7643,7747,7765,7834,7846,7865,7872,7876,7956,7992,8165,8212,8325,8375,8413,8453,8476,8498,8506,8541,8567,8594,8604,8626,8696,8715,8723,8854,8941,9003,9133,9216,9381,9515,9766,10100,10616,11051,11453,12181,12564,12660,12729,13567,13684,27130],"run_time_percentiles":[13,15,15,15,16,16,16,17,18,18,19,20,20,20,21,21,21,22,22,24,24,24,24,25,25,25,25,25,25,25,26,27,27,28,28,29,30,30,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,32,32,34,34,34,35,35,35,36,36,37,38,38,38,38,39,40,40,40,41,41,41,42,43,43,44,45,45,46,46,46,47,47,47,47,48,51,52,52,52,52,52,53,53,62,98,98],"tested_archs":["x86_64","aarch64","riscv64"]}},"capabilities":{"shared_libraries":["libm.so.6","libc.so.6"],"default_instructions":["MMX","SSE","SSE2"],"max_instructions":["MMX","SSE","SSE2","SSE4_2","AVX","AVX2","FMA","AVX512"],"honors_cflags":"1","scales_cpu_cores":"0"}}
|
||||||
19
ob-cache/test-profiles/pts/draco-1.6.1/install.sh
Normal file
19
ob-cache/test-profiles/pts/draco-1.6.1/install.sh
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf draco-1.5.6.tar.gz
|
||||||
|
cd draco-1.5.6
|
||||||
|
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.5.6/build/church.ply
|
||||||
|
unzip -o lion-statue_ply.zip
|
||||||
|
mv Lion\ statue_ply/Lion\ statue.ply draco-1.5.6/build/lion.ply
|
||||||
|
cd ~
|
||||||
|
echo "#!/bin/sh
|
||||||
|
cd draco-1.5.6/build
|
||||||
|
./draco_encoder \$@ -o out.drc -cl 10 -qp 16 > \$LOG_FILE 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > draco
|
||||||
|
chmod +x draco
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<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>
|
||||||
42
ob-cache/test-profiles/pts/draco-1.6.1/test-definition.xml
Normal file
42
ob-cache/test-profiles/pts/draco-1.6.1/test-definition.xml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<TestInformation>
|
||||||
|
<Title>Google Draco</Title>
|
||||||
|
<AppVersion>1.5.6</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.6.1</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>
|
||||||
|
<RepositoryURL>https://github.com/google/draco</RepositoryURL>
|
||||||
|
<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>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"1.5.0":{"last_updated":"1709319393","commit_description":"Update against WavPack 5.7, enable new multi-threaded support."},"1.4.1":{"last_updated":"1608501232","commit_description":"Enable Windows build."},"1.4.0":{"last_updated":"1608410016","commit_description":"Update against latest upstream."},"1.3.2":{"last_updated":"1601217732","commit_description":"Deprecate test profile."},"1.3.0":{"last_updated":"1491232042","commit_description":"Update against latest upstream"},"1.2.1":{"last_updated":"1446567755","commit_description":"Update download links."},"1.2.0":{"last_updated":"1291664509","commit_description":"Initial import into OpenBenchmarking.org"}}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--Phoronix Test Suite v10.8.4-->
|
||||||
|
<PhoronixTestSuite>
|
||||||
|
<Downloads>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/dbry/WavPack/archive/refs/tags/5.7.0.tar.gz</URL>
|
||||||
|
<MD5>eb724cc592da3c37cc57591968420ddb</MD5>
|
||||||
|
<SHA256>c5742ba1054d36ff3d22f0101a9be066f55f6becb9b2a7352c79fa362f2d3d76</SHA256>
|
||||||
|
<FileName>WavPack-5.7.0.tar.gz</FileName>
|
||||||
|
<FileSize>2015172</FileSize>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://github.com/dbry/WavPack/releases/download/5.7.0/wavpack-5.7.0-x64.zip</URL>
|
||||||
|
<MD5>037986228ecf4c7061123bad491c9225</MD5>
|
||||||
|
<SHA256>1e2cf9dfd51548d54f7b69020151c3f872de2773f21bea604977451b724c5623</SHA256>
|
||||||
|
<FileName>wavpack-5.7.0-x64.zip</FileName>
|
||||||
|
<FileSize>418755</FileSize>
|
||||||
|
<PlatformSpecific>Windows</PlatformSpecific>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<URL>https://upload.wikimedia.org/wikipedia/commons/f/fb/1971_Interview%2C_Bobbie_R._Allen%2C_Staff_Breakfast.wav</URL>
|
||||||
|
<MD5>4e83d6f36b321b9182ecf4bdfbe28fff</MD5>
|
||||||
|
<SHA256>2c2a69ecccdc4f0dfc6311f72abffa4b77dca55ee910ac8f6d0184eeb29fa2f4</SHA256>
|
||||||
|
<FileName>large-wav-audio-file-speech-sample.wav</FileName>
|
||||||
|
<FileSize>240414546</FileSize>
|
||||||
|
</Package>
|
||||||
|
</Downloads>
|
||||||
|
</PhoronixTestSuite>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"overview":{"68e43c32d622f5e26834ee9701c4e921d833f65f":{"description":"WAV To WavPack","test_version":"1.5.x","app_version":"5.7","unit":"Seconds","samples":109,"timing_samples":27,"hib":0,"first_appeared":1709331981,"last_appeared":1713552350,"run_time_avg":40,"stddev_avg":0.1,"percentiles":[3.625,3.639,3.641,3.65,3.679,3.84,3.845,3.865,3.899,3.964,3.991,4.028,4.106,4.11,4.113,4.317,4.418,4.433,4.435,4.438,4.442,4.734,5.009,5.113,5.113,5.133,5.133,5.398,5.695,5.793,6.059,6.066,6.067,6.106,6.126,6.126,6.158,6.158,6.215,6.215,6.217,6.245,6.245,6.278,6.301,6.34,6.34,6.349,6.349,6.349,6.459,6.459,6.485,6.485,6.486,6.486,6.628,6.96,6.976,6.98,7.05,7.05,7.473,7.578,7.692,7.794,7.879,8.599,8.934,9.058,9.073,11.018,11.084,11.259,13.32,13.548,13.619,14.171,14.432,14.432,14.89,14.89,15.389,15.502,15.549,15.919,16.01,16.136,16.198,16.389,17.657,17.657,20.662,20.662,20.693,20.693,25.199,25.2,25.205,339.314],"run_time_percentiles":[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,77,77,77,78,78,78,78,78,78,78,110,110,110,110,126,126,126,126,135,135,135],"tested_archs":["x86_64","aarch64","riscv64"]}},"capabilities":{"shared_libraries":["libm.so.6","libc.so.6"],"default_instructions":["MMX","SSE","SSE2"],"max_instructions":["MMX","SSE","SSE2","AVX","AVX2","FMA","AVX512"],"honors_cflags":"1","scales_cpu_cores":"0"}}
|
||||||
14
ob-cache/test-profiles/pts/encode-wavpack-1.5.0/install.sh
Normal file
14
ob-cache/test-profiles/pts/encode-wavpack-1.5.0/install.sh
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
tar -xf WavPack-5.7.0.tar.gz
|
||||||
|
cd WavPack-5.7.0
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make -j $NUM_CPU_CORES
|
||||||
|
echo $? > ~/install-exit-status
|
||||||
|
cd ~
|
||||||
|
echo "#!/bin/bash
|
||||||
|
THREADCOUNT=\$((\$NUM_CPU_CORES>12?12:\$NUM_CPU_CORES))
|
||||||
|
./WavPack-5.7.0/build/wavpack --threads=\$THREADCOUNT -q -r -hhx3 -o out.wv large-wav-audio-file-speech-sample.wav 2>&1
|
||||||
|
echo \$? > ~/test-exit-status" > encode-wavpack
|
||||||
|
chmod +x encode-wavpack
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
unzip -o wavpack-5.7.0-x64.zip
|
||||||
|
chmod +x wavpack.exe
|
||||||
|
echo "#!/bin/bash
|
||||||
|
THREADCOUNT=\$((\$NUM_CPU_CORES>12?12:\$NUM_CPU_CORES))
|
||||||
|
./wavpack.exe --threads=\$THREADCOUNT -q -r -hhx3 -y pts-trondheim.wav
|
||||||
|
echo \$? > ~/test-exit-status" > encode-wavpack
|
||||||
|
chmod +x encode-wavpack
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user