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.

1.3.19 vsip_dvalldestroy_p - Destroy a Vector View and Its Data Block

void vsip_valldestroy_f(vsip_vview_f *v); 
void vsip_valldestroy_bl(vsip_vview_bl *v); 
void vsip_valldestroy_vi(vsip_vview_vi *v); 
void vsip_valldestroy_mi(vsip_vview_mi *v); 
void vsip_cvalldestroy_f(vsip_cvview_f* v);
Description

This function destroys a vector view v and its underlying data block. After calling this function, both the vector view and the data block are no longer valid.

Parameters
Example

vsip_vview_f *vector_view; 
 
// Assuming vector_view has been properly initialized 
vsip_valldestroy_f(vector_view); 
 
// Both the vector view and its data block are now invalid