mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-06-06 01:01:32 +00:00
cuda : clear error after changing peer access (llama/10153)
This commit is contained in:
parent
939d36fb4c
commit
b06b4c0c08
@ -1297,11 +1297,17 @@ static void ggml_cuda_set_peer_access(const int n_tokens, int main_device) {
|
|||||||
cudaError_t err = cudaDeviceEnablePeerAccess(id_other, 0);
|
cudaError_t err = cudaDeviceEnablePeerAccess(id_other, 0);
|
||||||
if (err != cudaErrorPeerAccessAlreadyEnabled) {
|
if (err != cudaErrorPeerAccessAlreadyEnabled) {
|
||||||
CUDA_CHECK(err);
|
CUDA_CHECK(err);
|
||||||
|
} else {
|
||||||
|
// reset the error
|
||||||
|
cudaGetLastError();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
cudaError_t err = cudaDeviceDisablePeerAccess(id_other);
|
cudaError_t err = cudaDeviceDisablePeerAccess(id_other);
|
||||||
if (err != cudaErrorPeerAccessNotEnabled) {
|
if (err != cudaErrorPeerAccessNotEnabled) {
|
||||||
CUDA_CHECK(err);
|
CUDA_CHECK(err);
|
||||||
|
} else {
|
||||||
|
// reset the error
|
||||||
|
cudaGetLastError();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user