mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 01:10:17 +00:00
fix layout naming convention (#56)
This commit is contained in:
@@ -34,14 +34,14 @@ int conv_profiler(int argc, char* argv[])
|
||||
{
|
||||
if(argc != 25)
|
||||
{
|
||||
printf("arg1: tensor operation (conv=Convolution)\n");
|
||||
printf("arg2: data type (0=fp32, 1=fp16)\n");
|
||||
printf("arg3: input tensor layout (0=NCHW, 1=NHWC)\n");
|
||||
printf("arg4: weight tensor layout (0=KCYX, 1=KYXC)\n");
|
||||
printf("arg5: output tensor layout (0=NKHW, 1=NHWK)\n");
|
||||
printf("arg6: verification (0=no, 1=yes)\n");
|
||||
printf("arg7: initialization (0=no init, 1=integer value, 2=decimal value)\n");
|
||||
printf("arg8: print matrix value (0=no, 1=yes)\n");
|
||||
printf("arg1: tensor operation (conv: Convolution)\n");
|
||||
printf("arg2: data type (0: fp32; 1: fp16)\n");
|
||||
printf("arg3: input tensor layout (0: NCHW; 1: NHWC)\n");
|
||||
printf("arg4: weight tensor layout (0: KCYX; 1: KYXC)\n");
|
||||
printf("arg5: output tensor layout (0: NKHW; 1: NHWK)\n");
|
||||
printf("arg6: verification (0: no; 1: yes)\n");
|
||||
printf("arg7: initialization (0: no init; 1: integer value; 2: decimal value)\n");
|
||||
printf("arg8: print tensor value (0: no; 1: yes)\n");
|
||||
printf("arg9: run kernel # of times (>1)\n");
|
||||
printf("arg10 to 24: N, K, C, Y, X, Hi, Wi, Sy, Sx, Dy, Dx, LeftPy, LeftPx, RightPy, "
|
||||
"RightPx\n");
|
||||
|
||||
Reference in New Issue
Block a user