25
25
26
26
/*
27
27
* This header file is for interface Cython with C++.
28
- * It should not contains any backend specific headers (like SYCL or MKL ) because
28
+ * It should not contains any backend specific headers (like SYCL or math library ) because
29
29
* all included headers will be exposed in Cython compilation procedure
30
30
*
31
31
* We would like to avoid backend specific things in higher level Cython modules.
@@ -173,7 +173,7 @@ INP_DLLEXPORT void custom_prod_c(void* array, void* result, size_t size);
173
173
174
174
/* *
175
175
* @ingroup BACKEND_API
176
- * @brief MKL implementation of eig function
176
+ * @brief math library implementation of eig function
177
177
*
178
178
* @param [in] array1 Input array.
179
179
*
@@ -187,7 +187,7 @@ INP_DLLEXPORT void mkl_lapack_syevd_c(void* array1, void* result1, size_t size);
187
187
188
188
/* *
189
189
* @ingroup BACKEND_API
190
- * @brief MKL implementation of argsort function
190
+ * @brief math library implementation of argsort function
191
191
*
192
192
* @param [in] array Input array with data.
193
193
*
@@ -201,7 +201,7 @@ INP_DLLEXPORT void custom_argsort_c(void* array, void* result, size_t size);
201
201
202
202
/* *
203
203
* @ingroup BACKEND_API
204
- * @brief MKL implementation of sort function
204
+ * @brief math library implementation of sort function
205
205
*
206
206
* @param [in] array Input array with data.
207
207
*
@@ -215,7 +215,7 @@ INP_DLLEXPORT void custom_sort_c(void* array, void* result, size_t size);
215
215
216
216
/* *
217
217
* @ingroup BACKEND_API
218
- * @brief Custom implementation of cov function with MKL and PSTL
218
+ * @brief Custom implementation of cov function with math library and PSTL
219
219
*
220
220
* @param [in] array Input array.
221
221
*
@@ -231,7 +231,7 @@ INP_DLLEXPORT void custom_cov_c(void* array1_in, void* result1, size_t nrows, si
231
231
232
232
/* *
233
233
* @ingroup BACKEND_API
234
- * @brief MKL implementation of max function
234
+ * @brief math library implementation of max function
235
235
*
236
236
* @param [in] array Input array with data.
237
237
*
@@ -252,7 +252,7 @@ INP_DLLEXPORT void
252
252
253
253
/* *
254
254
* @ingroup BACKEND_API
255
- * @brief MKL implementation of mean function
255
+ * @brief math library implementation of mean function
256
256
*
257
257
* @param [in] array Input array with data.
258
258
*
@@ -273,7 +273,7 @@ INP_DLLEXPORT void
273
273
274
274
/* *
275
275
* @ingroup BACKEND_API
276
- * @brief MKL implementation of median function
276
+ * @brief math library implementation of median function
277
277
*
278
278
* @param [in] array Input array with data.
279
279
*
@@ -294,7 +294,7 @@ INP_DLLEXPORT void
294
294
295
295
/* *
296
296
* @ingroup BACKEND_API
297
- * @brief MKL implementation of min function
297
+ * @brief math library implementation of min function
298
298
*
299
299
* @param [in] array Input array with data.
300
300
*
@@ -315,7 +315,7 @@ INP_DLLEXPORT void
315
315
316
316
/* *
317
317
* @ingroup BACKEND_API
318
- * @brief MKL implementation of argmax function
318
+ * @brief math library implementation of argmax function
319
319
*
320
320
* @param [in] array Input array with data.
321
321
*
@@ -329,7 +329,7 @@ INP_DLLEXPORT void custom_argmax_c(void* array, void* result, size_t size);
329
329
330
330
/* *
331
331
* @ingroup BACKEND_API
332
- * @brief MKL implementation of argmin function
332
+ * @brief math library implementation of argmin function
333
333
*
334
334
* @param [in] array Input array with data.
335
335
*
@@ -343,7 +343,7 @@ INP_DLLEXPORT void custom_argmin_c(void* array, void* result, size_t size);
343
343
344
344
/* *
345
345
* @ingroup BACKEND_API
346
- * @brief MKL implementation of std function
346
+ * @brief math library implementation of std function
347
347
*
348
348
* @param [in] array Input array with data.
349
349
*
@@ -366,7 +366,7 @@ INP_DLLEXPORT void custom_std_c(
366
366
367
367
/* *
368
368
* @ingroup BACKEND_API
369
- * @brief MKL implementation of var function
369
+ * @brief math library implementation of var function
370
370
*
371
371
* @param [in] array Input array with data.
372
372
*
@@ -441,7 +441,7 @@ INP_DLLEXPORT void custom_elemwise_transpose_c(void* array1_in,
441
441
442
442
/* *
443
443
* @ingroup BACKEND_API
444
- * @brief MKL implementation of random number generator (gaussian continious distribution)
444
+ * @brief math library implementation of random number generator (gaussian continious distribution)
445
445
*
446
446
* @param [in] size Number of elements in `result` arrays.
447
447
*
@@ -453,7 +453,7 @@ INP_DLLEXPORT void mkl_rng_gaussian(void* result, size_t size);
453
453
454
454
/* *
455
455
* @ingroup BACKEND_API
456
- * @brief MKL implementation of random number generator (uniform distribution)
456
+ * @brief math library implementation of random number generator (uniform distribution)
457
457
*
458
458
* @param [in] low Left bound of array values.
459
459
*
0 commit comments