Skip to content
Snippets Groups Projects
Select Git revision
  • 5d6b186cf0a3a768a5fed3ba86dea6a54787748c
  • master default
  • waldwiesen-simulation
  • weilin
  • textures
  • colab
  • torch_native-rewrite
  • ci-experiments
  • test-travis-test
  • os-travis
  • remove-lbm
  • bootstrap_theme
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
24 results

conf.py

Blame
  • quicktest.py 504 B
    #!/usr/bin/env python3
    
    from contextlib import redirect_stdout
    import io
    from tests.test_quicktests import (
        test_basic_kernel,
        test_basic_blocking_staggered,
        test_basic_vectorization,
    )
    
    quick_tests = [
        test_basic_kernel,
        test_basic_blocking_staggered,
        test_basic_vectorization,
    ]
    
    if __name__ == "__main__":
        print("Running pystencils quicktests")
        for qt in quick_tests:
            print(f"   -> {qt.__name__}")
            with redirect_stdout(io.StringIO()):
                qt()