Skip to content

Commit c9f065b

Browse files
committed
remove non-unicode characters from source files
1 parent 6cc2477 commit c9f065b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/api/mli_kernels_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ mli_status mli_krn_depthwise_conv2d_hwcn_sa8_sa8_sa32_k5x5(
243243
* on a separate subset (groups) of inputs. Each group performs convolutions independent of the other groups
244244
* to give M different outputs. These individual outputs are then concatenated together to give the final output.
245245
*
246-
* TensorFlow-like channel multiplier functionality of depthwise convolution can be expressed by group
246+
* TensorFlow-like "channel multiplier" functionality of depthwise convolution can be expressed by group
247247
* convolution with number of groups equal to input channels and N equal to channel multiplier number of
248248
* filters per each group.
249249
*

include/mli_types.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ typedef union _mli_element_params {
143143
*
144144
* Tensor is the main container type for all input and output data which must be processed by ML algo-rithm.
145145
* In general data for neural networks and other machine learning tasks is a multi-dimensional arrays of some
146-
* particular shape. So tensor structure includes not only data, but its shape, its type, and other data specific
147-
* parameters. To be more precise, saying data we mean input features, out-put features, layer weights and biases
146+
* particular shape. So tensor structure includes not only data, but it's shape, it's type, and other data specific
147+
* parameters. To be more precise, saying "data" we mean input features, out-put features, layer weights and biases
148148
* but not layer parameters like padding or stride for convolution-al layers.
149149
*/
150150
typedef struct _mli_tensor {
@@ -411,7 +411,7 @@ typedef struct {
411411
* Data structure to provide the configuration for Concatenation primitives.
412412
*/
413413
typedef struct {
414-
uint8_t tensors_num; /**< Number of tensors to concatenate (number of pointers in inputs array) */
414+
uint8_t tensors_num; /**< Number of tensors to concatenate (number of pointers in "inputs" array) */
415415
uint8_t axis; /**< Axis for concatenation (dimension number starting from 0)*/
416416
} mli_concat_cfg;
417417

@@ -464,7 +464,7 @@ typedef struct _mli_mov_cfg {
464464
* number of indexes per slice to be returned.
465465
*/
466466
typedef struct {
467-
int32_t axis; /**< An axis along which the function will be computed. Axis corresponds to index of tensors
467+
int32_t axis; /**< An axis along which the function will be computed. Axis corresponds to index of tensor's
468468
dimension starting from 0. For instance, having future map in HWC layout, axis == 0
469469
corresponds to H dimension. If axis < 0 the function will be applied to the whole tensor. */
470470
int32_t topk; /**< Number of indexes per slice to be returned.*/

0 commit comments

Comments
 (0)