diff --git a/README.md b/README.md index 5328109..b219f7f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The docker image is available As CGRA-Flow requires GUI, a script is provided for setting up the display: ```sh - docker pull cgra/cgra-flow:demo + docker pull cgra/cgra-flow:20241025 # For Mac users: sh ./run_mac_docker.sh @@ -43,8 +43,8 @@ As CGRA-Flow requires GUI, a script is provided for setting up the display: Otherwise, if you don't need the GUI, development can be performed in the container with the environment well set up: ```sh - docker pull cgra/cgra-flow:demo - docker run -it cgra/cgra-flow:demo + docker pull cgra/cgra-flow:20241025 + docker run -it cgra/cgra-flow:20241025 source /WORK_REPO/venv/bin/activate ``` diff --git a/mode_dark_light.py b/mode_dark_light.py index c5e4eca..2d1eab9 100755 --- a/mode_dark_light.py +++ b/mode_dark_light.py @@ -947,7 +947,7 @@ def clickTest(): if ".py F" in outputLine: failed += 1 - widgets["testShow"].configure(text="PASSED" if failed == 0 else str(total - failed) + "/" + str(total)) + widgets["testShow"].configure(text=" PASSED " if failed == 0 else str(total - failed) + "/" + str(total)) # (out, err) = testProc.communicate() # print("check test output:", out) @@ -2022,7 +2022,7 @@ def create_test_pannel(master): testProgress = customtkinter.CTkProgressBar(testPannel, orientation='horizontal', mode='determinate', width=160) testProgress.set(0) widgets["testProgress"] = testProgress - testProgress.grid(row=1, column=1, rowspan=1, columnspan=1, padx=5, sticky="ew") + testProgress.grid(row=1, column=1, rowspan=1, columnspan=1, padx=5, sticky="w") testShow = customtkinter.CTkLabel(testPannel, text="IDLE ") widgets["testShow"] = testShow testShow.grid(row=1, column=2, sticky=tkinter.E, padx=(5, 5)) diff --git a/run_docker.sh b/run_docker.sh index 40c3c16..806c9ef 100755 --- a/run_docker.sh +++ b/run_docker.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -IMAGE=cgra/cgra-flow:demo +IMAGE=cgra/cgra-flow:20241025 CONTAINER=CGRA-Flow-OpenRoad diff --git a/run_linux_docker.sh b/run_linux_docker.sh index b40c0a9..806c9ef 100644 --- a/run_linux_docker.sh +++ b/run_linux_docker.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -IMAGE=yuqisun/cgra-flow-openroad:latest +IMAGE=cgra/cgra-flow:20241025 CONTAINER=CGRA-Flow-OpenRoad diff --git a/run_mac_docker.sh b/run_mac_docker.sh index 609e8f8..6cdc08d 100644 --- a/run_mac_docker.sh +++ b/run_mac_docker.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -CONTAINER=yuqisun/cgra-flow-openroad:latest # cgra/cgra-flow:demo +CONTAINER=cgra/cgra-flow:20241025 NIC=en0 # Grab the ip address of this box