Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
ASTC Encoder 1.1.0
pts/astcenc-1.1.0
- 12 March 2021 -
Update against upstream ASTCENC 2.4.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <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/2.4.tar.gz</URL> <MD5>e81f09c2edc248b217e44732c538094c</MD5> <SHA256>23128c055908007be36071d3ec5152611b18713818ce6358a87aa15ee8278af7</SHA256> <FileName>astc-encoder-2.4.tar.gz</FileName> <FileSize>33811071</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://github.com/ARM-software/astc-encoder/releases/download/2.4/astcenc-2.4-macos-x64.zip</URL> <MD5>35031b9478bbe25e7ca460af1c8433a9</MD5> <SHA256>76603df0ff71e06e16314a837d9307efc2fb1df81dcea9969755ee6f482d08b8</SHA256> <FileName>astcenc-2.4-macos-x64.zip</FileName> <FileSize>839600</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://github.com/ARM-software/astc-encoder/releases/download/2.4/astcenc-2.4-windows-x64.zip</URL> <MD5>f9327ef87b781026bc4abaeaafc1e9a8</MD5> <SHA256>5099f8ccdd0d323629d7c92715f132f1366a932027e902e0e76430027c36c742</SHA256> <FileName>astcenc-2.4-windows-x64.zip</FileName> <FileSize>1514370</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf png-samples-1.tar.xz tar -xf astc-encoder-2.4.tar.gz cd astc-encoder-2.4/ 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-2.4/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-2.4-macos-x64.zip mv astcenc astcenc-2.4-macos-x64 chmod +x astcenc-2.4-macos-x64/astcenc-avx2 echo "#!/bin/sh ./astcenc-2.4-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-2.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.2.2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> Total time: #_RESULT_# s</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <TestInformation> <Title>ASTC Encoder</Title> <AppVersion>2.4</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.1.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>