-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated support for benchmark language versions #198
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
2f09f26
updated support for benchmark language versions
octonawish-akcodes 483fd88
added aws lambda python3.10 support
octonawish-akcodes a4ea1a8
Create requirements.txt.3.10 for Python3.10 for Benchamark - 210.thum…
prajinkhadka 877be27
Create requirements.txt.3.10 for Python3.10 for Benchmark - 501.graph…
prajinkhadka 0dc5287
Create requirements.txt.3.10 for Python3.10 for Benchmark - 502.graph…
prajinkhadka 2e9daf7
Create requirements.txt.3.10 for Python 3.10 for Benchmark - 503.grap…
prajinkhadka dceb506
fix benchmarks run issue for Azure platform
octonawish-akcodes 6f4e024
fix 210.thumbnailer dependency issue
octonawish-akcodes 40fc9d2
Merge remote-tracking branch 'origin/master' into sebs4
mcopik a04fd2b
[regression] Exclude 411 for new Python versions on AWS
mcopik f553d8e
[aws] Support Python 3.11 on AWS
mcopik 7d76edf
[aws] Deprecate Node.js 14
mcopik 2731e73
[azure] Fix bug in regression - use different directories inside Dock…
mcopik a498708
[azure] Document problem with large archives
mcopik bbe0873
[benchmarks] Update PyTorch inference to Python 3.10
mcopik 5e8aefd
[regression] Fix excluding 411 benchmark for aws and gcp
mcopik 52097e8
[benchmarks] Upgrade 411.image-recognition to Python 3.11
mcopik 598c4ce
[benchmarks] Support 210.thumbnailer on Node.js 16, 18 & 20
mcopik 7c77e2c
[docs] Update info about Python versions on Google Cloud
mcopik 587c1a1
[azure] Add documentation on the problematic upload of archive to Docker
mcopik ea153a4
[regression] Use single deployment for gcp
mcopik 8ee7b80
[benchmarks] Update benchmarks for Python 3.12
mcopik 8713e9e
[gcp] Update supported versions
mcopik de412d4
[gcp] Update Docker images to work with Node.js 18 and 20
mcopik 8cdff2d
[openwhisk] Update Openwhisk images
mcopik 917e2b4
[openwhisk] Revert old Python version
mcopik 86920aa
[gcp] Revert older Python version
mcopik 82b66c4
[local] Add GET method to control if server is alive
mcopik 131145f
[local] Wait until container is running
mcopik 6d05bb2
[local] Adapt the build image to Python3
mcopik 8cb9807
[local] Update supported languge versions
mcopik e0c2915
[local] Extend node.js server with a GET alive method
mcopik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
benchmarks/200.multimedia/210.thumbnailer/nodejs/package.json.18
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "", | ||
"version": "1.0.0", | ||
"description": "", | ||
"author": "", | ||
"license": "", | ||
"dependencies": { | ||
"sharp": "^0.33" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
benchmarks/200.multimedia/210.thumbnailer/nodejs/package.json.20
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "", | ||
"version": "1.0.0", | ||
"description": "", | ||
"author": "", | ||
"license": "", | ||
"dependencies": { | ||
"sharp": "^0.33" | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
benchmarks/200.multimedia/210.thumbnailer/python/requirements.txt.3.10
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pillow==10.3.0 |
1 change: 1 addition & 0 deletions
1
benchmarks/200.multimedia/210.thumbnailer/python/requirements.txt.3.11
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pillow==10.3.0 |
1 change: 1 addition & 0 deletions
1
benchmarks/200.multimedia/210.thumbnailer/python/requirements.txt.3.12
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pillow==10.3.0 |
5 changes: 5 additions & 0 deletions
5
benchmarks/400.inference/411.image-recognition/python/requirements.txt.3.10
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pillow==10.3.0 | ||
https://download.pytorch.org/whl/cpu/torch-1.11.0%2Bcpu-cp310-cp310-linux_x86_64.whl | ||
torchvision==0.12 | ||
# prevent installing numpy 2.0 | ||
numpy==1.22.0 |
5 changes: 5 additions & 0 deletions
5
benchmarks/400.inference/411.image-recognition/python/requirements.txt.3.11
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pillow==10.3.0 | ||
https://download.pytorch.org/whl/cpu/torch-2.0.0%2Bcpu-cp311-cp311-linux_x86_64.whl | ||
torchvision==0.15.1 | ||
# prevent installing numpy 2.0 | ||
numpy==1.24.0 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/501.graph-pagerank/python/requirements.txt.3.10
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/501.graph-pagerank/python/requirements.txt.3.11
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/501.graph-pagerank/python/requirements.txt.3.12
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/502.graph-mst/python/requirements.txt.3.10
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/502.graph-mst/python/requirements.txt.3.11
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/502.graph-mst/python/requirements.txt.3.12
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/503.graph-bfs/python/requirements.txt.3.10
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/503.graph-bfs/python/requirements.txt.3.11
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
1 change: 1 addition & 0 deletions
1
benchmarks/500.scientific/503.graph-bfs/python/requirements.txt.3.12
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
igraph==0.11.4 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#!/bin/bash | ||
|
||
if [ -f $FILE ]; then | ||
. /nvm/nvm.sh | ||
fi | ||
cd /mnt/function && npm install && rm -rf package-lock.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
testtools>=2.4.0 | ||
docker>=4.2.0 | ||
tzlocal>=2.1 | ||
requests | ||
#linting | ||
flake8 | ||
black==22.8.0 | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the syntax error in the
/alive
route handler.There is a missing comma in the dictionary returned by the
alive
function.Committable suggestion