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

add debug #108

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Changes from all commits
Commits
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
16 changes: 8 additions & 8 deletions .github/workflows/test-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: pip3 install .[dev]
- name: "🔬 Running pytorch tests"
run: |
pytest tests/llmcompressor/pytorch
pytest tests/llmcompressor/pytorch -v
compat-pytorch-1_9-pytorch-tests:
runs-on: ubuntu-22.04
needs: test-setup
Expand All @@ -93,7 +93,7 @@ jobs:
run: pip3 install .[dev]
- name: "🔬 Running pytorch tests"
run: |
pytest tests/llmcompressor/pytorch
pytest tests/llmcompressor/pytorch -v
transformers-tests:
runs-on: ubuntu-22.04
needs: test-setup
Expand All @@ -117,21 +117,21 @@ jobs:
- name: "🔬 Running transformers tests[skipping over finetune]"
if: always() && steps.install.outcome == 'success'
run: |
pytest tests/llmcompressor/transformers/compression
pytest tests/llmcompressor/transformers/compression -v
- name: Running GPTQ Tests
if: always() && steps.install.outcome == 'success'
run: |
pytest tests/llmcompressor/transformers/gptq
pytest tests/llmcompressor/transformers/gptq -v
- name: Running ONESHOT Tests
if: always() && steps.install.outcome == 'success'
run: |
pytest tests/llmcompressor/transformers/oneshot
pytest tests/llmcompressor/transformers/oneshot -v
- name: Running Sparsification Tests
if: always() && steps.install.outcome == 'success'
run: |
pytest tests/llmcompressor/transformers/sparsification
ptyest tests/llmcompressor/transformers/test_clear_ml.py
pytest tests/llmcompressor/transformers/sparsification -v
ptyest tests/llmcompressor/transformers/test_clear_ml.py -v
- name: Running OBCQ Tests
if: always() && steps.install.outcome == 'success'
run: |
pytest -v tests/llmcompressor/transformers/obcq
pytest -v tests/llmcompressor/transformers/obcq -v
Loading