├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.TXT ├── Makefile ├── README.rst ├── cmake ├── FindTBB.cmake ├── FindtriSYCL.cmake └── triSYCLConfig.cmake.in ├── dev └── publish_Doxygen ├── doc ├── SYCL-API.doxygen ├── WWW │ └── index.html ├── about-sycl.rst ├── architecture.rst ├── cmake.rst ├── common-includes.rst ├── environment.rst ├── images │ ├── 2018-01-22--26-triSYCL-workflow-SPIR.svg │ └── triSYCL-device-compiler-workflow.svg ├── macros.rst ├── possible-futures.rst ├── testing.rst └── triSYCL-implementation.doxygen ├── include ├── CL │ └── sycl.hpp ├── sycl │ ├── sycl.hpp │ └── vendor └── triSYCL │ ├── access.hpp │ ├── accessor.hpp │ ├── accessor │ └── detail │ │ ├── accessor_base.hpp │ │ └── local_accessor.hpp │ ├── address_space.hpp │ ├── address_space │ └── detail │ │ └── address_space.hpp │ ├── allocator.hpp │ ├── buffer.hpp │ ├── buffer │ └── detail │ │ ├── accessor.hpp │ │ ├── buffer.hpp │ │ ├── buffer_base.hpp │ │ └── buffer_waiter.hpp │ ├── buffer_allocator.hpp │ ├── command_group │ └── detail │ │ └── task.hpp │ ├── context.hpp │ ├── context │ └── detail │ │ ├── context.hpp │ │ ├── context_tail.hpp │ │ ├── host_context.hpp │ │ └── opencl_context.hpp │ ├── detail │ ├── SPIR │ │ ├── opencl_spir.h │ │ ├── opencl_spir_helpers.hpp │ │ └── opencl_spir_req.h │ ├── alignment_helper.hpp │ ├── all_true.hpp │ ├── array_tuple_helpers.hpp │ ├── cache.hpp │ ├── container_element_aspect.hpp │ ├── debug.hpp │ ├── default_classes.hpp │ ├── fiber │ │ ├── pooled_shared_work.hpp │ │ └── pooled_work_stealing.hpp │ ├── fiber_pool.hpp │ ├── global_config.hpp │ ├── instantiate_kernel.hpp │ ├── linear_id.hpp │ ├── overloaded.hpp │ ├── property.hpp │ ├── shared_ptr_implementation.hpp │ ├── singleton.hpp │ ├── small_array.hpp │ └── unimplemented.hpp │ ├── device.hpp │ ├── device │ └── detail │ │ ├── device.hpp │ │ ├── device_tail.hpp │ │ ├── host_device.hpp │ │ ├── opencl_device.hpp │ │ └── opencl_device_tail.hpp │ ├── device_runtime.hpp │ ├── device_selector.hpp │ ├── device_selector │ └── detail │ │ └── device_selector_tail.hpp │ ├── error_handler.hpp │ ├── event.hpp │ ├── event │ └── detail │ │ ├── event.hpp │ │ ├── host_event.hpp │ │ └── opencl_event.hpp │ ├── exception.hpp │ ├── group.hpp │ ├── h_item.hpp │ ├── half.hpp │ ├── handler.hpp │ ├── id.hpp │ ├── image.hpp │ ├── info │ ├── context.hpp │ ├── device.hpp │ ├── event.hpp │ ├── param_traits.hpp │ ├── platform.hpp │ └── queue.hpp │ ├── item.hpp │ ├── kernel.hpp │ ├── kernel │ └── detail │ │ ├── kernel.hpp │ │ └── opencl_kernel.hpp │ ├── math.hpp │ ├── nd_item.hpp │ ├── nd_range.hpp │ ├── opencl_types.hpp │ ├── parallelism.hpp │ ├── parallelism │ └── detail │ │ ├── parallelism.hpp │ │ └── parallelism_tbb.hpp │ ├── pipe.hpp │ ├── platform.hpp │ ├── platform │ └── detail │ │ ├── host_platform.hpp │ │ ├── host_platform_tail.hpp │ │ ├── opencl_platform.hpp │ │ ├── opencl_platform_tail.hpp │ │ ├── platform.hpp │ │ └── platform_tail.hpp │ ├── program.hpp │ ├── program │ └── detail │ │ └── program.hpp │ ├── property │ └── queue.hpp │ ├── property_list.hpp │ ├── queue.hpp │ ├── queue │ └── detail │ │ ├── host_queue.hpp │ │ ├── opencl_queue.hpp │ │ ├── queue.hpp │ │ └── queue_tail.hpp │ ├── range.hpp │ ├── rounding_mode.hpp │ ├── sycl.hpp │ ├── sycl_2_2 │ ├── pipe.hpp │ ├── pipe │ │ └── detail │ │ │ ├── pipe.hpp │ │ │ └── pipe_accessor.hpp │ ├── pipe_reservation.hpp │ ├── pipe_reservation │ │ └── detail │ │ │ └── pipe_reservation.hpp │ └── static_pipe.hpp │ ├── vec.hpp │ ├── vec │ └── detail │ │ ├── swiz2.hpp │ │ ├── swiz3.hpp │ │ ├── swiz4.hpp │ │ ├── swiz_rgba.hpp │ │ └── vec.hpp │ └── vendor │ ├── Xilinx │ ├── fpga.hpp │ └── fpga │ │ ├── opt_decorate_func.hpp │ │ ├── partition_array.hpp │ │ └── ssdm_inst.hpp │ └── trisycl │ ├── pipe │ └── cout.hpp │ ├── random │ └── xorshift.hpp │ ├── scope.hpp │ └── scope │ ├── detail │ └── util.hpp │ ├── device.hpp │ ├── device │ └── detail │ │ └── device.hpp │ ├── platform.hpp │ ├── platform │ └── detail │ │ └── platform.hpp │ ├── queue.hpp │ └── queue │ └── detail │ └── queue.hpp ├── src ├── Makefile ├── gen.c └── triSYCL_tool.cpp └── tests ├── 2014-04-21-HPC-GPU_Meetup ├── CMakeLists.txt ├── slide_13.cpp ├── slide_14.cpp ├── slide_17-18.cpp ├── slide_21.cpp ├── slide_22.cpp ├── slide_23.cpp ├── slide_26.cpp ├── slide_7.cpp └── slide_9-20.cpp ├── CMakeLists.txt ├── Makefile ├── Makefile.bisect ├── README.rst ├── SDAccel ├── README.md ├── hls_ap_vector_add_kernel.cxx ├── hls_int_vector_add_kernel.cxx ├── hls_with_cppkernel_opencl_kernel_ap_vector_add_args.cpp ├── hls_with_cppkernel_opencl_kernel_int_vector_add_args.cpp ├── opencl_kernel_vector_add_args.cpp └── vector_add.cl ├── SPIR ├── add_42.cl ├── opencl_kernel_output_42.cpp ├── opencl_kernel_vector_add_args.cpp ├── opencl_kernel_vector_add_int.cpp ├── output_42.cl ├── single_task_vector_increment_drt.cpp └── vector_add.cl ├── accessor ├── CMakeLists.txt ├── accessor.cpp ├── accessor_sizes.cpp ├── demo_parallel_matrix_add.cpp ├── iterators.cpp ├── local_accessor_hierarchical_convolution.cpp └── uninitialized_local.cpp ├── address_spaces ├── CMakeLists.txt ├── address_spaces.cpp ├── address_spaces_pstl.cpp └── address_spaces_ptr.cpp ├── array_partition ├── CMakeLists.txt ├── array_partition.cpp ├── array_partition_cyclicblock_class_cpu.cpp ├── array_partition_cyclicblock_class_fpga.cpp └── array_partition_cyclicblock_class_pocl.cpp ├── buffer ├── CMakeLists.txt ├── associative_containers.cpp ├── buffer_data_tracking.cpp ├── buffer_get_count.cpp ├── buffer_map_allocator.cpp ├── buffer_set_final_data.cpp ├── buffer_set_final_data_1.cpp ├── buffer_shared_ptr.cpp ├── buffer_sizes.cpp ├── buffer_unique_ptr.cpp ├── buffer_write_order.cpp ├── global_buffer.cpp ├── global_buffer_host_access.cpp ├── global_buffer_set_final_data.cpp ├── read_write_buffer.cpp ├── shared_buffer.cpp └── uninitialized_buffer.cpp ├── common ├── basic_object_checks.hpp ├── check_throwing_get.hpp └── test-helpers.hpp ├── dataflow ├── single_task_vector_add_drt_dataflow_func.cpp └── single_task_vector_add_drt_dataflow_func_ssdm.cpp ├── detail ├── CMakeLists.txt ├── fiber_pool.cpp └── small_array.cpp ├── device ├── CMakeLists.txt ├── default_device.cpp ├── get_info.cpp ├── opencl_device.cpp └── type.cpp ├── device_compiler ├── array_partition_cyclicblock.cpp ├── buffer_of_objects_member_functions.cpp ├── buffer_of_objects_members.cpp ├── kernel_output_42-SPIR.cpp ├── kernel_output_42.cpp ├── parallel_for_ND_range.cpp ├── parallel_for_class_ctor_and_dtor.cpp ├── parallel_for_overloads.cpp ├── parallel_for_ranges.cpp ├── single_task_class_ctor_and_dtor.cpp ├── single_task_vector_add_automatic_array_dataflow_drt.cpp ├── single_task_vector_add_automatic_drt.cpp ├── single_task_vector_add_automatic_drt_kernel_arg_flatten.cpp ├── single_task_vector_add_drt.cpp ├── single_task_vector_add_drt_dataflow_func.cpp ├── single_task_vector_add_drt_dataflow_func_local_pipeline.cpp ├── single_task_vector_add_drt_dataflow_func_without_opt.cpp ├── single_task_vector_add_drt_func_local.cpp ├── single_task_vector_add_drt_func_local_on_host.cpp ├── single_task_vector_add_offset_drt.cpp ├── single_task_vector_extensive_increment_drt.cpp ├── single_task_vector_increment.cpp ├── single_task_vector_increment_drt.cpp └── trivial.cpp ├── device_selector ├── CMakeLists.txt ├── explicit_selector.cpp ├── opencl_selector.cpp └── selector.cpp ├── examples ├── CMakeLists.txt ├── demo_parallel_matrix_add.cpp ├── generic_adder.cpp ├── generic_executor.cpp ├── parallel_matrix_add.cpp ├── parallel_vector_add.cpp ├── simpler_parallel_matrix_add.cpp ├── single_task_vector_increment.cpp └── vector_add.cpp ├── group ├── CMakeLists.txt └── group.cpp ├── id ├── CMakeLists.txt └── id.cpp ├── item ├── CMakeLists.txt └── item.cpp ├── jacobi ├── CMakeLists.txt ├── README.md ├── include │ ├── helpers-jacobi.hpp │ ├── jacobi-stencil.hpp │ ├── stencil-common.hpp │ ├── stencil-fxd.hpp │ ├── stencil-gen-var.hpp │ └── stencil-var.hpp ├── jacobi2d-st-cplx-var.cpp ├── jacobi2d-st-fxd.cpp ├── jacobi2d-st-gen-var.cpp ├── jacobi2d-st-var.cpp ├── jacobi2d-tile.cpp └── jacobi2d.cpp ├── kernel ├── CMakeLists.txt ├── functor.cpp ├── functor_item.cpp ├── opencl_kernel.cpp ├── opencl_kernel_empty.cpp ├── opencl_kernel_empty_set_args.cpp ├── opencl_kernel_single_task_vector_add_args_42.cpp ├── opencl_kernel_vector_add.cpp ├── opencl_kernel_vector_add_args.cpp └── opencl_kernel_vector_add_args_42.cpp ├── lit.cfg ├── math ├── CMakeLists.txt ├── math.cpp ├── opencl_type.cpp └── vector_math.cpp ├── multiple_compilation_units ├── CMakeLists.txt ├── parallel_for.cc └── parallel_for_other.C ├── nd_item ├── CMakeLists.txt └── nd_item.cpp ├── nd_range ├── CMakeLists.txt └── nd_range.cpp ├── parallel_for ├── CMakeLists.txt ├── capture_scalars.cpp ├── hierarchical.cpp ├── hierarchical_new.cpp ├── initializer_list.cpp ├── item.cpp └── item_no_offset.cpp ├── pipe ├── CMakeLists.txt ├── producer_consumer.cpp └── trisycl_iostream_pipe.cpp ├── pipeline └── single_task_vector_add_drt_dataflow_func_local_pipeline.cpp ├── platform ├── CMakeLists.txt ├── default_platform.cpp ├── display_platform.hpp ├── get_devices.cpp └── opencl_platform.cpp ├── queue ├── CMakeLists.txt ├── default_queue.cpp ├── double_wait.cpp ├── explicit_selector.cpp ├── opencl_queue.cpp ├── queue.cpp └── wait.cpp ├── random ├── CMakeLists.txt └── xorshift.cpp ├── range ├── CMakeLists.txt ├── range.cpp └── range_size.cpp ├── run.git-bisect ├── scope ├── CMakeLists.txt └── queue.cpp ├── single_task ├── CMakeLists.txt └── single_task.cpp ├── sycl_2_2_pipe ├── 1pipe_read_reserve.cpp ├── 1pipe_read_write_reserve.cpp ├── 1pipe_write_reserve.cpp ├── 2_queues_pipe_producer_consumer.cpp ├── 3pipes_producer_consumer.cpp ├── 3pipes_reserve_producer_consumer.cpp ├── CMakeLists.txt ├── blocking_pipe_producer_consumer.cpp ├── blocking_pipe_producer_consumer_stream.cpp ├── blocking_pipe_read_write_reserve.cpp ├── pipe_observers.cpp ├── pipe_producer_consumer.cpp ├── pipe_producer_consumer_stream_syntax.cpp └── static_pipe_producer_consumer.cpp ├── sycl_namespace ├── CMakeLists.txt └── demo_parallel_matrix_add.cpp └── vector ├── CMakeLists.txt ├── cl_types.cpp ├── operators.cpp ├── vec.cpp ├── vec_structured_binding.cpp ├── vecacc.cpp ├── vecalign.cpp ├── vecas.cpp ├── vecconvert.cpp ├── veclohiswiz.cpp ├── vecmemlayoutalign.cpp └── vecswiz.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/README.rst -------------------------------------------------------------------------------- /cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/FindtriSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/cmake/FindtriSYCL.cmake -------------------------------------------------------------------------------- /cmake/triSYCLConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/cmake/triSYCLConfig.cmake.in -------------------------------------------------------------------------------- /dev/publish_Doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/dev/publish_Doxygen -------------------------------------------------------------------------------- /doc/SYCL-API.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/SYCL-API.doxygen -------------------------------------------------------------------------------- /doc/WWW/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/WWW/index.html -------------------------------------------------------------------------------- /doc/about-sycl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/about-sycl.rst -------------------------------------------------------------------------------- /doc/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/architecture.rst -------------------------------------------------------------------------------- /doc/cmake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/cmake.rst -------------------------------------------------------------------------------- /doc/common-includes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/common-includes.rst -------------------------------------------------------------------------------- /doc/environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/environment.rst -------------------------------------------------------------------------------- /doc/images/2018-01-22--26-triSYCL-workflow-SPIR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/images/2018-01-22--26-triSYCL-workflow-SPIR.svg -------------------------------------------------------------------------------- /doc/images/triSYCL-device-compiler-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/images/triSYCL-device-compiler-workflow.svg -------------------------------------------------------------------------------- /doc/macros.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/macros.rst -------------------------------------------------------------------------------- /doc/possible-futures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/possible-futures.rst -------------------------------------------------------------------------------- /doc/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/testing.rst -------------------------------------------------------------------------------- /doc/triSYCL-implementation.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/doc/triSYCL-implementation.doxygen -------------------------------------------------------------------------------- /include/CL/sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/CL/sycl.hpp -------------------------------------------------------------------------------- /include/sycl/sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/sycl/sycl.hpp -------------------------------------------------------------------------------- /include/sycl/vendor: -------------------------------------------------------------------------------- 1 | ../triSYCL/vendor -------------------------------------------------------------------------------- /include/triSYCL/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/access.hpp -------------------------------------------------------------------------------- /include/triSYCL/accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/accessor.hpp -------------------------------------------------------------------------------- /include/triSYCL/accessor/detail/accessor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/accessor/detail/accessor_base.hpp -------------------------------------------------------------------------------- /include/triSYCL/accessor/detail/local_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/accessor/detail/local_accessor.hpp -------------------------------------------------------------------------------- /include/triSYCL/address_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/address_space.hpp -------------------------------------------------------------------------------- /include/triSYCL/address_space/detail/address_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/address_space/detail/address_space.hpp -------------------------------------------------------------------------------- /include/triSYCL/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/allocator.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer/detail/accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer/detail/accessor.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer/detail/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer/detail/buffer.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer/detail/buffer_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer/detail/buffer_base.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer/detail/buffer_waiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer/detail/buffer_waiter.hpp -------------------------------------------------------------------------------- /include/triSYCL/buffer_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/buffer_allocator.hpp -------------------------------------------------------------------------------- /include/triSYCL/command_group/detail/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/command_group/detail/task.hpp -------------------------------------------------------------------------------- /include/triSYCL/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/context.hpp -------------------------------------------------------------------------------- /include/triSYCL/context/detail/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/context/detail/context.hpp -------------------------------------------------------------------------------- /include/triSYCL/context/detail/context_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/context/detail/context_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/context/detail/host_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/context/detail/host_context.hpp -------------------------------------------------------------------------------- /include/triSYCL/context/detail/opencl_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/context/detail/opencl_context.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/SPIR/opencl_spir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/SPIR/opencl_spir.h -------------------------------------------------------------------------------- /include/triSYCL/detail/SPIR/opencl_spir_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/SPIR/opencl_spir_helpers.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/SPIR/opencl_spir_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/SPIR/opencl_spir_req.h -------------------------------------------------------------------------------- /include/triSYCL/detail/alignment_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/alignment_helper.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/all_true.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/all_true.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/array_tuple_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/array_tuple_helpers.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/cache.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/container_element_aspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/container_element_aspect.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/debug.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/default_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/default_classes.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/fiber/pooled_shared_work.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/fiber/pooled_shared_work.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/fiber/pooled_work_stealing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/fiber/pooled_work_stealing.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/fiber_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/fiber_pool.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/global_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/global_config.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/instantiate_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/instantiate_kernel.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/linear_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/linear_id.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/overloaded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/overloaded.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/property.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/shared_ptr_implementation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/shared_ptr_implementation.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/singleton.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/small_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/small_array.hpp -------------------------------------------------------------------------------- /include/triSYCL/detail/unimplemented.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/detail/unimplemented.hpp -------------------------------------------------------------------------------- /include/triSYCL/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device.hpp -------------------------------------------------------------------------------- /include/triSYCL/device/detail/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device/detail/device.hpp -------------------------------------------------------------------------------- /include/triSYCL/device/detail/device_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device/detail/device_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/device/detail/host_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device/detail/host_device.hpp -------------------------------------------------------------------------------- /include/triSYCL/device/detail/opencl_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device/detail/opencl_device.hpp -------------------------------------------------------------------------------- /include/triSYCL/device/detail/opencl_device_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device/detail/opencl_device_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/device_runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device_runtime.hpp -------------------------------------------------------------------------------- /include/triSYCL/device_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device_selector.hpp -------------------------------------------------------------------------------- /include/triSYCL/device_selector/detail/device_selector_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/device_selector/detail/device_selector_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/error_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/error_handler.hpp -------------------------------------------------------------------------------- /include/triSYCL/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/event.hpp -------------------------------------------------------------------------------- /include/triSYCL/event/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/event/detail/event.hpp -------------------------------------------------------------------------------- /include/triSYCL/event/detail/host_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/event/detail/host_event.hpp -------------------------------------------------------------------------------- /include/triSYCL/event/detail/opencl_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/event/detail/opencl_event.hpp -------------------------------------------------------------------------------- /include/triSYCL/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/exception.hpp -------------------------------------------------------------------------------- /include/triSYCL/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/group.hpp -------------------------------------------------------------------------------- /include/triSYCL/h_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/h_item.hpp -------------------------------------------------------------------------------- /include/triSYCL/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/half.hpp -------------------------------------------------------------------------------- /include/triSYCL/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/handler.hpp -------------------------------------------------------------------------------- /include/triSYCL/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/id.hpp -------------------------------------------------------------------------------- /include/triSYCL/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/image.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/context.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/device.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/event.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/param_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/param_traits.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/info/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/info/queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/item.hpp -------------------------------------------------------------------------------- /include/triSYCL/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/kernel.hpp -------------------------------------------------------------------------------- /include/triSYCL/kernel/detail/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/kernel/detail/kernel.hpp -------------------------------------------------------------------------------- /include/triSYCL/kernel/detail/opencl_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/kernel/detail/opencl_kernel.hpp -------------------------------------------------------------------------------- /include/triSYCL/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/math.hpp -------------------------------------------------------------------------------- /include/triSYCL/nd_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/nd_item.hpp -------------------------------------------------------------------------------- /include/triSYCL/nd_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/nd_range.hpp -------------------------------------------------------------------------------- /include/triSYCL/opencl_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/opencl_types.hpp -------------------------------------------------------------------------------- /include/triSYCL/parallelism.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/parallelism.hpp -------------------------------------------------------------------------------- /include/triSYCL/parallelism/detail/parallelism.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/parallelism/detail/parallelism.hpp -------------------------------------------------------------------------------- /include/triSYCL/parallelism/detail/parallelism_tbb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/parallelism/detail/parallelism_tbb.hpp -------------------------------------------------------------------------------- /include/triSYCL/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/pipe.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/host_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/host_platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/host_platform_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/host_platform_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/opencl_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/opencl_platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/opencl_platform_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/opencl_platform_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/platform/detail/platform_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/platform/detail/platform_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/program.hpp -------------------------------------------------------------------------------- /include/triSYCL/program/detail/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/program/detail/program.hpp -------------------------------------------------------------------------------- /include/triSYCL/property/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/property/queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/property_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/property_list.hpp -------------------------------------------------------------------------------- /include/triSYCL/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/queue/detail/host_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/queue/detail/host_queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/queue/detail/opencl_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/queue/detail/opencl_queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/queue/detail/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/queue/detail/queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/queue/detail/queue_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/queue/detail/queue_tail.hpp -------------------------------------------------------------------------------- /include/triSYCL/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/range.hpp -------------------------------------------------------------------------------- /include/triSYCL/rounding_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/rounding_mode.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/pipe.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/pipe/detail/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/pipe/detail/pipe.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/pipe/detail/pipe_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/pipe/detail/pipe_accessor.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/pipe_reservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/pipe_reservation.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/pipe_reservation/detail/pipe_reservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/pipe_reservation/detail/pipe_reservation.hpp -------------------------------------------------------------------------------- /include/triSYCL/sycl_2_2/static_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/sycl_2_2/static_pipe.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec/detail/swiz2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec/detail/swiz2.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec/detail/swiz3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec/detail/swiz3.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec/detail/swiz4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec/detail/swiz4.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec/detail/swiz_rgba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec/detail/swiz_rgba.hpp -------------------------------------------------------------------------------- /include/triSYCL/vec/detail/vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vec/detail/vec.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/Xilinx/fpga.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/Xilinx/fpga.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/Xilinx/fpga/opt_decorate_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/Xilinx/fpga/opt_decorate_func.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/Xilinx/fpga/partition_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/Xilinx/fpga/partition_array.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/Xilinx/fpga/ssdm_inst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/Xilinx/fpga/ssdm_inst.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/pipe/cout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/pipe/cout.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/random/xorshift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/random/xorshift.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/detail/util.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/device.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/device/detail/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/device/detail/device.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/platform/detail/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/platform/detail/platform.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/queue.hpp -------------------------------------------------------------------------------- /include/triSYCL/vendor/trisycl/scope/queue/detail/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/include/triSYCL/vendor/trisycl/scope/queue/detail/queue.hpp -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/src/gen.c -------------------------------------------------------------------------------- /src/triSYCL_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/src/triSYCL_tool.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/CMakeLists.txt -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_13.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_14.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_17-18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_17-18.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_21.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_22.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_23.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_26.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_7.cpp -------------------------------------------------------------------------------- /tests/2014-04-21-HPC-GPU_Meetup/slide_9-20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/2014-04-21-HPC-GPU_Meetup/slide_9-20.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/Makefile.bisect -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/SDAccel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/README.md -------------------------------------------------------------------------------- /tests/SDAccel/hls_ap_vector_add_kernel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/hls_ap_vector_add_kernel.cxx -------------------------------------------------------------------------------- /tests/SDAccel/hls_int_vector_add_kernel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/hls_int_vector_add_kernel.cxx -------------------------------------------------------------------------------- /tests/SDAccel/hls_with_cppkernel_opencl_kernel_ap_vector_add_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/hls_with_cppkernel_opencl_kernel_ap_vector_add_args.cpp -------------------------------------------------------------------------------- /tests/SDAccel/hls_with_cppkernel_opencl_kernel_int_vector_add_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/hls_with_cppkernel_opencl_kernel_int_vector_add_args.cpp -------------------------------------------------------------------------------- /tests/SDAccel/opencl_kernel_vector_add_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/opencl_kernel_vector_add_args.cpp -------------------------------------------------------------------------------- /tests/SDAccel/vector_add.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SDAccel/vector_add.cl -------------------------------------------------------------------------------- /tests/SPIR/add_42.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/add_42.cl -------------------------------------------------------------------------------- /tests/SPIR/opencl_kernel_output_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/opencl_kernel_output_42.cpp -------------------------------------------------------------------------------- /tests/SPIR/opencl_kernel_vector_add_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/opencl_kernel_vector_add_args.cpp -------------------------------------------------------------------------------- /tests/SPIR/opencl_kernel_vector_add_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/opencl_kernel_vector_add_int.cpp -------------------------------------------------------------------------------- /tests/SPIR/output_42.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/output_42.cl -------------------------------------------------------------------------------- /tests/SPIR/single_task_vector_increment_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/single_task_vector_increment_drt.cpp -------------------------------------------------------------------------------- /tests/SPIR/vector_add.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/SPIR/vector_add.cl -------------------------------------------------------------------------------- /tests/accessor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/accessor/accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/accessor.cpp -------------------------------------------------------------------------------- /tests/accessor/accessor_sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/accessor_sizes.cpp -------------------------------------------------------------------------------- /tests/accessor/demo_parallel_matrix_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/demo_parallel_matrix_add.cpp -------------------------------------------------------------------------------- /tests/accessor/iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/iterators.cpp -------------------------------------------------------------------------------- /tests/accessor/local_accessor_hierarchical_convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/local_accessor_hierarchical_convolution.cpp -------------------------------------------------------------------------------- /tests/accessor/uninitialized_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/accessor/uninitialized_local.cpp -------------------------------------------------------------------------------- /tests/address_spaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/address_spaces/CMakeLists.txt -------------------------------------------------------------------------------- /tests/address_spaces/address_spaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/address_spaces/address_spaces.cpp -------------------------------------------------------------------------------- /tests/address_spaces/address_spaces_pstl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/address_spaces/address_spaces_pstl.cpp -------------------------------------------------------------------------------- /tests/address_spaces/address_spaces_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/address_spaces/address_spaces_ptr.cpp -------------------------------------------------------------------------------- /tests/array_partition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/array_partition/CMakeLists.txt -------------------------------------------------------------------------------- /tests/array_partition/array_partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/array_partition/array_partition.cpp -------------------------------------------------------------------------------- /tests/array_partition/array_partition_cyclicblock_class_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/array_partition/array_partition_cyclicblock_class_cpu.cpp -------------------------------------------------------------------------------- /tests/array_partition/array_partition_cyclicblock_class_fpga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/array_partition/array_partition_cyclicblock_class_fpga.cpp -------------------------------------------------------------------------------- /tests/array_partition/array_partition_cyclicblock_class_pocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/array_partition/array_partition_cyclicblock_class_pocl.cpp -------------------------------------------------------------------------------- /tests/buffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/buffer/associative_containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/associative_containers.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_data_tracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_data_tracking.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_get_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_get_count.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_map_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_map_allocator.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_set_final_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_set_final_data.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_set_final_data_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_set_final_data_1.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_shared_ptr.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_sizes.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_unique_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_unique_ptr.cpp -------------------------------------------------------------------------------- /tests/buffer/buffer_write_order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/buffer_write_order.cpp -------------------------------------------------------------------------------- /tests/buffer/global_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/global_buffer.cpp -------------------------------------------------------------------------------- /tests/buffer/global_buffer_host_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/global_buffer_host_access.cpp -------------------------------------------------------------------------------- /tests/buffer/global_buffer_set_final_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/global_buffer_set_final_data.cpp -------------------------------------------------------------------------------- /tests/buffer/read_write_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/read_write_buffer.cpp -------------------------------------------------------------------------------- /tests/buffer/shared_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/shared_buffer.cpp -------------------------------------------------------------------------------- /tests/buffer/uninitialized_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/buffer/uninitialized_buffer.cpp -------------------------------------------------------------------------------- /tests/common/basic_object_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/common/basic_object_checks.hpp -------------------------------------------------------------------------------- /tests/common/check_throwing_get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/common/check_throwing_get.hpp -------------------------------------------------------------------------------- /tests/common/test-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/common/test-helpers.hpp -------------------------------------------------------------------------------- /tests/dataflow/single_task_vector_add_drt_dataflow_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/dataflow/single_task_vector_add_drt_dataflow_func.cpp -------------------------------------------------------------------------------- /tests/dataflow/single_task_vector_add_drt_dataflow_func_ssdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/dataflow/single_task_vector_add_drt_dataflow_func_ssdm.cpp -------------------------------------------------------------------------------- /tests/detail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/detail/CMakeLists.txt -------------------------------------------------------------------------------- /tests/detail/fiber_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/detail/fiber_pool.cpp -------------------------------------------------------------------------------- /tests/detail/small_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/detail/small_array.cpp -------------------------------------------------------------------------------- /tests/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device/CMakeLists.txt -------------------------------------------------------------------------------- /tests/device/default_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device/default_device.cpp -------------------------------------------------------------------------------- /tests/device/get_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device/get_info.cpp -------------------------------------------------------------------------------- /tests/device/opencl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device/opencl_device.cpp -------------------------------------------------------------------------------- /tests/device/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device/type.cpp -------------------------------------------------------------------------------- /tests/device_compiler/array_partition_cyclicblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/array_partition_cyclicblock.cpp -------------------------------------------------------------------------------- /tests/device_compiler/buffer_of_objects_member_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/buffer_of_objects_member_functions.cpp -------------------------------------------------------------------------------- /tests/device_compiler/buffer_of_objects_members.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/buffer_of_objects_members.cpp -------------------------------------------------------------------------------- /tests/device_compiler/kernel_output_42-SPIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/kernel_output_42-SPIR.cpp -------------------------------------------------------------------------------- /tests/device_compiler/kernel_output_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/kernel_output_42.cpp -------------------------------------------------------------------------------- /tests/device_compiler/parallel_for_ND_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/parallel_for_ND_range.cpp -------------------------------------------------------------------------------- /tests/device_compiler/parallel_for_class_ctor_and_dtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/parallel_for_class_ctor_and_dtor.cpp -------------------------------------------------------------------------------- /tests/device_compiler/parallel_for_overloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/parallel_for_overloads.cpp -------------------------------------------------------------------------------- /tests/device_compiler/parallel_for_ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/parallel_for_ranges.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_class_ctor_and_dtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_class_ctor_and_dtor.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_automatic_array_dataflow_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_automatic_array_dataflow_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_automatic_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_automatic_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_automatic_drt_kernel_arg_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_automatic_drt_kernel_arg_flatten.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt_dataflow_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt_dataflow_func.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt_dataflow_func_local_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt_dataflow_func_local_pipeline.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt_dataflow_func_without_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt_dataflow_func_without_opt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt_func_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt_func_local.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_drt_func_local_on_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_drt_func_local_on_host.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_add_offset_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_add_offset_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_extensive_increment_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_extensive_increment_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_increment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_increment.cpp -------------------------------------------------------------------------------- /tests/device_compiler/single_task_vector_increment_drt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/single_task_vector_increment_drt.cpp -------------------------------------------------------------------------------- /tests/device_compiler/trivial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_compiler/trivial.cpp -------------------------------------------------------------------------------- /tests/device_selector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_selector/CMakeLists.txt -------------------------------------------------------------------------------- /tests/device_selector/explicit_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_selector/explicit_selector.cpp -------------------------------------------------------------------------------- /tests/device_selector/opencl_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_selector/opencl_selector.cpp -------------------------------------------------------------------------------- /tests/device_selector/selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/device_selector/selector.cpp -------------------------------------------------------------------------------- /tests/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/CMakeLists.txt -------------------------------------------------------------------------------- /tests/examples/demo_parallel_matrix_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/demo_parallel_matrix_add.cpp -------------------------------------------------------------------------------- /tests/examples/generic_adder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/generic_adder.cpp -------------------------------------------------------------------------------- /tests/examples/generic_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/generic_executor.cpp -------------------------------------------------------------------------------- /tests/examples/parallel_matrix_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/parallel_matrix_add.cpp -------------------------------------------------------------------------------- /tests/examples/parallel_vector_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/parallel_vector_add.cpp -------------------------------------------------------------------------------- /tests/examples/simpler_parallel_matrix_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/simpler_parallel_matrix_add.cpp -------------------------------------------------------------------------------- /tests/examples/single_task_vector_increment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/single_task_vector_increment.cpp -------------------------------------------------------------------------------- /tests/examples/vector_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/examples/vector_add.cpp -------------------------------------------------------------------------------- /tests/group/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/group/CMakeLists.txt -------------------------------------------------------------------------------- /tests/group/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/group/group.cpp -------------------------------------------------------------------------------- /tests/id/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/id/CMakeLists.txt -------------------------------------------------------------------------------- /tests/id/id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/id/id.cpp -------------------------------------------------------------------------------- /tests/item/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/item/CMakeLists.txt -------------------------------------------------------------------------------- /tests/item/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/item/item.cpp -------------------------------------------------------------------------------- /tests/jacobi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/CMakeLists.txt -------------------------------------------------------------------------------- /tests/jacobi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/README.md -------------------------------------------------------------------------------- /tests/jacobi/include/helpers-jacobi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/helpers-jacobi.hpp -------------------------------------------------------------------------------- /tests/jacobi/include/jacobi-stencil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/jacobi-stencil.hpp -------------------------------------------------------------------------------- /tests/jacobi/include/stencil-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/stencil-common.hpp -------------------------------------------------------------------------------- /tests/jacobi/include/stencil-fxd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/stencil-fxd.hpp -------------------------------------------------------------------------------- /tests/jacobi/include/stencil-gen-var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/stencil-gen-var.hpp -------------------------------------------------------------------------------- /tests/jacobi/include/stencil-var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/include/stencil-var.hpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d-st-cplx-var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d-st-cplx-var.cpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d-st-fxd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d-st-fxd.cpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d-st-gen-var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d-st-gen-var.cpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d-st-var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d-st-var.cpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d-tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d-tile.cpp -------------------------------------------------------------------------------- /tests/jacobi/jacobi2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/jacobi/jacobi2d.cpp -------------------------------------------------------------------------------- /tests/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /tests/kernel/functor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/functor.cpp -------------------------------------------------------------------------------- /tests/kernel/functor_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/functor_item.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_empty.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_empty_set_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_empty_set_args.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_single_task_vector_add_args_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_single_task_vector_add_args_42.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_vector_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_vector_add.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_vector_add_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_vector_add_args.cpp -------------------------------------------------------------------------------- /tests/kernel/opencl_kernel_vector_add_args_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/kernel/opencl_kernel_vector_add_args_42.cpp -------------------------------------------------------------------------------- /tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/lit.cfg -------------------------------------------------------------------------------- /tests/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/math/CMakeLists.txt -------------------------------------------------------------------------------- /tests/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/math/math.cpp -------------------------------------------------------------------------------- /tests/math/opencl_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/math/opencl_type.cpp -------------------------------------------------------------------------------- /tests/math/vector_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/math/vector_math.cpp -------------------------------------------------------------------------------- /tests/multiple_compilation_units/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/multiple_compilation_units/CMakeLists.txt -------------------------------------------------------------------------------- /tests/multiple_compilation_units/parallel_for.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/multiple_compilation_units/parallel_for.cc -------------------------------------------------------------------------------- /tests/multiple_compilation_units/parallel_for_other.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/multiple_compilation_units/parallel_for_other.C -------------------------------------------------------------------------------- /tests/nd_item/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/nd_item/CMakeLists.txt -------------------------------------------------------------------------------- /tests/nd_item/nd_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/nd_item/nd_item.cpp -------------------------------------------------------------------------------- /tests/nd_range/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/nd_range/CMakeLists.txt -------------------------------------------------------------------------------- /tests/nd_range/nd_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/nd_range/nd_range.cpp -------------------------------------------------------------------------------- /tests/parallel_for/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/CMakeLists.txt -------------------------------------------------------------------------------- /tests/parallel_for/capture_scalars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/capture_scalars.cpp -------------------------------------------------------------------------------- /tests/parallel_for/hierarchical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/hierarchical.cpp -------------------------------------------------------------------------------- /tests/parallel_for/hierarchical_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/hierarchical_new.cpp -------------------------------------------------------------------------------- /tests/parallel_for/initializer_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/initializer_list.cpp -------------------------------------------------------------------------------- /tests/parallel_for/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/item.cpp -------------------------------------------------------------------------------- /tests/parallel_for/item_no_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/parallel_for/item_no_offset.cpp -------------------------------------------------------------------------------- /tests/pipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/pipe/CMakeLists.txt -------------------------------------------------------------------------------- /tests/pipe/producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/pipe/producer_consumer.cpp -------------------------------------------------------------------------------- /tests/pipe/trisycl_iostream_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/pipe/trisycl_iostream_pipe.cpp -------------------------------------------------------------------------------- /tests/pipeline/single_task_vector_add_drt_dataflow_func_local_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/pipeline/single_task_vector_add_drt_dataflow_func_local_pipeline.cpp -------------------------------------------------------------------------------- /tests/platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/platform/CMakeLists.txt -------------------------------------------------------------------------------- /tests/platform/default_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/platform/default_platform.cpp -------------------------------------------------------------------------------- /tests/platform/display_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/platform/display_platform.hpp -------------------------------------------------------------------------------- /tests/platform/get_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/platform/get_devices.cpp -------------------------------------------------------------------------------- /tests/platform/opencl_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/platform/opencl_platform.cpp -------------------------------------------------------------------------------- /tests/queue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/CMakeLists.txt -------------------------------------------------------------------------------- /tests/queue/default_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/default_queue.cpp -------------------------------------------------------------------------------- /tests/queue/double_wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/double_wait.cpp -------------------------------------------------------------------------------- /tests/queue/explicit_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/explicit_selector.cpp -------------------------------------------------------------------------------- /tests/queue/opencl_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/opencl_queue.cpp -------------------------------------------------------------------------------- /tests/queue/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/queue.cpp -------------------------------------------------------------------------------- /tests/queue/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/queue/wait.cpp -------------------------------------------------------------------------------- /tests/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/random/CMakeLists.txt -------------------------------------------------------------------------------- /tests/random/xorshift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/random/xorshift.cpp -------------------------------------------------------------------------------- /tests/range/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/range/CMakeLists.txt -------------------------------------------------------------------------------- /tests/range/range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/range/range.cpp -------------------------------------------------------------------------------- /tests/range/range_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/range/range_size.cpp -------------------------------------------------------------------------------- /tests/run.git-bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/run.git-bisect -------------------------------------------------------------------------------- /tests/scope/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/scope/CMakeLists.txt -------------------------------------------------------------------------------- /tests/scope/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/scope/queue.cpp -------------------------------------------------------------------------------- /tests/single_task/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/single_task/CMakeLists.txt -------------------------------------------------------------------------------- /tests/single_task/single_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/single_task/single_task.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/1pipe_read_reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/1pipe_read_reserve.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/1pipe_read_write_reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/1pipe_read_write_reserve.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/1pipe_write_reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/1pipe_write_reserve.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/2_queues_pipe_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/2_queues_pipe_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/3pipes_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/3pipes_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/3pipes_reserve_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/3pipes_reserve_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/blocking_pipe_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/blocking_pipe_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/blocking_pipe_producer_consumer_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/blocking_pipe_producer_consumer_stream.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/blocking_pipe_read_write_reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/blocking_pipe_read_write_reserve.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/pipe_observers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/pipe_observers.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/pipe_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/pipe_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/pipe_producer_consumer_stream_syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/pipe_producer_consumer_stream_syntax.cpp -------------------------------------------------------------------------------- /tests/sycl_2_2_pipe/static_pipe_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_2_2_pipe/static_pipe_producer_consumer.cpp -------------------------------------------------------------------------------- /tests/sycl_namespace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_namespace/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sycl_namespace/demo_parallel_matrix_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/sycl_namespace/demo_parallel_matrix_add.cpp -------------------------------------------------------------------------------- /tests/vector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/CMakeLists.txt -------------------------------------------------------------------------------- /tests/vector/cl_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/cl_types.cpp -------------------------------------------------------------------------------- /tests/vector/operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/operators.cpp -------------------------------------------------------------------------------- /tests/vector/vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vec.cpp -------------------------------------------------------------------------------- /tests/vector/vec_structured_binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vec_structured_binding.cpp -------------------------------------------------------------------------------- /tests/vector/vecacc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecacc.cpp -------------------------------------------------------------------------------- /tests/vector/vecalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecalign.cpp -------------------------------------------------------------------------------- /tests/vector/vecas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecas.cpp -------------------------------------------------------------------------------- /tests/vector/vecconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecconvert.cpp -------------------------------------------------------------------------------- /tests/vector/veclohiswiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/veclohiswiz.cpp -------------------------------------------------------------------------------- /tests/vector/vecmemlayoutalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecmemlayoutalign.cpp -------------------------------------------------------------------------------- /tests/vector/vecswiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/triSYCL/HEAD/tests/vector/vecswiz.cpp --------------------------------------------------------------------------------