Package Details: gputest 0.7.0-1

Git Clone URL: https://aur.archlinux.org/gputest.git (read-only, click to copy)
Package Base: gputest
Description: cross-platform GPU stress test and OpenGL benchmark. Contains FurMark, TessMark
Upstream URL: http://www.geeks3d.com/gputest/
Licenses: custom:freeware
Submitter: swiftgeek
Maintainer: swiftgeek
Last Packager: swiftgeek
Votes: 73
Popularity: 0.51
First Submitted: 2013-07-28 02:22 (UTC)
Last Updated: 2015-06-09 23:20 (UTC)

Latest Comments

1 2 3 4 Next › Last »

MaximGun commented on 2023-05-11 23:42 (UTC) (edited on 2023-05-12 00:09 (UTC) by MaximGun)

gputest_gui.py works fine in python3 after a 2to3. Also included an ugly hack (inspired by the included Furmark scripts) to cd to /opt/gputest before executing GpuTest. Furmark doesn't work without it.

$ diff -u0 /usr/bin/gputest_gui.py ./gputest_gui3.py
--- /usr/bin/gputest_gui.py     2023-05-11 18:28:16.000000000 -0400
+++ ./gputest_gui3.py   2023-05-11 19:22:20.019980864 -0400
@@ -1 +1 @@
-#!/usr/bin/python2
+#!/usr/bin/python3
@@ -10 +10 @@
-import Tkinter as tk
+import tkinter as tk
@@ -93 +93 @@
-    print "\nPlease select a test (FurMark is the default test)."
+    print("\nPlease select a test (FurMark is the default test).")
@@ -101 +101 @@
-  g_command_line = "/opt/gputest/GpuTest /test='%s' /width=%d /height=%d /gpumon_terminal" % (demo_code, g_width, g_height)
+  g_command_line = "cd /opt/gputest && ./GpuTest /test='%s' /width=%d /height=%d /gpumon_terminal" % (demo_code, g_width, g_height)

and here are some sed statements that could be stuck in the PKGBUILD

sed -i 's/python2/python3/' ./gputest_gui.py
sed -i 's/Tkinter/tkinter/' ./gputest_gui.py
sed -i 's/print "\(.*\)"/print("\\1")/' ./gputest_gui.py
sed -i 's/\/opt\/gputest\/GpuTest/cd \/opt\/gputest \&\& \.\/GpuTest/' ./gputest_gui.py

zwastik commented on 2022-10-15 19:47 (UTC) (edited on 2022-10-15 19:49 (UTC) by zwastik)

Some other undocumented parameters:

/** Do work**/

/verbose
/display_info
/display_osi
/vsync
/static_bg
/benchmark_duration_ms=%d  // use with /benchmark
//msaa=%d  // 2 4 8 
/debug_log_frame_data // shows frames history in console
/glinfo // outputs gl information to the console
/xtreme_settings // does seems to work
/gi_num_instances=%d // number of donuts in gi test
/tess_level_outer=%d  // in tess tests
/tess_level_inner%d   // idem
/plot3d_vertex_density=%d  // in plot3d test
/julia_max_iterations=&d  // in pixmark_julia_* tests
/submit_glinfo
/submit_gpudb_no_score
/no_score_webpage

/** Don't work/Windows only/Did not managed to get it to work**/

/log_terminal
/update_gpu_data=%d
/log_temperature
/log_temperature_console
/x_offset=%d  // does not work with tilling wm
/y_offset=%d  / does not work with tilling wm
/no_scorebox
/no_log_score
/polling_interval_micro_sec=%lu  // unsigned long?
/threaded_rendering    // can't tell if it's being used or not
/glmajor=%d
/glminor=%d
/window_alpha=%d  // can't tell
/sw_renderer
/vbo_usage=%s // GL_STATIC_DRAW GL_STATIC_READ GL_DYNAMIC_DRAW GL_DYNAMIC_READ GL_STREAM_DRAW GL_STREAM_READ
/ibo_usage=%s
/disable_opengl_support_check
/display_sensor_graph
/display_text
/no_gpu_monitoring
/gpu_monitoring_polling_interval=%d

kuehnelth commented on 2022-09-23 10:38 (UTC)

python2 will be removed from the official repo, could you convert the gui to python3 with 2to3 gputest_gui.py in the PKGBUILD. I successfully tested it. THe only thing that changes is the tkinter import and on print call.

Also you could skip installing "./data/.DS_Store" this is just a MacOS metadata file with thumbnails for the files in this folder and pretty useless on linux.

micwoj92 commented on 2021-05-12 19:41 (UTC)

Hello, could you update links to https?

malinas commented on 2014-09-04 07:21 (UTC)

hehe @ all of ya... this is *just* the front end gui swiftgeek.. you need to add it to the *actual* gputest binary.. there is also a gtk front end .. I can prolly write later today all three pkgbuilds and you can decide how to proceed. Some thoughts: the author of this doesn't seem to be so very organised and expects the gputest binary to be in same directory as the frontend.. so anyway, I don't use python much but figured it out when I opened it and I don't think I would put it in /usr/bin as it's a script and not a binary. Prolly either put it in python2.7/site-packages or better, add gputest as a dependency as a stand alone package (cli) which goes in /opt say, add this as gputest-tk, which looks for the path, e.g. /opt/gputest installs itself there or so.. and finally add a third package, gputest-gtk.