Skip to content

Commit eda25bd

Browse files
axchjburnim
authored andcommitted
Suppress another round of overly slow jax transformation tests.
PiperOrigin-RevId: 398024988
1 parent 367d4da commit eda25bd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tensorflow_probability/python/distributions/jax_transformation_test.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@
6868
PMAP_SAMPLE_BLOCKLIST = (
6969
'Bates',
7070
'BatchReshape', # http://b/163171224
71+
'MixtureSameFamily', # Too slow: http://b/170871051
72+
'NegativeBinomial', # Too slow: http://b/170871051
7173
)
7274
PMAP_LOGPROB_BLOCKLIST = (
7375
'BatchReshape', # http://b/161984806
@@ -80,23 +82,30 @@
8082
JVP_LOGPROB_SAMPLE_BLOCKLIST = (
8183
'BetaQuotient', # https://b/178552958
8284
'GeneralizedExtremeValue', # http://b/175654800
85+
'NegativeBinomial', # Too slow: http://b/170871051
8386
)
8487
JVP_LOGPROB_PARAM_BLOCKLIST = (
8588
'BetaQuotient', # https://b/178552958
89+
'NegativeBinomial', # Too slow: http://b/170871051
8690
)
8791

88-
VJP_SAMPLE_BLOCKLIST = ()
92+
VJP_SAMPLE_BLOCKLIST = (
93+
'NegativeBinomial', # Too slow: http://b/170871051
94+
)
8995
VJP_LOGPROB_SAMPLE_BLOCKLIST = (
9096
'BetaQuotient', # https://b/178552958
9197
'GeneralizedExtremeValue', # http://b/175654800
98+
'NegativeBinomial', # Too slow: http://b/170871051
9299
)
93100
VJP_LOGPROB_PARAM_BLOCKLIST = (
94101
'BetaQuotient', # https://b/178552958
102+
'NegativeBinomial', # Too slow: http://b/170871051
95103
)
96104

97105
PYTREE_BLOCKLIST = (
98106
'Bates',
99107
'MixtureSameFamily', # Too slow: http://b/170871051
108+
'NegativeBinomial', # Too slow: http://b/170871051
100109
'Poisson', # Too slow: http://b/170871051
101110
'Sample', # Too slow: http://b/170871051
102111
'SinhArcsinh', # b/183670203

0 commit comments

Comments
 (0)