/usr/include/arrayfire.h is in libarrayfire-dev 3.2.2+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | /*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#pragma once
/**
\defgroup arrayfire_func Complete List of ArrayFire Functions
@{
@}
\defgroup graphics_func Graphics
@{
@}
@defgroup func_categories ArrayFire Functions by Category
@{
@defgroup array_mat Functions to create and modify Arrays
@{
Array constructors, random number generation, transpose, indexing, etc.
@defgroup construct_mat Constructors of array class
Construct an array object
@defgroup method_mat Methods of array class
Get information about the array object
@defgroup device_mat Managing devices in ArrayFire
getting device pointer, allocating and freeing memory
@defgroup data_mat Functions to create arrays.
constant, random, range, etc.
@defgroup index_mat Assignment & Indexing operation on arrays
Access sub regions of an array object
@defgroup manip_mat Move and Reorder array content
reorder, transpose, flip, join, tile, etc.
@defgroup helper_mat Helper functions for arrays
iszero, isInf, isNan, etc.
@}
@defgroup mathfunc_mat Mathematical functions
@{
Functions from standard math library
@defgroup arith_mat Arithmetic operations
+, -, *, /, >>, <<
@defgroup logic_mat Logical operations
&&, ||, |, &, <, >, <=, >=, ==, !
@defgroup numeric_mat Numeric functions
floor, round, min, max, etc.
@defgroup trig_mat Trigonometric functions
sin, cos, tan, etc.
@defgroup explog_mat Exponential and logarithmic functions
exp, log, expm1, log1p, etc.
@defgroup hyper_mat Hyperbolic functions
sinh, cosh, tanh, etc.
@defgroup complex_mat Complex operations
real, imag, conjugate etc.
@}
@defgroup vector_mat Vector Algorithms
@{
sum, min, max, sort, set operations, etc.
@defgroup reduce_mat Reduction operations
sum, min, max, etc.
@defgroup sort_mat Sort operations
sort, sort by key, etc.
@defgroup scan_mat Inclusive scan operations
inclusive / cumulative sum, etc.
@defgroup set_mat Set operations
unique, union, intersect
@defgroup calc_mat Numerical differentiation
diff, gradient, etc.
@}
@defgroup linalg_mat Linear Algebra
@{
Matrix multiply, solve, decompositions
@defgroup blas_mat BLAS operations
Matrix multiply, dot product, etc.
@defgroup lapack_factor_mat Matrix factorizations and decompositions
LU, QR, Cholesky etc.
@defgroup lapack_solve_mat Linear solve and least squares
solve, solveLU, etc.
@defgroup lapack_ops_mat Matrix operations
inverse, det, rank, norm etc.
@}
@defgroup image_mat Image Processing
@{
Image filtering, morphing and transformations
@defgroup colorconv_mat Colorspace conversions
RGB to gray, gray to RGB, RGB to HSV, etc.
@defgroup hist_mat Histograms
Image and data histograms
@defgroup transform_mat Image transformations
rotate, skew, etc.
@defgroup morph_mat Morphological Operations
erode, dilate, etc.
@defgroup imageflt_mat Filters
bilateral, sobel, mean shift, median / min / max filters etc.
@defgroup connected_comps_mat Connected Components & Labeling
regions
@defgroup image_mod_mat Wrapping and unwrapping image windows
wrap, unwrap, etc.
@defgroup utility_mat Utility Functions
loadImage, saveImage, gaussianKernel
@}
@defgroup cv_mat Computer Vision
@{
A list of computer vision algorithms
@defgroup featdetect_mat Feature detectors
FAST feature detector
@defgroup featdescriptor_mat Feature descriptors
ORB feature descriptor
@defgroup featmatcher_mat Feature matchers
Feature matchers
@defgroup match_mat Template matching
@}
@defgroup signal_mat Signal Processing
@{
Convolutions, FFTs, filters
@defgroup convolve_mat Convolutions
1D, 2D and 3D convolutions
@defgroup sigfilt_mat Filter
fir, iir, etc.
@defgroup fft_mat Fast Fourier Transforms
1D, 2D and 3D forward, inverse FFTs
@defgroup approx_mat Interpolation and approximation
1D and 2D interpolation
@}
@defgroup stats_mat Statistics
@{
A list of Statistics functions
@defgroup basicstats_mat Basic statistics functions
mean, median, variance, etc.
@}
@defgroup io_mat Input and Output functions
@{
Functions to read and write data
@defgroup dataio_mat Reading and writing arrays
printing data to screen / files
@defgroup imageio_mat Reading and writing images
Reading and writing images
@}
@defgroup unified_func Unified API Functions
@{
Functions to set current backend and utilities
@}
@defgroup external Interface Functions
@{
Backend specific functions
@defgroup opencl_mat OpenCL specific functions
\brief Accessing ArrayFire's context, queue, and share data with other OpenCL code.
If your software is using ArrayFire's OpenCL backend, you can also write custom
kernels and do custom memory operations using native OpenCL commands. The functions
contained in the \p afcl namespace provide methods to get the context, queue, and
device(s) that ArrayFire is using as well as convert `cl_mem` handles to
\ref af::array objects.
Please note: the \ref af::array constructors are not thread safe. You may create and
upload data to `cl_mem` objects from separate threads, but the thread which
instantiated ArrayFire must do the `cl_mem` to \ref af::array conversion.
@defgroup cuda_mat CUDA specific functions
\brief Accessing ArrayFire's stream, and native device id with other CUDA code.
If your software is using ArrayFire's CUDA backend, you can also write custom
kernels and do custom memory operations using native CUDA commands. The functions
contained in the \p afcu namespace provide methods to get the stream and native
device id that ArrayFire is using.
@}
@}
*/
#include "af/compatible.h"
#include "af/algorithm.h"
#include "af/arith.h"
#include "af/array.h"
#include "af/backend.h"
#include "af/blas.h"
#include "af/constants.h"
#include "af/complex.h"
#include "af/data.h"
#include "af/device.h"
#include "af/exception.h"
#include "af/features.h"
#include "af/gfor.h"
#include "af/graphics.h"
#include "af/image.h"
#include "af/index.h"
#include "af/lapack.h"
#include "af/seq.h"
#include "af/signal.h"
#include "af/statistics.h"
#include "af/timing.h"
#include "af/util.h"
#include "af/version.h"
#include "af/vision.h"
|