-
Notifications
You must be signed in to change notification settings - Fork 795
[SYCL][libdevice] Add IMF support in devicelib #5999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9a69b78
1065621
ca5f4ae
63a6aac
e483162
0c77cf2
523ce39
c2ff474
2259a93
4e357fe
e442026
d196cf3
fb4aa61
5c2b807
09fa0cb
8b5d22a
dde4d22
d15c36a
867e97a
a5fb6ee
ad899b8
aaf8170
7505a25
6a27501
885354c
36f883d
89edc0d
1fe22d4
61b50ed
c47c071
6dfa250
d85f86f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -714,6 +714,7 @@ void tools::gnutools::Linker::ConstructJob(Compilation &C, const JobAction &JA, | |
if (Args.hasArg(options::OPT_fsycl) && | ||
!Args.hasArg(options::OPT_nolibsycl)) { | ||
CmdArgs.push_back("-lsycl"); | ||
CmdArgs.push_back("-lsycl-devicelib-host"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, @mdtoguchi Thanks very much. |
||
// Use of -fintelfpga implies -lOpenCL. | ||
// FIXME: Adjust to use plugin interface when available. | ||
if (Args.hasArg(options::OPT_fintelfpga)) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,6 +139,7 @@ void visualstudio::Linker::ConstructJob(Compilation &C, const JobAction &JA, | |
CmdArgs.push_back("-defaultlib:sycld.lib"); | ||
else | ||
CmdArgs.push_back("-defaultlib:sycl.lib"); | ||
CmdArgs.push_back("-defaultlib:sycl-devicelib-host.lib"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, @mdtoguchi Thanks very much. |
||
} | ||
|
||
for (const auto *A : Args.filtered(options::OPT_foffload_static_lib_EQ)) | ||
|
Uh oh!
There was an error while loading. Please reload this page.