├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── clarification_request.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── CI.yml │ └── open_cts_issue.yml ├── CODE_OF_CONDUCT.md ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── README_PROCESS.md ├── adoc ├── .gitignore ├── Makefile ├── chapters │ ├── acknowledgements.adoc │ ├── architecture.adoc │ ├── copyright-spec.adoc │ ├── device_compiler.adoc │ ├── extensions.adoc │ ├── feature_sets.adoc │ ├── glossary.adoc │ ├── host_backend.adoc │ ├── information_descriptors.adoc │ ├── introduction.adoc │ ├── opencl_backend.adoc │ ├── programming_interface.adoc │ ├── references.adoc │ └── what_changed.adoc ├── code │ ├── algorithms.cpp │ ├── anatomy.cpp │ ├── aspectTraitExample.cpp │ ├── attributes.cpp │ ├── basicParallelForGeneric.cpp │ ├── basicParallelForIntegral.cpp │ ├── basicParallelForItem.cpp │ ├── basicParallelForNumber.cpp │ ├── basicparallelfor.cpp │ ├── bundle-builtin-kernel.cpp │ ├── bundle-kernel-introspection.cpp │ ├── bundle-pre-compile.cpp │ ├── bundle-spec-constants.cpp │ ├── deviceHas.cpp │ ├── explicitcopy.cpp │ ├── handlingErrorCode.cpp │ ├── handlingException.cpp │ ├── lambdaNameExamples.cpp │ ├── largesample.cpp │ ├── myfunctor.cpp │ ├── mykernel.cpp │ ├── parallelForWithKernelHandler.cpp │ ├── parallelForWorkGroupWithKernelHandler.cpp │ ├── parallelfor.cpp │ ├── parallelforbarrier.cpp │ ├── parallelforworkgroup.cpp │ ├── parallelforworkgroup2.cpp │ ├── propertyExample.cpp │ ├── queueShortcuts.cpp │ ├── reduction.cpp │ ├── singleTaskWithKernelHandler.cpp │ ├── singletask.cpp │ ├── specialization_id.cpp │ ├── subbuffer.cpp │ ├── swizzle-example.cpp │ ├── sycl-external.cpp │ ├── twoOptionalFeatures.cpp │ ├── usingSpecConstants.cpp │ ├── usm_device.cpp │ └── usm_shared.cpp ├── config │ ├── README.md │ ├── accordion_toc.rb │ ├── accordion_toc │ │ └── extension.rb │ ├── api_xrefs.adoc │ ├── api_xrefs.rb │ ├── api_xrefs │ │ └── extension.rb │ ├── asciidoctor-mathematical-ext.rb │ ├── attribs.adoc │ ├── copyright-ccby.txt │ ├── katex_replace.rb │ ├── katex_replace │ │ └── extension.rb │ ├── khronos.css │ ├── loadable_html.rb │ ├── loadable_html │ │ └── extension.rb │ ├── optimize-pdf │ ├── rouge │ │ └── lib │ │ │ └── rouge │ │ │ ├── lexers │ │ │ └── sycl.rb │ │ │ └── themes │ │ │ └── sycl_spec.rb │ ├── rouge_sycl.rb │ ├── spec-macros.rb │ ├── spec-macros │ │ └── extension.rb │ ├── synopsis.rb │ ├── synopsis │ │ └── extension.rb │ └── themes │ │ └── pdf-theme.yml ├── extensions │ ├── index.adoc │ ├── sycl_khr_default_context.adoc │ ├── sycl_khr_dynamic_addrspace_cast.adoc │ ├── sycl_khr_group_interface.adoc │ ├── sycl_khr_max_work_group_queries.adoc │ ├── sycl_khr_queue_empty_query.adoc │ ├── sycl_khr_queue_flush.adoc │ ├── sycl_khr_static_addrspace_cast.adoc │ └── sycl_khr_work_item_queries.adoc ├── headers │ ├── Readme.txt │ ├── accessMode.h │ ├── accessProperties.h │ ├── accessTags.h │ ├── accessorBuffer.h │ ├── accessorDeprecatedConstant.h │ ├── accessorDeprecatedHost.h │ ├── accessorDeprecatedLocal.h │ ├── accessorHost.h │ ├── accessorLocal.h │ ├── accessorSampledImage.h │ ├── accessorUnsampledImage.h │ ├── algorithms │ │ ├── all_of.h │ │ ├── any_of.h │ │ ├── exclusive_scan.h │ │ ├── inclusive_scan.h │ │ ├── is_group.h │ │ ├── none_of.h │ │ ├── permute.h │ │ ├── reduce.h │ │ ├── select.h │ │ └── shift.h │ ├── aspectTraits.h │ ├── atomic.h │ ├── atomicoperations.h │ ├── atomicref.h │ ├── backends.h │ ├── buffer.h │ ├── bundle │ │ ├── deviceImageClass.h │ │ ├── freeFunctions.h │ │ ├── kernelBundleClass.h │ │ ├── kernelClass.h │ │ └── kernelIdClass.h │ ├── commandGroupHandler.h │ ├── common-byval.h │ ├── common-reference.h │ ├── context.h │ ├── contextInfo.h │ ├── device.h │ ├── deviceEnumClassAspect.h │ ├── deviceEvent.h │ ├── deviceInfo.h │ ├── deviceSelector.h │ ├── event.h │ ├── eventInfo.h │ ├── exception.h │ ├── expressingParallelism │ │ ├── classKernelHandler.h │ │ ├── classSpecializationId.h │ │ └── kernelHandlerSynopsis.h │ ├── functional.h │ ├── group.h │ ├── groups │ │ ├── barrier.h │ │ └── broadcast.h │ ├── handler │ │ └── useKernelBundle.h │ ├── hitem.h │ ├── hostTask │ │ ├── classHandler │ │ │ └── hostTask.h │ │ ├── classInteropHandle.h │ │ ├── classInteropHandle │ │ │ ├── constructors.h │ │ │ ├── getbackend.h │ │ │ └── getnativeX.h │ │ └── hostTaskSynopsis.h │ ├── id.h │ ├── identity.h │ ├── imageProperties.h │ ├── imageSampler.h │ ├── interop │ │ ├── templateFunctionGetNative.h │ │ ├── templateFunctionMakeX.h │ │ └── typeTraitsBackendTraits.h │ ├── item.h │ ├── kernelInfo.h │ ├── marray.h │ ├── memoryOrder.h │ ├── memoryScope.h │ ├── multipointer.h │ ├── multipointerlegacy.h │ ├── ndRange.h │ ├── nditem.h │ ├── openclBackend │ │ ├── createBundle.h │ │ └── samplerImagePair.h │ ├── openclcInterop.h │ ├── parallelFor.h │ ├── platform.h │ ├── platformInfo.h │ ├── pointer.h │ ├── priv.h │ ├── properties.h │ ├── queue.h │ ├── queueInfo.h │ ├── range.h │ ├── reducer.h │ ├── reduction.h │ ├── sampledImage.h │ ├── stream.h │ ├── subgroup.h │ ├── swizzled-vec.h │ ├── synchronization.h │ ├── unsampledImage.h │ └── vec.h ├── images │ ├── Makefile │ ├── device_to_device1.svg │ ├── device_to_device1.tikz │ ├── device_to_device2.svg │ ├── device_to_device2.tikz │ ├── host-acc.svg │ ├── host-acc.tikz │ ├── makesvg.adoc │ ├── overlap.svg │ ├── overlap.tikz │ ├── three-cg-one-queue.svg │ ├── three-cg-one-queue.tikz │ ├── three-cg-three-queue.svg │ └── three-cg-three-queue.tikz ├── katex │ ├── README.md │ ├── contrib │ │ ├── auto-render.js │ │ ├── auto-render.min.js │ │ ├── auto-render.mjs │ │ ├── copy-tex.css │ │ ├── copy-tex.js │ │ ├── copy-tex.min.css │ │ ├── copy-tex.min.js │ │ ├── copy-tex.mjs │ │ ├── mathtex-script-type.js │ │ ├── mathtex-script-type.min.js │ │ ├── mathtex-script-type.mjs │ │ ├── mhchem.js │ │ ├── mhchem.min.js │ │ ├── mhchem.mjs │ │ ├── render-a11y-string.js │ │ ├── render-a11y-string.min.js │ │ └── render-a11y-string.mjs │ ├── fonts │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.css │ ├── katex.js │ ├── katex.min.css │ ├── katex.min.js │ └── katex.mjs ├── logos │ ├── Khronos_Tagline_500px_June18.png │ └── SYCL_RGB_June16-inkscape-1500.png ├── rewriteTable.py ├── samples │ └── example.adoc ├── scripts │ ├── apiconventions.py │ ├── clang-format-diff.py │ ├── doctransformer.py │ ├── genanchorlinks.py │ ├── install-rouge.sh │ ├── reflib.py │ ├── reflow.py │ ├── spec_tools │ │ ├── __init__.py │ │ └── conventions.py │ ├── squash-commits.sh │ ├── syclconventions.py │ ├── update-copyright.sh │ ├── verify_reflow_conformance.sh │ └── vuidCounts.py ├── sycl-2020.pdf ├── syclbase.adoc └── translate_math.js └── sycl_version.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/clarification_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.github/ISSUE_TEMPLATE/clarification_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: [] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/open_cts_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/.github/workflows/open_cts_issue.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/README.md -------------------------------------------------------------------------------- /README_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/README_PROCESS.md -------------------------------------------------------------------------------- /adoc/.gitignore: -------------------------------------------------------------------------------- 1 | .asciidoctor 2 | -------------------------------------------------------------------------------- /adoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/Makefile -------------------------------------------------------------------------------- /adoc/chapters/acknowledgements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/acknowledgements.adoc -------------------------------------------------------------------------------- /adoc/chapters/architecture.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/architecture.adoc -------------------------------------------------------------------------------- /adoc/chapters/copyright-spec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/copyright-spec.adoc -------------------------------------------------------------------------------- /adoc/chapters/device_compiler.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/device_compiler.adoc -------------------------------------------------------------------------------- /adoc/chapters/extensions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/extensions.adoc -------------------------------------------------------------------------------- /adoc/chapters/feature_sets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/feature_sets.adoc -------------------------------------------------------------------------------- /adoc/chapters/glossary.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/glossary.adoc -------------------------------------------------------------------------------- /adoc/chapters/host_backend.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/host_backend.adoc -------------------------------------------------------------------------------- /adoc/chapters/information_descriptors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/information_descriptors.adoc -------------------------------------------------------------------------------- /adoc/chapters/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/introduction.adoc -------------------------------------------------------------------------------- /adoc/chapters/opencl_backend.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/opencl_backend.adoc -------------------------------------------------------------------------------- /adoc/chapters/programming_interface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/programming_interface.adoc -------------------------------------------------------------------------------- /adoc/chapters/references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/references.adoc -------------------------------------------------------------------------------- /adoc/chapters/what_changed.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/chapters/what_changed.adoc -------------------------------------------------------------------------------- /adoc/code/algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/algorithms.cpp -------------------------------------------------------------------------------- /adoc/code/anatomy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/anatomy.cpp -------------------------------------------------------------------------------- /adoc/code/aspectTraitExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/aspectTraitExample.cpp -------------------------------------------------------------------------------- /adoc/code/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/attributes.cpp -------------------------------------------------------------------------------- /adoc/code/basicParallelForGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/basicParallelForGeneric.cpp -------------------------------------------------------------------------------- /adoc/code/basicParallelForIntegral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/basicParallelForIntegral.cpp -------------------------------------------------------------------------------- /adoc/code/basicParallelForItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/basicParallelForItem.cpp -------------------------------------------------------------------------------- /adoc/code/basicParallelForNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/basicParallelForNumber.cpp -------------------------------------------------------------------------------- /adoc/code/basicparallelfor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/basicparallelfor.cpp -------------------------------------------------------------------------------- /adoc/code/bundle-builtin-kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/bundle-builtin-kernel.cpp -------------------------------------------------------------------------------- /adoc/code/bundle-kernel-introspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/bundle-kernel-introspection.cpp -------------------------------------------------------------------------------- /adoc/code/bundle-pre-compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/bundle-pre-compile.cpp -------------------------------------------------------------------------------- /adoc/code/bundle-spec-constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/bundle-spec-constants.cpp -------------------------------------------------------------------------------- /adoc/code/deviceHas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/deviceHas.cpp -------------------------------------------------------------------------------- /adoc/code/explicitcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/explicitcopy.cpp -------------------------------------------------------------------------------- /adoc/code/handlingErrorCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/handlingErrorCode.cpp -------------------------------------------------------------------------------- /adoc/code/handlingException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/handlingException.cpp -------------------------------------------------------------------------------- /adoc/code/lambdaNameExamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/lambdaNameExamples.cpp -------------------------------------------------------------------------------- /adoc/code/largesample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/largesample.cpp -------------------------------------------------------------------------------- /adoc/code/myfunctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/myfunctor.cpp -------------------------------------------------------------------------------- /adoc/code/mykernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/mykernel.cpp -------------------------------------------------------------------------------- /adoc/code/parallelForWithKernelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelForWithKernelHandler.cpp -------------------------------------------------------------------------------- /adoc/code/parallelForWorkGroupWithKernelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelForWorkGroupWithKernelHandler.cpp -------------------------------------------------------------------------------- /adoc/code/parallelfor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelfor.cpp -------------------------------------------------------------------------------- /adoc/code/parallelforbarrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelforbarrier.cpp -------------------------------------------------------------------------------- /adoc/code/parallelforworkgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelforworkgroup.cpp -------------------------------------------------------------------------------- /adoc/code/parallelforworkgroup2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/parallelforworkgroup2.cpp -------------------------------------------------------------------------------- /adoc/code/propertyExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/propertyExample.cpp -------------------------------------------------------------------------------- /adoc/code/queueShortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/queueShortcuts.cpp -------------------------------------------------------------------------------- /adoc/code/reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/reduction.cpp -------------------------------------------------------------------------------- /adoc/code/singleTaskWithKernelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/singleTaskWithKernelHandler.cpp -------------------------------------------------------------------------------- /adoc/code/singletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/singletask.cpp -------------------------------------------------------------------------------- /adoc/code/specialization_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/specialization_id.cpp -------------------------------------------------------------------------------- /adoc/code/subbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/subbuffer.cpp -------------------------------------------------------------------------------- /adoc/code/swizzle-example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/swizzle-example.cpp -------------------------------------------------------------------------------- /adoc/code/sycl-external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/sycl-external.cpp -------------------------------------------------------------------------------- /adoc/code/twoOptionalFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/twoOptionalFeatures.cpp -------------------------------------------------------------------------------- /adoc/code/usingSpecConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/usingSpecConstants.cpp -------------------------------------------------------------------------------- /adoc/code/usm_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/usm_device.cpp -------------------------------------------------------------------------------- /adoc/code/usm_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/code/usm_shared.cpp -------------------------------------------------------------------------------- /adoc/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/README.md -------------------------------------------------------------------------------- /adoc/config/accordion_toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/accordion_toc.rb -------------------------------------------------------------------------------- /adoc/config/accordion_toc/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/accordion_toc/extension.rb -------------------------------------------------------------------------------- /adoc/config/api_xrefs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/api_xrefs.adoc -------------------------------------------------------------------------------- /adoc/config/api_xrefs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/api_xrefs.rb -------------------------------------------------------------------------------- /adoc/config/api_xrefs/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/api_xrefs/extension.rb -------------------------------------------------------------------------------- /adoc/config/asciidoctor-mathematical-ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/asciidoctor-mathematical-ext.rb -------------------------------------------------------------------------------- /adoc/config/attribs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/attribs.adoc -------------------------------------------------------------------------------- /adoc/config/copyright-ccby.txt: -------------------------------------------------------------------------------- 1 | Copyright 2014-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /adoc/config/katex_replace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/katex_replace.rb -------------------------------------------------------------------------------- /adoc/config/katex_replace/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/katex_replace/extension.rb -------------------------------------------------------------------------------- /adoc/config/khronos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/khronos.css -------------------------------------------------------------------------------- /adoc/config/loadable_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/loadable_html.rb -------------------------------------------------------------------------------- /adoc/config/loadable_html/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/loadable_html/extension.rb -------------------------------------------------------------------------------- /adoc/config/optimize-pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/optimize-pdf -------------------------------------------------------------------------------- /adoc/config/rouge/lib/rouge/lexers/sycl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/rouge/lib/rouge/lexers/sycl.rb -------------------------------------------------------------------------------- /adoc/config/rouge/lib/rouge/themes/sycl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/rouge/lib/rouge/themes/sycl_spec.rb -------------------------------------------------------------------------------- /adoc/config/rouge_sycl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/rouge_sycl.rb -------------------------------------------------------------------------------- /adoc/config/spec-macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/spec-macros.rb -------------------------------------------------------------------------------- /adoc/config/spec-macros/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/spec-macros/extension.rb -------------------------------------------------------------------------------- /adoc/config/synopsis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/synopsis.rb -------------------------------------------------------------------------------- /adoc/config/synopsis/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/synopsis/extension.rb -------------------------------------------------------------------------------- /adoc/config/themes/pdf-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/config/themes/pdf-theme.yml -------------------------------------------------------------------------------- /adoc/extensions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/index.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_default_context.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_default_context.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_dynamic_addrspace_cast.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_dynamic_addrspace_cast.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_group_interface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_group_interface.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_max_work_group_queries.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_max_work_group_queries.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_queue_empty_query.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_queue_empty_query.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_queue_flush.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_queue_flush.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_static_addrspace_cast.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_static_addrspace_cast.adoc -------------------------------------------------------------------------------- /adoc/extensions/sycl_khr_work_item_queries.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/extensions/sycl_khr_work_item_queries.adoc -------------------------------------------------------------------------------- /adoc/headers/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/Readme.txt -------------------------------------------------------------------------------- /adoc/headers/accessMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessMode.h -------------------------------------------------------------------------------- /adoc/headers/accessProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessProperties.h -------------------------------------------------------------------------------- /adoc/headers/accessTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessTags.h -------------------------------------------------------------------------------- /adoc/headers/accessorBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorBuffer.h -------------------------------------------------------------------------------- /adoc/headers/accessorDeprecatedConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorDeprecatedConstant.h -------------------------------------------------------------------------------- /adoc/headers/accessorDeprecatedHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorDeprecatedHost.h -------------------------------------------------------------------------------- /adoc/headers/accessorDeprecatedLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorDeprecatedLocal.h -------------------------------------------------------------------------------- /adoc/headers/accessorHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorHost.h -------------------------------------------------------------------------------- /adoc/headers/accessorLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorLocal.h -------------------------------------------------------------------------------- /adoc/headers/accessorSampledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorSampledImage.h -------------------------------------------------------------------------------- /adoc/headers/accessorUnsampledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/accessorUnsampledImage.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/all_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/all_of.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/any_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/any_of.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/exclusive_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/exclusive_scan.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/inclusive_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/inclusive_scan.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/is_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/is_group.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/none_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/none_of.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/permute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/permute.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/reduce.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/select.h -------------------------------------------------------------------------------- /adoc/headers/algorithms/shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/algorithms/shift.h -------------------------------------------------------------------------------- /adoc/headers/aspectTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/aspectTraits.h -------------------------------------------------------------------------------- /adoc/headers/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/atomic.h -------------------------------------------------------------------------------- /adoc/headers/atomicoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/atomicoperations.h -------------------------------------------------------------------------------- /adoc/headers/atomicref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/atomicref.h -------------------------------------------------------------------------------- /adoc/headers/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/backends.h -------------------------------------------------------------------------------- /adoc/headers/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/buffer.h -------------------------------------------------------------------------------- /adoc/headers/bundle/deviceImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/bundle/deviceImageClass.h -------------------------------------------------------------------------------- /adoc/headers/bundle/freeFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/bundle/freeFunctions.h -------------------------------------------------------------------------------- /adoc/headers/bundle/kernelBundleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/bundle/kernelBundleClass.h -------------------------------------------------------------------------------- /adoc/headers/bundle/kernelClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/bundle/kernelClass.h -------------------------------------------------------------------------------- /adoc/headers/bundle/kernelIdClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/bundle/kernelIdClass.h -------------------------------------------------------------------------------- /adoc/headers/commandGroupHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/commandGroupHandler.h -------------------------------------------------------------------------------- /adoc/headers/common-byval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/common-byval.h -------------------------------------------------------------------------------- /adoc/headers/common-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/common-reference.h -------------------------------------------------------------------------------- /adoc/headers/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/context.h -------------------------------------------------------------------------------- /adoc/headers/contextInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/contextInfo.h -------------------------------------------------------------------------------- /adoc/headers/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/device.h -------------------------------------------------------------------------------- /adoc/headers/deviceEnumClassAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/deviceEnumClassAspect.h -------------------------------------------------------------------------------- /adoc/headers/deviceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/deviceEvent.h -------------------------------------------------------------------------------- /adoc/headers/deviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/deviceInfo.h -------------------------------------------------------------------------------- /adoc/headers/deviceSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/deviceSelector.h -------------------------------------------------------------------------------- /adoc/headers/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/event.h -------------------------------------------------------------------------------- /adoc/headers/eventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/eventInfo.h -------------------------------------------------------------------------------- /adoc/headers/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/exception.h -------------------------------------------------------------------------------- /adoc/headers/expressingParallelism/classKernelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/expressingParallelism/classKernelHandler.h -------------------------------------------------------------------------------- /adoc/headers/expressingParallelism/classSpecializationId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/expressingParallelism/classSpecializationId.h -------------------------------------------------------------------------------- /adoc/headers/expressingParallelism/kernelHandlerSynopsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/expressingParallelism/kernelHandlerSynopsis.h -------------------------------------------------------------------------------- /adoc/headers/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/functional.h -------------------------------------------------------------------------------- /adoc/headers/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/group.h -------------------------------------------------------------------------------- /adoc/headers/groups/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/groups/barrier.h -------------------------------------------------------------------------------- /adoc/headers/groups/broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/groups/broadcast.h -------------------------------------------------------------------------------- /adoc/headers/handler/useKernelBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/handler/useKernelBundle.h -------------------------------------------------------------------------------- /adoc/headers/hitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hitem.h -------------------------------------------------------------------------------- /adoc/headers/hostTask/classHandler/hostTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hostTask/classHandler/hostTask.h -------------------------------------------------------------------------------- /adoc/headers/hostTask/classInteropHandle.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011-2025 The Khronos Group, Inc. 2 | // SPDX-License-Identifier: MIT 3 | 4 | class interop_handle; 5 | -------------------------------------------------------------------------------- /adoc/headers/hostTask/classInteropHandle/constructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hostTask/classInteropHandle/constructors.h -------------------------------------------------------------------------------- /adoc/headers/hostTask/classInteropHandle/getbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hostTask/classInteropHandle/getbackend.h -------------------------------------------------------------------------------- /adoc/headers/hostTask/classInteropHandle/getnativeX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hostTask/classInteropHandle/getnativeX.h -------------------------------------------------------------------------------- /adoc/headers/hostTask/hostTaskSynopsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/hostTask/hostTaskSynopsis.h -------------------------------------------------------------------------------- /adoc/headers/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/id.h -------------------------------------------------------------------------------- /adoc/headers/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/identity.h -------------------------------------------------------------------------------- /adoc/headers/imageProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/imageProperties.h -------------------------------------------------------------------------------- /adoc/headers/imageSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/imageSampler.h -------------------------------------------------------------------------------- /adoc/headers/interop/templateFunctionGetNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/interop/templateFunctionGetNative.h -------------------------------------------------------------------------------- /adoc/headers/interop/templateFunctionMakeX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/interop/templateFunctionMakeX.h -------------------------------------------------------------------------------- /adoc/headers/interop/typeTraitsBackendTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/interop/typeTraitsBackendTraits.h -------------------------------------------------------------------------------- /adoc/headers/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/item.h -------------------------------------------------------------------------------- /adoc/headers/kernelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/kernelInfo.h -------------------------------------------------------------------------------- /adoc/headers/marray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/marray.h -------------------------------------------------------------------------------- /adoc/headers/memoryOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/memoryOrder.h -------------------------------------------------------------------------------- /adoc/headers/memoryScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/memoryScope.h -------------------------------------------------------------------------------- /adoc/headers/multipointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/multipointer.h -------------------------------------------------------------------------------- /adoc/headers/multipointerlegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/multipointerlegacy.h -------------------------------------------------------------------------------- /adoc/headers/ndRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/ndRange.h -------------------------------------------------------------------------------- /adoc/headers/nditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/nditem.h -------------------------------------------------------------------------------- /adoc/headers/openclBackend/createBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/openclBackend/createBundle.h -------------------------------------------------------------------------------- /adoc/headers/openclBackend/samplerImagePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/openclBackend/samplerImagePair.h -------------------------------------------------------------------------------- /adoc/headers/openclcInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/openclcInterop.h -------------------------------------------------------------------------------- /adoc/headers/parallelFor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/parallelFor.h -------------------------------------------------------------------------------- /adoc/headers/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/platform.h -------------------------------------------------------------------------------- /adoc/headers/platformInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/platformInfo.h -------------------------------------------------------------------------------- /adoc/headers/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/pointer.h -------------------------------------------------------------------------------- /adoc/headers/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/priv.h -------------------------------------------------------------------------------- /adoc/headers/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/properties.h -------------------------------------------------------------------------------- /adoc/headers/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/queue.h -------------------------------------------------------------------------------- /adoc/headers/queueInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/queueInfo.h -------------------------------------------------------------------------------- /adoc/headers/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/range.h -------------------------------------------------------------------------------- /adoc/headers/reducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/reducer.h -------------------------------------------------------------------------------- /adoc/headers/reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/reduction.h -------------------------------------------------------------------------------- /adoc/headers/sampledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/sampledImage.h -------------------------------------------------------------------------------- /adoc/headers/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/stream.h -------------------------------------------------------------------------------- /adoc/headers/subgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/subgroup.h -------------------------------------------------------------------------------- /adoc/headers/swizzled-vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/swizzled-vec.h -------------------------------------------------------------------------------- /adoc/headers/synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/synchronization.h -------------------------------------------------------------------------------- /adoc/headers/unsampledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/unsampledImage.h -------------------------------------------------------------------------------- /adoc/headers/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/headers/vec.h -------------------------------------------------------------------------------- /adoc/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/Makefile -------------------------------------------------------------------------------- /adoc/images/device_to_device1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/device_to_device1.svg -------------------------------------------------------------------------------- /adoc/images/device_to_device1.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/device_to_device1.tikz -------------------------------------------------------------------------------- /adoc/images/device_to_device2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/device_to_device2.svg -------------------------------------------------------------------------------- /adoc/images/device_to_device2.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/device_to_device2.tikz -------------------------------------------------------------------------------- /adoc/images/host-acc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/host-acc.svg -------------------------------------------------------------------------------- /adoc/images/host-acc.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/host-acc.tikz -------------------------------------------------------------------------------- /adoc/images/makesvg.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/makesvg.adoc -------------------------------------------------------------------------------- /adoc/images/overlap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/overlap.svg -------------------------------------------------------------------------------- /adoc/images/overlap.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/overlap.tikz -------------------------------------------------------------------------------- /adoc/images/three-cg-one-queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/three-cg-one-queue.svg -------------------------------------------------------------------------------- /adoc/images/three-cg-one-queue.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/three-cg-one-queue.tikz -------------------------------------------------------------------------------- /adoc/images/three-cg-three-queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/three-cg-three-queue.svg -------------------------------------------------------------------------------- /adoc/images/three-cg-three-queue.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/images/three-cg-three-queue.tikz -------------------------------------------------------------------------------- /adoc/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/README.md -------------------------------------------------------------------------------- /adoc/katex/contrib/auto-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/auto-render.js -------------------------------------------------------------------------------- /adoc/katex/contrib/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/auto-render.min.js -------------------------------------------------------------------------------- /adoc/katex/contrib/auto-render.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/auto-render.mjs -------------------------------------------------------------------------------- /adoc/katex/contrib/copy-tex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/copy-tex.css -------------------------------------------------------------------------------- /adoc/katex/contrib/copy-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/copy-tex.js -------------------------------------------------------------------------------- /adoc/katex/contrib/copy-tex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/copy-tex.min.css -------------------------------------------------------------------------------- /adoc/katex/contrib/copy-tex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/copy-tex.min.js -------------------------------------------------------------------------------- /adoc/katex/contrib/copy-tex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/copy-tex.mjs -------------------------------------------------------------------------------- /adoc/katex/contrib/mathtex-script-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mathtex-script-type.js -------------------------------------------------------------------------------- /adoc/katex/contrib/mathtex-script-type.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mathtex-script-type.min.js -------------------------------------------------------------------------------- /adoc/katex/contrib/mathtex-script-type.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mathtex-script-type.mjs -------------------------------------------------------------------------------- /adoc/katex/contrib/mhchem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mhchem.js -------------------------------------------------------------------------------- /adoc/katex/contrib/mhchem.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mhchem.min.js -------------------------------------------------------------------------------- /adoc/katex/contrib/mhchem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/mhchem.mjs -------------------------------------------------------------------------------- /adoc/katex/contrib/render-a11y-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/render-a11y-string.js -------------------------------------------------------------------------------- /adoc/katex/contrib/render-a11y-string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/render-a11y-string.min.js -------------------------------------------------------------------------------- /adoc/katex/contrib/render-a11y-string.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/contrib/render-a11y-string.mjs -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /adoc/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /adoc/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/katex.css -------------------------------------------------------------------------------- /adoc/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/katex.js -------------------------------------------------------------------------------- /adoc/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/katex.min.css -------------------------------------------------------------------------------- /adoc/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/katex.min.js -------------------------------------------------------------------------------- /adoc/katex/katex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/katex/katex.mjs -------------------------------------------------------------------------------- /adoc/logos/Khronos_Tagline_500px_June18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/logos/Khronos_Tagline_500px_June18.png -------------------------------------------------------------------------------- /adoc/logos/SYCL_RGB_June16-inkscape-1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/logos/SYCL_RGB_June16-inkscape-1500.png -------------------------------------------------------------------------------- /adoc/rewriteTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/rewriteTable.py -------------------------------------------------------------------------------- /adoc/samples/example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/samples/example.adoc -------------------------------------------------------------------------------- /adoc/scripts/apiconventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/apiconventions.py -------------------------------------------------------------------------------- /adoc/scripts/clang-format-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/clang-format-diff.py -------------------------------------------------------------------------------- /adoc/scripts/doctransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/doctransformer.py -------------------------------------------------------------------------------- /adoc/scripts/genanchorlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/genanchorlinks.py -------------------------------------------------------------------------------- /adoc/scripts/install-rouge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/install-rouge.sh -------------------------------------------------------------------------------- /adoc/scripts/reflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/reflib.py -------------------------------------------------------------------------------- /adoc/scripts/reflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/reflow.py -------------------------------------------------------------------------------- /adoc/scripts/spec_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/spec_tools/__init__.py -------------------------------------------------------------------------------- /adoc/scripts/spec_tools/conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/spec_tools/conventions.py -------------------------------------------------------------------------------- /adoc/scripts/squash-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/squash-commits.sh -------------------------------------------------------------------------------- /adoc/scripts/syclconventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/syclconventions.py -------------------------------------------------------------------------------- /adoc/scripts/update-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/update-copyright.sh -------------------------------------------------------------------------------- /adoc/scripts/verify_reflow_conformance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/verify_reflow_conformance.sh -------------------------------------------------------------------------------- /adoc/scripts/vuidCounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/scripts/vuidCounts.py -------------------------------------------------------------------------------- /adoc/sycl-2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/sycl-2020.pdf -------------------------------------------------------------------------------- /adoc/syclbase.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/syclbase.adoc -------------------------------------------------------------------------------- /adoc/translate_math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/adoc/translate_math.js -------------------------------------------------------------------------------- /sycl_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/SYCL-Docs/HEAD/sycl_version.txt --------------------------------------------------------------------------------