We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0444f commit 99cbf62Copy full SHA for 99cbf62
ggml/src/ggml-cuda/ggml-cuda.cu
@@ -243,10 +243,10 @@ static ggml_cuda_device_info ggml_cuda_init() {
243
244
info.default_tensor_split[id] = total_vram;
245
total_vram += prop.totalGlobalMem;
246
- info.devices[id].integrated= prop.integrated;
247
- info.devices[id].nsm = prop.multiProcessorCount;
248
- info.devices[id].smpb = prop.sharedMemPerBlock;
249
- info.devices[id].warp_size = prop.warpSize;
+ info.devices[id].integrated = prop.integrated;
+ info.devices[id].nsm = prop.multiProcessorCount;
+ info.devices[id].smpb = prop.sharedMemPerBlock;
+ info.devices[id].warp_size = prop.warpSize;
250
#if defined(GGML_USE_HIP) && defined(__HIP_PLATFORM_AMD__)
251
info.devices[id].smpbo = prop.sharedMemPerBlock;
252
0 commit comments