summary refs log tree commit diff stats
path: root/results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-07 17:18:14 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-07 17:18:14 +0000
commit61361f925d4914a6608a0076e64cc2399311ed5f (patch)
tree6f717c2ff0b11d7493e60da9757818d119cfb541 /results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486
parent238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd (diff)
downloadqemu-analysis-61361f925d4914a6608a0076e64cc2399311ed5f.tar.gz
qemu-analysis-61361f925d4914a6608a0076e64cc2399311ed5f.zip
add new results
Diffstat (limited to 'results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486')
-rw-r--r--results/classifier/no-thinking-deepseek-r1:32b/output/runtime/248615
1 files changed, 15 insertions, 0 deletions
diff --git a/results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486 b/results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486
new file mode 100644
index 000000000..6cd7e0640
--- /dev/null
+++ b/results/classifier/no-thinking-deepseek-r1:32b/output/runtime/2486
@@ -0,0 +1,15 @@
+
+
+
+RISC-V Regression: QEMU_CPU=f=false,zfinx=true gives misleading error message
+Description of problem:
+The f extension looks like it should be toggle-able using qemu_cpu since it doesn't throw error messages when specified.
+Disabling the extension using f=false does not actually disable it as shown by the zfinx error message.
+Eg. Unsupported extension is explicitly rejected
+```
+> QEMU_CPU=rv64,j=false ./qemu-riscv64 test.out
+qemu-riscv64: can't apply global rv64-riscv-cpu.j=false: Property 'rv64-riscv-cpu.j' not found
+```
+Steps to reproduce:
+1. Compile any riscv binary like: `int main() {}`
+2. Execute using `QEMU_CPU=rv64,zfinx=true,f=false ./qemu-riscv64 test.out`