Alexey Sachkov
Alexey Sachkov
Motivation behind this change is that user can set different optimization levels at compil and link stages when separate compilation is performed: ``` clang++ -fsycl -c a.cpp -O2 -o a.o...
Two changes were made: 1. Driver passes an absolute path to an original source file through `-main-file-name` if integration footer is enabled. 2. Clang CodeGen uses the file specified through...
This document is still work in progress, publishing it as a draft to get early feedback
This PR introduces a few tests for `/source` route, which check that the app is able to correctly retrieve brew sources and send them back to user. It also introduces...
Added base type for implementing accessor iterators. Implemented `accessor::begin()` and `accessor::end()` methods.
The issue is submitted as a follow-up from #5348, where @bader highlighted a design problem: our compiler implementation of [optional kernel features](https://github.com/intel/llvm/blob/sycl/sycl/doc/design/OptionalDeviceFeatures.md) design is too tied with the runtime implementation,...
This issue is to track a follow-up from #5348: currently proposed implementation emits diagnostics without source location, making them much less usable. There is a way to propagate source location...
So, here is the link to a brew source: [source/msiongBI9oXz](https://homebrewery.naturalcrit.com/source/msiongBI9oXz), it is accessible and returns `200 OK`/`304 OK`. However, if I start modifying URL to request a source of a...
`sycl::detail::pi` is used in: https://github.com/oneapi-src/oneMKL/blob/6c5f7ea783a7fe828c0de3c064c3bc837727524d/src/blas/backends/cublas/cublas_scope_handle.cpp#L123 Please note there `detail` sub-namespace is reserved for implementations and there is no guarantees about its content. Not only that is non-portable, but it is...
Changes: - fixed descriptions of `get_local_linear_id` methods so they are not recursive anymore - fixed descriptions of `get_[group|local]_linear_range` methods to use correct return type and references - added clarification that...