rename example numbers to 34 and 35

This commit is contained in:
Masahiro Masuda
2022-03-17 16:21:00 +09:00
parent 1550963c20
commit 551a808c22
5 changed files with 10 additions and 10 deletions

View File

@ -288,7 +288,7 @@ struct Options {
/// Prints the usage statement.
std::ostream & print_usage(std::ostream &out) const {
out << "30_wgrad_split_k example\n\n"
out << "34_wgrad_split_k example\n\n"
<< " This example shows how to compute conv2d gradient with respect to weight (wgrad).\n"
<< " In wgrad, the K dimension of impligit GEMM, corresponding to the sequential reduction loop, is very large (N * P * Q).\n"
<< " Split-k with parallel reduction is highly effective for such cases.\n\n"
@ -312,7 +312,7 @@ struct Options {
<< " --tag <string> String to replicate across the first column in the results table\n";
out << "\n\nExamples:\n\n"
<< "$ ./examples/30_wgrad_split_k/30_wgrad_split_k --n=32 --h=224 --w=224 --c=128 --k=256 --r=3 --s=3 --split-k-slices=8\n\n";
<< "$ ./examples/34_wgrad_split_k/34_wgrad_split_k --n=32 --h=224 --w=224 --c=128 --k=256 --r=3 --s=3 --split-k-slices=8\n\n";
return out;
}

View File

@ -22,6 +22,6 @@
cutlass_example_add_executable(
30_wgrad_split_k
30_wgrad_split_k.cu
34_wgrad_split_k
34_wgrad_split_k.cu
)

View File

@ -226,7 +226,7 @@ struct Options {
/// Prints the usage statement.
std::ostream & print_usage(std::ostream &out) const {
out << "31_transposed_conv2d example\n\n"
out << "35_transposed_conv2d example\n\n"
<< " This example shows how to compute 2d transposed convolution, also known as\n"
<< " deconvolution, using CUTLASS conv2d Dgrad kernels. Although two operations are\n"
<< " computationaly equivalent, some care is needed to correctly set up a problem size.\n\n"
@ -247,7 +247,7 @@ struct Options {
<< " --tag <string> String to replicate across the first column in the results table\n";
out << "\n\nExamples:\n\n"
<< "$ ./examples/31_transposed_conv2d/31_transposed_conv2d --n=8 --h=32 --w=32 --c=16 --k=32 --r=3 --s=3\n\n";
<< "$ ./examples/35_transposed_conv2d/35_transposed_conv2d --n=8 --h=32 --w=32 --c=16 --k=32 --r=3 --s=3\n\n";
return out;
}

View File

@ -22,6 +22,6 @@
cutlass_example_add_executable(
31_transposed_conv2d
31_transposed_conv2d.cu
35_transposed_conv2d
35_transposed_conv2d.cu
)

View File

@ -101,8 +101,8 @@ foreach(EXAMPLE
27_ampere_3xtf32_fast_accurate_tensorop_gemm
28_ampere_3xtf32_fast_accurate_tensorop_fprop
29_ampere_3xtf32_fast_accurate_tensorop_complex_gemm
30_wgrad_split_k
31_transposed_conv2d
34_wgrad_split_k
35_transposed_conv2d
)
add_subdirectory(${EXAMPLE})