diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-11-26 16:59:12 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-11-26 16:59:12 -0500 |
commit | b3e10e1f5b8b0f2dea64debe41b96872beee8e97 (patch) | |
tree | ffd2802d075a784c287e0ba7f9b2e5369770dea8 /bench/dimension | |
parent | 97d522f51f3140cb2554f81212034fc808623f63 (diff) | |
download | dimension-b3e10e1f5b8b0f2dea64debe41b96872beee8e97.tar.xz |
Remove POV-Ray times from render benchmark.
Diffstat (limited to 'bench/dimension')
-rwxr-xr-x | bench/dimension/render.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/bench/dimension/render.sh b/bench/dimension/render.sh index 01a9950..c5dbbc6 100755 --- a/bench/dimension/render.sh +++ b/bench/dimension/render.sh @@ -19,12 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # ######################################################################### -echo "Single POV-Ray" -time povray -w1920 -h1080 +Q1 -UL -UV -D bench.pov >/dev/null 2>&1 -echo -e "\nSingle Dimension" +echo -e "Single-threaded" time ${top_builddir}/dimension/dimension -w1920 -h1080 --quality=1 --threads=1 bench.pov >/dev/null - -echo -e "\nMulti POV-Ray" -time ${top_builddir}/../povray-3.7.0.beta*/unix/povray -w1920 -h1080 +Q1 -UL -UV -D bench.pov >/dev/null 2>&1 -echo -e "\nMulti Dimension" +echo -e "\nMulti-threaded" time ${top_builddir}/dimension/dimension -w1920 -h1080 --quality=1 bench.pov >/dev/null |