QuickRank
v2.0
QuickRank: A C++ suite of Learning to Rank algorithms
|
#include "utils/transpose.h"
Macros | |
#define | TRNSP_BLOCKSIZE 64 |
size of a square block of elements to traspose More... | |
Functions | |
void | transpose (float **output, float **input, const size_t n, const size_t m) |
#define TRNSP_BLOCKSIZE 64 |
size of a square block of elements to traspose
void transpose | ( | float ** | output, |
float ** | input, | ||
const size_t | n, | ||
const size_t | m | ||
) |
traspose input float matrix made up of n rows and m columns block by block
input | matrix to transpose |
output | trasposed matrix |
n | number of rows of input matrix |
m | number of columns of input matrix |