xtensor-julia icon indicating copy to clipboard operation
xtensor-julia copied to clipboard

Julia bindings for xtensor

Results 5 xtensor-julia issues
Sort by recently updated
recently updated
newest added

The assignment operation, i.e., ```c xt::jltensor test(xt::jltensor u) { xt::jltensor f = u; return f; } ``` cannot be performed in-place through ```c void test(xt::jltensor f, xt::jltensor u) { f...

I am not quite sure why this would fail in the pure C++-driven test while it works in the test case where Julia makes the function call. (https://github.com/SylvainCorlay/Xtensor.jl/blob/master/deps/xtensor-julia-examples/tensors.cpp#L71) I suspect...