Beispiel #1
0
def test_columnwise_iteration_with_function():
    input = lambda i,j: 2*i + j
    m = LazyArray(input, shape=(4,3))
    cols = [col for col in m.by_column()]
    assert_arrays_equal(cols[0], numpy.array([0, 2, 4, 6]))
    assert_arrays_equal(cols[1], numpy.array([1, 3, 5, 7]))
    assert_arrays_equal(cols[2], numpy.array([2, 4, 6, 8]))
Beispiel #2
0
def test_setitem_nonexpanded_different_value():
    A = LazyArray(3, shape=(5, ))
    assert A.evaluate(simplify=True) == 3
    A[0] = 4
    A[4] = 5
    assert_arrays_equal(A.evaluate(simplify=True), numpy.array([4, 3, 3, 3,
                                                                5]))
Beispiel #3
0
def test_columnwise_iteration_with_structured_array_and_mask():
    input = numpy.arange(12).reshape((4, 3))
    m = LazyArray(input, shape=(4, 3))  # 4 rows, 3 columns
    mask = numpy.array([False, True, True])
    cols = [col for col in m.by_column(mask=mask)]
    assert_arrays_equal(cols[0], input[:, 1])
    assert_arrays_equal(cols[1], input[:, 2])
Beispiel #4
0
def test_columnwise_iteration_with_structured_array_and_mask():
    input = numpy.arange(12).reshape((4,3))
    m = LazyArray(input, shape=(4,3)) # 4 rows, 3 columns
    mask = numpy.array([False, True, True])
    cols = [col for col in m.by_column(mask=mask)]    
    assert_arrays_equal(cols[0], input[:,1])
    assert_arrays_equal(cols[1], input[:,2])
Beispiel #5
0
def test_columnwise_iteration_with_function():
    input = lambda i, j: 2 * i + j
    m = LazyArray(input, shape=(4, 3))
    cols = [col for col in m.by_column()]
    assert_arrays_equal(cols[0], numpy.array([0, 2, 4, 6]))
    assert_arrays_equal(cols[1], numpy.array([1, 3, 5, 7]))
    assert_arrays_equal(cols[2], numpy.array([2, 4, 6, 8]))
Beispiel #6
0
def test_evaluate_with_functional_array():
    input = lambda i,j: 2*i + j
    m = LazyArray(input, shape=(4,3))
    assert_arrays_equal(m.evaluate(),
                        numpy.array([[0, 1, 2],
                                     [2, 3, 4],
                                     [4, 5, 6],
                                     [6, 7, 8]]))
Beispiel #7
0
def test_multiple_operations_with_structured_array():
    input = numpy.arange(12).reshape((4,3))
    m0 = LazyArray(input, shape=(4,3))
    m1 = (m0 + 2) < 5
    m2 = (m0 < 5) + 2
    assert_arrays_equal(m1.evaluate(simplify=True), (input+2)<5)
    assert_arrays_equal(m2.evaluate(simplify=True), (input<5)+2)
    assert_arrays_equal(m0.evaluate(simplify=True), input)
Beispiel #8
0
def test_multiple_operations_with_structured_array():
    input = numpy.arange(12).reshape((4, 3))
    m0 = LazyArray(input, shape=(4, 3))
    m1 = (m0 + 2) < 5
    m2 = (m0 < 5) + 2
    assert_arrays_equal(m1.evaluate(simplify=True), (input + 2) < 5)
    assert_arrays_equal(m2.evaluate(simplify=True), (input < 5) + 2)
    assert_arrays_equal(m0.evaluate(simplify=True), input)
Beispiel #9
0
def test_add_two_constant_arrays():
    m0 = LazyArray(5, shape=(4, 3))
    m1 = LazyArray(7, shape=(4, 3))
    m2 = m0 + m1
    assert_equal(m2.evaluate(simplify=True), 12)
    # the following tests the internals, not the behaviour
    # it is just to check I understand what's going on
    assert_equal(m2.base_value, m0.base_value)
    assert_equal(m2.operations, [(operator.add, m1)])
Beispiel #10
0
def test_columnwise_iteration_with_random_array_parallel_safe_no_mask():
    random.mpi_rank=0; random.num_processes=2
    input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    copy_input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    m = LazyArray(input, shape=(4,3))
    cols = [col for col in m.by_column()]
    assert_arrays_equal(cols[0], copy_input.next(4, mask_local=False))
    assert_arrays_equal(cols[1], copy_input.next(4, mask_local=False))
    assert_arrays_equal(cols[2], copy_input.next(4, mask_local=False))
Beispiel #11
0
def test_columnwise_iteration_with_random_array_parallel_safe_with_mask():
    random.mpi_rank=0; random.num_processes=2
    input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    copy_input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    m = LazyArray(input, shape=(4,3))
    mask = numpy.array([False, False, True])
    cols = [col for col in m.by_column(mask=mask)]
    assert_equal(len(cols), 1)
    assert_arrays_almost_equal(cols[0], copy_input.next(12, mask_local=False)[8:], 1e-15)
