mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-24 00:57:39 +00:00
* WIP POC of dispatcher * Dispatcher python workflow setup. * Dispatcher cleanup and updates. Further dispatcher cleanup and updates. Build fixes Improvements and python to CK example Improvements to readme * Fixes to python paths * Cleaning up code * Improving dispatcher support for different arch Fixing typos * Fix formatting errors * Cleaning up examples * Improving codegeneration * Improving and fixing C++ examples * Adding conv functionality (fwd,bwd,bwdw) and examples. * Fixes based on feedback. * Further fixes based on feedback. * Adding stress test for autogeneration and autocorrection, and fixing preshuffle bug. * Another round of improvements based on feedback. * Trimming out unnecessary code. * Fixing the multi-D implementation. * Using gpu verification for gemms and fixing convolutions tflops calculation. * Fix counter usage issue and arch filtering per ops. * Adding changelog and other fixes. * Improve examples and resolve critical bugs. * Reduce build time for python examples. * Fixing minor bug. * Fix compilation error. * Improve installation instructions for dispatcher. * Add docker based installation instructions for dispatcher. * Fixing arch-based filtering to match tile engine. * Remove dead code and fix arch filtering. * Minor bugfix. * Updates after rebase. * Trimming code. * Fix copyright headers. * Consolidate examples, cut down code. * Minor fixes. * Improving python examples. * Update readmes. * Remove conv functionality. * Cleanup following conv removable.
44 lines
726 B
INI
44 lines
726 B
INI
[pytest]
|
|
# Pytest configuration for CK Tile Dispatcher Python tests
|
|
|
|
# Test discovery
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Test paths
|
|
testpaths = tests
|
|
|
|
# Options
|
|
addopts =
|
|
-v
|
|
--strict-markers
|
|
--tb=short
|
|
--color=yes
|
|
--durations=10
|
|
|
|
# Markers
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
cuda: marks tests requiring CUDA/ROCm
|
|
torch: marks tests requiring PyTorch
|
|
integration: marks integration tests
|
|
unit: marks unit tests
|
|
|
|
# Coverage
|
|
[coverage:run]
|
|
source = .
|
|
omit =
|
|
*/tests/*
|
|
*/examples/*
|
|
setup.py
|
|
|
|
[coverage:report]
|
|
precision = 2
|
|
show_missing = True
|
|
skip_covered = False
|
|
|
|
[coverage:html]
|
|
directory = htmlcov
|
|
|