File tree 1 file changed +7
-7
lines changed
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_
72
72
``` bash
73
73
cd bench
74
74
# 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
76
76
# To build all
77
- dotnet run -p tool -- --task build
77
+ dotnet run --project tool -- --task build
78
78
```
79
79
80
80
## Test
@@ -84,9 +84,9 @@ _The 2nd step is to test built binaries to ensure the correctness of their imple
84
84
``` bash
85
85
cd bench
86
86
# 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
88
88
# To test all
89
- dotnet run -p tool -- --task test
89
+ dotnet run --project tool -- --task test
90
90
```
91
91
92
92
## Bench
@@ -96,16 +96,16 @@ _The 3rd step is to generate benchmarks_
96
96
``` bash
97
97
cd bench
98
98
# 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
100
100
# To bench all
101
- dotnet run -p tool -- --task bench
101
+ dotnet run --project tool -- --task bench
102
102
```
103
103
104
104
_ For usage_
105
105
106
106
``` bash
107
107
cd bench
108
- dotnet run -p tool -- -h
108
+ dotnet run --project tool -- -h
109
109
110
110
BenchTool
111
111
Main function
You can’t perform that action at this time.
0 commit comments