-
In the last ${TBD} hours prior to publicizing this repository, we should lock down code changes and run through the following checks on **at least** two different machines:
- All documented examples …
-
put here a comment form @jppelteret and add a figure so that we remember:
> I believe that there were 2 factors that we considered when choosing the Eulerian formulation:
> 1. We ideally wanted o…
-
Stacktrace is basically identical to https://github.com/codeplaysoftware/computecpp-sdk/issues/77#issuecomment-385774905.
Yes, I compiled with sycl-compress-name (and of course no doubles or halfs).…
-
### What is the problem?
Matrix vector multiply is not parallelized. Please see my example code. No matter how I change the intra_op_parallelism_threads, the running time is always similar. I used …
-
I was wondering about convenient ways of manually specifying a contraction order in terms of node pairs. Now I'm thinking it would be cool to overload either the `*` or, perhaps better, the `@` operat…
-
If we define a tensor network for e.g. a scalar value (no dangling edges) and we want to compute the derivative of that number with respect to a tensor `T` in the network, one could use autodiff (depe…
-
Right now, the edge output order for the contractors is inconsistent, and thus can lead to confusing results when trying to switch contractors. (The final node's shape is different for different contr…
-
When multiplying by a CTF scalar, a sparse tensor seems to be set to zero
Minimal reproducing code:
```c++
vector inds = {1,2,2};
CTF::Tensor A(3,inds.data());
A.fill_random(0,1);
A.print();
A.…
-
Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues,…
-
My laptop recently froze on contraction of some matrix product bracket:
```python
bra = basis_1p(n, i)
ket = basis_1p(n, j)
bra.align_(mpo, ket)
(bra & mpo & ket) ^ all
```
`bra` and `ket` …