File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ def test_logp(self):
139
139
logp = logp_f (cov_val , delta_val )
140
140
npt .assert_allclose (logp , expect )
141
141
142
+ @theano .configparser .change_flags (compute_test_value = "ignore" )
142
143
def test_grad (self ):
143
144
np .random .seed (42 )
144
145
@@ -179,12 +180,14 @@ def test_hessian(self):
179
180
180
181
181
182
class TestSplineWrapper (object ):
183
+ @theano .configparser .change_flags (compute_test_value = "ignore" )
182
184
def test_grad (self ):
183
185
x = np .linspace (0 , 1 , 100 )
184
186
y = x * x
185
187
spline = SplineWrapper (interpolate .InterpolatedUnivariateSpline (x , y , k = 1 ))
186
188
utt .verify_grad (spline , [0.5 ])
187
189
190
+ @theano .configparser .change_flags (compute_test_value = "ignore" )
188
191
def test_hessian (self ):
189
192
x = np .linspace (0 , 1 , 100 )
190
193
y = x * x
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ def setup_method(self):
20
20
self .op_class = LogDet
21
21
self .op = logdet
22
22
23
+ @theano .configparser .change_flags (compute_test_value = "ignore" )
23
24
def validate (self , input_mat ):
24
25
x = theano .tensor .matrix ()
25
26
f = theano .function ([x ], self .op (x ))
You can’t perform that action at this time.
0 commit comments