From 10709dbb649890f4390afbf86dc588bfb0104db7 Mon Sep 17 00:00:00 2001 From: Haicheng Wu Date: Fri, 30 Jul 2021 11:02:17 -0700 Subject: [PATCH] clean profiler cmd and doc --- media/docs/profiler.md | 6 +----- tools/profiler/src/options.cu | 7 ------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/media/docs/profiler.md b/media/docs/profiler.md index c0edb476..182a93ad 100644 --- a/media/docs/profiler.md +++ b/media/docs/profiler.md @@ -103,10 +103,6 @@ Profiling: --profiling-enabled= If true, profiling is actually conducted. - --providers= List of providers to be profiled for performance. (default: '*') - Gemm providers {cutlass*, cublas*} - Conv2d providers {cutlass*, cudnn*} - Verification: --verification-enabled= Whether to perform verification checks. @@ -243,7 +239,7 @@ Test your changes to gemm kernels with a quick functional test and save results --n=8,56,120,136,256,264,512,520,1024,1032,4096,8192,16384 \ --k=8,16,32,64,128,256,288,384,504,512,520 \ --beta=0,1,2 --profiling-iterations=1 \ - --providers=cutlass --output=functional-test.csv + --output=functional-test.csv ``` ## Example CUDA Core GEMM Operation diff --git a/tools/profiler/src/options.cu b/tools/profiler/src/options.cu index b6544911..5b202a3f 100644 --- a/tools/profiler/src/options.cu +++ b/tools/profiler/src/options.cu @@ -426,13 +426,6 @@ void Options::Profiling::print_usage(std::ostream &out) const { << " --profiling-enabled= " << " If true, profiling is actually conducted.\n\n" - - << " --providers= " - << " List of providers to be profiled for performance. (default: '*')" << end_of_line - << " Gemm providers {cutlass*, cublas*}" << end_of_line - << " Conv2d providers {cutlass*, cudnn*}" - << "\n\n"; - } void Options::Profiling::print_options(std::ostream &out, int indent) const {