Enable skipped test as Variable.assign(name=xxx) now works with CentralStorage
PiperOrigin-RevId: 312701125 Change-Id: I2c43d1da9cf97b359293498085f491908a3ad4ab
This commit is contained in:
parent
37b60af536
commit
31eeaec3b4
|
@ -26,7 +26,6 @@ import numpy as np
|
|||
from tensorflow.python import keras
|
||||
from tensorflow.python.data.ops import dataset_ops
|
||||
from tensorflow.python.distribute import combinations
|
||||
from tensorflow.python.distribute import parameter_server_strategy
|
||||
from tensorflow.python.distribute import strategy_combinations
|
||||
from tensorflow.python.distribute import tpu_strategy
|
||||
from tensorflow.python.distribute import values
|
||||
|
@ -398,9 +397,6 @@ class TestDistributionStrategyWithNormalizationLayer(test.TestCase,
|
|||
optimizer=strategy_combinations
|
||||
.gradient_descent_optimizer_keras_v2_fn)))
|
||||
def test_batchnorm_correctness(self, distribution, fused, optimizer):
|
||||
if isinstance(distribution.extended,
|
||||
parameter_server_strategy.ParameterServerStrategyExtended):
|
||||
self.skipTest('b/152353796')
|
||||
with self.cached_session():
|
||||
with distribution.scope():
|
||||
model = keras.models.Sequential()
|
||||
|
|
Loading…
Reference in New Issue