At the moment, the test_1d_compare_with_numpy and test_2d_compare_with_numpy tests are slightly hacky in how they generate test cases. Here's the code for the 1-d case:
|
@given(values=arrays(dtype='<f8', shape=st.integers(0, 200), |
|
elements=st.floats(-1000, 1000), unique=True), |
|
nx=st.integers(1, 10), |
|
xmin=st.floats(-1e10, 1e10), |
|
xmax=st.floats(-1e10, 1e10), |
|
weights=st.booleans(), |
|
dtype=st.sampled_from(['>f4', '<f4', '>f8', '<f8'])) |
|
@settings(max_examples=500) |
|
def test_1d_compare_with_numpy(values, nx, xmin, xmax, weights, dtype): |
|
|
|
if xmax <= xmin: |
|
return |
|
|
|
values = values.astype(dtype) |
|
|
|
size = len(values) // 2 |
|
|
|
if weights: |
|
w = values[:size] |
|
else: |
|
w = None |
|
|
|
x = values[size:size * 2] |
What I'm trying to do is generate two arrays x and w which have the same dtype (either 32-bit or 64-bit floats, big or little endian), have the same 1-d size (sampled between 0 and 200), and have values in the range -1000, 1000. So at the moment I generate a 64-bit array, cast it inside the test, then split it into two. It would be cleaner to be able to directly generate the two arrays directly with the correct dtype, but I can't figure out how to do this.
@Zac-HD - do you have any suggestions how I might be able to achieve this in a cleaner way?
At the moment, the
test_1d_compare_with_numpyandtest_2d_compare_with_numpytests are slightly hacky in how they generate test cases. Here's the code for the 1-d case:fast-histogram/fast_histogram/tests/test_histogram.py
Lines 17 to 39 in 4dbb898
What I'm trying to do is generate two arrays
xandwwhich have the same dtype (either 32-bit or 64-bit floats, big or little endian), have the same 1-d size (sampled between 0 and 200), and have values in the range -1000, 1000. So at the moment I generate a 64-bit array, cast it inside the test, then split it into two. It would be cleaner to be able to directly generate the two arrays directly with the correct dtype, but I can't figure out how to do this.@Zac-HD - do you have any suggestions how I might be able to achieve this in a cleaner way?