MCPcopy Create free account
hub / github.com/ComputationalRobotics/XM-code / symBatched

Function symBatched

XM/include/Dense/transpose.h:54–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52// transpose a matrix
53template <typename T>
54void symBatched(T* out, const T* in, size_s mat_size, size_s batch_size) {
55 dim3 blockDim(32, 32);
56 dim3 gridDim((mat_size + blockDim.x - 1) / blockDim.x, (mat_size * batch_size + blockDim.y - 1) / blockDim.y);
57 symBatchedKernel<<<gridDim, blockDim>>>(out, in, mat_size, batch_size);
58}
59
60#endif // DENSE_TRANSPOSE_H

Callers 1

XMtrustregionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected