From 3ab1eacf09ead7feed4c740c94d2fc05f0ff540a Mon Sep 17 00:00:00 2001 From: Yuanqiang Liu Date: Tue, 22 Mar 2022 00:00:13 +0800 Subject: [PATCH] Fix typo in profiler examples (#437) --- tools/profiler/src/conv2d_operation_profiler.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/profiler/src/conv2d_operation_profiler.cu b/tools/profiler/src/conv2d_operation_profiler.cu index 2a880537..4a398886 100644 --- a/tools/profiler/src/conv2d_operation_profiler.cu +++ b/tools/profiler/src/conv2d_operation_profiler.cu @@ -107,8 +107,8 @@ void Conv2dOperationProfiler::print_examples(std::ostream &out) const { " --Activation=f16:nhwc --Filter=f16:nhwc --Output=f16 --accumulator-type=f32" " --n=32 --h=14 --w=14 --c=8 --k=64 --r=3 --s=3" " --pad_h=1 --pad_w=1" - " --stride::h=1 --stride::w=1" - " --dilation::h=1 --dilation::w=1\n\n"; + " --stride_h=1 --stride_w=1" + " --dilation_h=1 --dilation_w=1\n\n"; } #if 0