-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamic Variables and Improved Benchmark files (#60)
* Environment set and dynamic * Removed local setting file added by mistake * Benchmarks now working with dynamic environment variables make file pass in FACTOR and USE_MIDDLEWARE * Removing messages I had added because the output looked cluttered - Improving the output could be helpful - Kept the order in the makefile * clarify the number output meaning
- Loading branch information
1 parent
24d0a4f
commit 1940ec9
Showing
4 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
all: middleware | ||
|
||
middleware: | ||
@./run 1 false | ||
@./run 5 false | ||
@./run 10 false | ||
@./run 20 false | ||
@./run 50 false | ||
@./run 100 false | ||
@./run 200 false | ||
@./run 500 false | ||
@./run 1000 false | ||
@./run 1 true | ||
@./run 5 true | ||
@./run 10 true | ||
@./run 20 true | ||
@./run 50 true | ||
@./run 100 true | ||
@./run 200 true | ||
@./run 500 true | ||
@./run 1000 true | ||
@sh ./run 1 false | ||
@sh ./run 5 false | ||
@sh ./run 10 false | ||
@sh ./run 20 false | ||
@sh ./run 50 false | ||
@sh ./run 100 false | ||
@sh ./run 200 false | ||
@sh ./run 500 false | ||
@sh ./run 1000 false | ||
@sh ./run 1 true | ||
@sh ./run 5 true | ||
@sh ./run 10 true | ||
@sh ./run 20 true | ||
@sh ./run 50 true | ||
@sh ./run 100 true | ||
@sh ./run 200 true | ||
@sh ./run 500 true | ||
@sh ./run 1000 true | ||
|
||
.PHONY: all middleware |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters