File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ _The 1st step is to build source code from various of languages_
7272``` bash
7373cd bench
7474# To build a subset
75- dotnet run -p tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
75+ dotnet run --project tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
7676# To build all
77- dotnet run -p tool -- --task build
77+ dotnet run --project tool -- --task build
7878```
7979
8080## Test
@@ -84,9 +84,9 @@ _The 2nd step is to test built binaries to ensure the correctness of their imple
8484``` bash
8585cd bench
8686# To test a subset
87- dotnet run -p tool -- --task test --langs lisp go --problems nbody helloworld
87+ dotnet run --project tool -- --task test --langs lisp go --problems nbody helloworld
8888# To test all
89- dotnet run -p tool -- --task test
89+ dotnet run --project tool -- --task test
9090```
9191
9292## Bench
@@ -96,16 +96,16 @@ _The 3rd step is to generate benchmarks_
9696``` bash
9797cd bench
9898# To bench a subset
99- dotnet run -p tool -- --task bench --langs lisp go --problems nbody helloworld
99+ dotnet run --project tool -- --task bench --langs lisp go --problems nbody helloworld
100100# To bench all
101- dotnet run -p tool -- --task bench
101+ dotnet run --project tool -- --task bench
102102```
103103
104104_ For usage_
105105
106106``` bash
107107cd bench
108- dotnet run -p tool -- -h
108+ dotnet run --project tool -- -h
109109
110110BenchTool
111111 Main function
You can’t perform that action at this time.
0 commit comments