/github/workspace/src/MatrixFunctions/mat_inv/plp_mat_inv_f32.c
Functions
Name | |
---|---|
int | plp_mat_inv_f32(float restrict pSrc, float restrict pDst, uint32_t N) Glue code for matrix inversion of 32-bit floating-point matrices. |
Functions Documentation
function plp_mat_inv_f32
int plp_mat_inv_f32(
float *__restrict__ pSrc,
float *__restrict__ pDst,
uint32_t N
)
Glue code for matrix inversion of 32-bit floating-point matrices.
Parameters:
- pSrc Points to the input matrix. pSrc is modified by this function
- N Width and height of both matrices
- pDst Points to the output matrix
Return: 0: Success, 1: Matrix is singular, 2: operation not supported
Par: This function will use plp_mat_inv_i32s_xpulpv2 for its computation.
Glue code for matrix inverse of a 32-bit floating-point matrices.
Source code
/* =====================================================================
* Project: PULP DSP Library
* Title: plp_mat_inv_f32.c
* Description: 32-bit floating-point matrix inversion glue code
*
* $Date: 14. July 2020
* $Revision: V0
*
* Target Processor: PULP cores
* ===================================================================== */
/*
* Copyright (C) 2020 ETH Zurich and University of Bologna.
*
* Author: Tibor Schneider, ETH Zurich
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "plp_math.h"
int plp_mat_inv_f32(float *__restrict__ pSrc, float *__restrict__ pDst, uint32_t N) {
if (hal_cluster_id() == ARCHI_FC_CID) {
printf("Floating point is supported only for cluster side\n");
return 2;
} else {
return plp_mat_inv_f32s_xpulpv2(pSrc, pDst, N);
}
}
Updated on 2023-03-01 at 16:16:33 +0000