@@ -87,10 +87,10 @@ int32_t dot_acc(vec<int8_t,4> a, vec<uint8_t,4> b, int32_t c);
87
87
int32_t dot_acc(vec<uint8_t,4> a, vec<int8_t,4> b, int32_t c);
88
88
uint32_t dot_acc(vec<uint8_t,4> a, vec<uint8_t,4> b, uint32_t c);
89
89
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);
94
94
95
95
} // namespace sycl::ext::oneapi
96
96
----
@@ -122,7 +122,7 @@ dot product of two vectors.
122
122
123
123
|[source,c]
124
124
----
125
- int32_t doc_acc_4x8packed_ss (uint32_t a,
125
+ int32_t dot_acc_4x8packed_ss (uint32_t a,
126
126
uint32_t b,
127
127
int32_t c)
128
128
----
@@ -132,7 +132,7 @@ int32_t doc_acc_4x8packed_ss(uint32_t a,
132
132
133
133
|[source,c]
134
134
----
135
- int32_t doc_acc_4x8packed_su (uint32_t a,
135
+ int32_t dot_acc_4x8packed_su (uint32_t a,
136
136
uint32_t b,
137
137
int32_t c)
138
138
----
@@ -143,7 +143,7 @@ int32_t doc_acc_4x8packed_su(uint32_t a,
143
143
144
144
|[source,c]
145
145
----
146
- int32_t doc_acc_4x8packed_us (uint32_t a,
146
+ int32_t dot_acc_4x8packed_us (uint32_t a,
147
147
uint32_t b,
148
148
int32_t c)
149
149
----
@@ -154,7 +154,7 @@ int32_t doc_acc_4x8packed_us(uint32_t a,
154
154
155
155
|[source,c]
156
156
----
157
- uint32_t doc_acc_4x8packed_uu (uint32_t a,
157
+ uint32_t dot_acc_4x8packed_uu (uint32_t a,
158
158
uint32_t b,
159
159
uint32_t c);
160
160
----
@@ -209,7 +209,7 @@ int32_t dot_acc(int32_t a,
209
209
210
210
|Performs a four-component integer dot product accumulate operation, where
211
211
`a` and `b` are both interpreted as `vec<int8_t,4>`. Use
212
- `doc_acc_4x8packed_ss ` instead.
212
+ `dot_acc_4x8packed_ss ` instead.
213
213
214
214
|[source,c]
215
215
----
@@ -220,7 +220,7 @@ int32_t dot_acc(int32_t a,
220
220
221
221
|Performs a four-component integer dot product accumulate operation, where
222
222
`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.
224
224
225
225
|[source,c]
226
226
----
@@ -231,7 +231,7 @@ int32_t dot_acc(uint32_t a,
231
231
232
232
|Performs a four-component integer dot product accumulate operation, where
233
233
`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.
235
235
236
236
|[source,c]
237
237
----
@@ -242,5 +242,5 @@ int32_t dot_acc(uint32_t a,
242
242
243
243
|Performs a four-component integer dot product accumulate operation, where
244
244
`a` and `b` are both interpreted as `vec<uint8_t,4>`. Use
245
- `doc_acc_4x8packed_uu ` instead.
245
+ `dot_acc_4x8packed_uu ` instead.
246
246
|====
0 commit comments