mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-29 07:34:18 +01:00
f3f65429c4
* scripts : update sync [no ci] * files : relocate [no ci] * ci : disable kompute build [no ci] * cmake : fixes [no ci] * server : fix mingw build ggml-ci * cmake : minor [no ci] * cmake : link math library [no ci] * cmake : build normal ggml library (not object library) [no ci] * cmake : fix kompute build ggml-ci * make,cmake : fix LLAMA_CUDA + replace GGML_CDEF_PRIVATE ggml-ci * move public backend headers to the public include directory (#8122) * move public backend headers to the public include directory * nix test * spm : fix metal header --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * scripts : fix sync paths [no ci] * scripts : sync ggml-blas.h [no ci] --------- Co-authored-by: slaren <slarengh@gmail.com>
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
#include "arange.cuh"
|
|
|
|
static __global__ void arange_f32(float * dst, const int ne0, const float start, const float step) {
|
|
// blockIDx.x: idx of ne0 / BLOCK_SIZE
|
|
int nidx = threadIdx.x + blockIdx.x * blockDim.x;
|
|
if (nidx >= ne0) {
|
|
return;
|
|
}
|
|
dst[nidx] = start + step * nidx;
|
|
}
|
|
|
|
static void arange_f32_cuda(float * dst, const int ne0, const float start, const float step, cudaStream_t stream) {
|
|
int num_blocks = (ne0 + CUDA_ARANGE_BLOCK_SIZE - 1) / CUDA_ARANGE_BLOCK_SIZE;
|
|
arange_f32<<<num_blocks, CUDA_ARANGE_BLOCK_SIZE, 0, stream>>>(dst, ne0, start, step);
|
|
}
|
|
|
|
void ggml_cuda_op_arange(ggml_backend_cuda_context & ctx, ggml_tensor * dst) {
|
|
float * dst_d = (float *)dst->data;
|
|
cudaStream_t stream = ctx.stream();
|
|
|
|
GGML_ASSERT(dst->type == GGML_TYPE_F32);
|
|
|
|
float start;
|
|
float stop;
|
|
float step;
|
|
memcpy(&start, (float *)dst->op_params + 0, sizeof(float));
|
|
memcpy(&stop, (float *)dst->op_params + 1, sizeof(float));
|
|
memcpy(&step, (float *)dst->op_params + 2, sizeof(float));
|
|
|
|
int64_t steps = (int64_t)ceil((stop - start) / step);
|
|
GGML_ASSERT(ggml_nelements(dst) == steps);
|
|
|
|
arange_f32_cuda(dst_d, dst->ne[0], start, step, stream);
|
|
}
|