Graph Framework
Loading...
Searching...
No Matches
graph_c_binding.h
Go to the documentation of this file.
1//------------------------------------------------------------------------------
4//------------------------------------------------------------------------------
5//------------------------------------------------------------------------------
110//------------------------------------------------------------------------------
111
112#ifndef graph_c_binding_h
113#define graph_c_binding_h
114
115#include <stddef.h>
116#include <stdint.h>
117#include <stdbool.h>
118
119//------------------------------------------------------------------------------
123//------------------------------------------------------------------------------
124//------------------------------------------------------------------------------
128//------------------------------------------------------------------------------
129#ifdef USE_METAL
130#define START_GPU @autoreleasepool {
131#define END_GPU }
132#else
133#define START_GPU
134#define END_GPU
135#endif
136
137//------------------------------------------------------------------------------
140//------------------------------------------------------------------------------
141#ifdef __cplusplus
142extern "C" {
143#define STRUCT_TAG
144#else
145#define STRUCT_TAG struct
146#endif
148 typedef void * graph_node;
149
150//------------------------------------------------------------------------------
152//------------------------------------------------------------------------------
154 FLOAT,
155 DOUBLE,
156 COMPLEX_FLOAT,
157 COMPLEX_DOUBLE
158 };
159
160//------------------------------------------------------------------------------
162//------------------------------------------------------------------------------
169
170//------------------------------------------------------------------------------
176//------------------------------------------------------------------------------
178 const bool use_safe_math);
179
180//------------------------------------------------------------------------------
184//------------------------------------------------------------------------------
186
187//------------------------------------------------------------------------------
194//------------------------------------------------------------------------------
196 const size_t size,
197 const char *symbol);
198
199//------------------------------------------------------------------------------
205//------------------------------------------------------------------------------
207 const double value);
208
209//------------------------------------------------------------------------------
215//------------------------------------------------------------------------------
217 graph_node var,
218 const void *source);
219
220//------------------------------------------------------------------------------
227//------------------------------------------------------------------------------
229 const double real_value,
230 const double img_value);
231
232//------------------------------------------------------------------------------
238//------------------------------------------------------------------------------
240 graph_node var);
241
242//------------------------------------------------------------------------------
248//------------------------------------------------------------------------------
250 graph_node var);
251
252//------------------------------------------------------------------------------
259//------------------------------------------------------------------------------
261 graph_node left,
262 graph_node right);
263
264//------------------------------------------------------------------------------
271//------------------------------------------------------------------------------
273 graph_node left,
274 graph_node right);
275
276//------------------------------------------------------------------------------
283//------------------------------------------------------------------------------
285 graph_node left,
286 graph_node right);
287
288//------------------------------------------------------------------------------
295//------------------------------------------------------------------------------
297 graph_node left,
298 graph_node right);
299
300//------------------------------------------------------------------------------
306//------------------------------------------------------------------------------
308 graph_node arg);
309
310//------------------------------------------------------------------------------
316//------------------------------------------------------------------------------
318 graph_node arg);
319
320//------------------------------------------------------------------------------
326//------------------------------------------------------------------------------
328 graph_node arg);
329
330//------------------------------------------------------------------------------
337//------------------------------------------------------------------------------
339 graph_node left,
340 graph_node right);
341
342//------------------------------------------------------------------------------
348//------------------------------------------------------------------------------
350 graph_node arg);
351
352//------------------------------------------------------------------------------
358//------------------------------------------------------------------------------
360 graph_node arg);
361
362//------------------------------------------------------------------------------
368//------------------------------------------------------------------------------
370 graph_node arg);
371
372//------------------------------------------------------------------------------
379//------------------------------------------------------------------------------
381 graph_node left,
382 graph_node right);
383
384//------------------------------------------------------------------------------
390//------------------------------------------------------------------------------
392 const uint32_t seed);
393
394//------------------------------------------------------------------------------
400//------------------------------------------------------------------------------
402 graph_node state);
403
404//------------------------------------------------------------------------------
414//------------------------------------------------------------------------------
416 graph_node arg,
417 const double scale,
418 const double offset,
419 const void *source,
420 const size_t source_size);
421
422//------------------------------------------------------------------------------
436//------------------------------------------------------------------------------
438 const size_t num_cols,
439 graph_node x_arg,
440 const double x_scale,
441 const double x_offset,
442 graph_node y_arg,
443 const double y_scale,
444 const double y_offset,
445 const void *source,
446 const size_t source_size);
447
448//------------------------------------------------------------------------------
453//------------------------------------------------------------------------------
455
456//------------------------------------------------------------------------------
461//------------------------------------------------------------------------------
463 const size_t num);
464
465//------------------------------------------------------------------------------
479//------------------------------------------------------------------------------
481 graph_node *inputs, size_t num_inputs,
482 graph_node *outputs, size_t num_outputs,
483 graph_node *map_inputs,
484 graph_node *map_outputs, size_t num_maps,
485 graph_node random_state,
486 const char *name,
487 const size_t size);
488
489//------------------------------------------------------------------------------
503//------------------------------------------------------------------------------
505 graph_node *inputs, size_t num_inputs,
506 graph_node *outputs, size_t num_outputs,
507 graph_node *map_inputs,
508 graph_node *map_outputs, size_t num_maps,
509 graph_node random_state,
510 const char *name,
511 const size_t size);
512
513//------------------------------------------------------------------------------
529//------------------------------------------------------------------------------
531 graph_node *inputs, size_t num_inputs,
532 graph_node *outputs, size_t num_outputs,
533 graph_node *map_inputs,
534 graph_node *map_outputs, size_t num_maps,
535 graph_node random_state,
536 const char *name,
537 const size_t size,
538 const double tol,
539 const size_t max_iter);
540
541//------------------------------------------------------------------------------
545//------------------------------------------------------------------------------
547
548//------------------------------------------------------------------------------
552//------------------------------------------------------------------------------
554
555//------------------------------------------------------------------------------
559//------------------------------------------------------------------------------
561
562//------------------------------------------------------------------------------
566//------------------------------------------------------------------------------
568
569//------------------------------------------------------------------------------
575//------------------------------------------------------------------------------
577 graph_node node,
578 void *source);
579
580//------------------------------------------------------------------------------
586//------------------------------------------------------------------------------
588 graph_node node,
589 void *destination);
590
591//------------------------------------------------------------------------------
598//------------------------------------------------------------------------------
600 const size_t index,
601 graph_node *nodes,
602 const size_t num_nodes);
603
604//------------------------------------------------------------------------------
610//------------------------------------------------------------------------------
612 graph_node fnode,
613 graph_node xnode);
614#ifdef __cplusplus
615}
616#endif
617
618#endif /* graph_c_binding_h */
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:153
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:148
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 Subtract 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:145
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:163
enum graph_type type
Type of the context.
Definition graph_c_binding.h:165
bool safe_math
Uses safe math.
Definition graph_c_binding.h:167