pytest Integration

This commit is contained in:
A-transformer 2025-02-27 11:44:52 +04:00 committed by GitHub
parent f9a6da9ac2
commit 5479ffebb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,10 +76,11 @@ git clone --recursive git@github.com:deepseek-ai/DeepGEMM.git
python setup.py develop
# Test JIT compilation
python tests/test_jit.py
pip install pytest
pytest tests/test_jit.py -v -s
# Test all GEMM implements (normal, contiguous-grouped and masked-grouped)
python tests/test_core.py
pytest tests/test_core.py -v -s
```
### Installation