summaryrefslogtreecommitdiffstats
path: root/results/classifier/zero-shot/108/device/1346
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/zero-shot/108/device/1346
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/108/device/1346')
-rw-r--r--results/classifier/zero-shot/108/device/134650
1 files changed, 50 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/108/device/1346 b/results/classifier/zero-shot/108/device/1346
new file mode 100644
index 00000000..4af327df
--- /dev/null
+++ b/results/classifier/zero-shot/108/device/1346
@@ -0,0 +1,50 @@
+device: 0.940
+graphic: 0.929
+performance: 0.890
+debug: 0.791
+semantic: 0.785
+PID: 0.772
+files: 0.768
+socket: 0.706
+permissions: 0.690
+vnc: 0.683
+network: 0.653
+other: 0.629
+boot: 0.583
+KVM: 0.515
+
+simulate x86_64 virtio-gpu-gl qemu report error
+Description of problem:
+when I run the below command, it can run ok, and myos can get the virtio-gpu feature,but it less 3d feature.
+ ```
+ ./qemu-system-x86_64 -nographic -M q35 -m 1024 -cpu Nehalem -smp 8 -kernel myos -device virtio-gpu
+ ```
+so I delete ```-nographic``` and modify the device to :
+```
+-device virtio-gpu-gl -display sdl,gl=on
+```
+but qemu tells me ERROR:
+```
+qemu-system-x86_64: ../ui/console-gl.c:105: surface_gl_update_texture: Assertion `gls' failed.
+```
+Additional information:
+I modify the code qemu/ui/sdl2-gl.c function sdl2_gl_switch():
+
+`
+#if 0
+if (is_placeholder(new_surface) && qemu_console_get_index(dcl->con)) {
+ qemu_gl_fini_shader(scon->gls);
+ scon->gls = NULL;
+ sdl2_window_destroy(scon);
+ return;
+ }
+#endif
+`
+and, qemu can run myos with ```-nographic```, and i can get 3d feature:
+ ```
+ ./qemu-system-x86_64 -nographic -M q35 -m 1024 -cpu Nehalem -smp 8 -kernel myos -device virtio-gpu-gl -display sdl,gl=on
+ ```
+
+I think there is something bug.
+
+thanks