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,
)
|