Skip to content

Commit

Permalink
Use tarballs
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Sep 5, 2024
1 parent 0c2f4c9 commit 7734510
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/causal_lm_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ env:
jobs:
cpp-multinomial-greedy_causal_lm-ubuntu:
runs-on: ubuntu-20.04-8-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -62,6 +65,9 @@ jobs:
python ./samples/python/beam_search_causal_lm/beam_search_causal_lm.py,
]
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -241,6 +247,9 @@ jobs:

cpp-beam_search_causal_lm-Qwen-7B-Chat:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -268,6 +277,9 @@ jobs:
cpp-beam_search_causal_lm-Qwen1_5-7B-Chat:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -296,6 +308,9 @@ jobs:
cpp-beam_search_causal_lm-Phi-2:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -324,6 +339,9 @@ jobs:
cpp-beam_search_causal_lm-notus-7b-v1:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -352,6 +370,9 @@ jobs:
cpp-speculative_decoding_lm-ubuntu:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -389,6 +410,9 @@ jobs:
cpp-prompt_lookup_decoding_lm-ubuntu:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -456,6 +480,9 @@ jobs:
cpp-Phi-1_5:
runs-on: ubuntu-20.04-16-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -504,6 +531,9 @@ jobs:
cpp-greedy_causal_lm-redpajama-3b-chat:
runs-on: ubuntu-20.04-4-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -554,6 +584,9 @@ jobs:
cpp-chat_sample-ubuntu:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -614,6 +647,9 @@ jobs:
cpp-continuous-batching-ubuntu:
runs-on: ubuntu-20.04-8-cores
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -697,6 +733,9 @@ jobs:
cpp-continuous-batching-macos:
runs-on: macos-12
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/src/tokenizers_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ std::string get_ov_genai_library_path() {
}

std::filesystem::path with_openvino_tokenizers(const std::filesystem::path& path) {
#if defined(_DEBUG) && (defined(__APPLE__) || defined(_WIN32))
#if !defined(NDEBUG) && (defined(__APPLE__) || defined(_WIN32))
# define LIB_POSTFIX "d"
#else
# define LIB_POSTFIX ""
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/openvino_tokenizers

0 comments on commit 7734510

Please sign in to comment.