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

Tags: aipi-inc/llvm-6

Tags

2021-WW26

Toggle 2021-WW26's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix post-commit failure after 34e1f7c (intel#3959)

sycl-nightly/20210620

Toggle sycl-nightly/20210620's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[ESIMD][NFC] Remove constexpr from simd class ctors (intel#3944)

* [ESIMD][NFC] Remove constexpr from simd class ctors

Also separate implementations of copy and implicit conversion constructors.

2021-WW25

Toggle 2021-WW25's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[ESIMD] Change simd::operator[] to return simd_view (intel#3926)

* [ESIMD] Change simd::operator[] to return simd_view
This allows assignment to an element via the '[]' operator.

sycl-nightly/20210619

Toggle sycl-nightly/20210619's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Use relative paths for SYCL headers install (intel#3940)

`${SYCL_INCLUDE_DEPLOY_DIR}` is defined as
`${CMAKE_INSTALL_PREFIX}/${SYCL_INCLUDE_DIR}`, this is unnecessary
because when using relative paths, CMake will automatically prefix
install destinations with `${CMAKE_INSTALL_PREFIX}`, so we can directly
use `${SYCL_INCLUDE_DIR}`.

It is also preferable to use relative paths, because it enables the
`DESTDIR` mechanism that can make it possible to change the install
prefix after the configuration, with for example things like `make
DESTDIR=/new/install/prefix install`, or when manually calling the CMake
install scripts.

This patch has no functional changes and should have no effect on
existing builds, aside from enabling `DESTDIR`.

sycl-nightly/20210618

Toggle sycl-nightly/20210618's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[ESIMD][NFC] Combined scalar implementation of esimd_fbh (intel#3943)

sycl-nightly/20210617

Toggle sycl-nightly/20210617's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Add support for variable templates to integration footer (inte…

…l#3937)

The integration footer didn't properly handle variable templates, which
this does.  We had to change the way we 'print' the names of the types,
since the previous version wouldn't print template arguments.

sycl-nightly/20210616

Toggle sycl-nightly/20210616's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[sycl-post-link] Add device image property for assert feature (intel#…

…3881)

A property with the name of the kernel is added whenever the kernel uses assert.
Details:
https://github.com/intel/llvm/blob/sycl/sycl/doc/Assert.md#online-linking-fallback-__devicelib_assert_fail

sycl-nightly/20210615

Toggle sycl-nightly/20210615's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[Driver][SYCL] Do not add integration header to integration footer co…

…mpile (intel#3907)

When compiling the integration footer with -fsycl-host-compiler, we need
to be sure that the integration header is only added to the preprocessing
step as opposed to being added all the time.  When added all the time, the
header would be processed twice, causing compilation errors due to code
duplication.

sycl-nightly/20210614

Toggle sycl-nightly/20210614's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Implement __builtin_sycl_unique_id to support spec-constants (i…

…ntel#3890)

This works similar to the unique-stable-name implementation, except it
instead takes a DeclRefExpr to a VarDecl (with Global Storage!), and
produces the mangled name of the variable.  For variables without
external linkage, it prepends it with the unique identifier passed on
the command line from the driver.

sycl-nightly/20210612

Toggle sycl-nightly/20210612's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[Driver][SYCL] Retain comments when preprocessing for integration foo…

…ter (intel#3918)

When generating the source file that has the integration footer appended
too, we want to retain the comments, which will improve verification
and diagnostic information.
0