blob: 1edebf717a500c2f6e03328bf59288367c9a72eb [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);
}