-
Updated
Sep 30, 2020 - C++
#
sycl
Here are 42 public repositories matching this topic...
OpenGL Mathematics (GLM)
yu810226
commented
Oct 10, 2017
load and store functions are not implemented for vec class now.
tomdeakin
commented
Jun 8, 2020
Just an FYI whilst I was trawling through the ROCm GitHub page:
https://rocmdocs.amd.com/en/latest/Programming_Guides/Programming-Guides.html#
This is a set of simple programs that can be used to explore the features of a parallel platform.
c
c-plus-plus
travis-ci
julia
opencl
boost
openmp
mpi
parallel-computing
python3
pgas
coarray-fortran
threading
tbb
kokkos
shmem
charmplusplus
sycl
parallel-programming
fortran2008
-
Updated
Sep 28, 2020 - C
DuncanMcBain
commented
Sep 9, 2019
The cl_ types are not needed in general, however they should still be kept in the OpenCL C interop sample code.
A machine vision library written in SYCL and C++ that shows performance-portable implementation of graph algorithms
-
Updated
Apr 2, 2020 - C++
SYCL Academy, a set of learning materials for SYCL heterogeneous programming
-
Updated
Sep 15, 2020 - JavaScript
SYCL-DNN is a library implementing neural network algorithms written using SYCL
-
Updated
Aug 20, 2020 - C++
oneAPI Specification source files
deep-learning
analytics
accelerator
linear-algebra
video-processing
sycl
parallel-programming
oneapi
-
Updated
Sep 29, 2020 - Python
OpenCL port of TensorFlow using SYCL, generic instructions for building are here:
-
Updated
Mar 31, 2020 - C++
-
Updated
Sep 5, 2020 - C
-
Updated
Oct 3, 2020 - C++
Conan package for ComputeCpp
-
Updated
Jul 31, 2018 - CMake
A portable GPU/CPU Path Tracer library powered by SYCL. (OpenCL/CUDA/OpenMP)
-
Updated
Feb 19, 2019 - C++
cjdb
commented
Mar 7, 2018
Turn on -fstrict-aliasing -Wstrict-aliasing.
-
Updated
Aug 18, 2020 - C
Improve this page
Add a description, image, and links to the sycl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sycl topic, visit your repo's landing page and select "manage topics."
If it is needed to pass the same option from driver to both host and device compilers, then it must be added two-times - see
clang/lib/Driver/ToolChains/Clang.cpp, for example:4124:
CmdArgs.push_back("-fsycl");...
6150:
CmdArgs.push_back("-fsycl");This is quite error prone and inconvenient - should be automated: option placed in one place, driver does the duplication itself.