Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
Blender
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
Llama.cpp
OpenVINO
Renaissance
Blender
vkpeak
ProjectPhysX OpenCL-Benchmark
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
ASTC Encoder 1.2.0
pts/astcenc-1.2.0
- 03 June 2021 -
Update against ASTC Encoder 3.0.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <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/3.0.tar.gz</URL> <MD5>2eb41ab6589a2af2a5301dd733a059fc</MD5> <SHA256>28179c471ed98b4da58cacb1737a438aa8dd8c6994e851f0d6f8f49556fd66a4</SHA256> <FileName>astc-encoder-3.0.tar.gz</FileName> <FileSize>34065454</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://github.com/ARM-software/astc-encoder/releases/download/3.0/astcenc-3.0-macos-x64.zip</URL> <MD5>2c4f07e54b1349a6d5bfdeee840e161d</MD5> <SHA256>006d4b14c9914b9793a1843683f29b42fb22cfc17fb74a5bc8450bba09ff119b</SHA256> <FileName>astcenc-3.0-macos-x64.zip</FileName> <FileSize>778121</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://github.com/ARM-software/astc-encoder/releases/download/3.0/astcenc-3.0-windows-x64.zip</URL> <MD5>7bf7e9a0b9a434fafbac675336330515</MD5> <SHA256>40e4f87920c722e5ddd59635a91b651c7e58c352b62864518f52d7e71556b051</SHA256> <FileName>astcenc-3.0-windows-x64.zip</FileName> <FileSize>1235651</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf png-samples-1.tar.xz tar -xf astc-encoder-3.0.tar.gz cd astc-encoder-3.0/ mkdir build cd build ASTCISA="-DISA_AVX2=on" ASTCBIN="avx2" if [ $OS_ARCH = "aarch64" ] then ASTCISA="-DISA_NEON=on" ASTCBIN="neon" fi cmake -DCMAKE_BUILD_TYPE=Release $ASTCISA .. make -j $NUM_CPU_CORES echo \$? > ~/install-exit-status cd ~ echo "#!/bin/sh ./astc-encoder-3.0/build/Source/astcenc-$ASTCBIN -tl sample-4.png 1.png 8x6 \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > astcenc chmod +x astcenc
install_macosx.sh
#!/bin/sh tar -xf png-samples-1.tar.xz unzip -o astcenc-3.0-macos-x64.zip mv astcenc astcenc-3.0-macos-x64 chmod +x astcenc-3.0-macos-x64/astcenc-avx2 echo "#!/bin/sh ./astcenc-3.0-macos-x64/astcenc-avx2 -tl sample-4.png 1.png 8x6 \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > astcenc chmod +x astcenc
install_windows.sh
#!/bin/sh tar -xf png-samples-1.tar.xz unzip -o astcenc-3.0-windows-x64.zip mv astcenc astcenc-windows-x64 chmod +x astcenc-windows-x64/astcenc-avx2.exe echo "#!/bin/sh ./astcenc-windows-x64/astcenc-avx2.exe -tl sample-4.png 1.png 8x6 \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > basis chmod +x basis
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> Total time: #_RESULT_# s</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <TestInformation> <Title>ASTC Encoder</Title> <AppVersion>3.0</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>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.0</Version> <SupportedPlatforms>Linux, Windows, MacOSX</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake</ExternalDependencies> <EnvironmentSize>66</EnvironmentSize> <ProjectURL>https://github.com/ARM-software/astc-encoder</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Preset</DisplayName> <Identifier>preset</Identifier> <Menu> <Entry> <Name>Medium</Name> <Value>-medium</Value> </Entry> <Entry> <Name>Thorough</Name> <Value>-thorough</Value> </Entry> <Entry> <Name>Exhaustive</Name> <Value>-exhaustive</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>