Skip to content
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

added intera and inter op parallelism parameters to the hugggingface … #1081

Merged
merged 43 commits into from
Apr 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
447ed3b
added intera and inter op parallelism parameters to the hugggingface …
saeid93 Apr 8, 2023
eae4817
added requirements to the tests
saeid93 Apr 8, 2023
f55b77d
loosening depandancies for solving conflicts
saeid93 Apr 8, 2023
89a5290
optional config values typing
saeid93 Apr 8, 2023
c0b0367
tensorflow to setup.py
saeid93 Apr 13, 2023
8c77fc0
tensorflow not currently supported
saeid93 Apr 14, 2023
9885ba4
added intera and inter op parallelism parameters to the hugggingface …
saeid93 Apr 8, 2023
38b6d5c
added requirements to the tests
saeid93 Apr 8, 2023
762c216
loosening depandancies for solving conflicts
saeid93 Apr 8, 2023
761d449
optional config values typing
saeid93 Apr 8, 2023
3fa0d48
tensorflow to setup.py
saeid93 Apr 13, 2023
2448842
tensorflow not currently supported
saeid93 Apr 14, 2023
0e0e707
rebased from master and added back tensorflow support with correct ve…
saeid93 Apr 17, 2023
9c2f698
merged with upstream
saeid93 Apr 17, 2023
6b06d3d
fixed forgotten lints
saeid93 Apr 17, 2023
df691a4
Add GH Action to check license info (#1105)
Apr 18, 2023
b4dd9cc
Rename license action
Apr 18, 2023
4b03511
Bump pip-licenses from 4.1.0 to 4.2.0 (#1100)
dependabot[bot] Apr 18, 2023
8ca4dd1
Bump datamodel-code-generator from 0.17.2 to 0.18.0 (#1099)
dependabot[bot] Apr 18, 2023
9fbc998
Bump pytest from 7.3.0 to 7.3.1 (#1098)
dependabot[bot] Apr 18, 2023
dbe3f81
Bump tritonclient[http] from 2.31.0 to 2.32.0 (#1097)
dependabot[bot] Apr 18, 2023
d41a9c0
Bump tox from 4.4.11 to 4.4.12 (#1096)
dependabot[bot] Apr 18, 2023
85243b2
warning message for batch corner case (#1102)
saeid93 Apr 18, 2023
a855cda
Add workflow_dispatch trigger
Apr 18, 2023
4c790f5
Use default initialiser if not using a custom env (#1104)
Apr 18, 2023
b658bb3
Fix dep issues with licenses (#1106)
Apr 19, 2023
f2a0071
Change PR body
Apr 18, 2023
992c1df
loosen tf version
saeid93 Apr 19, 2023
90efd88
added intera and inter op parallelism parameters to the hugggingface …
saeid93 Apr 8, 2023
519706e
added requirements to the tests
saeid93 Apr 8, 2023
a30a506
loosening depandancies for solving conflicts
saeid93 Apr 8, 2023
a6f84b4
optional config values typing
saeid93 Apr 8, 2023
9c9b599
tensorflow to setup.py
saeid93 Apr 13, 2023
f92ddf4
tensorflow not currently supported
saeid93 Apr 14, 2023
da408c4
rebased from master and added back tensorflow support with correct ve…
saeid93 Apr 17, 2023
47dfa1a
added intera and inter op parallelism parameters to the hugggingface …
saeid93 Apr 8, 2023
4f5513b
optional config values typing
saeid93 Apr 8, 2023
8f5336c
tensorflow to setup.py
saeid93 Apr 13, 2023
2ecd62b
tensorflow not currently supported
saeid93 Apr 14, 2023
f7f2b60
merging fixed
saeid93 Apr 19, 2023
3a81fdd
merging fixed
saeid93 Apr 19, 2023
e93728a
lint fix
saeid93 Apr 19, 2023
bde4f75
typo fixes
saeid93 Apr 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/licenses.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Licenses

on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "23 18 * * *"
workflow_dispatch:

jobs:
licenses:
runs-on: ubuntu-latest
if: github.repository == 'SeldonIO/MLServer' # Do not run this on forks.
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Dependencies
run: |
pip install -r requirements/dev.txt
- name: Generate Licenses
run: |
make licenses
git \
--no-pager diff \
--exit-code \
./licenses/license_info.no_versions.csv
- name: Open PR with License Changes
if: ${{ failure() }}
uses: peter-evans/create-pull-request@v5
with:
add-paths: ./licenses
commit-message: Re-generate license info
branch: licenses/license-change
branch-suffix: timestamp
delete-branch: true
title: Re-generate License Info
body: "
# License Change Detected :warning:
There was a license change detected.\n
Most likely, this has been triggered due to a licensing change in
one of our subdependencies, or the introducing of a new
subdependency.\n
This automated PR re-generates the licenses to keep them up to
date."
reviewers: adriangonz
Loading