Skip to content

Commit 995e783

Browse files
committed
Fix typo doc -> dot
1 parent 84f1ff8 commit 995e783

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

sycl/doc/extensions/supported/sycl_ext_oneapi_dot_accumulate.asciidoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ int32_t dot_acc(vec<int8_t,4> a, vec<uint8_t,4> b, int32_t c);
8787
int32_t dot_acc(vec<uint8_t,4> a, vec<int8_t,4> b, int32_t c);
8888
uint32_t dot_acc(vec<uint8_t,4> a, vec<uint8_t,4> b, uint32_t c);
8989
90-
int32_t doc_acc_4x8packed_ss(uint32_t a, uint32_t b, int32_t c);
91-
int32_t doc_acc_4x8packed_su(uint32_t a, uint32_t b, int32_t c);
92-
int32_t doc_acc_4x8packed_us(uint32_t a, uint32_t b, int32_t c);
93-
uint32_t doc_acc_4x8packed_uu(uint32_t a, uint32_t b, uint32_t c);
90+
int32_t dot_acc_4x8packed_ss(uint32_t a, uint32_t b, int32_t c);
91+
int32_t dot_acc_4x8packed_su(uint32_t a, uint32_t b, int32_t c);
92+
int32_t dot_acc_4x8packed_us(uint32_t a, uint32_t b, int32_t c);
93+
uint32_t dot_acc_4x8packed_uu(uint32_t a, uint32_t b, uint32_t c);
9494
9595
} // namespace sycl::ext::oneapi
9696
----
@@ -122,7 +122,7 @@ dot product of two vectors.
122122

123123
|[source,c]
124124
----
125-
int32_t doc_acc_4x8packed_ss(uint32_t a,
125+
int32_t dot_acc_4x8packed_ss(uint32_t a,
126126
uint32_t b,
127127
int32_t c)
128128
----
@@ -132,7 +132,7 @@ int32_t doc_acc_4x8packed_ss(uint32_t a,
132132

133133
|[source,c]
134134
----
135-
int32_t doc_acc_4x8packed_su(uint32_t a,
135+
int32_t dot_acc_4x8packed_su(uint32_t a,
136136
uint32_t b,
137137
int32_t c)
138138
----
@@ -143,7 +143,7 @@ int32_t doc_acc_4x8packed_su(uint32_t a,
143143

144144
|[source,c]
145145
----
146-
int32_t doc_acc_4x8packed_us(uint32_t a,
146+
int32_t dot_acc_4x8packed_us(uint32_t a,
147147
uint32_t b,
148148
int32_t c)
149149
----
@@ -154,7 +154,7 @@ int32_t doc_acc_4x8packed_us(uint32_t a,
154154

155155
|[source,c]
156156
----
157-
uint32_t doc_acc_4x8packed_uu(uint32_t a,
157+
uint32_t dot_acc_4x8packed_uu(uint32_t a,
158158
uint32_t b,
159159
uint32_t c);
160160
----
@@ -209,7 +209,7 @@ int32_t dot_acc(int32_t a,
209209

210210
|Performs a four-component integer dot product accumulate operation, where
211211
`a` and `b` are both interpreted as `vec<int8_t,4>`. Use
212-
`doc_acc_4x8packed_ss` instead.
212+
`dot_acc_4x8packed_ss` instead.
213213

214214
|[source,c]
215215
----
@@ -220,7 +220,7 @@ int32_t dot_acc(int32_t a,
220220

221221
|Performs a four-component integer dot product accumulate operation, where
222222
`a` is interpreted as `vec<int8_t,4>` and `b` is interpreted as
223-
`vec<uint8_t,4>`. Use `doc_acc_4x8packed_su` instead.
223+
`vec<uint8_t,4>`. Use `dot_acc_4x8packed_su` instead.
224224

225225
|[source,c]
226226
----
@@ -231,7 +231,7 @@ int32_t dot_acc(uint32_t a,
231231

232232
|Performs a four-component integer dot product accumulate operation, where
233233
`a` is interpreted as `vec<uint8_t,4>` and `b` is interpreted as
234-
`vec<int8_t,4>`. Use `doc_acc_4x8packed_us` instead.
234+
`vec<int8_t,4>`. Use `dot_acc_4x8packed_us` instead.
235235

236236
|[source,c]
237237
----
@@ -242,5 +242,5 @@ int32_t dot_acc(uint32_t a,
242242

243243
|Performs a four-component integer dot product accumulate operation, where
244244
`a` and `b` are both interpreted as `vec<uint8_t,4>`. Use
245-
`doc_acc_4x8packed_uu` instead.
245+
`dot_acc_4x8packed_uu` instead.
246246
|====

0 commit comments

Comments
 (0)