Change Slice op inner type from ndarray-0.10 Si to respective
ndarray-0.12 Slice.
Wrap Slice into SliceInfo in calls to slice*()
A maintainer of ndarray (jturner314) recommends
that slicing be done with s![] where applicable. I don't think it
is applicable in this use case and I decided to do that wrapping
instead.
In examples: cast sliced, constant sized batches into dynamic
ndarrays with .into_dyn(), as the new ndarray-0.12 API seems to require
that.
Slice
op inner type from ndarray-0.10Si
to respective ndarray-0.12Slice
.Slice
intoSliceInfo
in calls toslice*()
s![]
where applicable. I don't think it is applicable in this use case and I decided to do that wrapping instead..into_dyn()
, as the new ndarray-0.12 API seems to require that.