8000 Tags · GYDmedwin/llvm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: GYDmedwin/llvm

Tags

2021-09

Toggle 2021-09's commit message
2021-09 release

sycl-nightly/20211118

Toggle sycl-nightly/20211118's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Fix sub-group mask for smaller SG sizes (intel#4916)

Fix accessing sub-group mask when sub-group size is less than 32. Make sure that false is returned for positions that are more than sub-group size.

Update the test to check this case.

sycl-nightly/20211117

Toggle sycl-nightly/20211117's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Generate and install stripped PDBs for SYCL libraries (intel#4915

)

Adds stripped PDB files for SYCL library and the PI plugins when
building with MSVC. Full PDB files will also be generated, but only the
stripped variants will be installed.

The stripped PDB files will only be generated and installed if the used
linker supports the /PDBSTRIPPED options. LLD does not currently support
this option. If the stripped PDB is not generated, no PDB files are
installed for the SYCL libraries and PI plugins.

Signed-off-by: Steffen Larsen <steffen.larsen@intel.com>

sycl-nightly/20211116

Toggle sycl-nightly/20211116's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] group algorithm routines with broadened supported types (intel…

…#4910)

Signed-off-by: Chris Perkins <chris.perkins@intel.com>

sycl-nightly/20211115

Toggle sycl-nightly/20211115's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[Driver][SYCL] Update default SPIR device arch to correlate with host (

…intel#4936)

The default target arch for the device compilation when using -fsycl
should match the target arch of the host compilation.

x86_64 (64-bit) -> spir64
i686 (32-bit)   -> spir

Adjust locations where this is set (offload and device-only compiles)
and modify the corresponding tests.

sycl-nightly/20211113

Toggle sycl-nightly/20211113's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Eliminate leak of programs from program/kernel in-memory cache (

…intel#4949)

Signed-off-by: Sergey Kanaev <sergey.kanaev@intel.com>

sycl-nightly/20211112

Toggle sycl-nightly/20211112's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL][DOC] Proposal to add number of HW threads per EU query (intel#…

…4876)

It follows https://spec.oneapi.io/level-zero/latest/core/api.html#ze-device-thread-t
Also the patch removes several 'supported only on L0 disclaimers'
since recently an OpenCL extension was released:
https://github.com/KhronosGroup/OpenCL-Docs/blob/master/extensions/cl_intel_device_attribute_query.asciidoc

Signed-off-by: Dmitry Sidorov <dmitry.sidorov@intel.com>

sycl-nightly/20211111

Toggle sycl-nightly/20211111's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Fix the unused parameter warnings in the level_zero backend (i…

…ntel#4938)

When the compiler is built with -Werror argument, the following errors
occur:

include/sycl/ext/oneapi/backend/level_zero.hpp:125:26: error: unused parameter 'Handler' [-Werror,-Wunused-parameter]
    const async_handler &Handler) {
                         ^
include/sycl/ext/oneapi/backend/level_zero.hpp:136:55: error: unused parameter 'Handler' [-Werror,-Wunused-parameter]
    const context &TargetContext, const async_handler Handler) {
                                                      ^
2 errors generated.

In order to not break the API, the parameters is still declared in the
function's signatures but marked as unused via the (void)Handler
expressions.

sycl-nightly/20211110

Toggle sycl-nightly/20211110's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Fix for undefined Result on some code paths. (intel#4924)

Signed-off-by: Rajiv Deodhar <rajiv.deodhar@intel.com>

sycl-nightly/20211109

Toggle sycl-nightly/20211109's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL][CUDA] Set cuda_piextUSMEnqueuePrefetch to fail for windows (in…

…tel#4908)

`cuMemPrefetchAsync` currently has issues on Windows machines, this appears to be a problem with CUDA and not the plugins usage of the function.
I think `cuda_piextUSMEnqueuePrefetch` which uses `cuMemPrefetchAsync` should be set to fail for windows and send a message to the user that this functionality is not available on windows devices.

More details: intel#4809
0