Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/tensorflow/python/ops/linalg/linalg.py: 100%

30 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-01-03 07:57 +0000

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 

17# go/tf-wildcard-import 

18# pylint: disable=wildcard-import,unused-import 

19from tensorflow.python.ops.linalg import adjoint_registrations as _adjoint_registrations 

20from tensorflow.python.ops.linalg import cholesky_registrations as _cholesky_registrations 

21from tensorflow.python.ops.linalg import inverse_registrations as _inverse_registrations 

22from tensorflow.python.ops.linalg import linear_operator_algebra as _linear_operator_algebra 

23from tensorflow.python.ops.linalg import matmul_registrations as _matmul_registrations 

24from tensorflow.python.ops.linalg import solve_registrations as _solve_registrations 

25from tensorflow.python.ops.linalg.linalg_impl import * 

26from tensorflow.python.ops.linalg.linear_operator import * 

27from tensorflow.python.ops.linalg.linear_operator_block_diag import * 

28from tensorflow.python.ops.linalg.linear_operator_block_lower_triangular import * 

29from tensorflow.python.ops.linalg.linear_operator_circulant import * 

30from tensorflow.python.ops.linalg.linear_operator_composition import * 

31from tensorflow.python.ops.linalg.linear_operator_diag import * 

32from tensorflow.python.ops.linalg.linear_operator_full_matrix import * 

33from tensorflow.python.ops.linalg.linear_operator_identity import * 

34from tensorflow.python.ops.linalg.linear_operator_kronecker import * 

35from tensorflow.python.ops.linalg.linear_operator_low_rank_update import * 

36from tensorflow.python.ops.linalg.linear_operator_lower_triangular import * 

37from tensorflow.python.ops.linalg.linear_operator_permutation import * 

38from tensorflow.python.ops.linalg.linear_operator_toeplitz import * 

39from tensorflow.python.ops.linalg.linear_operator_tridiag import * 

40from tensorflow.python.ops.linalg.linear_operator_zeros import * 

41# pylint: enable=wildcard-import 

42 

43# Seal API. 

44# pylint: disable=undefined-variable 

45del ops 

46del array_ops 

47del gen_linalg_ops 

48del linalg_ops 

49del math_ops 

50del special_math_ops 

51del tf_export 

52# pylint: enable=undefined-variable