You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After recent CUDA refactoring, we no longer set GGML_BACKEND_TYPE_GPU in ggml_backend_cuda_buffer_init_tensor() and tensors end up with GGML_BACKEND_TYPE_CPU backend even when using CUDA.
Is this a bug or part of a bigger plan which removes the backend property of the tensors?
The text was updated successfully, but these errors were encountered:
The goal is to remove backend from the tensor entirely. Backends can use the buffer type to identify the storage location of the tensors instead. I think that at this point, only the OpenCL backend depends on the value of the backend property.
After recent CUDA refactoring, we no longer set
GGML_BACKEND_TYPE_GPU
inggml_backend_cuda_buffer_init_tensor()
and tensors end up withGGML_BACKEND_TYPE_CPU
backend even when using CUDA.Is this a bug or part of a bigger plan which removes the
backend
property of the tensors?The text was updated successfully, but these errors were encountered: