You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,16 +65,18 @@ _Current benchmarks problems and their implementations are from [The Computer La
65
65
66
66
[podman](https://podman.io/getting-started/installation) (or [docker](https://www.docker.com/) by changing `docker_cmd: podman` to `docker_cmd: docker` in `bench/bench.yaml`)
67
67
68
+
unzip
69
+
68
70
## Build
69
71
70
72
_The 1st step is to build source code from various of lanuages_
71
73
72
74
```bash
73
75
cd bench
74
76
# To build a subset
75
-
dotnet run -p tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
77
+
dotnet run --project tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
76
78
# To build all
77
-
dotnet run -p tool -- --task build
79
+
dotnet run --project tool -- --task build
78
80
```
79
81
80
82
## Test
@@ -84,9 +86,9 @@ _The 2nd step is to test built binaries to ensure the correctness of their imple
84
86
```bash
85
87
cd bench
86
88
# To test a subset
87
-
dotnet run -p tool -- --task test --langs lisp go --problems nbody helloworld
89
+
dotnet run --project tool -- --task test --langs lisp go --problems nbody helloworld
88
90
# To test all
89
-
dotnet run -p tool -- --task test
91
+
dotnet run --project tool -- --task test
90
92
```
91
93
92
94
## Bench
@@ -96,16 +98,16 @@ _The 3rd step is to generate benchmarks_
96
98
```bash
97
99
cd bench
98
100
# To bench a subset
99
-
dotnet run -p tool -- --task bench --langs lisp go --problems nbody helloworld
101
+
dotnet run --project tool -- --task bench --langs lisp go --problems nbody helloworld
0 commit comments