Skip to content

Commit 3f6105d

Browse files
authored
Disable CUDA host buffers on integrated GPUs
1 parent d9e0e7c commit 3f6105d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cuda/ggml-cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ static ggml_cuda_device_info ggml_cuda_init() {
231231

232232
info.default_tensor_split[id] = total_vram;
233233
total_vram += prop.totalGlobalMem;
234-
info.devices[id].integrated = prop.integrated;
234+
info.devices[id].integrated = false; // Temporarily disabled due to issues with corrupted output (e.g. #15034)
235235
info.devices[id].nsm = prop.multiProcessorCount;
236236
info.devices[id].smpb = prop.sharedMemPerBlock;
237237
info.devices[id].warp_size = prop.warpSize;

0 commit comments

Comments
 (0)