Skip to content

Commit 056287a

Browse files
Natalia Gimelsheinfacebook-github-bot
Natalia Gimelshein
authored andcommitted
turn off deadline for adagrad test
Summary: Tests are frequently failing with "exceeded the deadline of 1000.00ms", we expect this to happen, so remove the deadline Test Plan: N/A: Fix breakages Reviewed By: robieta Differential Revision: D28581051 fbshipit-source-id: 4825ada9af151fa5d57c45c549138c15ba613705
1 parent 9db64e6 commit 056287a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

caffe2/python/operator_test/adagrad_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def test_row_wise_sparse_adagrad(self, inputs, lr, epsilon, weight_decay, gc, dc
226226
),
227227
**hu.gcs
228228
)
229-
@settings(deadline=1000)
229+
@settings(deadline=None)
230230
def test_row_wise_sparse_adagrad_empty(self, inputs, lr, epsilon, gc, dc):
231231
param, momentum = inputs
232232
grad = np.empty(shape=(0,) + param.shape[1:], dtype=np.float32)

0 commit comments

Comments
 (0)