Daniel Strobusch
Daniel Strobusch
I wrote a simple bash completion script, which helps, if one can't remember the arguments. If you like it, feel free to add it or modify it. If it is...
…ltiply aliased dependencies Dependencies keep a reference on their parent chart, which breaks if a chart reference is shared among multiple aliases. By copying the dependencies, parent information can be...
# Summary Given a chart with a subchart `child` and a sub-sub-chart `grandchild` ``` charts/ + child + grandchild ``` where the sub chart is referenced twice with an alias...
currently both matrices are always transformed to the same memory layout before multiplying. C and F contiguous matrices could be handled as is: ``` if A.isFContiguous { order = CblasColMajor...
when the old style index API is removed, varargs can be added: ``` /** slice access */ public subscript(slices: Slice...) -> NdArray { get { self[slices] } set { self[slices]...
To remove the need to convert to a slice expliclty `a[Slice(1)]` one can make `Slice` conform to `ExpressibleByIntegerLiteral`. This should not be done before the old index API is removed,...
The README is lacking docs on conversion from and to normal swift arrays.