forked from intel/e2eAIOK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
144 changed files
with
27,180 additions
and
3,720 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
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,28 @@ | ||
name: Publish E2EAIOK Deltatuner nightly to PyPI | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
e2eaiok-dtuner-nightly-python-pypi: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
|
||
- name: Build sdist | ||
run: | | ||
pip install build wheel | ||
cd e2eAIOK/deltatuner | ||
python3 setup.py sdist | ||
- name: Upload | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
packages-dir: e2eAIOK/deltatuner/dist |
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,55 @@ | ||
name: Publish e2eAIOK Docker v1.2 for RecDP and deltatuner | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Publish e2eAIOK Nightly Release to dockerhub"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'Dockerfile-ubuntu/Dockerfile-v1.2' | ||
- '.github/workflows/release_docker_e2eaiokv12.yml' | ||
|
||
jobs: | ||
e2eaiok-release-docker: | ||
runs-on: self-hosted | ||
if: ${{ github.repository_owner == 'intel' }} | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Set up Env | ||
run: | | ||
echo RELEASE_VERSION=$(cat e2eAIOK/version | head -1) >> $GITHUB_ENV | ||
echo http_proxy=${http_proxy} >> $GITHUB_ENV | ||
echo https_proxy=${https_proxy} >> $GITHUB_ENV | ||
echo no_proxy=${no_proxy} >> $GITHUB_ENV | ||
- | ||
name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: | | ||
env.http_proxy=${{ env.http_proxy }} | ||
env.https_proxy=${{ env.https_proxy }} | ||
"env.no_proxy='${{ env.no_proxy}}'" | ||
- | ||
name: Build and Push Docker images | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./Dockerfile-ubuntu | ||
file: ./Dockerfile-ubuntu/Dockerfile-v1.2 | ||
push: true | ||
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/e2eaiok-v1.2:${{ env.RELEASE_VERSION }} , ${{ secrets.DOCKER_HUB_USERNAME }}/e2eaiok-v1.2:latest | ||
build-args: | | ||
"http_proxy=${{ env.http_proxy }}" | ||
"https_proxy=${{ env.https_proxy }}" |
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,30 @@ | ||
name: Unittest LLM Operations | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- 'RecDP/pyrecdp/LLM/**' | ||
- 'RecDP/pyrecdp/primitives/operations/**' | ||
- 'RecDP/tests/cicd/bashrun_unittest_llmutilspipeline.sh' | ||
- 'RecDP/tests/test_llmutils_operations.py' | ||
|
||
jobs: | ||
unittest: | ||
name: Unittest LLM | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build Docker | ||
run: | | ||
cd RecDP && cd Dockerfile && docker build -t pyrecdp-test-env . -f DockerfileUbuntu --build-arg https_proxy=${https_proxy} && cd .. && yes | docker container prune && yes | docker image prune | ||
- name: RUN Unittests | ||
run: | | ||
cd RecDP && docker run --rm --name unittest-pyrecdp-autofe-pandas --shm-size=300g --privileged --network host --device=/dev/dri -e RECDP_MODELS_CACHE=/home/vmagent/models -v `pwd`:/home/vmagent/app/ -v `pwd`/../../models:/home/vmagent/models/ -w /home/vmagent/app/ pyrecdp-test-env /bin/bash -c "sh tests/cicd/bashrun_unittest_llmutils_operations.sh" | ||
- name: Clean env | ||
run: | | ||
docker ps --filter name=unittest-pyrecdp-autofe-pandas; while read line; do docker stop unittest-pyrecdp-autofe-pandas;done |
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,23 @@ | ||
FROM ubuntu | ||
|
||
# See http://bugs.python.org/issue19846 | ||
ENV LANG C.UTF-8 | ||
|
||
# Install system dependencies | ||
RUN apt-get -y update \ | ||
&& apt-get install -y build-essential \ | ||
&& apt-get install -y wget numactl git \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python-is-python3 graphviz \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y openjdk-8-jre \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install torch==1.13.0 transformers datasets accelerate SentencePiece \ | ||
evaluate peft==0.4.0 torchsummary \ | ||
nltk rouge_score protobuf==3.20.1 tokenizers einops wandb \ | ||
sigopt | ||
|
||
RUN pip install --upgrade pip | ||
RUN pip install pyspark | ||
RUN pip install graphviz jupyterlab | ||
RUN pip install featuretools |
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.