This content has moved. See unvanquished_split for its new home.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This script estimates the maximum errors of `rsqrt` approximation for | |
// ARM NEON, SSE, AVX2, and AVX-512. | |
// | |
// Compile with Clang or GCC: | |
// | |
// $ gcc rsqrt.c -o rsqrt -std=c99 -lm -march=native -O3 && time ./rsqrt | |
// $ gcc rsqrt.c -o rsqrt -std=c99 -lm -march=skylake-avx512 -O3 && time ./rsqrt | |
// $ gcc rsqrt.c -o rsqrt -std=c99 -lm -march=haswell -O3 && time ./rsqrt | |
// $ gcc rsqrt.c -o rsqrt -std=c99 -lm -march=westmere -O3 && time ./rsqrt | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
listGitHubUser () { | |
cat <<-EOF | |
DaemonEngine | |
Unvanquished | |
UnvanquishedAssets | |
EOF | |
} |