MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_get_version

Function af_get_version

src/api/c/version.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11#include <af/util.h>
12
13af_err af_get_version(int *major, int *minor, int *patch) {
14 *major = AF_VERSION_MAJOR;
15 *minor = AF_VERSION_MINOR;
16 *patch = AF_VERSION_PATCH;
17
18 return AF_SUCCESS;
19}
20
21const char *af_get_revision() { return AF_REVISION; }

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected