Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New image pushed. #36

Merged
merged 5 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions mode_dark_light.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion run_docker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

IMAGE=cgra/cgra-flow:demo
IMAGE=cgra/cgra-flow:20241025

CONTAINER=CGRA-Flow-OpenRoad

Expand Down
2 changes: 1 addition & 1 deletion run_linux_docker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

IMAGE=yuqisun/cgra-flow-openroad:latest
IMAGE=cgra/cgra-flow:20241025

CONTAINER=CGRA-Flow-OpenRoad

Expand Down
2 changes: 1 addition & 1 deletion run_mac_docker.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading