Project Ne10
An open, optimized software library for the ARM architecture.
Functions | Variables
Matrix Determinant Calculation

Functions

ne10_result_t ne10_detmat_4x4f_c (ne10_float32_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_4x4f using plain C code. More...
 
ne10_result_t ne10_detmat_4x4f_neon (ne10_float32_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count) asm("ne10_detmat_4x4f_neon")
 Specific implementation of ne10_detmat_4x4f using NEON intrinsics. More...
 
ne10_result_t ne10_detmat_4x4f_asm (ne10_float32_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_4x4f using NEON assembly. More...
 
ne10_result_t ne10_detmat_3x3f_c (ne10_float32_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_3x3f using plain C code. More...
 
ne10_result_t ne10_detmat_3x3f_neon (ne10_float32_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count) asm("ne10_detmat_3x3f_neon")
 Specific implementation of ne10_detmat_3x3f using NEON intrinsics. More...
 
ne10_result_t ne10_detmat_3x3f_asm (ne10_float32_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_3x3f using NEON assembly. More...
 
ne10_result_t ne10_detmat_2x2f_c (ne10_float32_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_2x2f using plain C code. More...
 
ne10_result_t ne10_detmat_2x2f_neon (ne10_float32_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count) asm("ne10_detmat_2x2f_neon")
 Specific implementation of ne10_detmat_2x2f using NEON intrinsics. More...
 
ne10_result_t ne10_detmat_2x2f_asm (ne10_float32_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 Specific implementation of ne10_detmat_2x2f using NEON assembly. More...
 

Variables

ne10_result_t(* ne10_detmat_4x4f )(ne10_float32_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 Calculates the determinant of 4x4 matrices within an input array, storing the results in an output array. More...
 
ne10_result_t(* ne10_detmat_3x3f )(ne10_float32_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 Calculates the determinant of 3x3 matrices within an input array, storing the results in an output array. More...
 
ne10_result_t(* ne10_detmat_2x2f )(ne10_float32_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 Calculates the determinant of 2x2 matrices within an input array, storing the results in an output array. More...
 

Detailed Description

These functions implement matrix determinant operations for single precision floating point values.

Function Documentation

ne10_result_t ne10_detmat_2x2f_asm ( ne10_float32_t dst,
ne10_mat2x2f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_2x2f using NEON assembly.

ne10_result_t ne10_detmat_2x2f_c ( ne10_float32_t dst,
ne10_mat2x2f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_2x2f using plain C code.

Definition at line 38 of file NE10_detmat.c.

ne10_result_t ne10_detmat_2x2f_neon ( ne10_float32_t dst,
ne10_mat2x2f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_2x2f using NEON intrinsics.

ne10_result_t ne10_detmat_3x3f_asm ( ne10_float32_t dst,
ne10_mat3x3f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_3x3f using NEON assembly.

ne10_result_t ne10_detmat_3x3f_c ( ne10_float32_t dst,
ne10_mat3x3f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_3x3f using plain C code.

Definition at line 48 of file NE10_detmat.c.

ne10_result_t ne10_detmat_3x3f_neon ( ne10_float32_t dst,
ne10_mat3x3f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_3x3f using NEON intrinsics.

ne10_result_t ne10_detmat_4x4f_asm ( ne10_float32_t dst,
ne10_mat4x4f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_4x4f using NEON assembly.

ne10_result_t ne10_detmat_4x4f_c ( ne10_float32_t dst,
ne10_mat4x4f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_4x4f using plain C code.

Definition at line 58 of file NE10_detmat.c.

ne10_result_t ne10_detmat_4x4f_neon ( ne10_float32_t dst,
ne10_mat4x4f_t src,
ne10_uint32_t  count 
)

Specific implementation of ne10_detmat_4x4f using NEON intrinsics.

Variable Documentation

ne10_result_t(* ne10_detmat_2x2f) (ne10_float32_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)

Calculates the determinant of 2x2 matrices within an input array, storing the results in an output array.

Points to ne10_detmat_2x2f_c, ne10_detmat_2x2f_neon, or ne10_detmat_2x2f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of matrices to be processed

Definition at line 298 of file NE10_init_math.c.

ne10_result_t(* ne10_detmat_3x3f) (ne10_float32_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)

Calculates the determinant of 3x3 matrices within an input array, storing the results in an output array.

Points to ne10_detmat_3x3f_c, ne10_detmat_3x3f_neon, or ne10_detmat_3x3f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of matrices to be processed

Definition at line 297 of file NE10_init_math.c.

ne10_result_t(* ne10_detmat_4x4f) (ne10_float32_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)

Calculates the determinant of 4x4 matrices within an input array, storing the results in an output array.

Points to ne10_detmat_4x4f_c, ne10_detmat_4x4f_neon, or ne10_detmat_4x4f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of matrices to be processed

Definition at line 296 of file NE10_init_math.c.