Skip to content

Commit

Permalink
Merge pull request #36 from yuqisun/master
Browse files Browse the repository at this point in the history
New image pushed.
  • Loading branch information
tancheng authored Oct 26, 2024
2 parents 3bb01a7 + c8deadd commit d6efbd8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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

0 comments on commit d6efbd8

Please sign in to comment.