Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c2bd3b69
Commit
c2bd3b69
authored
Apr 21, 2016
by
Alexander Monakov
Committed by
Alexander Monakov
Apr 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libgomp nvptx plugin: make cuMemFreeHost error non-fatal
From-SVN: r235339
parent
fefddbef
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
libgomp/ChangeLog
+5
-0
libgomp/plugin/plugin-nvptx.c
+1
-1
No files found.
libgomp/ChangeLog
View file @
c2bd3b69
2016-04-21 Alexander Monakov <amonakov@ispras.ru>
* plugin/plugin-nvptx.c (map_fini): Make cuMemFreeHost error
non-fatal.
2016-04-19 Jakub Jelinek <jakub@redhat.com>
PR middle-end/70680
...
...
libgomp/plugin/plugin-nvptx.c
View file @
c2bd3b69
...
...
@@ -134,7 +134,7 @@ map_fini (struct ptx_stream *s)
r
=
cuMemFreeHost
(
s
->
h
);
if
(
r
!=
CUDA_SUCCESS
)
GOMP_PLUGIN_
fatal
(
"cuMemFreeHost error: %s"
,
cuda_error
(
r
));
GOMP_PLUGIN_
error
(
"cuMemFreeHost error: %s"
,
cuda_error
(
r
));
}
static
void
...
...
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