forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleFunction.cpp
More file actions
63 lines (51 loc) · 2.19 KB
/
exampleFunction.cpp
File metadata and controls
63 lines (51 loc) · 2.19 KB
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
/*******************************************************
* 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
********************************************************/
#include <Array.hpp> // header with cpu backend specific
// Array class implementation that inherits
// ArrayInfo base class
#include <exampleFunction.hpp> // cpu backend function header
#include <kernel/exampleFunction.hpp> // Function implementation header
#include <err_cpu.hpp> // error check functions and Macros
// specific to cpu backend
#include <platform.hpp>
#include <af/dim4.hpp>
using af::dim4;
namespace cpu {
template<typename T>
Array<T> exampleFunction(const Array<T> &a, const Array<T> &b,
const af_someenum_t method) {
dim4 outputDims; // this should be '= in.dims();' in most cases
// but would definitely depend on the type of
// algorithm you are implementing.
Array<T> out = createEmptyArray<T>(outputDims);
// Please use the create***Array<T> helper
// functions defined in Array.hpp to create
// different types of Arrays. Please check the
// file to know what are the different types you
// can create.
// Enqueue the function call on the worker thread
// This code will be present in src/backend/cpu/kernel/exampleFunction.hpp
getQueue().enqueue(kernel::exampleFunction<T>, out, a, b, method);
return out; // return the result
}
#define INSTANTIATE(T) \
template Array<T> exampleFunction<T>(const Array<T> &a, const Array<T> &b, \
const af_someenum_t method);
// INSTANTIATIONS for all the types which
// are present in the switch case statement
// in src/api/c/exampleFunction.cpp should be available
INSTANTIATE(float)
INSTANTIATE(double)
INSTANTIATE(int)
INSTANTIATE(uint)
INSTANTIATE(uchar)
INSTANTIATE(char)
INSTANTIATE(cfloat)
INSTANTIATE(cdouble)
} // namespace cpu