Beispiel #12
0
def test_columnwise_iteration_with_random_array_parallel_safe_no_mask():
    random.mpi_rank = 0
    random.num_processes = 2
    input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    copy_input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    m = LazyArray(input, shape=(4, 3))
    cols = [col for col in m.by_column()]
    assert_arrays_equal(cols[0], copy_input.next(4, mask_local=False))
    assert_arrays_equal(cols[1], copy_input.next(4, mask_local=False))
    assert_arrays_equal(cols[2], copy_input.next(4, mask_local=False))
Beispiel #13
0
def test_columnwise_iteration_with_random_array_parallel_safe_with_mask():
    random.mpi_rank = 0
    random.num_processes = 2
    input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    copy_input = random.RandomDistribution(rng=MockRNG(parallel_safe=True))
    m = LazyArray(input, shape=(4, 3))
    mask = numpy.array([False, False, True])
    cols = [col for col in m.by_column(mask=mask)]
    assert_equal(len(cols), 1)
    assert_arrays_almost_equal(cols[0],
                               copy_input.next(12, mask_local=False)[8:],
                               1e-15)
Beispiel #14
0
def test_apply_function_to_structured_array():
    f = lambda m: 2 * m + 3
    input = numpy.arange(12).reshape((4, 3))
    m0 = LazyArray(input, shape=(4, 3))
    m1 = f(m0)
    assert isinstance(m1, larray)
    assert_arrays_equal(m1.evaluate(simplify=True), input * 2 + 3)
Beispiel #15
0
def test_apply_function_to_functional_array():
    input = lambda i, j: 2 * i + j
    m0 = LazyArray(input, shape=(4, 3))
    f = lambda m: 2 * m + 3
    m1 = f(m0)
    assert_arrays_equal(
        m1.evaluate(),
        numpy.array([[3, 5, 7], [7, 9, 11], [11, 13, 15], [15, 17, 19]]))
Beispiel #16
0
def test_apply_function_to_constant_array():
    f = lambda m: 2 * m + 3
    m0 = LazyArray(5, shape=(4, 3))
    m1 = f(m0)
    assert isinstance(m1, larray)
    assert_equal(m1.evaluate(simplify=True), 13)
    # the following tests the internals, not the behaviour
    # it is just to check I understand what's going on
    assert_equal(m1.operations, [(operator.mul, 2), (operator.add, 3)])
Beispiel #17
0
def test_setitem_invalid_value():
    A = LazyArray(3, shape=(5, ))
    assert_raises(TypeError, A, "abc")
Beispiel #18
0
def test_lt_with_flat_array():
    m0 = LazyArray(5, shape=(4, 3))
    m1 = m0 < 10
    assert_equal(m1.evaluate(simplify=True), True)
    assert_equal(m0.evaluate(simplify=True), 5)
Beispiel #19
0
def test_iadd_with_flat_array():
    m = LazyArray(5, shape=(4,3))
    m += 2
    assert_arrays_equal(m.evaluate(), 7*numpy.ones((4,3)))
    assert_equal(m.base_value, 5)
    assert_equal(m.evaluate(simplify=True), 7)
Beispiel #20
0
def test_evaluate_with_structured_array():
    input = numpy.arange(12).reshape((4,3))
    m = LazyArray(input, shape=(4,3))
    assert_arrays_equal(m.evaluate(), input)
Beispiel #21
0
def test_columnwise_iteration_with_flat_array_and_mask():
    m = LazyArray(5, shape=(4,3)) # 4 rows, 3 columns
    mask = numpy.array([True, False, True])
    cols = [col for col in m.by_column(mask=mask)]
    assert_equal(cols, [5, 5])
Beispiel #22
0
def test_evaluate_with_functional_array():
    input = lambda i, j: 2 * i + j
    m = LazyArray(input, shape=(4, 3))
    assert_arrays_equal(
        m.evaluate(), numpy.array([[0, 1, 2], [2, 3, 4], [4, 5, 6], [6, 7,
                                                                     8]]))
Beispiel #23
0
def test_structured_array_lt_array():
    input = numpy.arange(12).reshape((4, 3))
    m0 = LazyArray(input, shape=(4, 3))
    comparison = 5 * numpy.ones((4, 3))
    m1 = m0 < comparison
    assert_arrays_equal(m1.evaluate(simplify=True), input < comparison)
Beispiel #24
0
def test_lt_with_structured_array():
    input = numpy.arange(12).reshape((4, 3))
    m0 = LazyArray(input, shape=(4, 3))
    m1 = m0 < 5
    assert_arrays_equal(m1.evaluate(simplify=True), input < 5)
Beispiel #25
0
def test_evaluate_with_structured_array():
    input = numpy.arange(12).reshape((4, 3))
    m = LazyArray(input, shape=(4, 3))
    assert_arrays_equal(m.evaluate(), input)
