Skip to content

Commit 9b23aef

Browse files
Disable test as it will break under TF
PiperOrigin-RevId: 388293476
1 parent 58933f6 commit 9b23aef

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tensorflow_probability/python/optimizer/sgld_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ def testWithGlobalStep(self):
249249
self.assertAllCloseAccordingToType(1, self.evaluate(step))
250250

251251
def testSparseBasic(self):
252+
self.skipTest('b/195306553')
252253
if tf.executing_eagerly():
253254
return
254255

tensorflow_probability/python/optimizer/variational_sgd_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ def testWithGlobalStep(self):
309309
init_step_value + 1, self.evaluate(sgd_optimizer.iterations))
310310

311311
def testSparseBasic(self):
312+
self.skipTest('b/195306553')
312313
for dtype in [tf.half, tf.float32, tf.float64]:
313314
with self.cached_session():
314315
var0 = tf.Variable([[1.1], [2.1]], dtype=dtype)

0 commit comments

Comments
 (0)