\(\newcommand{\W}[1]{ \; #1 \; }\) \(\newcommand{\R}[1]{ {\rm #1} }\) \(\newcommand{\B}[1]{ {\bf #1} }\) \(\newcommand{\D}[2]{ \frac{\partial #1}{\partial #2} }\) \(\newcommand{\DD}[3]{ \frac{\partial^2 #1}{\partial #2 \partial #3} }\) \(\newcommand{\Dpow}[2]{ \frac{\partial^{#1}}{\partial {#2}^{#1}} }\) \(\newcommand{\dpow}[2]{ \frac{ {\rm d}^{#1}}{{\rm d}\, {#2}^{#1}} }\)
adolc_alloc_mat
Adolc Test Utility: Allocate and Free Memory For a Matrix
Syntax
adolc_alloc_mat
( m , n )mat
)Purpose
Use the thread_alloc memory allocator to allocate and free memory that can be used as a matrix with the Adolc package.
m
Is the number of rows in the matrix.
n
Is the number of columns in the matrix.
mat
Is the matrix.
To be specific,
between a call to adolc_alloc_mat
,
and the corresponding call to adolc_free_mat
,
for i = 0 , … , m -1
and j = 0 , … , n -1
,
mat [ i ][ j ] is the element in row i
and column j .