Skip to content

Commit fbbbccc

Browse files
Googlertensorflower-gardener
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 696812241
1 parent e77ee0d commit fbbbccc

18 files changed

+0
-28
lines changed

tensorflow_probability/python/experimental/auto_batching/allocation_strategy_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
# ============================================================================
1515
"""Tests of the allocation strategy optimization pass."""
1616

17-
# Dependency imports
18-
1917
from tensorflow_probability.python.experimental.auto_batching import allocation_strategy
2018
from tensorflow_probability.python.experimental.auto_batching import instructions as inst
2119
from tensorflow_probability.python.experimental.auto_batching import test_programs

tensorflow_probability/python/experimental/auto_batching/dsl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
import contextlib
2525
import inspect
2626

27-
# Dependency imports
28-
2927
from tensorflow_probability.python.experimental.auto_batching import instructions as inst
3028

3129
__all__ = [

tensorflow_probability/python/experimental/auto_batching/dsl_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# ============================================================================
15-
# Dependency imports
1615
import numpy as np
1716

1817
import tensorflow.compat.v2 as tf

tensorflow_probability/python/experimental/auto_batching/frontend_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import collections
1818

19-
# Dependency imports
2019
from absl import logging
2120
import numpy as np
2221

tensorflow_probability/python/experimental/auto_batching/instructions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import inspect
2020
import textwrap
2121

22-
# Dependency imports
2322
from absl import logging
2423
import numpy as np
2524
import six

tensorflow_probability/python/experimental/auto_batching/instructions_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
# ============================================================================
1515
"""Tests of the instruction language (and definitional interpreter)."""
1616

17-
# Dependency imports
18-
1917
from tensorflow_probability.python.experimental.auto_batching import instructions
2018
from tensorflow_probability.python.experimental.auto_batching import test_programs
2119
from tensorflow_probability.python.internal import test_util as tfp_test_util

tensorflow_probability/python/experimental/auto_batching/lowering_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
# ============================================================================
1515
"""Tests of the FunctionCallOp lowering compilation pass."""
1616

17-
# Dependency imports
18-
1917
from tensorflow_probability.python.experimental.auto_batching import allocation_strategy
2018
from tensorflow_probability.python.experimental.auto_batching import lowering
2119
from tensorflow_probability.python.experimental.auto_batching import numpy_backend

tensorflow_probability/python/experimental/auto_batching/numpy_backend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
import collections
2525

26-
# Dependency imports
2726
import numpy as np
2827

2928
from tensorflow_probability.python.experimental.auto_batching import instructions

tensorflow_probability/python/experimental/auto_batching/numpy_backend_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# ============================================================================
1515
"""Tests for implementations of batched variables."""
1616

17-
# Dependency imports
1817
import hypothesis as hp
1918
from hypothesis import strategies as hps
2019
from hypothesis.extra import numpy as hpnp

tensorflow_probability/python/experimental/auto_batching/stack_optimization_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# ============================================================================
15-
# Dependency imports
16-
1715
from tensorflow_probability.python.experimental.auto_batching import stack_optimization as stack
1816
from tensorflow_probability.python.experimental.auto_batching import test_programs
1917
from tensorflow_probability.python.internal import test_util as tfp_test_util

tensorflow_probability/python/experimental/auto_batching/stackless.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import functools
2323
import heapq
2424

25-
# Dependency imports
2625
from absl import logging
2726
import six
2827
from tensorflow_probability.python.experimental.auto_batching import instructions as inst

tensorflow_probability/python/experimental/auto_batching/stackless_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
# ============================================================================
1515
"""Tests of the FunctionCallOp lowering compilation pass."""
1616

17-
# Dependency imports
18-
1917
import tensorflow.compat.v1 as tf1
2018

2119
from tensorflow_probability.python.experimental.auto_batching import allocation_strategy

tensorflow_probability/python/experimental/auto_batching/test_programs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# ============================================================================
1515
"""Tests of the instruction language (and definitional interpreter)."""
1616

17-
# Dependency imports
1817
import numpy as np
1918

2019
from tensorflow_probability.python.experimental.auto_batching import instructions

tensorflow_probability/python/experimental/auto_batching/tf_backend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import collections
2121
import contextlib
2222

23-
# Dependency imports
2423
import six
2524
import tensorflow.compat.v1 as tf1
2625
import tensorflow.compat.v2 as tf

tensorflow_probability/python/experimental/auto_batching/tf_backend_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
# ============================================================================
1515
"""Tests for the TF implementations of auto-batched VM variables."""
1616

17-
# Dependency imports
18-
1917
import hypothesis as hp
2018
from hypothesis import strategies as hps
2119
from hypothesis.extra import numpy as hpnp

tensorflow_probability/python/experimental/auto_batching/type_inference_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
import functools
1818

19-
# Dependency imports
20-
2119
from absl.testing import parameterized
2220

2321
import numpy as np

tensorflow_probability/python/experimental/auto_batching/virtual_machine.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import contextlib
1818
import functools
1919

20-
# Dependency imports
21-
2220
from absl import logging
2321
import six
2422

tensorflow_probability/python/experimental/auto_batching/virtual_machine_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
import functools
1818

19-
# Dependency imports
20-
2119
from absl import flags
2220

2321
import numpy as np

0 commit comments

Comments
 (0)