Skip to content

Commit

Permalink
Fix range of values in test_extra_ops:setUp
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirif committed Apr 26, 2016
1 parent 987af27 commit 820a22f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theano/tensor/tests/test_extra_ops.py
Expand Up @@ -44,8 +44,8 @@ def setUp(self):
self.x = T.vector('x')
self.v = T.tensor3('v')

self.a = np.random.random(100).astype(config.floatX)
self.b = np.random.random((10, 20, 5)).astype(config.floatX)
self.a = 30 * np.random.random(50).astype(config.floatX)
self.b = 30 * np.random.random((8, 10, 5)).astype(config.floatX)
self.idx_sorted = np.argsort(self.a)

def tearDown(self):
Expand Down

0 comments on commit 820a22f

Please sign in to comment.