Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfpm_pdata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
argupta
openfpm_pdata
Commits
113f4b48
Commit
113f4b48
authored
6 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
General fixing of the installer + example
parent
3fdc8779
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
install
+1
-1
1 addition, 1 deletion
install
src/Vector/cuda/vector_dist_cuda_funcs.cuh
+1
-1
1 addition, 1 deletion
src/Vector/cuda/vector_dist_cuda_funcs.cuh
src/Vector/cuda/vector_dist_gpu_unit_tests.cu
+8
-8
8 additions, 8 deletions
src/Vector/cuda/vector_dist_gpu_unit_tests.cu
with
10 additions
and
10 deletions
install
+
1
−
1
View file @
113f4b48
...
...
@@ -411,7 +411,7 @@ fi
### Create example.mk
install_base
=
$(
cat
install_dir
)
openmp_flags
=
"
$(
cat
openmp_flags
)
$(
cat
openfpm_flags
)
"
openmp_flags
=
"
$(
cat
openmp_flags
)
"
if
[
-d
"
$i_dir
/HDF5/lib"
]
;
then
hdf5_lib
=
$i_dir
/HDF5/lib
...
...
This diff is collapsed.
Click to expand it.
src/Vector/cuda/vector_dist_cuda_funcs.cuh
+
1
−
1
View file @
113f4b48
...
...
@@ -283,7 +283,7 @@ struct _max_: mgpu::maximum_t<red_type>
{};
template
<
unsigned
int
prp
,
template
<
typename
>
class
op
,
typename
vector_type
>
auto
reduce
(
vector_type
&
vd
)
->
typename
std
::
remove_reference
<
decltype
(
vd
.
template
getProp
<
prp
>(
0
))
>::
type
auto
reduce
_local
(
vector_type
&
vd
)
->
typename
std
::
remove_reference
<
decltype
(
vd
.
template
getProp
<
prp
>(
0
))
>::
type
{
typedef
typename
std
::
remove_reference
<
decltype
(
vd
.
template
getProp
<
prp
>(
0
))
>::
type
reduce_type
;
...
...
This diff is collapsed.
Click to expand it.
src/Vector/cuda/vector_dist_gpu_unit_tests.cu
+
8
−
8
View file @
113f4b48
...
...
@@ -736,20 +736,20 @@ BOOST_AUTO_TEST_CASE(vector_dist_reduce)
vd
.
template
hostToDeviceProp
<
0
,
1
,
2
,
3
>();
float
redf
=
reduce
<
0
,
_add_
>
(
vd
);
double
redd
=
reduce
<
1
,
_add_
>
(
vd
);
int
redi
=
reduce
<
2
,
_add_
>
(
vd
);
size_t
reds
=
reduce
<
3
,
_add_
>
(
vd
);
float
redf
=
reduce
_local
<
0
,
_add_
>
(
vd
);
double
redd
=
reduce
_local
<
1
,
_add_
>
(
vd
);
int
redi
=
reduce
_local
<
2
,
_add_
>
(
vd
);
size_t
reds
=
reduce
_local
<
3
,
_add_
>
(
vd
);
BOOST_REQUIRE_EQUAL
(
redf
,(
vd
.
size_local
()
+
1.0
)
*
(
vd
.
size_local
())
/
2.0
);
BOOST_REQUIRE_EQUAL
(
redd
,(
vd
.
size_local
()
+
1.0
)
*
(
vd
.
size_local
())
/
2.0
);
BOOST_REQUIRE_EQUAL
(
redi
,(
vd
.
size_local
()
+
1
)
*
(
vd
.
size_local
())
/
2
);
BOOST_REQUIRE_EQUAL
(
reds
,(
vd
.
size_local
()
+
1
)
*
(
vd
.
size_local
())
/
2
);
float
redf2
=
reduce
<
0
,
_max_
>
(
vd
);
double
redd2
=
reduce
<
1
,
_max_
>
(
vd
);
int
redi2
=
reduce
<
2
,
_max_
>
(
vd
);
size_t
reds2
=
reduce
<
3
,
_max_
>
(
vd
);
float
redf2
=
reduce
_local
<
0
,
_max_
>
(
vd
);
double
redd2
=
reduce
_local
<
1
,
_max_
>
(
vd
);
int
redi2
=
reduce
_local
<
2
,
_max_
>
(
vd
);
size_t
reds2
=
reduce
_local
<
3
,
_max_
>
(
vd
);
BOOST_REQUIRE_EQUAL
(
redf2
,
vd
.
size_local
());
BOOST_REQUIRE_EQUAL
(
redd2
,
vd
.
size_local
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment