From c94becba7a86ce7e50609e0f37dddaa8d3e83106 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 10 Aug 2023 15:15:25 +0800 Subject: [PATCH] Fix the wrong multiple GPU example command --- examples/benchmarks/synthetic_models/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/benchmarks/synthetic_models/README.md b/examples/benchmarks/synthetic_models/README.md index e4f73f9..2584a54 100644 --- a/examples/benchmarks/synthetic_models/README.md +++ b/examples/benchmarks/synthetic_models/README.md @@ -28,7 +28,7 @@ python main.py --model small --optimizer sgd --batch_size 65536 **Multiple GPU:** ```python -horovodrun -np 32 main.py --model large --optimizer adagrad --batch_size 65536 --column_slice_threshold $((1280*1048576)) +horovodrun -np 32 python main.py --model large --optimizer adagrad --batch_size 65536 --column_slice_threshold $((1280*1048576)) ``` **Arguments:**