Beispiel #26
0
def test_evaluate_with_flat_array():
    m = LazyArray(5, shape=(4, 3))
    assert_arrays_equal(m.evaluate(), 5 * numpy.ones((4, 3)))
Beispiel #27
0
def test_create_with_array():
    A = LazyArray(numpy.array([1,2,3]), shape=(3,))
    assert A.shape == (3,)
    assert_arrays_equal(A.evaluate(simplify=True), numpy.array([1,2,3]))
Beispiel #28
0
def test_setitem_nonexpanded_different_value():
    A = LazyArray(3, shape=(5,))
    assert A.evaluate(simplify=True) == 3
    A[0] = 4; A[4] = 5
    assert_arrays_equal(A.evaluate(simplify=True), numpy.array([4, 3, 3, 3, 5]))
Beispiel #29
0
def test_columnwise_iteration_with_structured_array():
    input = numpy.arange(12).reshape((4,3))
    m = LazyArray(input, shape=(4,3)) # 4 rows, 3 columns
    cols = [col for col in m.by_column()]    
    assert_arrays_equal(cols[0], input[:,0])
    assert_arrays_equal(cols[2], input[:,2])
Beispiel #30
0
def test_evaluate_with_flat_array():
    m = LazyArray(5, shape=(4,3))
    assert_arrays_equal(m.evaluate(), 5*numpy.ones((4,3)))
Beispiel #31
0
def test_columnwise_iteration_with_structured_array():
    input = numpy.arange(12).reshape((4, 3))
    m = LazyArray(input, shape=(4, 3))  # 4 rows, 3 columns
    cols = [col for col in m.by_column()]
    assert_arrays_equal(cols[0], input[:, 0])
    assert_arrays_equal(cols[2], input[:, 2])
Beispiel #32
0
def test_columnwise_iteration_with_flat_array_and_mask():
    m = LazyArray(5, shape=(4, 3))  # 4 rows, 3 columns
    mask = numpy.array([True, False, True])
    cols = [col for col in m.by_column(mask=mask)]
    assert_equal(cols, [5, 5])
Beispiel #33
0
def test_create_with_array():
    A = LazyArray(numpy.array([1, 2, 3]), shape=(3, ))
    assert A.shape == (3, )
    assert_arrays_equal(A.evaluate(simplify=True), numpy.array([1, 2, 3]))
Beispiel #34
0
def test_lt_with_flat_array():
    m0 = LazyArray(5, shape=(4,3))
    m1 = m0 < 10
    assert_equal(m1.evaluate(simplify=True), True)
    assert_equal(m0.evaluate(simplify=True), 5)
Beispiel #35
0
def test_setitem_nonexpanded_same_value():
    A = LazyArray(3, shape=(5, ))
    assert A.evaluate(simplify=True) == 3
    A[0] = 3
    assert A.evaluate(simplify=True) == 3
Beispiel #36
0
def test_create_with_float():
    A = LazyArray(3.0, shape=(5,))
    assert A.shape == (5,)
    assert A.evaluate(simplify=True) == 3.0
Beispiel #37
0
def test_iadd_with_flat_array():
    m = LazyArray(5, shape=(4, 3))
    m += 2
    assert_arrays_equal(m.evaluate(), 7 * numpy.ones((4, 3)))
    assert_equal(m.base_value, 5)
    assert_equal(m.evaluate(simplify=True), 7)
Beispiel #38
0
def test_setitem_nonexpanded_same_value():
    A = LazyArray(3, shape=(5,))
    assert A.evaluate(simplify=True) == 3
    A[0] = 3
    assert A.evaluate(simplify=True) == 3
Beispiel #39
0
def test_add_incommensurate_arrays():
    m0 = LazyArray(5, shape=(4, 3))
    m1 = LazyArray(7, shape=(5, 3))
    assert_raises(ValueError, m0.__add__, m1)
Beispiel #40
0
def test_columnwise_iteration_with_flat_array():
    m = LazyArray(5, shape=(4,3)) # 4 rows, 3 columns
    cols = [col for col in m.by_column()]
    assert_equal(cols, [5, 5, 5])
Beispiel #41
0
def test_getitem_from_constant_array():
    m = LazyArray(3 * numpy.ones((4, 3)), shape=(4, 3))
    assert m[0, 0] == m[3, 2] == m[-1, 2] == m[-4, 2] == m[2, -3] == 3
    assert_raises(IndexError, m.__getitem__, (4, 0))
    assert_raises(IndexError, m.__getitem__, (2, -4))
Beispiel #42
0
def test_create_with_float():
    A = LazyArray(3.0, shape=(5, ))
    assert A.shape == (5, )
    assert A.evaluate(simplify=True) == 3.0
Beispiel #43
0
def test_columnwise_iteration_with_flat_array():
    m = LazyArray(5, shape=(4, 3))  # 4 rows, 3 columns
    cols = [col for col in m.by_column()]
    assert_equal(cols, [5, 5, 5])