blob: adb89c83aac85f3316bf8098ac4bf0bd9e155232 (
plain)
1
2
3
4
5
|
#include "common.cuh"
#define CUDA_QUANTIZE_BLOCK_SIZE 256
void quantize_row_q8_1_cuda(const float * x, void * vy, const int kx, const int ky, const int kx_padded, cudaStream_t stream);
|