Skip to content

taps.apps.configs.cholesky

CholeskyConfig

Bases: AppConfig

Cholesky application configuration.

get_app()

get_app() -> App

Create an application instance from the config.

Source code in taps/apps/configs/cholesky.py
def get_app(self) -> App:
    """Create an application instance from the config."""
    from taps.apps.cholesky import CholeskyApp

    return CholeskyApp(
        matrix_size=self.matrix_size,
        block_size=self.block_size,
    )