<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import warnings
from theano.tensor.nnet.blocksparse import (
    SparseBlockGemv, SparseBlockOuter, sparse_block_dot, sparse_block_gemv,
    sparse_block_gemv_inplace, sparse_block_outer, sparse_block_outer_inplace)

__all__ = [SparseBlockGemv, SparseBlockOuter, sparse_block_dot,
           sparse_block_gemv, sparse_block_gemv_inplace, sparse_block_outer,
           sparse_block_outer_inplace]

warnings.warn("DEPRECATION: theano.sandbox.blocksparse does not exist anymore,"
              "it has been moved to theano.tensor.nnet.blocksparse.",
              category=DeprecationWarning)
</pre></body></html>