Skip to content

qttools.datastructures#

[docs] package qttools.datastructures

# Copyright (c) 2024 ETH Zurich and the authors of the qttools package.

from qttools.datastructures.dsdbcoo import DSDBCOO
from qttools.datastructures.dsdbcsr import DSDBCSR
from qttools.datastructures.dsdbsparse import DSDBSparse
from qttools.datastructures.routines import (
    bd_matmul,
    bd_matmul_distr,
    bd_sandwich,
    bd_sandwich_distr,
    btd_matmul,
    btd_sandwich,
)

__all__ = [
    "DSDBCOO",
    "DSDBCSR",
    "DSDBSparse",
    "btd_matmul",
    "btd_sandwich",
    "bd_matmul",
    "bd_sandwich",
    "bd_matmul_distr",
    "bd_sandwich_distr",
]