Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_devices
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_devices
Commits
21f32af4
Commit
21f32af4
authored
3 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing for CUDA 11.2
parent
093f4646
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#3686
passed
3 years ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/memory/CudaMemory.cuh
+1
-1
1 addition, 1 deletion
src/memory/CudaMemory.cuh
src/memory/ExtPreAlloc.hpp
+1
-1
1 addition, 1 deletion
src/memory/ExtPreAlloc.hpp
src/memory/HeapMemory.hpp
+1
-1
1 addition, 1 deletion
src/memory/HeapMemory.hpp
with
3 additions
and
3 deletions
src/memory/CudaMemory.cuh
+
1
−
1
View file @
21f32af4
...
...
@@ -222,7 +222,7 @@ public:
* \return true if they are the same
*
*/
static
bool
isDeviceHostSame
()
constexpr
static
bool
isDeviceHostSame
()
{
return
false
;
}
...
...
This diff is collapsed.
Click to expand it.
src/memory/ExtPreAlloc.hpp
+
1
−
1
View file @
21f32af4
...
...
@@ -89,7 +89,7 @@ public:
mem
->
deviceToDevice
(
ptr
,
start
,
stop
,
offset
);
}
static
bool
isDeviceHostSame
()
constexpr
static
bool
isDeviceHostSame
()
{
return
Mem
::
isDeviceHostSame
();
}
...
...
This diff is collapsed.
Click to expand it.
src/memory/HeapMemory.hpp
+
1
−
1
View file @
21f32af4
...
...
@@ -204,7 +204,7 @@ public:
* \return true if they are the same
*
*/
static
bool
isDeviceHostSame
()
constexpr
static
bool
isDeviceHostSame
()
{
return
true
;
}
...
...
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