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//------------------------------------------------------------------------------
457//------------------------------------------------------------------------------
459 graph_node variable,
460 graph_node x_arg,
461 const double x_scale,
462 const double x_offset);
463
464//------------------------------------------------------------------------------
469//------------------------------------------------------------------------------
471
472//------------------------------------------------------------------------------
477//------------------------------------------------------------------------------
479 const size_t num);
480
481//------------------------------------------------------------------------------
495//------------------------------------------------------------------------------
497 graph_node *inputs, size_t num_inputs,
498 graph_node *outputs, size_t num_outputs,
499 graph_node *map_inputs,
500 graph_node *map_outputs, size_t num_maps,
501 graph_node random_state,
502 const char *name,
503 const size_t size);
504
505//------------------------------------------------------------------------------
519//------------------------------------------------------------------------------
521 graph_node *inputs, size_t num_inputs,
522 graph_node *outputs, size_t num_outputs,
523 graph_node *map_inputs,
524 graph_node *map_outputs, size_t num_maps,
525 graph_node random_state,
526 const char *name,
527 const size_t size);
528
529//------------------------------------------------------------------------------
545//------------------------------------------------------------------------------
547 graph_node *inputs, size_t num_inputs,
548 graph_node *outputs, size_t num_outputs,
549 graph_node *map_inputs,
550 graph_node *map_outputs, size_t num_maps,
551 graph_node random_state,
552 const char *name,
553 const size_t size,
554 const double tol,
555 const size_t max_iter);
556
557//------------------------------------------------------------------------------
561//------------------------------------------------------------------------------
563
564//------------------------------------------------------------------------------
568//------------------------------------------------------------------------------
570
571//------------------------------------------------------------------------------
575//------------------------------------------------------------------------------
577
578//------------------------------------------------------------------------------
582//------------------------------------------------------------------------------
584
585//------------------------------------------------------------------------------
591//------------------------------------------------------------------------------
593 graph_node node,
594 void *source);
595
596//------------------------------------------------------------------------------
602//------------------------------------------------------------------------------
604 graph_node node,
605 void *destination);
606
607//------------------------------------------------------------------------------
614//------------------------------------------------------------------------------
616 const size_t index,
617 graph_node *nodes,
618 const size_t num_nodes);
619
620//------------------------------------------------------------------------------
626//------------------------------------------------------------------------------
628 graph_node fnode,
629 graph_node xnode);
630#ifdef __cplusplus
631}
632#endif
633
634#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:3210
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:2219
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:2559
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:1821
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:3296
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
graph_node graph_index_1D(STRUCT_TAG graph_c_context *c, graph_node variable, graph_node x_arg, const double x_scale, const double x_offset)
Create a 1D index.
Definition graph_c_binding.cpp:1689
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:3156
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:3103
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:1881
#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