1# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14# ==============================================================================
15"""Public API for tf.linalg namespace."""
16
17from __future__ import absolute_import
18from __future__ import division
19from __future__ import print_function
20
21# go/tf-wildcard-import
22# pylint: disable=wildcard-import,unused-import
23from tensorflow.python.ops.linalg import adjoint_registrations as _adjoint_registrations
24from tensorflow.python.ops.linalg import cholesky_registrations as _cholesky_registrations
25from tensorflow.python.ops.linalg import inverse_registrations as _inverse_registrations
26from tensorflow.python.ops.linalg import linear_operator_algebra as _linear_operator_algebra
27from tensorflow.python.ops.linalg import matmul_registrations as _matmul_registrations
28from tensorflow.python.ops.linalg.linalg_impl import *
29from tensorflow.python.ops.linalg.linear_operator import *
30from tensorflow.python.ops.linalg.linear_operator_block_diag import *
31from tensorflow.python.ops.linalg.linear_operator_circulant import *
32from tensorflow.python.ops.linalg.linear_operator_composition import *
33from tensorflow.python.ops.linalg.linear_operator_diag import *
34from tensorflow.python.ops.linalg.linear_operator_full_matrix import *
35from tensorflow.python.ops.linalg.linear_operator_identity import *
36from tensorflow.python.ops.linalg.linear_operator_kronecker import *
37from tensorflow.python.ops.linalg.linear_operator_low_rank_update import *
38from tensorflow.python.ops.linalg.linear_operator_lower_triangular import *
39from tensorflow.python.ops.linalg.linear_operator_zeros import *
40# pylint: enable=wildcard-import
41
42# Seal API.
43# pylint: disable=undefined-variable
44del absolute_import
45del division
46del print_function
47del ops
48del array_ops
49del gen_linalg_ops
50del linalg_ops
51del math_ops
52del special_math_ops
53del tf_export
54# pylint: enable=undefined-variable
55