Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
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
wenyuanbo
tic
Commits
a05f73e9
Commit
a05f73e9
authored
Dec 11, 2019
by
MORITA Kazutaka
Committed by
Tianqi Chen
Dec 11, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[RUNTIME] Fix compile errors of OpenCL FPGA backend (#4492)
parent
53c0363d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
src/runtime/opencl/aocl/aocl_module.cc
+1
-2
src/runtime/opencl/sdaccel/sdaccel_module.cc
+1
-2
No files found.
src/runtime/opencl/aocl/aocl_module.cc
View file @
a05f73e9
...
...
@@ -50,8 +50,7 @@ Module AOCLModuleCreate(
std
::
string
fmt
,
std
::
unordered_map
<
std
::
string
,
FunctionInfo
>
fmap
,
std
::
string
source
)
{
std
::
shared_ptr
<
AOCLModuleNode
>
n
=
std
::
make_shared
<
AOCLModuleNode
>
(
data
,
fmt
,
fmap
,
source
);
auto
n
=
make_object
<
AOCLModuleNode
>
(
data
,
fmt
,
fmap
,
source
);
n
->
Init
();
return
Module
(
n
);
}
...
...
src/runtime/opencl/sdaccel/sdaccel_module.cc
View file @
a05f73e9
...
...
@@ -50,8 +50,7 @@ Module SDAccelModuleCreate(
std
::
string
fmt
,
std
::
unordered_map
<
std
::
string
,
FunctionInfo
>
fmap
,
std
::
string
source
)
{
std
::
shared_ptr
<
SDAccelModuleNode
>
n
=
std
::
make_shared
<
SDAccelModuleNode
>
(
data
,
fmt
,
fmap
,
source
);
auto
n
=
make_object
<
SDAccelModuleNode
>
(
data
,
fmt
,
fmap
,
source
);
n
->
Init
();
return
Module
(
n
);
}
...
...
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