Skip to content

Commit 0f12b3d

Browse files
committed
benchdnn: doc: update attributes options for all drivers
1 parent a92896d commit 0f12b3d

20 files changed

+20
-84
lines changed

tests/benchdnn/doc/driver_binary.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,14 @@ where *binary-knobs* are:
2121
algorithm for binary operations.
2222
Refer to [binary primitive](https://oneapi-src.github.io/oneDNN/dev_guide_binary.html)
2323
for details.
24-
- `--attr-scales=STRING` -- per argument scales primitive attribute. No
25-
scales are set by default. Refer to [attributes](knobs_attr.md) for
26-
details.
27-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
28-
operations are set by default. Refer to [attributes](knobs_attr.md)
29-
for details.
3024
- `--inplace=BOOL` -- memory mode for the primitive. If `true`, it uses input
3125
memory as output, otherwise, input and output are separate.
3226
Default is `false`.
3327
- `--match=REGEX` -- skip problems not matching the regular expression in
3428
`REGEX`. By default no pattern is applied (run everything).
3529
Note: Windows may interpret only string arguments surrounded by
3630
double quotation marks.
31+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3732

3833
and *binary-desc* is a problem descriptor. The canonical form is:
3934
```

tests/benchdnn/doc/driver_bnorm.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ where *bnorm-knobs* are:
3333
`A` is dnnl_fuse_norm_add_relu;
3434
Refer to [batch normalization primitive](https://oneapi-src.github.io/oneDNN/dev_guide_batch_normalization.html)
3535
for details.
36-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
37-
operations are set by default. Refer to [attributes](knobs_attr.md)
38-
for details.
3936
- `--inplace=BOOL` -- memory mode for the primitive. If `true`, it uses input
4037
memory as output, otherwise, input and output are separate.
4138
Default is `false`.
@@ -49,6 +46,7 @@ where *bnorm-knobs* are:
4946
`REGEX`. By default no pattern is applied (run everything).
5047
Note: Windows may interpret only string arguments surrounded by
5148
double quotation marks.
49+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
5250

5351
and *bnorm-desc* is a problem descriptor. The canonical form is:
5452
```

tests/benchdnn/doc/driver_brgemm.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,11 @@ where *brgemm-knobs* are:
2929
The format is: KEY:VALUE[+KEY:VALUE[...]] following post-ops
3030
notation. STRING may have `,` to iterate over multiple attribute
3131
settings. Refer to internal brgemm headers for more details.
32-
- `--attr-scales=STRING` -- scale primitive attribute. No scale is
33-
set by default. Refer to [attributes](knobs_attr.md) for details.
34-
- `--attr-zero-points=STRING` -- zero points primitive attribute. No zero
35-
points are set by default. Refer to [attributes](knobs_attr.md)
36-
for details.
37-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
38-
operations are set by default. Refer to [attributes](knobs_attr.md)
39-
for details.
40-
- `--attr-fpmath=STRING` -- fpmath mode primitive attribute. `strict` math mode
41-
is set by default. Refer to [attributes](knobs_attr.md) for details.
4232
- `--match=REGEX` -- skip problems not matching the regular expression in
4333
`REGEX`. By default no pattern is applied (run everything).
4434
Note: Windows may interpret only string arguments surrounded by
4535
double quotation marks.
36+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
4637

4738
and *brgemm-desc* is a problem descriptor. The canonical form is:
4839
```

tests/benchdnn/doc/driver_concat.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ where *concat-knobs* are:
2222
`REGEX`. By default no pattern is applied (run everything).
2323
Note: Windows may interpret only string arguments surrounded by
2424
double quotation marks.
25+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
2526

2627
and *concat-desc* is a problem descriptor. The canonical form is:
2728
```

tests/benchdnn/doc/driver_conv.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,14 @@ where *conv-knobs* are:
2525
- `--alg={DIRECT [default], WINO, AUTO}` -- convolution algorithm. `WINO` is
2626
Winograd-based convolution. `AUTO` will pick one of `DIRECT` or
2727
`WINO` automatically, library-based decision.
28-
- `--attr-scales=STRING` -- scale primitive attribute. No scale is
29-
set by default. Refer to [attributes](knobs_attr.md) for details.
30-
- `--attr-zero-points=STRING` -- zero points primitive attribute. No zero
31-
points are set by default. Refer to [attributes](knobs_attr.md)
32-
for details.
33-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
34-
operations are set by default. Refer to [attributes](knobs_attr.md)
35-
for details.
36-
- `--attr-fpmath=STRING` -- fpmath mode primitive attribute. `strict` math mode
37-
is set by default. Refer to [attributes](knobs_attr.md) for details.
3828
- `--mb=INT` -- override minibatch size specified in the problem description.
3929
When set to `0`, use minibatch size as defined by the individual
4030
problem descriptor. The default is `0`.
4131
- `--match=REGEX` -- skip problems not matching the regular expression in
4232
`REGEX`. By default no pattern is applied (run everything).
4333
Note: Windows may interpret only string arguments surrounded by
4434
double quotation marks.
35+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
4536

4637
and *conv-desc* is a problem descriptor. The canonical form is:
4738
```

tests/benchdnn/doc/driver_eltwise.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ where *eltwise-knobs* are:
2020
Refer to ``Floating point arguments`` below.
2121
- `--beta=FLOAT` -- float value corresponding to algorithm operation.
2222
Refer to ``Floating point arguments`` below.
23-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
24-
operations are set by default. Refer to [attributes](knobs_attr.md)
25-
for details.
2623
- `--mb=INT` -- override minibatch size specified in the problem description.
2724
When set to `0`, use minibatch size as defined by the individual
2825
problem descriptor. The default is `0`.
@@ -33,6 +30,7 @@ where *eltwise-knobs* are:
3330
`REGEX`. By default no pattern is applied (run everything).
3431
Note: Windows may interpret only string arguments surrounded by
3532
double quotation marks.
33+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3634

3735
and *eltwise-desc* is a problem descriptor. The canonical form is:
3836
```

tests/benchdnn/doc/driver_gnorm.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,14 @@ where *gnorm-knobs* are:
2121
`H` is dnnl_use_shift;
2222
Refer to [group normalization primitive](https://oneapi-src.github.io/oneDNN/dev_guide_group_normalization.html)
2323
for details.
24-
- `--attr-scales=STRING` -- per argument scales primitive attribute. No
25-
scales are set by default. Refer to [attributes](knobs_attr.md) for
26-
details.
27-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
28-
operations are set by default. Refer to [attributes](knobs_attr.md)
29-
for details.
3024
- `--inplace=BOOL` -- memory mode for the primitive. If `true`, it uses input
3125
memory as output, otherwise, input and output are separate.
3226
Default is `false`.
3327
- `--match=REGEX` -- skip problems not matching the regular expression in
3428
`REGEX`. By default no pattern is applied (run everything).
3529
Note: Windows may interpret only string arguments surrounded by
3630
double quotation marks.
31+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3732

3833
and *gnorm-desc* is a problem descriptor. The canonical form is:
3934
```

tests/benchdnn/doc/driver_ip.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,14 @@ where *ip-knobs* are:
2121
Refer to [tags](knobs_tag.md) for details.
2222
- `--dtag={any [default], ...}` -- physical dst memory layout.
2323
Refer to [tags](knobs_tag.md) for details.
24-
- `--attr-scales=STRING` -- scale primitive attribute. No scale is
25-
set by default. Refer to [attributes](knobs_attr.md) for details.
26-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
27-
operations are set by default. Refer to [attributes](knobs_attr.md)
28-
for details.
29-
- `--attr-fpmath=STRING` -- fpmath mode primitive attribute. `strict` math mode
30-
is set by default. Refer to [attributes](knobs_attr.md) for details.
3124
- `--mb=INT` -- override minibatch size specified in the problem description.
3225
When set to `0`, use minibatch size as defined by the individual
3326
problem descriptor. The default is `0`.
3427
- `--match=REGEX` -- skip problems not matching the regular expression in
3528
`REGEX`. By default no pattern is applied (run everything).
3629
Note: Windows may interpret only string arguments surrounded by
3730
double quotation marks.
31+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3832

3933
and *ip-desc* is a problem descriptor. The canonical form is:
4034
```

tests/benchdnn/doc/driver_lnorm.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,14 @@ where *lnorm-knobs* are:
2424
`H` is dnnl_use_shift;
2525
Refer to [layer normalization primitive](https://oneapi-src.github.io/oneDNN/dev_guide_layer_normalization.html)
2626
for details.
27-
- `--attr-scales=STRING` -- per argument scales primitive attribute. No
28-
scales are set by default. Refer to [attributes](knobs_attr.md) for
29-
details.
3027
- `--inplace=BOOL` -- memory mode for the primitive. If `true`, it uses input
3128
memory as output, otherwise, input and output are separate.
3229
Default is `false`.
3330
- `--match=REGEX` -- skip problems not matching the regular expression in
3431
`REGEX`. By default no pattern is applied (run everything).
3532
Note: Windows may interpret only string arguments surrounded by
3633
double quotation marks.
34+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3735

3836
and *lnorm-desc* is a problem descriptor. The canonical form is:
3937
```

tests/benchdnn/doc/driver_lrn.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ where *lrn-knobs* are:
2525
`REGEX`. By default no pattern is applied (run everything).
2626
Note: Windows may interpret only string arguments surrounded by
2727
double quotation marks.
28+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
2829

2930
and *lrn-desc* is a problem descriptor. The canonical form is:
3031
```

tests/benchdnn/doc/driver_matmul.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,6 @@ where *matmul-knobs* are:
2828
default format of the skipped tensor will be used. As long as
2929
`--strides` and `--*tag` options refer to different tensors, they
3030
can be specified together.
31-
- `--attr-scales=STRING` -- scale primitive attribute. No scale is
32-
set by default. Refer to [attributes](knobs_attr.md) for details.
33-
- `--attr-zero-points=STRING` -- zero points primitive attribute. No zero
34-
points are set by default. Refer to [attributes](knobs_attr.md)
35-
for details.
36-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
37-
operations are set by default. Refer to [attributes](knobs_attr.md)
38-
for details.
39-
- `--attr-fpmath=STRING` -- fpmath mode primitive attribute. `strict` math mode
40-
is set by default. Refer to [attributes](knobs_attr.md) for details.
4131
- `--bia_dt={undef [default], f32, s32, s8, u8}` -- bias data type.
4232
To run MatMul without bias, use `undef` data type (default).
4333
Refer to [data types](knobs_dt.md) for details.
@@ -58,6 +48,7 @@ where *matmul-knobs* are:
5848
`REGEX`. By default no pattern is applied (run everything).
5949
Note: Windows may interpret only string arguments surrounded by
6050
double quotation marks.
51+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
6152

6253
and *matmul-desc* is a problem descriptor. The canonical form is:
6354
```

tests/benchdnn/doc/driver_pool.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,14 @@ where *pool-knobs* are:
2525
dnnl_pooling_avg_include_padding;
2626
Refer to [pooling primitive](https://oneapi-src.github.io/oneDNN/dev_guide_pooling.html)
2727
for details.
28-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
29-
operations are set by default. Refer to [attributes](knobs_attr.md)
30-
for details.
3128
- `--mb=INT` -- override minibatch size specified in the problem description.
3229
When set to `0`, use minibatch size as defined by the individual
3330
problem descriptor. The default is `0`.
3431
- `--match=REGEX` -- skip problems not matching the regular expression in
3532
`REGEX`. By default no pattern is applied (run everything).
3633
Note: Windows may interpret only string arguments surrounded by
3734
double quotation marks.
35+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3836

3937
and *pool-desc* is a problem descriptor. The canonical form is:
4038
```

tests/benchdnn/doc/driver_prelu.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ where *prelu-knobs* are:
1616
`REGEX`. By default no pattern is applied (run everything).
1717
Note: Windows may interpret only string arguments surrounded by
1818
double quotation marks.
19+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
1920

2021
and *prelu-desc* is a problem descriptor. The canonical form is:
2122
```

tests/benchdnn/doc/driver_reduction.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ where *reduction-knobs* are:
2222
Refer to ``Floating point arguments`` below.
2323
- `--eps=FLOAT` -- float value corresponding to algorithm operation.
2424
Refer to ``Floating point arguments`` below.
25-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
26-
operations are set by default. Refer to [attributes](knobs_attr.md)
27-
for details.
2825
- `--match=REGEX` -- skip problems not matching the regular expression in
2926
`REGEX`. By default no pattern is applied (run everything).
3027
Note: Windows may interpret only string arguments surrounded by
3128
double quotation marks.
29+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3230

3331
and *reduction-desc* is a problem descriptor. The canonical form is:
3432
```

tests/benchdnn/doc/driver_reorder.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,6 @@ where *reorder-knobs* are:
2626
default format of the skipped tensor will be used. As long as
2727
`--strides` and `--tag` options refer to different tensors, they
2828
can be specified together.
29-
- `--attr-scales=STRING` -- per argument scales primitive attribute. No
30-
scales are set by default. Refer to [attributes](knobs_attr.md)
31-
for details.
32-
- `--attr-zero-points=STRING` -- zero points primitive attribute. No zero
33-
points are set by default. Refer to [attributes](knobs_attr.md)
34-
for details.
35-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
36-
operations are set by default. Refer to [attributes](knobs_attr.md)
37-
for details.
3829
- `--oflag=FLAG:MASK[+...]` -- memory descriptor extra field specifier. By
3930
default `FLAG` is empty and `MASK` is `0`. Possible `FLAG` values
4031
are:
@@ -52,6 +43,7 @@ where *reorder-knobs* are:
5243
`REGEX`. By default no pattern is applied (run everything).
5344
Note: Windows may interpret only string arguments surrounded by
5445
double quotation marks.
46+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
5547

5648
and *reorder-desc* is a problem descriptor. The canonical form is:
5749
```

tests/benchdnn/doc/driver_resampling.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,14 @@ where *resampling-knobs* are:
2020
`linear` or `resampling_nearest` is dnnl_resampling_linear;
2121
Refer to [resampling primitive](https://oneapi-src.github.io/oneDNN/dev_guide_resampling.html)
2222
for details.
23-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
24-
operations are set by default. Refer to [attributes](knobs_attr.md)
25-
for details.
2623
- `--mb=INT` -- override minibatch size specified in the problem description.
2724
When set to `0`, use minibatch size as defined by the individual
2825
problem descriptor. The default is `0`.
2926
- `--match=REGEX` -- skip problems not matching the regular expression in
3027
`REGEX`. By default no pattern is applied (run everything).
3128
Note: Windows may interpret only string arguments surrounded by
3229
double quotation marks.
30+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
3331

3432
and *resampling-desc* is a problem descriptor. The canonical form is:
3533
```

tests/benchdnn/doc/driver_rnn.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@ where *rnn-knobs* are:
4444
- `--mb=INT` -- override `mb` (minibatch) value specified in the problem
4545
descriptor. When `INT` is set to `0` (the default), use `mb` value
4646
specified in the problem descriptor.
47-
- `--attr-fpmath=STRING` -- fpmath mode primitive attribute. `strict` math mode
48-
is set by default. Refer to [attributes](knobs_attr.md) for details.
4947
- `--flags=[|O]` -- RNN flags, default `undef` (no flags); where multiple
5048
simultaneous flags are supported.
5149
`O` is dnnl_rnn_flags_diff_weights_overwrite;
5250
Refer to [RNN primitive](https://oneapi-src.github.io/oneDNN/dev_guide_rnn.html) for details.
51+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
5352

5453
and *rnn-desc* is a problem descriptor. The canonical form is:
5554
```

tests/benchdnn/doc/driver_shuffle.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ where *shuffle-knobs* are:
2222
`REGEX`. By default no pattern is applied (run everything).
2323
Note: Windows may interpret only string arguments surrounded by
2424
double quotation marks.
25+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
2526

2627
and *shuffle-desc* is a problem descriptor. The canonical form is:
2728
```

tests/benchdnn/doc/driver_softmax.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@ where *softmax-knobs* are:
2424
for details.
2525
- `--axis=INT` -- dimension on which operation will be performed.
2626
Default is `1`, corresponds to channels in logical memory layout.
27-
- `--attr-scales=STRING` -- per argument scales primitive attribute. No
28-
scales are set by default. Refer to [attributes](knobs_attr.md) for
29-
details.
30-
- `--attr-post-ops=STRING` -- post operation primitive attribute. No post
31-
operations are set by default. Refer to [attributes](knobs_attr.md)
32-
for details.
3327
- `--mb=INT` -- override minibatch size specified in the problem description.
3428
When set to `0`, use minibatch size as defined by the individual
3529
problem descriptor. The default is `0`.
@@ -40,6 +34,7 @@ where *softmax-knobs* are:
4034
`REGEX`. By default no pattern is applied (run everything).
4135
Note: Windows may interpret only string arguments surrounded by
4236
double quotation marks.
37+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
4338

4439
and *softmax-desc* is a problem descriptor. The canonical form is:
4540
```

tests/benchdnn/doc/driver_sum.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ where *sum-knobs* are:
2222
`REGEX`. By default no pattern is applied (run everything).
2323
Note: Windows may interpret only string arguments surrounded by
2424
double quotation marks.
25+
- Any attributes options. Refer to [attributes](knobs_attr.md) for details.
2526

2627
and *sum-desc* is a problem descriptor. The canonical form is:
2728
```

0 commit comments

Comments
 (0)