mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-02-23 22:54:10 +00:00
Remove forgotten printf
This commit is contained in:
@@ -297,7 +297,6 @@ static void rms_norm_f32_cuda(const float * x, float * dst, const int ncols, con
|
||||
static void rms_norm_f32_nc_cuda(
|
||||
const float * x, float * dst, const int ncols, const int nrows, const int nchannels, const int nsamples,
|
||||
const int64_t stride_row, const int64_t stride_channel, const int64_t stride_sample, const float eps, cudaStream_t stream) {
|
||||
printf("%s: ncols = %d\n", __func__, ncols);
|
||||
const dim3 blocks_num(nrows, nchannels, nsamples);
|
||||
if (ncols < 1024) {
|
||||
const dim3 block_dims(WARP_SIZE, 1, 1);
|
||||
|
||||
Reference in New Issue
Block a user