mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 11:24:35 +00:00
cuda : fix conflict with std::swap (#6186)
This commit is contained in:
parent
1c51f98adc
commit
42e21c6882
12
ggml-cuda.cu
12
ggml-cuda.cu
@ -370,12 +370,6 @@ struct ggml_cuda_pool {
|
|||||||
|
|
||||||
virtual void * alloc(size_t size, size_t * actual_size) = 0;
|
virtual void * alloc(size_t size, size_t * actual_size) = 0;
|
||||||
virtual void free(void * ptr, size_t size) = 0;
|
virtual void free(void * ptr, size_t size) = 0;
|
||||||
|
|
||||||
ggml_cuda_pool() = default;
|
|
||||||
ggml_cuda_pool(const ggml_cuda_pool &) = delete;
|
|
||||||
ggml_cuda_pool(ggml_cuda_pool &&) = delete;
|
|
||||||
ggml_cuda_pool& operator=(const ggml_cuda_pool &) = delete;
|
|
||||||
ggml_cuda_pool& operator=(ggml_cuda_pool &&) = delete;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ggml_cuda_pool_leg : public ggml_cuda_pool {
|
struct ggml_cuda_pool_leg : public ggml_cuda_pool {
|
||||||
@ -6969,7 +6963,7 @@ static __global__ void k_sum_rows_f32(const float * x, float * dst, const int nc
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
static inline __device__ void swap(T & a, T & b) {
|
static inline __device__ void ggml_cuda_swap(T & a, T & b) {
|
||||||
T tmp = a;
|
T tmp = a;
|
||||||
a = b;
|
a = b;
|
||||||
b = tmp;
|
b = tmp;
|
||||||
@ -6998,11 +6992,11 @@ static __global__ void k_argsort_f32_i32(const float * x, int * dst, const int n
|
|||||||
if (ixj > col) {
|
if (ixj > col) {
|
||||||
if ((col & k) == 0) {
|
if ((col & k) == 0) {
|
||||||
if (order == GGML_SORT_ORDER_ASC ? x_row[dst_row[col]] > x_row[dst_row[ixj]] : x_row[dst_row[col]] < x_row[dst_row[ixj]]) {
|
if (order == GGML_SORT_ORDER_ASC ? x_row[dst_row[col]] > x_row[dst_row[ixj]] : x_row[dst_row[col]] < x_row[dst_row[ixj]]) {
|
||||||
swap(dst_row[col], dst_row[ixj]);
|
ggml_cuda_swap(dst_row[col], dst_row[ixj]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (order == GGML_SORT_ORDER_ASC ? x_row[dst_row[col]] < x_row[dst_row[ixj]] : x_row[dst_row[col]] > x_row[dst_row[ixj]]) {
|
if (order == GGML_SORT_ORDER_ASC ? x_row[dst_row[col]] < x_row[dst_row[ixj]] : x_row[dst_row[col]] > x_row[dst_row[ixj]]) {
|
||||||
swap(dst_row[col], dst_row[ixj]);
|
ggml_cuda_swap(dst_row[col], dst_row[ixj]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user