Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
80f1fc5d
Commit
80f1fc5d
authored
May 17, 2013
by
Wouter Klijn
Browse files
Options
Downloads
Patches
Plain Diff
Task #4360: Add additional debug information on failure of runtime compilation
parent
2782c13f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
RTCP/Cobalt/GPUProc/src/cuda/CudaRuntimeCompiler.cc
+5
-2
5 additions, 2 deletions
RTCP/Cobalt/GPUProc/src/cuda/CudaRuntimeCompiler.cc
with
5 additions
and
2 deletions
RTCP/Cobalt/GPUProc/src/cuda/CudaRuntimeCompiler.cc
+
5
−
2
View file @
80f1fc5d
...
@@ -107,7 +107,10 @@ namespace CudaRuntimeCompiler
...
@@ -107,7 +107,10 @@ namespace CudaRuntimeCompiler
// Fetch and return PTX, if any
// Fetch and return PTX, if any
string
ptxStr
=
ptxFileContent
.
str
();
string
ptxStr
=
ptxFileContent
.
str
();
if
(
ptxStr
.
empty
())
{
if
(
ptxStr
.
empty
())
{
LOG_DEBUG
(
" NVCC Compilation of cuda kernel failed. Command line arguments:"
);
LOG_DEBUG
(
cmd
);
// log that we have a failed compile run
// log that we have a failed compile run
THROW
(
Exception
,
"nvcc compilation failed!"
);
THROW
(
Exception
,
"nvcc compilation failed!"
);
}
}
...
...
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
sign in
to comment