mirror of
https://github.com/karpathy/llm.c.git
synced 2026-07-28 20:35:09 -04:00
fix missing \n on a print
This commit is contained in:
parent
f66825faba
commit
39ce9be516
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ MultiGpuConfig multi_gpu_config_init(int *argc, char ***argv) {
|
|||
ncclCheck(ncclCommInitRank(&result.nccl_comm, result.num_processes, nccl_id, result.process_rank));
|
||||
return result;
|
||||
#else
|
||||
printf("Multi-GPU support is disabled. Using a single GPU.");
|
||||
printf("Multi-GPU support is disabled. Using a single GPU.\n");
|
||||
return MultiGpuConfig{
|
||||
.process_rank = 0,
|
||||
.num_processes = 1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue