igtrnt

Results 8 issues of igtrnt

`occa clear` seams to work only if `OCCA_CACHE_DIR` is unset or default (`${HOME}/.occa`): > export OCCA_CACHE_DIR=${HOME}/.occa1 > occa clear --all -y Removing [/home/iterentyev/.occa1/] terminate called after throwing an instance of...

Is _opt_einsum.paths.optimal_ supposed to support non-standard Einstein summations (when an index occurs in more than two tensors)? Consider contracting 3 tensors: `ij,j,jk->`: First, DFS looks at `ij,j` contraction. Resulting tensor...

**Description** Say I want to test `std::array` for certain list of `T`s and `N`s. E.g., for `T = char, short, int, long` and `N = 1, 2, 3, 4, 5`....

**Describe the bug** Compilation (gcc-12) error when trying to use `TEMPLATE_TEST_CASE_SIG`. Only in v3.x, no bug in v2.x. **Expected behavior** Expect simple `TEMPLATE_TEST_CASE_SIG` example to compile but I am getting:...

Would be nice to have colored logging option. I can manually do something like `INFO("\e[1;31mBLA\e[0m")`, but it Catch2 had built-in functionality, it would be better.

**Description** I am comparing two arrays for point-wise equality and would like to have a simple custom error message. For instance, count of mismatched elements and a few first mismatches....

My tests do not use any random generators bit I still get `Randomness seeded to: #######` message. Is there a way to turn off rand-related stuff or silence this message?

Query

In CWT code, the wavelet is [first integrated](https://github.com/PyWavelets/pywt/blob/361cc9a4c80bc2603fae99e151f2a391c0b376f9/pywt/_cwt.py#L129): `int_psi, x = integrate_wavelet(wavelet, precision=precision)` then [convolved](https://github.com/PyWavelets/pywt/blob/361cc9a4c80bc2603fae99e151f2a391c0b376f9/pywt/_cwt.py#L169C21-L169C69): `conv[n, :] = np.convolve(data[n], int_psi_scale)` and then [finite difference of convolution is taken](https://github.com/PyWavelets/pywt/blob/361cc9a4c80bc2603fae99e151f2a391c0b376f9/pywt/_cwt.py#L186): `coef =...

question