-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrandom.cpp
More file actions
37 lines (34 loc) · 869 Bytes
/
random.cpp
File metadata and controls
37 lines (34 loc) · 869 Bytes
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
#include <stdio.h>
#include <arrayfire.h>
#include <af/utils.h>
using namespace af;
extern "C" long randu(int d0, int d1, int d2, int d3, int ty)
{
try {
array *arr = new array();
if (ty == 0) {
*arr = af::randu(d0, d1, d2, d3);
} else if (ty == 1) {
*arr = af::randu(d0, d1, d2, d3, f64);
}
return (long)(arr);
} catch (af::exception &ae) {
printf("%s\n", ae.what());
return 0;
}
}
extern "C" long randn(int d0, int d1, int d2, int d3, int ty)
{
try {
array *arr = new array();
if (ty == 0) {
*arr = af::randn(d0, d1, d2, d3);
} else if (ty == 1) {
*arr = af::randn(d0, d1, d2, d3, f64);
}
return (long)(arr);
} catch (af::exception &ae) {
printf("%s\n", ae.what());
return 0;
}
}