├── .branch ├── .clang-format ├── .config ├── .github ├── lint.yml └── pull-request.yml ├── .gitignore ├── .lint-revision ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE.md ├── LIMITATIONS.md ├── README.md ├── SECURITY.md ├── client ├── CMakeLists.txt ├── client_connection.cpp ├── client_connection.h ├── client_malloc_override.cpp ├── client_malloc_override.h ├── client_malloc_override_entry.cpp ├── client_malloc_override_external.cpp ├── client_platform.h └── icd │ ├── CMakeLists.txt │ ├── get_all_extension_function_address.cpp │ ├── get_all_extension_function_address.h │ ├── icd_global_state.cpp │ ├── icd_global_state.h │ ├── icd_kernel_arg_cache.h │ ├── icd_ocl.cpp │ ├── icd_ocl.h │ ├── icd_page_fault_manager.h │ └── level_zero │ ├── CMakeLists.txt │ ├── api_customization │ ├── icd_level_zero_api.h │ ├── icd_level_zero_api_command_list.cpp │ ├── icd_level_zero_api_command_queue.cpp │ ├── icd_level_zero_api_device.cpp │ ├── icd_level_zero_api_driver.cpp │ ├── icd_level_zero_api_event.cpp │ ├── icd_level_zero_api_event_pool.cpp │ ├── icd_level_zero_api_kernel.cpp │ ├── icd_level_zero_api_memory.cpp │ ├── icd_level_zero_api_memory_experimental.cpp │ ├── icd_level_zero_api_module.cpp │ ├── icd_level_zero_api_pnext_translation.cpp │ ├── icd_level_zero_api_sysman.cpp │ ├── icd_level_zero_api_sysman.h │ ├── icd_level_zero_api_tools.cpp │ ├── icd_level_zero_api_tools.h │ ├── icd_level_zero_api_tracing.cpp │ ├── icd_level_zero_api_tracing.h │ └── icd_level_zero_ipc_helpers.h │ ├── api_type_wrapper │ ├── device_wrapper.cpp │ ├── device_wrapper.h │ ├── handles_definitions.h │ ├── kernel_wrapper.h │ ├── module_wrapper.cpp │ ├── module_wrapper.h │ └── wrapper_base.h │ ├── debugger │ ├── debugger.h │ └── debugger_imp.cpp │ ├── icd_level_zero.cpp │ ├── icd_level_zero.h │ ├── icd_level_zero_table_exports.cpp │ ├── logic │ ├── hostptr_copies_reader.cpp │ ├── hostptr_copies_reader.h │ ├── imported_host_pointers_manager.cpp │ ├── imported_host_pointers_manager.h │ ├── properties_cache.h │ ├── struct_traits.h │ └── types_printer.h │ └── tracing │ ├── tracing.h │ ├── tracing_imp.cpp │ └── tracing_imp.h ├── file_to_str.cmake ├── generated ├── CMakeLists.txt ├── cached │ ├── generated_icd_level_zero.cpp │ ├── generated_icd_level_zero.h │ ├── generated_icd_ocl.cpp │ ├── generated_icd_ocl.h │ ├── generated_rpc_messages_level_zero.cpp │ ├── generated_rpc_messages_level_zero.h │ ├── generated_rpc_messages_ocl.cpp │ ├── generated_rpc_messages_ocl.h │ ├── generated_service_level_zero.cpp │ ├── generated_service_level_zero.h │ ├── generated_service_ocl.cpp │ ├── generated_service_ocl.h │ ├── generated_shared_level_zero.h │ ├── generated_shared_ocl.h │ ├── generated_stub_lib_level_zero.cpp │ └── generated_stub_lib_ocl.cpp └── source │ ├── captures.cpp.mako │ ├── captures.h.mako │ ├── generate.py │ ├── icd.cpp.mako │ ├── icd.h.mako │ ├── level_zero.yml │ ├── ocl.yml │ ├── rpc_messages.cpp.mako │ ├── rpc_messages.h.mako │ ├── service.cpp.mako │ ├── service.h.mako │ ├── shared.h.mako │ ├── stub_lib.cpp.mako │ └── verify.py ├── include └── cal.h ├── os_release_info.cmake ├── scripts ├── CMakeLists.txt ├── cal.icd ├── generate_ninja_test_file.sh ├── packaging │ └── aggregation_layer │ │ ├── aggregation_layer.sh │ │ ├── build_aggregation_layer_deb.sh │ │ ├── build_aggregation_layer_rpm.sh │ │ ├── cal_setvars.sh │ │ ├── cal_setvars_l0.sh │ │ ├── cal_setvars_ocl.sh │ │ ├── sles │ │ ├── SPECS │ │ │ └── aggregation_layer.spec │ │ └── copyright │ │ └── ubuntu │ │ ├── control │ │ ├── copyright │ │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── rules │ │ └── source │ │ │ └── format │ │ └── shlibs.local └── run_l0_blackbox_tests.sh ├── service ├── CMakeLists.txt ├── cochoreographer.cpp ├── cochoreographer.h ├── level_zero │ ├── CMakeLists.txt │ ├── artificial_events_allocator.cpp │ ├── artificial_events_allocator.h │ ├── artificial_events_manager.cpp │ ├── artificial_events_manager.h │ ├── context_mappings_tracker.cpp │ ├── context_mappings_tracker.h │ ├── l0_shared_objects.cpp │ ├── l0_shared_objects.h │ ├── ongoing_hostptr_copies_manager.cpp │ └── ongoing_hostptr_copies_manager.h ├── main.cpp ├── register_all_generated_handlers.cpp ├── service.cpp ├── service.h ├── service_drm_ioctl.h ├── service_ext.cpp ├── service_malloc_override.cpp └── service_malloc_override.h ├── shared ├── CMakeLists.txt ├── allocators.cpp ├── allocators.h ├── api_types.h ├── barrier.h ├── callstack.cpp ├── callstack.h ├── control_messages.h ├── ipc.h ├── l0_opaque_list_serialization.h ├── log.h ├── ocl_fat_def.h ├── ocl_wrapper.h ├── ref_counted.h ├── rpc.h ├── rpc_message.h ├── shmem.h ├── shmem_transfer_desc.h ├── staging_area_manager.h ├── synchronization.h ├── sys.cpp ├── sys.h ├── usm.cpp ├── usm.h ├── utils.cpp └── utils.h ├── test ├── CMakeLists.txt ├── ci_test_runner_config.yml ├── level_zero │ ├── CMakeLists.txt │ ├── blackbox │ │ ├── CMakeLists.txt │ │ ├── l0_blackbox_append_mem_copy_from_context_deferred.cpp │ │ ├── l0_blackbox_append_mem_copy_from_context_immediate.cpp │ │ ├── l0_blackbox_append_mem_copy_region_deferred.cpp │ │ ├── l0_blackbox_append_mem_copy_region_immediate.cpp │ │ ├── l0_blackbox_append_mem_fill_copy_asynchronous_queue.cpp │ │ ├── l0_blackbox_append_mem_fill_copy_immediate_asynchronous.cpp │ │ ├── l0_blackbox_append_mem_fill_copy_immediate_synchronous.cpp │ │ ├── l0_blackbox_append_mem_fill_copy_resubmit.cpp │ │ ├── l0_blackbox_append_mem_fill_copy_synchronous.cpp │ │ ├── l0_blackbox_append_memory_ranges_barrier.cpp │ │ ├── l0_blackbox_context.cpp │ │ ├── l0_blackbox_device.cpp │ │ ├── l0_blackbox_driver.cpp │ │ ├── l0_blackbox_dynamic_link.cpp │ │ ├── l0_blackbox_event.cpp │ │ ├── l0_blackbox_experimental_memory.cpp │ │ ├── l0_blackbox_fence.cpp │ │ ├── l0_blackbox_image.cpp │ │ ├── l0_blackbox_malloc_override.cpp │ │ ├── l0_blackbox_memory.cpp │ │ ├── l0_blackbox_metrics.cpp │ │ ├── l0_blackbox_module_and_kernel.cpp │ │ ├── l0_blackbox_module_create_via_extension.cpp │ │ ├── l0_blackbox_runner_configs.yml │ │ └── l0_blackbox_sysman.cpp │ ├── l0_ult_icd.cpp │ ├── l0_ult_rpc.cpp │ └── service │ │ ├── CMakeLists.txt │ │ ├── l0_service_ult_main.cpp │ │ ├── test_artificial_events_allocator.cpp │ │ ├── test_artificial_events_manager.cpp │ │ ├── test_context_mappings_tracker.cpp │ │ └── test_ongoing_hostrptr_copies_manager.cpp ├── mocks │ ├── artificial_events_allocator_mock.cpp │ ├── artificial_events_allocator_mock.h │ ├── artificial_events_manager_mock.h │ ├── connection_mock.h │ ├── icd_l0_command_list_mock.h │ ├── log_mock.h │ ├── memory_block_mock.h │ ├── ongoing_hostptr_copies_manager_mock.h │ ├── page_fault_manager_mock.h │ ├── shmem_manager_mock.h │ ├── sys_mock.cpp │ └── sys_mock.h ├── ocl │ ├── CMakeLists.txt │ ├── ocl_parallel_copy.cpp │ ├── ocl_staging_area.cpp │ ├── ocl_test_basic.cpp │ ├── ocl_test_usm.cpp │ ├── ocl_ult_icd.cpp │ └── ocl_use_host_ptr.cpp ├── run_blackbox_tests.py ├── shared │ ├── CMakeLists.txt │ ├── allocators_ult.cpp │ ├── memory_block_ult.cpp │ ├── ref_counted_ult.cpp │ ├── rpc_ult.cpp │ ├── shared_ult_main.cpp │ ├── shmem_ult.cpp │ ├── staging_area_manager_ult.cpp │ ├── usm_ult.cpp │ └── utils_ult.cpp └── utils │ ├── assertions.h │ ├── cli_utils.h │ ├── custom_event_listener.h │ ├── dynamic_library.h │ ├── l0_common_steps.cpp │ ├── l0_common_steps.h │ ├── ocl_common_steps.cpp │ ├── ocl_common_steps.h │ ├── signal_utils.cpp │ └── signal_utils.h ├── third_party ├── boost │ ├── LICENSE_1_0.txt │ └── boost │ │ ├── assert.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── assert_cxx03.hpp │ │ ├── assert_cxx11.hpp │ │ ├── assert_cxx14.hpp │ │ ├── assert_cxx17.hpp │ │ ├── assert_cxx20.hpp │ │ ├── assert_cxx98.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── clang_version.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── diab.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ ├── xlcpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── detail │ │ │ ├── cxx_composite.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── header_deprecated.hpp │ │ ├── helper_macros.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ ├── wasm.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.hpp │ │ ├── requires_threads.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ ├── vacpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── user.hpp │ │ ├── warning_disable.hpp │ │ └── workaround.hpp │ │ ├── container │ │ ├── allocator_traits.hpp │ │ ├── container_fwd.hpp │ │ ├── detail │ │ │ ├── advanced_insert_int.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── alloc_helpers.hpp │ │ │ ├── allocation_type.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── construct_in_place.hpp │ │ │ ├── container_or_allocator_rebind.hpp │ │ │ ├── container_rebind.hpp │ │ │ ├── copy_move_algo.hpp │ │ │ ├── destroyers.hpp │ │ │ ├── flat_tree.hpp │ │ │ ├── is_container.hpp │ │ │ ├── is_contiguous_container.hpp │ │ │ ├── is_pair.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterators.hpp │ │ │ ├── min_max.hpp │ │ │ ├── mpl.hpp │ │ │ ├── next_capacity.hpp │ │ │ ├── pair.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── value_functors.hpp │ │ │ ├── value_init.hpp │ │ │ ├── variadic_templates_tools.hpp │ │ │ ├── version_type.hpp │ │ │ └── workaround.hpp │ │ ├── flat_map.hpp │ │ ├── new_allocator.hpp │ │ ├── options.hpp │ │ ├── small_vector.hpp │ │ ├── throw_exception.hpp │ │ └── vector.hpp │ │ ├── cstdint.hpp │ │ ├── current_function.hpp │ │ ├── detail │ │ └── workaround.hpp │ │ ├── intrusive │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── has_member_function_callable_with.hpp │ │ │ ├── iterator.hpp │ │ │ ├── minimal_less_equal_header.hpp │ │ │ ├── minimal_pair_header.hpp │ │ │ ├── mpl.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── value_functors.hpp │ │ │ └── workaround.hpp │ │ ├── pack_options.hpp │ │ ├── pointer_rebind.hpp │ │ └── pointer_traits.hpp │ │ ├── limits.hpp │ │ ├── move │ │ ├── adl_move_swap.hpp │ │ ├── algo │ │ │ ├── adaptive_merge.hpp │ │ │ ├── adaptive_sort.hpp │ │ │ ├── detail │ │ │ │ ├── adaptive_sort_merge.hpp │ │ │ │ ├── basic_op.hpp │ │ │ │ ├── heap_sort.hpp │ │ │ │ ├── insertion_sort.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── merge_sort.hpp │ │ │ │ ├── pdqsort.hpp │ │ │ │ ├── search.hpp │ │ │ │ └── set_difference.hpp │ │ │ ├── move.hpp │ │ │ ├── predicate.hpp │ │ │ └── unique.hpp │ │ ├── core.hpp │ │ ├── default_delete.hpp │ │ ├── detail │ │ │ ├── addressof.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── destruct_n.hpp │ │ │ ├── force_ptr.hpp │ │ │ ├── fwd_macros.hpp │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── meta_utils_core.hpp │ │ │ ├── move_helpers.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pointer_element.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_ns_begin.hpp │ │ │ ├── std_ns_end.hpp │ │ │ ├── to_raw_pointer.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ └── workaround.hpp │ │ ├── iterator.hpp │ │ ├── make_unique.hpp │ │ ├── traits.hpp │ │ ├── unique_ptr.hpp │ │ └── utility_core.hpp │ │ ├── static_assert.hpp │ │ └── version.hpp ├── gtest │ ├── CMakeLists.txt │ ├── README.md │ ├── gmock-gtest-all.cc │ ├── gmock │ │ └── gmock.h │ └── gtest │ │ └── gtest.h ├── level_zero_headers │ ├── driver_experimental │ │ └── public │ │ │ ├── README.md │ │ │ ├── zex_api.h │ │ │ ├── zex_cmdlist.h │ │ │ ├── zex_common.h │ │ │ ├── zex_driver.h │ │ │ ├── zex_memory.h │ │ │ └── zex_module.h │ └── level_zero │ │ ├── layers │ │ ├── zel_tracing_api.h │ │ ├── zel_tracing_ddi.h │ │ └── zel_tracing_register_cb.h │ │ ├── loader │ │ └── ze_loader.h │ │ ├── ze_api.h │ │ ├── ze_ddi.h │ │ ├── zes_api.h │ │ ├── zes_ddi.h │ │ ├── zet_api.h │ │ └── zet_ddi.h ├── linux_dependencies.yml ├── manifests.yml └── opencl_headers │ ├── CL │ ├── cl.h │ ├── cl_d3d10.h │ ├── cl_d3d11.h │ ├── cl_dx9_media_sharing.h │ ├── cl_dx9_media_sharing_intel.h │ ├── cl_egl.h │ ├── cl_ext.h │ ├── cl_ext_intel.h │ ├── cl_gl.h │ ├── cl_gl_ext.h │ ├── cl_half.h │ ├── cl_icd.h │ ├── cl_layer.h │ ├── cl_platform.h │ ├── cl_va_api_media_sharing_intel.h │ ├── cl_version.h │ └── opencl.h │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ └── README.md └── ubsan.supp /.branch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/.clang-format -------------------------------------------------------------------------------- /.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/.config -------------------------------------------------------------------------------- /.github/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/.github/lint.yml -------------------------------------------------------------------------------- /.github/pull-request.yml: -------------------------------------------------------------------------------- 1 | defaultbranch: main 2 | draft: true 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /.lint-revision: -------------------------------------------------------------------------------- 1 | 1.2.43 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022-2024 Intel Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | 5 | -------------------------------------------------------------------------------- /LIMITATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/LIMITATIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/client_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_connection.cpp -------------------------------------------------------------------------------- /client/client_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_connection.h -------------------------------------------------------------------------------- /client/client_malloc_override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_malloc_override.cpp -------------------------------------------------------------------------------- /client/client_malloc_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_malloc_override.h -------------------------------------------------------------------------------- /client/client_malloc_override_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_malloc_override_entry.cpp -------------------------------------------------------------------------------- /client/client_malloc_override_external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_malloc_override_external.cpp -------------------------------------------------------------------------------- /client/client_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/client_platform.h -------------------------------------------------------------------------------- /client/icd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/CMakeLists.txt -------------------------------------------------------------------------------- /client/icd/get_all_extension_function_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/get_all_extension_function_address.cpp -------------------------------------------------------------------------------- /client/icd/get_all_extension_function_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/get_all_extension_function_address.h -------------------------------------------------------------------------------- /client/icd/icd_global_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_global_state.cpp -------------------------------------------------------------------------------- /client/icd/icd_global_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_global_state.h -------------------------------------------------------------------------------- /client/icd/icd_kernel_arg_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_kernel_arg_cache.h -------------------------------------------------------------------------------- /client/icd/icd_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_ocl.cpp -------------------------------------------------------------------------------- /client/icd/icd_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_ocl.h -------------------------------------------------------------------------------- /client/icd/icd_page_fault_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/icd_page_fault_manager.h -------------------------------------------------------------------------------- /client/icd/level_zero/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/CMakeLists.txt -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_command_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_command_list.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_command_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_command_queue.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_device.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_driver.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_event.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_event_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_event_pool.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_kernel.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_memory.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_memory_experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_memory_experimental.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_module.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_pnext_translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_pnext_translation.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_sysman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_sysman.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_sysman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_sysman.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_tools.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_tools.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_tracing.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_api_tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_api_tracing.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_customization/icd_level_zero_ipc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_customization/icd_level_zero_ipc_helpers.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/device_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/device_wrapper.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/device_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/device_wrapper.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/handles_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/handles_definitions.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/kernel_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/kernel_wrapper.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/module_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/module_wrapper.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/module_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/module_wrapper.h -------------------------------------------------------------------------------- /client/icd/level_zero/api_type_wrapper/wrapper_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/api_type_wrapper/wrapper_base.h -------------------------------------------------------------------------------- /client/icd/level_zero/debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/debugger/debugger.h -------------------------------------------------------------------------------- /client/icd/level_zero/debugger/debugger_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/debugger/debugger_imp.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/icd_level_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/icd_level_zero.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/icd_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/icd_level_zero.h -------------------------------------------------------------------------------- /client/icd/level_zero/icd_level_zero_table_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/icd_level_zero_table_exports.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/logic/hostptr_copies_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/hostptr_copies_reader.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/logic/hostptr_copies_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/hostptr_copies_reader.h -------------------------------------------------------------------------------- /client/icd/level_zero/logic/imported_host_pointers_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/imported_host_pointers_manager.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/logic/imported_host_pointers_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/imported_host_pointers_manager.h -------------------------------------------------------------------------------- /client/icd/level_zero/logic/properties_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/properties_cache.h -------------------------------------------------------------------------------- /client/icd/level_zero/logic/struct_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/struct_traits.h -------------------------------------------------------------------------------- /client/icd/level_zero/logic/types_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/logic/types_printer.h -------------------------------------------------------------------------------- /client/icd/level_zero/tracing/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/tracing/tracing.h -------------------------------------------------------------------------------- /client/icd/level_zero/tracing/tracing_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/tracing/tracing_imp.cpp -------------------------------------------------------------------------------- /client/icd/level_zero/tracing/tracing_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/client/icd/level_zero/tracing/tracing_imp.h -------------------------------------------------------------------------------- /file_to_str.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/file_to_str.cmake -------------------------------------------------------------------------------- /generated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/CMakeLists.txt -------------------------------------------------------------------------------- /generated/cached/generated_icd_level_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_icd_level_zero.cpp -------------------------------------------------------------------------------- /generated/cached/generated_icd_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_icd_level_zero.h -------------------------------------------------------------------------------- /generated/cached/generated_icd_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_icd_ocl.cpp -------------------------------------------------------------------------------- /generated/cached/generated_icd_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_icd_ocl.h -------------------------------------------------------------------------------- /generated/cached/generated_rpc_messages_level_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_rpc_messages_level_zero.cpp -------------------------------------------------------------------------------- /generated/cached/generated_rpc_messages_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_rpc_messages_level_zero.h -------------------------------------------------------------------------------- /generated/cached/generated_rpc_messages_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_rpc_messages_ocl.cpp -------------------------------------------------------------------------------- /generated/cached/generated_rpc_messages_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_rpc_messages_ocl.h -------------------------------------------------------------------------------- /generated/cached/generated_service_level_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_service_level_zero.cpp -------------------------------------------------------------------------------- /generated/cached/generated_service_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_service_level_zero.h -------------------------------------------------------------------------------- /generated/cached/generated_service_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_service_ocl.cpp -------------------------------------------------------------------------------- /generated/cached/generated_service_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_service_ocl.h -------------------------------------------------------------------------------- /generated/cached/generated_shared_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_shared_level_zero.h -------------------------------------------------------------------------------- /generated/cached/generated_shared_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_shared_ocl.h -------------------------------------------------------------------------------- /generated/cached/generated_stub_lib_level_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_stub_lib_level_zero.cpp -------------------------------------------------------------------------------- /generated/cached/generated_stub_lib_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/cached/generated_stub_lib_ocl.cpp -------------------------------------------------------------------------------- /generated/source/captures.cpp.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/captures.cpp.mako -------------------------------------------------------------------------------- /generated/source/captures.h.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/captures.h.mako -------------------------------------------------------------------------------- /generated/source/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/generate.py -------------------------------------------------------------------------------- /generated/source/icd.cpp.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/icd.cpp.mako -------------------------------------------------------------------------------- /generated/source/icd.h.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/icd.h.mako -------------------------------------------------------------------------------- /generated/source/level_zero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/level_zero.yml -------------------------------------------------------------------------------- /generated/source/ocl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/ocl.yml -------------------------------------------------------------------------------- /generated/source/rpc_messages.cpp.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/rpc_messages.cpp.mako -------------------------------------------------------------------------------- /generated/source/rpc_messages.h.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/rpc_messages.h.mako -------------------------------------------------------------------------------- /generated/source/service.cpp.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/service.cpp.mako -------------------------------------------------------------------------------- /generated/source/service.h.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/service.h.mako -------------------------------------------------------------------------------- /generated/source/shared.h.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/shared.h.mako -------------------------------------------------------------------------------- /generated/source/stub_lib.cpp.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/stub_lib.cpp.mako -------------------------------------------------------------------------------- /generated/source/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/generated/source/verify.py -------------------------------------------------------------------------------- /include/cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/include/cal.h -------------------------------------------------------------------------------- /os_release_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/os_release_info.cmake -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/cal.icd: -------------------------------------------------------------------------------- 1 | libcal.so -------------------------------------------------------------------------------- /scripts/generate_ninja_test_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/generate_ninja_test_file.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/aggregation_layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/aggregation_layer.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/build_aggregation_layer_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/build_aggregation_layer_deb.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/build_aggregation_layer_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/build_aggregation_layer_rpm.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/cal_setvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/cal_setvars.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/cal_setvars_l0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/cal_setvars_l0.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/cal_setvars_ocl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/cal_setvars_ocl.sh -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/sles/SPECS/aggregation_layer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/sles/SPECS/aggregation_layer.spec -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/sles/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/sles/copyright -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/ubuntu/control -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/ubuntu/copyright -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/ubuntu/debian/changelog -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/ubuntu/debian/rules -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/packaging/aggregation_layer/ubuntu/shlibs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/packaging/aggregation_layer/ubuntu/shlibs.local -------------------------------------------------------------------------------- /scripts/run_l0_blackbox_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/scripts/run_l0_blackbox_tests.sh -------------------------------------------------------------------------------- /service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/CMakeLists.txt -------------------------------------------------------------------------------- /service/cochoreographer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/cochoreographer.cpp -------------------------------------------------------------------------------- /service/cochoreographer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/cochoreographer.h -------------------------------------------------------------------------------- /service/level_zero/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/CMakeLists.txt -------------------------------------------------------------------------------- /service/level_zero/artificial_events_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/artificial_events_allocator.cpp -------------------------------------------------------------------------------- /service/level_zero/artificial_events_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/artificial_events_allocator.h -------------------------------------------------------------------------------- /service/level_zero/artificial_events_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/artificial_events_manager.cpp -------------------------------------------------------------------------------- /service/level_zero/artificial_events_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/artificial_events_manager.h -------------------------------------------------------------------------------- /service/level_zero/context_mappings_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/context_mappings_tracker.cpp -------------------------------------------------------------------------------- /service/level_zero/context_mappings_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/context_mappings_tracker.h -------------------------------------------------------------------------------- /service/level_zero/l0_shared_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/l0_shared_objects.cpp -------------------------------------------------------------------------------- /service/level_zero/l0_shared_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/l0_shared_objects.h -------------------------------------------------------------------------------- /service/level_zero/ongoing_hostptr_copies_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/ongoing_hostptr_copies_manager.cpp -------------------------------------------------------------------------------- /service/level_zero/ongoing_hostptr_copies_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/level_zero/ongoing_hostptr_copies_manager.h -------------------------------------------------------------------------------- /service/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/main.cpp -------------------------------------------------------------------------------- /service/register_all_generated_handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/register_all_generated_handlers.cpp -------------------------------------------------------------------------------- /service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service.cpp -------------------------------------------------------------------------------- /service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service.h -------------------------------------------------------------------------------- /service/service_drm_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service_drm_ioctl.h -------------------------------------------------------------------------------- /service/service_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service_ext.cpp -------------------------------------------------------------------------------- /service/service_malloc_override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service_malloc_override.cpp -------------------------------------------------------------------------------- /service/service_malloc_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/service/service_malloc_override.h -------------------------------------------------------------------------------- /shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/CMakeLists.txt -------------------------------------------------------------------------------- /shared/allocators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/allocators.cpp -------------------------------------------------------------------------------- /shared/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/allocators.h -------------------------------------------------------------------------------- /shared/api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/api_types.h -------------------------------------------------------------------------------- /shared/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/barrier.h -------------------------------------------------------------------------------- /shared/callstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/callstack.cpp -------------------------------------------------------------------------------- /shared/callstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/callstack.h -------------------------------------------------------------------------------- /shared/control_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/control_messages.h -------------------------------------------------------------------------------- /shared/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/ipc.h -------------------------------------------------------------------------------- /shared/l0_opaque_list_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/l0_opaque_list_serialization.h -------------------------------------------------------------------------------- /shared/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/log.h -------------------------------------------------------------------------------- /shared/ocl_fat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/ocl_fat_def.h -------------------------------------------------------------------------------- /shared/ocl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/ocl_wrapper.h -------------------------------------------------------------------------------- /shared/ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/ref_counted.h -------------------------------------------------------------------------------- /shared/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/rpc.h -------------------------------------------------------------------------------- /shared/rpc_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/rpc_message.h -------------------------------------------------------------------------------- /shared/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/shmem.h -------------------------------------------------------------------------------- /shared/shmem_transfer_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/shmem_transfer_desc.h -------------------------------------------------------------------------------- /shared/staging_area_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/staging_area_manager.h -------------------------------------------------------------------------------- /shared/synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/synchronization.h -------------------------------------------------------------------------------- /shared/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/sys.cpp -------------------------------------------------------------------------------- /shared/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/sys.h -------------------------------------------------------------------------------- /shared/usm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/usm.cpp -------------------------------------------------------------------------------- /shared/usm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/usm.h -------------------------------------------------------------------------------- /shared/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/utils.cpp -------------------------------------------------------------------------------- /shared/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/shared/utils.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ci_test_runner_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ci_test_runner_config.yml -------------------------------------------------------------------------------- /test/level_zero/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/CMakeLists.txt -------------------------------------------------------------------------------- /test/level_zero/blackbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/CMakeLists.txt -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_copy_from_context_deferred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_copy_from_context_deferred.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_copy_from_context_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_copy_from_context_immediate.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_copy_region_deferred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_copy_region_deferred.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_copy_region_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_copy_region_immediate.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_asynchronous_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_asynchronous_queue.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_immediate_asynchronous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_immediate_asynchronous.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_immediate_synchronous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_immediate_synchronous.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_resubmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_resubmit.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_synchronous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_mem_fill_copy_synchronous.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_append_memory_ranges_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_append_memory_ranges_barrier.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_context.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_device.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_driver.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_dynamic_link.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_event.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_experimental_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_experimental_memory.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_fence.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_image.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_malloc_override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_malloc_override.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_memory.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_metrics.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_module_and_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_module_and_kernel.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_module_create_via_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_module_create_via_extension.cpp -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_runner_configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_runner_configs.yml -------------------------------------------------------------------------------- /test/level_zero/blackbox/l0_blackbox_sysman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/blackbox/l0_blackbox_sysman.cpp -------------------------------------------------------------------------------- /test/level_zero/l0_ult_icd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/l0_ult_icd.cpp -------------------------------------------------------------------------------- /test/level_zero/l0_ult_rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/l0_ult_rpc.cpp -------------------------------------------------------------------------------- /test/level_zero/service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/CMakeLists.txt -------------------------------------------------------------------------------- /test/level_zero/service/l0_service_ult_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/l0_service_ult_main.cpp -------------------------------------------------------------------------------- /test/level_zero/service/test_artificial_events_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/test_artificial_events_allocator.cpp -------------------------------------------------------------------------------- /test/level_zero/service/test_artificial_events_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/test_artificial_events_manager.cpp -------------------------------------------------------------------------------- /test/level_zero/service/test_context_mappings_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/test_context_mappings_tracker.cpp -------------------------------------------------------------------------------- /test/level_zero/service/test_ongoing_hostrptr_copies_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/level_zero/service/test_ongoing_hostrptr_copies_manager.cpp -------------------------------------------------------------------------------- /test/mocks/artificial_events_allocator_mock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/artificial_events_allocator_mock.cpp -------------------------------------------------------------------------------- /test/mocks/artificial_events_allocator_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/artificial_events_allocator_mock.h -------------------------------------------------------------------------------- /test/mocks/artificial_events_manager_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/artificial_events_manager_mock.h -------------------------------------------------------------------------------- /test/mocks/connection_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/connection_mock.h -------------------------------------------------------------------------------- /test/mocks/icd_l0_command_list_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/icd_l0_command_list_mock.h -------------------------------------------------------------------------------- /test/mocks/log_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/log_mock.h -------------------------------------------------------------------------------- /test/mocks/memory_block_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/memory_block_mock.h -------------------------------------------------------------------------------- /test/mocks/ongoing_hostptr_copies_manager_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/ongoing_hostptr_copies_manager_mock.h -------------------------------------------------------------------------------- /test/mocks/page_fault_manager_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/page_fault_manager_mock.h -------------------------------------------------------------------------------- /test/mocks/shmem_manager_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/shmem_manager_mock.h -------------------------------------------------------------------------------- /test/mocks/sys_mock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/sys_mock.cpp -------------------------------------------------------------------------------- /test/mocks/sys_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/mocks/sys_mock.h -------------------------------------------------------------------------------- /test/ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/CMakeLists.txt -------------------------------------------------------------------------------- /test/ocl/ocl_parallel_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_parallel_copy.cpp -------------------------------------------------------------------------------- /test/ocl/ocl_staging_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_staging_area.cpp -------------------------------------------------------------------------------- /test/ocl/ocl_test_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_test_basic.cpp -------------------------------------------------------------------------------- /test/ocl/ocl_test_usm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_test_usm.cpp -------------------------------------------------------------------------------- /test/ocl/ocl_ult_icd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_ult_icd.cpp -------------------------------------------------------------------------------- /test/ocl/ocl_use_host_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/ocl/ocl_use_host_ptr.cpp -------------------------------------------------------------------------------- /test/run_blackbox_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/run_blackbox_tests.py -------------------------------------------------------------------------------- /test/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/CMakeLists.txt -------------------------------------------------------------------------------- /test/shared/allocators_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/allocators_ult.cpp -------------------------------------------------------------------------------- /test/shared/memory_block_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/memory_block_ult.cpp -------------------------------------------------------------------------------- /test/shared/ref_counted_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/ref_counted_ult.cpp -------------------------------------------------------------------------------- /test/shared/rpc_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/rpc_ult.cpp -------------------------------------------------------------------------------- /test/shared/shared_ult_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/shared_ult_main.cpp -------------------------------------------------------------------------------- /test/shared/shmem_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/shmem_ult.cpp -------------------------------------------------------------------------------- /test/shared/staging_area_manager_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/staging_area_manager_ult.cpp -------------------------------------------------------------------------------- /test/shared/usm_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/usm_ult.cpp -------------------------------------------------------------------------------- /test/shared/utils_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/shared/utils_ult.cpp -------------------------------------------------------------------------------- /test/utils/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/assertions.h -------------------------------------------------------------------------------- /test/utils/cli_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/cli_utils.h -------------------------------------------------------------------------------- /test/utils/custom_event_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/custom_event_listener.h -------------------------------------------------------------------------------- /test/utils/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/dynamic_library.h -------------------------------------------------------------------------------- /test/utils/l0_common_steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/l0_common_steps.cpp -------------------------------------------------------------------------------- /test/utils/l0_common_steps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/l0_common_steps.h -------------------------------------------------------------------------------- /test/utils/ocl_common_steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/ocl_common_steps.cpp -------------------------------------------------------------------------------- /test/utils/ocl_common_steps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/ocl_common_steps.h -------------------------------------------------------------------------------- /test/utils/signal_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/signal_utils.cpp -------------------------------------------------------------------------------- /test/utils/signal_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/test/utils/signal_utils.h -------------------------------------------------------------------------------- /third_party/boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /third_party/boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/assert.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx03.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx11.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx14.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx17.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx20.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/assert_cxx98.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/assert_cxx98.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/clang_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/clang_version.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/cxx_composite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/cxx_composite.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/posix_features.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/select_compiler_config.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/select_platform_config.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/select_stdlib_config.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/header_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/header_deprecated.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/wasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/wasm.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/user.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/config/workaround.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/allocator_traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/container_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/container_fwd.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/advanced_insert_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/advanced_insert_int.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/algorithm.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/alloc_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/alloc_helpers.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/allocation_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/allocation_type.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/config_begin.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/config_end.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/construct_in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/construct_in_place.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/container_or_allocator_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/container_or_allocator_rebind.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/container_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/container_rebind.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/copy_move_algo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/copy_move_algo.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/destroyers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/destroyers.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/flat_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/flat_tree.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/is_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/is_container.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/is_contiguous_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/is_contiguous_container.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/is_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/is_pair.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/is_sorted.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/iterator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/iterators.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/min_max.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/mpl.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/next_capacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/next_capacity.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/pair.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/placement_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/placement_new.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/std_fwd.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/type_traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/value_functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/value_functors.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/value_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/value_init.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/variadic_templates_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/variadic_templates_tools.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/version_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/version_type.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/detail/workaround.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/flat_map.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/new_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/new_allocator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/options.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/small_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/small_vector.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/throw_exception.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/container/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/container/vector.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/current_function.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/algorithm.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/config_begin.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/config_end.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/has_member_function_callable_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/has_member_function_callable_with.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/iterator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/minimal_less_equal_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/minimal_less_equal_header.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/minimal_pair_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/minimal_pair_header.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/mpl.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/reverse_iterator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/std_fwd.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/value_functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/value_functors.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/detail/workaround.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/pack_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/pack_options.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/pointer_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/pointer_rebind.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/intrusive/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/intrusive/pointer_traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/limits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/adaptive_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/adaptive_merge.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/adaptive_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/adaptive_sort.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/adaptive_sort_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/adaptive_sort_merge.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/basic_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/basic_op.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/heap_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/heap_sort.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/insertion_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/insertion_sort.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/is_sorted.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/merge.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/merge_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/merge_sort.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/pdqsort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/pdqsort.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/search.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/detail/set_difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/detail/set_difference.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/predicate.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/algo/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/algo/unique.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/core.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/default_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/default_delete.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/addressof.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/config_begin.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/destruct_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/destruct_n.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/force_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/force_ptr.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/fwd_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/fwd_macros.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/iterator_to_raw_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/iterator_to_raw_pointer.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/iterator_traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/meta_utils_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/meta_utils_core.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/move_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/move_helpers.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/placement_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/placement_new.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/pointer_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/pointer_element.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/reverse_iterator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/std_ns_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/std_ns_begin.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/std_ns_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/std_ns_end.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/to_raw_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/to_raw_pointer.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/type_traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/unique_ptr_meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/unique_ptr_meta_utils.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/detail/workaround.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/iterator.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/make_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/make_unique.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/traits.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/unique_ptr.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/static_assert.hpp -------------------------------------------------------------------------------- /third_party/boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/boost/boost/version.hpp -------------------------------------------------------------------------------- /third_party/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/gtest/README.md -------------------------------------------------------------------------------- /third_party/gtest/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/gtest/gmock-gtest-all.cc -------------------------------------------------------------------------------- /third_party/gtest/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/gtest/gmock/gmock.h -------------------------------------------------------------------------------- /third_party/gtest/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/gtest/gtest/gtest.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/README.md -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_api.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_cmdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_cmdlist.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_common.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_driver.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_memory.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/driver_experimental/public/zex_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/driver_experimental/public/zex_module.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/layers/zel_tracing_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/layers/zel_tracing_api.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/layers/zel_tracing_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/layers/zel_tracing_ddi.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/layers/zel_tracing_register_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/layers/zel_tracing_register_cb.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/loader/ze_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/loader/ze_loader.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/ze_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/ze_api.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/ze_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/ze_ddi.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/zes_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/zes_api.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/zes_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/zes_ddi.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/zet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/zet_api.h -------------------------------------------------------------------------------- /third_party/level_zero_headers/level_zero/zet_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/level_zero_headers/level_zero/zet_ddi.h -------------------------------------------------------------------------------- /third_party/linux_dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/linux_dependencies.yml -------------------------------------------------------------------------------- /third_party/manifests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/manifests.yml -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_d3d10.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_d3d11.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_egl.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_ext.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_gl.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_half.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_icd.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_layer.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_platform.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/cl_version.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CL/opencl.h -------------------------------------------------------------------------------- /third_party/opencl_headers/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/opencl_headers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/LICENSE -------------------------------------------------------------------------------- /third_party/opencl_headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-aggregation-layer/HEAD/third_party/opencl_headers/README.md -------------------------------------------------------------------------------- /ubsan.supp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------