@@ -684,14 +684,14 @@ void ggml_cann_pad_reflect_1d(ggml_backend_cann_context& ctx, ggml_tensor* dst);
684684
685685/* *
686686 * @brief Counts the number of equal elements in two ggml tensors using the CANN backend.
687- *
687+ *
688688 * @details This function performs an element-wise comparison between two input tensors,
689- * and counts the number of positions where the elements are equal. The result is
689+ * and counts the number of positions where the elements are equal. The result is
690690 * stored in the destination tensor `dst` as a scalar.
691- *
691+ *
692692 * The operation is optimized using the CANN backend, making it suitable for
693693 * high-performance inference or training scenarios.
694- *
694+ *
695695 * @param ctx The CANN context used for operations.
696696 * @param dst The destination tensor where the result will be stored.
697697 * dst->op is expected to be `GGML_OP_COUNT_EQUAL`.
@@ -700,13 +700,13 @@ void ggml_cann_count_equal(ggml_backend_cann_context& ctx, ggml_tensor* dst);
700700
701701/* *
702702 * @brief Applies the Step activation function to a ggml tensor using the CANN backend.
703- *
703+ *
704704 * @details This function applies a step function element-wise to the input tensor, where
705705 * each element is transformed to 1.0 if it is greater than 0, and 0.0 otherwise.
706706 * The result is stored in the destination tensor `dst`.
707- *
707+ *
708708 * This operation is accelerated using the CANN backend to improve runtime performance.
709- *
709+ *
710710 * @param ctx The CANN context used for operations.
711711 * @param dst The destination tensor where the result will be stored.
712712 * dst->op is expected to be `GGML_OP_STEP`.
0 commit comments