Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into mixtral
Browse files Browse the repository at this point in the history
  • Loading branch information
intellinjun authored Feb 23, 2024
2 parents f285b1f + 4642395 commit 299a996
Show file tree
Hide file tree
Showing 114 changed files with 3,299 additions and 3,024 deletions.
13 changes: 13 additions & 0 deletions .github/license_template.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright (c) 2024 Intel Corporation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
72 changes: 0 additions & 72 deletions .github/workflows/copyright_check.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/cpp-graph-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
- '.github/workflows/scripts/models/cpp_graph_inference.sh'
- 'neural_speed/**'
- 'bestla/**'
- 'CMakeLists.txt'
- 'setup.py'
- '!**/*.md'
workflow_dispatch:
inputs:
compiler_version:
Expand Down Expand Up @@ -59,7 +62,7 @@ jobs:
run: |
cd ${{ github.workspace }}/.github/workflows/scripts/models
bash cpp_graph_inference.sh cpp-graph-test-neural-speed ${{ matrix.modelName }} ${{ env.INPUT_COMPILER_VERSION }}
- name: Rename summary
run: |
cd ${{ github.workspace }}
Expand Down Expand Up @@ -93,7 +96,7 @@ jobs:
uses: actions/download-artifact@v3
with:
path: ${{ env.OUT_SCRIPT_PATH }}/generated/log

- name: Merge CPP Graph Summary Log
run: |
cd ${{ env.OUT_SCRIPT_PATH }}/generated/log/cpp_graph
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/format_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- neural_speed/**
- bestla/**
- scripts/**
- clang-format.py
- setup.py
- .github/workflows/format_scan.yml
- .github/workflows/scripts/formatScan/**
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/formatScan/clangtidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cd build
cmake .. -G Ninja -DNS_USE_CLANG_TIDY=CHECK -DBTLA_USE_OPENMP=OFF
ninja 2>&1 | tee ${log_path}

if [[ ! -f ${log_path} ]] || [[ $(grep -c "warning:" ${log_path}) != 0 ]]; then
if [[ ! -f ${log_path} ]] || [[ $(grep -c "warning:" ${log_path}) != 0 ]] || [[ $(grep -c "error" ${log_path}) != 0 ]]; then
exit 1
fi
$BOLD_PURPLE && echo "Congratulations, check passed!" && $LIGHT_PURPLE && echo "You can click on the artifact button to see the log details." && $RESET
Expand Down
Loading

0 comments on commit 299a996

Please sign in to comment.