Tim Martin

Results 12 issues of Tim Martin

This fixes https://github.com/MengRao/fmtlog/issues/68

When using the NVIDIA compiler nvcc, the fmtlog library has some warnings. First warning: `fmtlog/fmtlog-inl.h(71): warning #170-D: pointer points outside of underlying object case 18: *(uint16_t*)(s + 16) = *(uint16_t*)(digit_pairs...

If the tensor size is known, the ones() operator should conform to it instead of requiring the user to pass in the size. ``` auto w = make_tensor({test.params.nperseg}); ... (w...

Add a (Moore-Penrose) matrix pseudo-inverse operator similar to matlab or scipy pinv(). Pseudo-inverses are used in various problems where a true matrix inverse isn’t available, one example being a least...

In your queue example, consider also using pop() to show both push and pop (and front) work correctly.

https://github.com/ledger/ledger/blob/f8624f59419090aa59ab2f75626a7b1102558dfd/acprep#L545 Should be `python3-dev`. Attempting to install `python-dev` results in error message: ``` Package python-dev is not available, but is referred to by another package. This may mean that the...

**Is your feature request related to a problem? Please describe.** It is possible to decompose a matrix A into two matrices U and VT and a 1D vector S using...

**Describe the Bug** The argmax() function returns invalid indices in certain situations. **To Reproduce** Compile and run the code snippet. Output is ``` $ ./testbug Tensor{float} Rank: 1, Sizes:[6], Strides:[1]...

bug