summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2/output/hypervisor/601
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/deepseek-2/output/hypervisor/601
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/deepseek-2/output/hypervisor/601')
-rw-r--r--results/classifier/deepseek-2/output/hypervisor/60121
1 files changed, 0 insertions, 21 deletions
diff --git a/results/classifier/deepseek-2/output/hypervisor/601 b/results/classifier/deepseek-2/output/hypervisor/601
deleted file mode 100644
index 0bef3f73..00000000
--- a/results/classifier/deepseek-2/output/hypervisor/601
+++ /dev/null
@@ -1,21 +0,0 @@
-
-import tensorflow causes qemu: uncaught target signal 6 (Aborted) - core dumped
-Description of problem:
-Crashes when importing tensorflow in Docker container under --platorm linux/amd64 on M1 Mac
-```
-2021-09-06 13:35:24.435613: F tensorflow/core/lib/monitoring/sampler.cc:42] Check failed: bucket_limits_[i] > bucket_limits_[i - 1] (0 vs. 10)
-qemu: uncaught target signal 6 (Aborted) - core dumped
-```
-Steps to reproduce:
-See https://gitlab.com/ryan-feather/docker-tensorflow-qemu-bug/ for Dockerfile and description of steps repeating here.
-1. Using the dockerfile 
-```
-FROM python:3.9-buster
-RUN pip install tensorflow==2.6.0
-
-```
-2. `docker buildx build --iidfile build.id --platform linux/amd64 . --progress=plain`
-3. ``` docker run --platform linux/amd64  `cat build.id` python -c "import tensorflow"```
-Additional information:
-See 
-https://github.com/docker/for-mac/issues/5342 where the Docker team suggests this is a qemu bug. I couldn't find where anyone had opened one of these here, so hopefully this isn't a duplicate.