FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
arrayfire/examples/getting_started/rainfall.cpp at master · AMD-Ecosystem/arrayfire · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
AMD-Ecosystem
/
arrayfire
Public
forked from
arrayfire/arrayfire
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
arrayfire
/
examples
/
getting_started
/
rainfall.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
71 lines (57 loc) · 2.26 KB
Breadcrumbs
arrayfire
/
examples
/
getting_started
/
rainfall.cpp
Copy path
File metadata and controls
71 lines (57 loc) · 2.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
******************************************************
* 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
*******************************************************
*/
//
Investigate rainfall measurements across sites and days
//
demonstrating various simple tasks
//
Compute various values:
//
- total rainfall at each site
//
- rain between days 1 and 5
//
- number of days with rain
//
- total rainfall on each day
//
- number of days with over five inches
//
- total rainfall at each site
//
note: example adapted from
//
"Rapid Problem Solving Using Thrust", Nathan Bell, NVIDIA
#
include
<
arrayfire.h
>
#
include
<
stdio.h
>
#
include
<
af/util.h
>
#
include
<
cstdlib
>
using
namespace
af
;
int
main
(
int
argc,
char
**argv) {
try
{
int
device = argc >
1
?
atoi
(argv[
1
]) :
0
;
af::setDevice
(device);
af::info
();
int
days =
9
, sites =
4
;
int
n =
10
;
//
measurements
float
day_[] = {
0
,
0
,
1
,
2
,
5
,
5
,
6
,
6
,
7
,
8
};
//
ascending
float
site_[] = {
2
,
3
,
0
,
1
,
1
,
2
,
0
,
1
,
2
,
1
};
float
measurement_[] = {
9
,
5
,
6
,
3
,
3
,
8
,
2
,
6
,
5
,
10
};
//
inches
array
day
(n, day_);
array
site
(n, site_);
array
measurement
(n, measurement_);
array rainfall =
constant
(
0
, sites);
gfor
(seq s, sites) {
rainfall
(s) =
sum
(measurement * (site == s)); }
printf
(
"
total rainfall at each site:
\n
"
);
af_print
(rainfall);
array is_between =
1
<= day && day <=
5
;
//
days 1 and 5
float
rain_between = sum<
float
>(measurement * is_between);
printf
(
"
rain between days: %g
\n
"
, rain_between);
printf
(
"
number of days with rain: %g
\n
"
,
sum<
float
>(
diff1
(day) >
0
) +
1
);
array per_day =
constant
(
0
, days);
gfor
(seq d, days)
per_day
(d) =
sum
(measurement * (day == d));
printf
(
"
total rainfall each day:
\n
"
);
af_print
(per_day);
printf
(
"
number of days over five: %g
\n
"
, sum<
float
>(per_day >
5
));
}
catch
(af::exception &e) {
fprintf
(stderr,
"
%s
\n
"
, e.
what
());
throw
;
}
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL