Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

6.3.2 vsip_dlud_destroy_p - Destroy LU Decomposition Object

int vsip_lud_destroy_f(vsip_lu_f *lu); 
int vsip_clud_destroy_f(vsip_clu_f *lu);
Description

This function destroys an LU decomposition object and frees all associated resources.

Parameters
Return Value
Example

vsip_lu_f *lu_obj; 
int result; 
 
// Assuming lu_obj has been properly initialized 
result = vsip_lud_destroy_f(lu_obj); 
 
if (result != 0) { 
    // Handle error 
}