blob: d39a416fd8550dcef92f7443dc243fad325144bd [file] [log] [blame]
#pragma once
#include <cstdint>
namespace fbgemm {
/**
* Transpose 4xN matrix with unsigned 8-byte integers
* TODO: move this to fbgemm after making transpose routine more general
*/
void transpose_4rows(int N, const std::uint8_t* src, std::uint8_t* dst);
} // namespace fbgemm