Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
BioEM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MPIBP-Hummer
BioEM
Commits
1459580e
Commit
1459580e
authored
Jun 16, 2017
by
Luka Stanisic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temporarily disabled fastest CUDA detection, since it strangely causes error on dvl machine
parent
c4d1dff7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
bioem_cuda.cu
bioem_cuda.cu
+6
-0
No files found.
bioem_cuda.cu
View file @
1459580e
...
...
@@ -290,6 +290,11 @@ int bioem_cuda::selectCudaDevice()
printf
(
"No CUDA device detected
\n
"
);
return
(
1
);
}
/* The following code, doing search for a fastest GPU,
is temporarily disabled since it causes initialization
errors on dvl machine. It is safe to ignore warnings
for "bestDeviceSpeed" */
#if 0
for (int i = 0;i < count;i++)
{
#if CUDA_VERSION > 3010
...
...
@@ -314,6 +319,7 @@ int bioem_cuda::selectCudaDevice()
bestDeviceSpeed
=
deviceSpeed
;
}
}
#endif
if
(
getenv
(
"GPUDEVICE"
))
{
int
device
=
atoi
(
getenv
(
"GPUDEVICE"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment