111#ifndef graph_c_binding_h
112#define graph_c_binding_h
129#define START_GPU @autoreleasepool {
144#define STRUCT_TAG struct
177 const bool use_safe_math);
228 const double real_value,
229 const double img_value);
391 const uint32_t seed);
419 const size_t source_size);
437 const size_t num_cols,
439 const double x_scale,
440 const double x_offset,
442 const double y_scale,
443 const double y_offset,
445 const size_t source_size);
538 const size_t max_iter);
601 const size_t num_nodes);
graph_node graph_log(STRUCT_TAG graph_c_context *c, graph_node arg)
Create log node.
Definition graph_c_binding.cpp:892
graph_node graph_sin(STRUCT_TAG graph_c_context *c, graph_node arg)
Create sine node.
Definition graph_c_binding.cpp:1068
STRUCT_TAG graph_c_context * graph_construct_context(const enum graph_type type, const bool use_safe_math)
Construct a C context.
Definition graph_c_binding.cpp:40
graph_node graph_exp(STRUCT_TAG graph_c_context *c, graph_node arg)
Create exp node.
Definition graph_c_binding.cpp:828
void graph_destroy_context(STRUCT_TAG graph_c_context *c)
Destroy C context.
graph_node graph_sqrt(STRUCT_TAG graph_c_context *c, graph_node arg)
Create Sqrt node.
Definition graph_c_binding.cpp:764
graph_node graph_constant(STRUCT_TAG graph_c_context *c, const double value)
Create constant node.
Definition graph_c_binding.cpp:164
graph_node graph_pseudo_variable(STRUCT_TAG graph_c_context *c, graph_node var)
Create a pseudo variable.
Definition graph_c_binding.cpp:366
graph_node graph_random(STRUCT_TAG graph_c_context *c, graph_node state)
Create random node.
Definition graph_c_binding.cpp:1335
graph_node graph_add(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create Addition node.
Definition graph_c_binding.cpp:498
void graph_print(STRUCT_TAG graph_c_context *c, const size_t index, graph_node *nodes, const size_t num_nodes)
Print a value from nodes.
Definition graph_c_binding.cpp:3118
void graph_add_item(STRUCT_TAG graph_c_context *c, graph_node *inputs, size_t num_inputs, graph_node *outputs, size_t num_outputs, graph_node *map_inputs, graph_node *map_outputs, size_t num_maps, graph_node random_state, const char *name, const size_t size)
Add workflow item.
Definition graph_c_binding.cpp:2127
void graph_add_converge_item(STRUCT_TAG graph_c_context *c, graph_node *inputs, size_t num_inputs, graph_node *outputs, size_t num_outputs, graph_node *map_inputs, graph_node *map_outputs, size_t num_maps, graph_node random_state, const char *name, const size_t size, const double tol, const size_t max_iter)
Add a converge item.
Definition graph_c_binding.cpp:2467
graph_type
Graph base type.
Definition graph_c_binding.h:152
graph_node graph_piecewise_1D(STRUCT_TAG graph_c_context *c, graph_node arg, const double scale, const double offset, const void *source, const size_t source_size)
Create 1D piecewise node.
Definition graph_c_binding.cpp:1454
graph_node graph_cos(STRUCT_TAG graph_c_context *c, graph_node arg)
Create cosine node.
Definition graph_c_binding.cpp:1132
graph_node graph_mul(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create Multiply node.
Definition graph_c_binding.cpp:630
graph_node graph_erfi(STRUCT_TAG graph_c_context *c, graph_node arg)
Create imaginary error function node.
Definition graph_c_binding.cpp:1022
void graph_run(STRUCT_TAG graph_c_context *c)
Run work items.
void graph_set_device_number(STRUCT_TAG graph_c_context *c, const size_t num)
Choose the device number.
Definition graph_c_binding.cpp:1729
graph_node graph_pow(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create Pow node.
Definition graph_c_binding.cpp:957
graph_node graph_variable(STRUCT_TAG graph_c_context *c, const size_t size, const char *symbol)
Create variable node.
Definition graph_c_binding.cpp:99
size_t graph_get_max_concurrency(STRUCT_TAG graph_c_context *c)
Create 2D piecewise node with complex arguments.
void * graph_node
Graph node type for C interface.
Definition graph_c_binding.h:147
graph_node graph_df(STRUCT_TAG graph_c_context *c, graph_node fnode, graph_node xnode)
Take derivative ∂f∂x.
Definition graph_c_binding.cpp:3204
graph_node graph_sub(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create Substract node.
Definition graph_c_binding.cpp:564
void graph_copy_to_host(STRUCT_TAG graph_c_context *c, graph_node node, void *destination)
Copy data to a host buffer.
Definition graph_c_binding.cpp:3064
void graph_copy_to_device(STRUCT_TAG graph_c_context *c, graph_node node, void *source)
Copy data to a device buffer.
Definition graph_c_binding.cpp:3011
graph_node graph_atan(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create arctangent node.
Definition graph_c_binding.cpp:1197
graph_node graph_remove_pseudo(STRUCT_TAG graph_c_context *c, graph_node var)
Remove pseudo.
Definition graph_c_binding.cpp:430
graph_node graph_constant_c(STRUCT_TAG graph_c_context *c, const double real_value, const double img_value)
Create complex constant node.
Definition graph_c_binding.cpp:322
graph_node graph_div(STRUCT_TAG graph_c_context *c, graph_node left, graph_node right)
Create Divide node.
Definition graph_c_binding.cpp:696
void graph_set_variable(STRUCT_TAG graph_c_context *c, graph_node var, const void *source)
Set a variable value.
Definition graph_c_binding.cpp:228
void graph_compile(STRUCT_TAG graph_c_context *c)
Compile the work items.
void graph_add_pre_item(STRUCT_TAG graph_c_context *c, graph_node *inputs, size_t num_inputs, graph_node *outputs, size_t num_outputs, graph_node *map_inputs, graph_node *map_outputs, size_t num_maps, graph_node random_state, const char *name, const size_t size)
Add pre workflow item.
Definition graph_c_binding.cpp:1789
#define STRUCT_TAG
Definition graph_c_binding.h:144
graph_node graph_random_state(STRUCT_TAG graph_c_context *c, const uint32_t seed)
Construct a random state node.
Definition graph_c_binding.cpp:1265
graph_node graph_piecewise_2D(STRUCT_TAG graph_c_context *c, const size_t num_cols, graph_node x_arg, const double x_scale, const double x_offset, graph_node y_arg, const double y_scale, const double y_offset, const void *source, const size_t source_size)
Create 2D piecewise node.
Definition graph_c_binding.cpp:1558
void graph_wait(STRUCT_TAG graph_c_context *c)
Wait for work items to complete.
void graph_pre_run(STRUCT_TAG graph_c_context *c)
Run pre work items.
graph_c_context type.
Definition graph_c_binding.h:162
enum graph_type type
Type of the context.
Definition graph_c_binding.h:164
bool safe_math
Uses safe math.
Definition graph_c_binding.h:166