Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BioEM
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
Service Desk
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
MPIBP-Hummer
BioEM
Commits
1459580e
Commit
1459580e
authored
8 years ago
by
Luka Stanisic
Browse files
Options
Downloads
Patches
Plain Diff
temporarily disabled fastest CUDA detection, since it strangely causes error on dvl machine
parent
c4d1dff7
No related branches found
No related tags found
1 merge request
!2
minor fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bioem_cuda.cu
+6
-0
6 additions, 0 deletions
bioem_cuda.cu
with
6 additions
and
0 deletions
bioem_cuda.cu
+
6
−
0
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"
));
...
...
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