|
| 1 | +import random |
| 2 | + |
| 3 | +import pytest |
| 4 | + |
| 5 | +import arrayfire_wrapper.dtypes as dtypes |
| 6 | +import arrayfire_wrapper.lib as wrapper |
| 7 | + |
| 8 | + |
| 9 | +@pytest.mark.parametrize( |
| 10 | + "shape", |
| 11 | + [ |
| 12 | + (), |
| 13 | + (random.randint(1, 10), 1), |
| 14 | + (random.randint(1, 10), random.randint(1, 10)), |
| 15 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 16 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 17 | + ], |
| 18 | +) |
| 19 | +def test_randu_shape(shape: tuple) -> None: |
| 20 | + """Test if randu function creates an array with the correct shape.""" |
| 21 | + dtype = dtypes.s16 |
| 22 | + |
| 23 | + result = wrapper.randu(shape, dtype) |
| 24 | + |
| 25 | + assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa: E203 |
| 26 | + |
| 27 | + |
| 28 | +@pytest.mark.parametrize( |
| 29 | + "shape", |
| 30 | + [ |
| 31 | + (), |
| 32 | + (random.randint(1, 10), 1), |
| 33 | + (random.randint(1, 10), random.randint(1, 10)), |
| 34 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 35 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 36 | + ], |
| 37 | +) |
| 38 | +def test_random_uniform_shape(shape: tuple) -> None: |
| 39 | + """Test if rand uniform function creates an array with the correct shape.""" |
| 40 | + dtype = dtypes.s16 |
| 41 | + engine = wrapper.create_random_engine(100, 10) |
| 42 | + |
| 43 | + result = wrapper.random_uniform(shape, dtype, engine) |
| 44 | + |
| 45 | + assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa: E203 |
| 46 | + |
| 47 | + |
| 48 | +@pytest.mark.parametrize( |
| 49 | + "shape", |
| 50 | + [ |
| 51 | + (), |
| 52 | + (random.randint(1, 10), 1), |
| 53 | + (random.randint(1, 10), random.randint(1, 10)), |
| 54 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 55 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 56 | + ], |
| 57 | +) |
| 58 | +def test_randn_shape(shape: tuple) -> None: |
| 59 | + """Test if randn function creates an array with the correct shape.""" |
| 60 | + dtype = dtypes.f32 |
| 61 | + |
| 62 | + result = wrapper.randn(shape, dtype) |
| 63 | + |
| 64 | + assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa: E203 |
| 65 | + |
| 66 | + |
| 67 | +@pytest.mark.parametrize( |
| 68 | + "shape", |
| 69 | + [ |
| 70 | + (), |
| 71 | + (random.randint(1, 10), 1), |
| 72 | + (random.randint(1, 10), random.randint(1, 10)), |
| 73 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 74 | + (random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)), |
| 75 | + ], |
| 76 | +) |
| 77 | +def test_random_normal_shape(shape: tuple) -> None: |
| 78 | + """Test if random normal function creates an array with the correct shape.""" |
| 79 | + dtype = dtypes.f32 |
| 80 | + engine = wrapper.create_random_engine(100, 10) |
| 81 | + |
| 82 | + result = wrapper.random_normal(shape, dtype, engine) |
| 83 | + |
| 84 | + assert wrapper.get_dims(result)[0 : len(shape)] == shape # noqa: E203 |
| 85 | + |
| 86 | + |
| 87 | +@pytest.mark.parametrize( |
| 88 | + "engine_index", |
| 89 | + [100, 200, 300], |
| 90 | +) |
| 91 | +def test_create_random_engine(engine_index: int) -> None: |
| 92 | + engine = wrapper.create_random_engine(engine_index, 10) |
| 93 | + |
| 94 | + engine_type = wrapper.random_engine_get_type(engine) |
| 95 | + |
| 96 | + assert engine_type == engine_index |
| 97 | + |
| 98 | + |
| 99 | +@pytest.mark.parametrize( |
| 100 | + "invalid_index", |
| 101 | + [random.randint(301, 600), random.randint(301, 600), random.randint(301, 600)], |
| 102 | +) |
| 103 | +def test_invalid_random_engine(invalid_index: int) -> None: |
| 104 | + "Test if invalid engine types are properly handled" |
| 105 | + with pytest.raises(RuntimeError): |
| 106 | + |
| 107 | + invalid_engine = wrapper.create_random_engine(invalid_index, 10) |
| 108 | + |
| 109 | + engine_type = wrapper.random_engine_get_type(invalid_engine) |
| 110 | + |
| 111 | + assert engine_type == invalid_engine |
0 commit comments