AutoGPTQ/autogptq_extension/exllama/cuda_func/column_remap.cuh
2023-08-10 10:06:08 +09:00

19 lines
No EOL
339 B
Text

// Adapted from turboderp exllama: https://github.com/turboderp/exllama
#ifndef _column_remap_cuh
#define _column_remap_cuh
#include <cuda_runtime.h>
#include <cuda_fp16.h>
#include <cstdint>
void column_remap_cuda
(
const half* x,
half* x_new,
const int x_height,
const int x_width,
const uint32_t* x_map
);
#endif