#include "gnn_node.h"Include dependency graph for gnn_serial.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| gnn_node * | gnn_serial_new (int size,...) |
| Build a node stack. | |
| gnn_node * | gnn_serial_new_with_node_vector (gnn_node_vector *v) |
| Build a node stack with a given node vector. | |
| gnn_node * | gnn_serial_get_node (gnn_node *node, int i) |
| Get the i-th subnode. | |
| int | gnn_serial_get_size (gnn_node *node) |
| Gets the number of nodes that the stack is build of. | |
|
||||||||||||
|
This function returns a pointer to the stack's i-th node.
Definition at line 666 of file gnn_serial.c. |
|
|
Definition at line 679 of file gnn_serial.c. |
|
||||||||||||
|
This function builds a new gnn_serial node. The node computes the function The input and output sizes should match on each other, so that the output size of a preceeding node must be the same as the input size of the following node. Example: gnn_node *stack, *node1, *node2, *node3; // build the nodes 1 to 3 ... // build the stack stack = gnn_serial_new (3, node1, node2, node3);
Definition at line 523 of file gnn_serial.c. |
|
|
This function builds a new gnn_serial node. The node computes the function The input and output sizes should match on each other, so that the output size of a preceeding node must be the same as the input size of the following node. Example: gnn_node *stack; gnn_node_vector *vector; // build the node vector vector = gnn_node_vector_new (3); // build the nodes vector[0], vector[1] and vector[2] ... // build the stack stack = gnn_serial_new_with_node_vector (vector);
Definition at line 592 of file gnn_serial.c. |
1.2.18