fn
permute_copy_f64
void permute_copy_f64(const double * in, double * out, const int & in_shape, const int & perm)Double-precision counterpart to permute_copy_f32.
Parameters
inconst double*Source buffer laid out densely (C-order) according to
in_shape.outdouble*Pre-allocated destination buffer of
numel(in_shape) * sizeof(double) bytes.in_shapeconst std::vector<int64_t>&Shape of the source tensor.
permconst std::vector<int>&Axis permutation;
perm[d] names the source axis whose extent becomes output axis d.