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
13362e12
Commit
13362e12
authored
Jul 02, 2018
by
Jian Weng
Committed by
Tianqi Chen
Jul 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix narrow conversion on gcc-8 (#1376)
parent
f9c17997
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/codegen/codegen.cc
+2
-2
No files found.
src/codegen/codegen.cc
View file @
13362e12
...
@@ -54,9 +54,9 @@ std::string PackImportsToC(const runtime::Module& mod, bool system_lib) {
...
@@ -54,9 +54,9 @@ std::string PackImportsToC(const runtime::Module& mod, bool system_lib) {
os
<<
"#ifdef __cplusplus
\n
"
os
<<
"#ifdef __cplusplus
\n
"
<<
"extern
\"
C
\"
{
\n
"
<<
"extern
\"
C
\"
{
\n
"
<<
"#endif
\n
"
;
<<
"#endif
\n
"
;
os
<<
"TVM_EXPORT extern const char "
<<
runtime
::
symbol
::
tvm_dev_mblob
<<
"[];
\n
"
;
os
<<
"TVM_EXPORT extern const
unsigned
char "
<<
runtime
::
symbol
::
tvm_dev_mblob
<<
"[];
\n
"
;
uint64_t
nbytes
=
bin
.
length
();
uint64_t
nbytes
=
bin
.
length
();
os
<<
"const char "
<<
runtime
::
symbol
::
tvm_dev_mblob
os
<<
"const
unsigned
char "
<<
runtime
::
symbol
::
tvm_dev_mblob
<<
"["
<<
bin
.
length
()
+
sizeof
(
nbytes
)
<<
"] = {
\n
"
;
<<
"["
<<
bin
.
length
()
+
sizeof
(
nbytes
)
<<
"] = {
\n
"
;
os
<<
std
::
hex
;
os
<<
std
::
hex
;
size_t
nunit
=
80
/
4
;
size_t
nunit
=
80
/
4
;
...
...
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