├── .branch ├── .clang-format ├── .config ├── .github ├── lint.yml └── pull-request.yml ├── .gitignore ├── .gitmodules ├── .lint-revision ├── CMakeLists.txt ├── CMakeOptions.cmake ├── CONTRIBUTING.md ├── FAQ.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── TESTS.md ├── cmake ├── CopyKernels.cmake ├── FindLevelZero.cmake └── FindSYCL.cmake ├── scripts ├── benchmark_visualization │ ├── benchmark_visualize.py │ └── benchmark_visualize_usage.md ├── benchmark_visualize.py ├── compile_to_spv.sh ├── run_clang-format_on_all_files.cmd ├── run_clang-format_on_all_files.sh ├── setup_remote_debugging_for_vs.sh ├── sycl-proxy.sh.in └── sycl │ └── graph_input_generator │ ├── README.md │ ├── graph_dot_to_cpp.py │ ├── graph_import.h.in │ ├── gromacs.dot │ ├── llama.dot │ └── requirements.txt ├── source ├── CMakeLists.txt ├── CMakeUtils.cmake ├── benchmarks │ ├── CMakeLists.txt │ ├── CMakeMacrosAddBenchmark.cmake │ ├── algorithm_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ └── heat3d.h │ │ ├── gtest │ │ │ └── heat3d.cpp │ │ └── implementations │ │ │ └── l0 │ │ │ └── heat3d_l0.cpp │ ├── api_overhead_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── append_launch_kernel.h │ │ │ ├── append_wait_on_events_immediate.h │ │ │ ├── command_list_host_synchronize.h │ │ │ ├── create_buffer.h │ │ │ ├── create_command_list.h │ │ │ ├── create_command_list_immediate.h │ │ │ ├── destroy_command_list.h │ │ │ ├── destroy_command_list_immediate.h │ │ │ ├── driver_get.h │ │ │ ├── driver_get_api_version.h │ │ │ ├── driver_get_properties.h │ │ │ ├── enqueue_ndr_null_lws.h │ │ │ ├── enqueue_ndr_time.h │ │ │ ├── event_query_status.h │ │ │ ├── event_time.h │ │ │ ├── execute_command_list.h │ │ │ ├── execute_command_list_for_copy_engine.h │ │ │ ├── execute_command_list_immediate.h │ │ │ ├── execute_command_list_immediate_copy_queue.h │ │ │ ├── execute_command_list_immediate_multi_kernel.h │ │ │ ├── execute_command_list_with_fence_create.h │ │ │ ├── execute_command_list_with_fence_destroy.h │ │ │ ├── execute_command_list_with_fence_usage.h │ │ │ ├── execute_command_list_with_indirect.h │ │ │ ├── execute_command_list_with_indirect_access.h │ │ │ ├── execute_regular_commandlist_with_immediate.h │ │ │ ├── flush_time.h │ │ │ ├── get_memory_properties.h │ │ │ ├── get_memory_properties_with_modified_allocations.h │ │ │ ├── get_memory_properties_with_offseted_pointer.h │ │ │ ├── lifecycle_command_list.h │ │ │ ├── mem_get_ipc_handle.h │ │ │ ├── mem_open_ipc_handle.h │ │ │ ├── mem_put_ipc_handle.h │ │ │ ├── module_create_spv.h │ │ │ ├── multi_argument_kernel.h │ │ │ ├── physical_mem_create.h │ │ │ ├── physical_mem_destroy.h │ │ │ ├── reset_command_list.h │ │ │ ├── set_kernel_arg_immediate.h │ │ │ ├── set_kernel_arg_svm_pointer.h │ │ │ ├── set_kernel_group_size.h │ │ │ ├── submit_barrier.h │ │ │ ├── submit_kernel.h │ │ │ ├── tmp_buffer_fixed_size.h │ │ │ ├── tmp_buffer_mixed_size.h │ │ │ ├── usm_batch_memory_allocation.h │ │ │ ├── usm_memory_allocation.h │ │ │ ├── usm_random_memory_allocation.h │ │ │ ├── virtual_mem_free.h │ │ │ ├── virtual_mem_get_access_attrib.h │ │ │ ├── virtual_mem_map.h │ │ │ ├── virtual_mem_query_page_size.h │ │ │ ├── virtual_mem_reserve.h │ │ │ ├── virtual_mem_set_access_attrib.h │ │ │ └── virtual_mem_unmap.h │ │ ├── gtest │ │ │ ├── append_launch_kernel.cpp │ │ │ ├── append_wait_on_events_immediate.cpp │ │ │ ├── command_list_host_synchronize.cpp │ │ │ ├── create_buffer.cpp │ │ │ ├── create_command_list.cpp │ │ │ ├── create_command_list_immediate.cpp │ │ │ ├── destroy_command_list.cpp │ │ │ ├── destroy_command_list_immediate.cpp │ │ │ ├── driver_get.cpp │ │ │ ├── driver_get_api_version.cpp │ │ │ ├── driver_get_properties.cpp │ │ │ ├── enqueue_ndr_null_lws.cpp │ │ │ ├── enqueue_ndr_time.cpp │ │ │ ├── event_query_status.cpp │ │ │ ├── event_time.cpp │ │ │ ├── execute_command_list.cpp │ │ │ ├── execute_command_list_for_copy_engine.cpp │ │ │ ├── execute_command_list_immediate.cpp │ │ │ ├── execute_command_list_immediate_copy_queue.cpp │ │ │ ├── execute_command_list_immediate_multi_kernel.cpp │ │ │ ├── execute_command_list_with_fence_create.cpp │ │ │ ├── execute_command_list_with_fence_destroy.cpp │ │ │ ├── execute_command_list_with_fence_usage.cpp │ │ │ ├── execute_command_list_with_indirect.cpp │ │ │ ├── execute_command_list_with_indirect_access.cpp │ │ │ ├── execute_regular_commandlist_with_immediate.cpp │ │ │ ├── flush_time.cpp │ │ │ ├── get_memory_properties.cpp │ │ │ ├── get_memory_properties_with_modified_allocations.cpp │ │ │ ├── get_memory_properties_with_offseted_pointer.cpp │ │ │ ├── lifecycle_command_list.cpp │ │ │ ├── mem_get_ipc_handle.cpp │ │ │ ├── mem_open_ipc_handle.cpp │ │ │ ├── mem_put_ipc_handle.cpp │ │ │ ├── module_create_spv.cpp │ │ │ ├── multi_argument_kernel.cpp │ │ │ ├── physical_mem_create.cpp │ │ │ ├── physical_mem_destroy.cpp │ │ │ ├── reset_command_list.cpp │ │ │ ├── set_kernel_arg_immediate.cpp │ │ │ ├── set_kernel_arg_svm_pointer.cpp │ │ │ ├── set_kernel_group_size.cpp │ │ │ ├── submit_barrier.cpp │ │ │ ├── submit_kernel.cpp │ │ │ ├── tmp_buffer_fixed_size.cpp │ │ │ ├── tmp_buffer_mixed_size.cpp │ │ │ ├── usm_batch_memory_allocation.cpp │ │ │ ├── usm_memory_allocation.cpp │ │ │ ├── usm_random_memory_allocation.cpp │ │ │ ├── virtual_mem_free.cpp │ │ │ ├── virtual_mem_get_access_attrib.cpp │ │ │ ├── virtual_mem_map.cpp │ │ │ ├── virtual_mem_query_page_size.cpp │ │ │ ├── virtual_mem_reserve.cpp │ │ │ ├── virtual_mem_set_access_attrib.cpp │ │ │ └── virtual_mem_unmap.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── append_launch_kernel_l0.cpp │ │ │ ├── append_wait_on_events_immediate_l0.cpp │ │ │ ├── command_list_host_synchronize_l0.cpp │ │ │ ├── create_command_list_immediate_l0.cpp │ │ │ ├── create_command_list_l0.cpp │ │ │ ├── destroy_command_list_immediate_l0.cpp │ │ │ ├── destroy_command_list_l0.cpp │ │ │ ├── driver_get_api_version_l0.cpp │ │ │ ├── driver_get_l0.cpp │ │ │ ├── driver_get_properties_l0.cpp │ │ │ ├── event_query_status_l0.cpp │ │ │ ├── event_time_l0.cpp │ │ │ ├── execute_command_list_for_copy_engine_l0.cpp │ │ │ ├── execute_command_list_immediate_copy_queue_l0.cpp │ │ │ ├── execute_command_list_immediate_l0.cpp │ │ │ ├── execute_command_list_immediate_multi_kernel_l0.cpp │ │ │ ├── execute_command_list_l0.cpp │ │ │ ├── execute_command_list_with_fence_create_l0.cpp │ │ │ ├── execute_command_list_with_fence_destroy_l0.cpp │ │ │ ├── execute_command_list_with_fence_usage_l0.cpp │ │ │ ├── execute_command_list_with_indirect_access_l0.cpp │ │ │ ├── execute_command_list_with_indirect_l0.cpp │ │ │ ├── execute_regular_command_list_with_immediate_l0.cpp │ │ │ ├── get_memory_properties_l0.cpp │ │ │ ├── get_memory_properties_with_modified_allocations_l0.cpp │ │ │ ├── get_memory_properties_with_offseted_pointer_l0.cpp │ │ │ ├── lifecycle_command_list_l0.cpp │ │ │ ├── mem_get_ipc_handle_l0.cpp │ │ │ ├── mem_open_ipc_handle_l0.cpp │ │ │ ├── mem_put_ipc_handle_l0.cpp │ │ │ ├── module_create_spv_l0.cpp │ │ │ ├── multi_argument_kernel_l0.cpp │ │ │ ├── physical_mem_create.cpp │ │ │ ├── physical_mem_destroy.cpp │ │ │ ├── reset_command_list_l0.cpp │ │ │ ├── set_kernel_arg_immediate_l0.cpp │ │ │ ├── set_kernel_arg_svm_pointer_l0.cpp │ │ │ ├── set_kernel_group_size_l0.cpp │ │ │ ├── submit_kernel_l0.cpp │ │ │ ├── usm_memory_allocation_l0.cpp │ │ │ ├── virtual_mem_free.cpp │ │ │ ├── virtual_mem_get_access_attrib.cpp │ │ │ ├── virtual_mem_map.cpp │ │ │ ├── virtual_mem_query_page_size.cpp │ │ │ ├── virtual_mem_reserve.cpp │ │ │ ├── virtual_mem_set_access_attrib.cpp │ │ │ └── virtual_mem_unmap.cpp │ │ │ ├── ocl │ │ │ ├── create_buffer_ocl.cpp │ │ │ ├── enqueue_ndr_null_lws_ocl.cpp │ │ │ ├── enqueue_ndr_time_ocl.cpp │ │ │ ├── flush_time_ocl.cpp │ │ │ ├── multi_argument_kernel_ocl.cpp │ │ │ ├── set_kernel_arg_svm_pointer_ocl.cpp │ │ │ └── submit_kernel_ocl.cpp │ │ │ ├── sycl │ │ │ ├── execute_command_list_immediate_copy_queue_sycl.cpp │ │ │ ├── execute_command_list_immediate_sycl.cpp │ │ │ ├── submit_barrier_sycl.cpp │ │ │ └── submit_kernel_sycl.cpp │ │ │ └── ur │ │ │ ├── submit_kernel_ur.cpp │ │ │ ├── tmp_buffer_fixed_size_ur.cpp │ │ │ ├── tmp_buffer_mixed_size_ur.cpp │ │ │ ├── usm_batch_memory_allocation_ur.cpp │ │ │ ├── usm_memory_allocation_ur.cpp │ │ │ └── usm_random_memory_allocation_ur.cpp │ ├── atomic_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── one_atomic.h │ │ │ ├── one_atomic_explicit.h │ │ │ ├── one_local_atomic.h │ │ │ ├── one_local_atomic_explicit.h │ │ │ ├── separate_atomic.h │ │ │ └── separate_atomic_explicit.h │ │ ├── gtest │ │ │ ├── one_atomic.cpp │ │ │ ├── one_atomic_explicit.cpp │ │ │ ├── one_local_atomic.cpp │ │ │ ├── one_local_atomic_explicit.cpp │ │ │ ├── separate_atomics.cpp │ │ │ └── separate_atomics_explicit.cpp │ │ ├── implementations │ │ │ ├── l0 │ │ │ │ ├── one_atomic_l0.cpp │ │ │ │ ├── one_atomic_l0_explicit.cpp │ │ │ │ ├── one_local_atomic_explicit_l0.cpp │ │ │ │ ├── one_local_atomic_l0.cpp │ │ │ │ ├── separate_atomics_explicit_l0.cpp │ │ │ │ └── separate_atomics_l0.cpp │ │ │ └── ocl │ │ │ │ ├── one_atomic_ocl.cpp │ │ │ │ ├── one_atomic_ocl_explicit.cpp │ │ │ │ ├── one_local_atomic_explicit_ocl.cpp │ │ │ │ ├── one_local_atomic_ocl.cpp │ │ │ │ ├── separate_atomics_explicit_ocl.cpp │ │ │ │ └── separate_atomics_ocl.cpp │ │ ├── kernel_helper.cpp │ │ └── kernel_helper.h │ ├── common │ │ ├── l0 │ │ │ └── registrations_l0.cpp │ │ ├── main.cpp │ │ ├── ocl │ │ │ └── registrations_ocl.cpp │ │ ├── omp │ │ │ └── registrations_omp.cpp │ │ ├── sycl │ │ │ └── registrations_sycl.cpp │ │ └── ur │ │ │ └── registrations_ur.cpp │ ├── emu_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ └── int64_div.h │ │ ├── gtest │ │ │ └── int64_div.cpp │ │ └── implementations │ │ │ └── ocl │ │ │ └── int64_div.cpp │ ├── eu_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── do_math_operation.h │ │ │ └── read_after_atomic_write.h │ │ ├── gtest │ │ │ ├── do_math_operation.cpp │ │ │ └── read_after_atomic_write.cpp │ │ └── implementations │ │ │ └── ocl │ │ │ ├── do_math_operation_ocl.cpp │ │ │ └── read_after_atomic_write_ocl.cpp │ ├── gpu_cmds_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── barrier_between_kernels.h │ │ │ ├── copy_with_event.h │ │ │ ├── empty_kernel.h │ │ │ ├── event_ctxt_switch_latency.h │ │ │ ├── kernel_with_event.h │ │ │ ├── kernel_with_work.h │ │ │ ├── last_event_latency.h │ │ │ ├── wait_on_event_cold.h │ │ │ ├── wait_on_event_from_walker.h │ │ │ ├── wait_on_event_hot.h │ │ │ └── write_timestamp.h │ │ ├── gtest │ │ │ ├── barrier_between_kernels.cpp │ │ │ ├── copy_with_event.cpp │ │ │ ├── empty_kernel.cpp │ │ │ ├── event_ctxt_switch_latency.cpp │ │ │ ├── kernel_with_event.cpp │ │ │ ├── kernel_with_work.cpp │ │ │ ├── last_event_latency.cpp │ │ │ ├── wait_on_event_cold.cpp │ │ │ ├── wait_on_event_from_walker.cpp │ │ │ ├── wait_on_event_hot.cpp │ │ │ └── write_timestamp.cpp │ │ └── implementations │ │ │ └── l0 │ │ │ ├── barrier_between_kernels_l0.cpp │ │ │ ├── copy_with_event_l0.cpp │ │ │ ├── empty_kernel_l0.cpp │ │ │ ├── event_ctxt_switch_latency_l0.cpp │ │ │ ├── kernel_with_event.cpp │ │ │ ├── kernel_with_work_l0.cpp │ │ │ ├── last_event_latency_l0.cpp │ │ │ ├── wait_on_event_cold_l0.cpp │ │ │ ├── wait_on_event_from_walker_l0.cpp │ │ │ ├── wait_on_event_hot_l0.cpp │ │ │ └── write_timestamp_l0.cpp │ ├── graph_api_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── decoder2_graph.h │ │ │ ├── decoder2_graph_base.h │ │ │ ├── finalize_graph.h │ │ │ ├── graph_import.h │ │ │ ├── mutate_graph.h │ │ │ ├── sin_kernel_graph.h │ │ │ ├── sin_kernel_graph_base.h │ │ │ └── submit_graph.h │ │ ├── gtest │ │ │ ├── decoder2_graph.cpp │ │ │ ├── finalize_graph.cpp │ │ │ ├── mutate_graph.cpp │ │ │ ├── sin_kernel_graph.cpp │ │ │ └── submit_graph.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── decoder2_graph_l0.cpp │ │ │ ├── decoder2_impl_l0.cpp │ │ │ ├── decoder2_impl_l0.h │ │ │ ├── memory_helper.cpp │ │ │ ├── memory_helper.h │ │ │ ├── mutate_graph_impl_l0.cpp │ │ │ ├── sin_kernel_graph_l0.cpp │ │ │ ├── sin_kernel_impl_l0.cpp │ │ │ ├── sin_kernel_impl_l0.h │ │ │ └── submit_graph_l0.cpp │ │ │ ├── ocl │ │ │ └── submit_graph_ocl.cpp │ │ │ ├── sycl │ │ │ ├── decoder2_graph_sycl.cpp │ │ │ ├── decoder2_impl_sycl.cpp │ │ │ ├── decoder2_impl_sycl.h │ │ │ ├── finalize_graph_impl_sycl.cpp │ │ │ ├── graph_helpers.h │ │ │ ├── sin_kernel_graph_sycl.cpp │ │ │ ├── sin_kernel_impl_sycl.cpp │ │ │ ├── sin_kernel_impl_sycl.h │ │ │ └── submit_graph_sycl.cpp │ │ │ └── ur │ │ │ ├── decoder2_graph_ur.cpp │ │ │ ├── decoder2_impl_ur.cpp │ │ │ ├── decoder2_impl_ur.h │ │ │ ├── sin_kernel_graph_ur.cpp │ │ │ ├── sin_kernel_impl_ur.cpp │ │ │ ├── sin_kernel_impl_ur.h │ │ │ └── submit_graph_ur.cpp │ ├── host_function_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── host_function_command_list_immediate.h │ │ │ └── host_function_command_list_regular.h │ │ ├── gtest │ │ │ ├── host_function_command_list_immediate.cpp │ │ │ └── host_function_command_list_regular.cpp │ │ ├── implementations │ │ │ └── l0 │ │ │ │ ├── host_function_command_list_immediate_impl_l0.cpp │ │ │ │ └── host_function_command_list_regular_impl_l0.cpp │ │ └── utility │ │ │ └── l0 │ │ │ └── host_function_utility_l0.h │ ├── memory_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── blit_size_assigner.h │ │ ├── definitions │ │ │ ├── copy_buffer.h │ │ │ ├── copy_buffer_rect.h │ │ │ ├── copy_buffer_to_image.h │ │ │ ├── copy_entire_image.h │ │ │ ├── copy_image_region.h │ │ │ ├── copy_image_to_buffer.h │ │ │ ├── fill_buffer.h │ │ │ ├── full_remote_access.h │ │ │ ├── full_remote_access_xe_cores_distributed.h │ │ │ ├── map_buffer.h │ │ │ ├── non_usm_copy.h │ │ │ ├── queue_in_order_memcpy.h │ │ │ ├── queue_memcpy.h │ │ │ ├── random_access.h │ │ │ ├── random_access_multi_resource.h │ │ │ ├── read_buffer.h │ │ │ ├── read_buffer_misaligned.h │ │ │ ├── read_buffer_rect.h │ │ │ ├── read_device_mem_buffer.h │ │ │ ├── read_image.h │ │ │ ├── remote_access.h │ │ │ ├── remote_access_max_saturation.h │ │ │ ├── slm.h │ │ │ ├── slm_switch_latency.h │ │ │ ├── stream_after_transfer.h │ │ │ ├── stream_memory.h │ │ │ ├── stream_memory_immediate.h │ │ │ ├── unmap_buffer.h │ │ │ ├── usm_copy.h │ │ │ ├── usm_copy_concurrent.h │ │ │ ├── usm_copy_concurrent_multiple_blits.h │ │ │ ├── usm_copy_immediate.h │ │ │ ├── usm_copy_multiple_blits.h │ │ │ ├── usm_copy_multiple_blits_immediate.h │ │ │ ├── usm_copy_region.h │ │ │ ├── usm_copy_staging_buffers.h │ │ │ ├── usm_fill.h │ │ │ ├── usm_fill_immediate.h │ │ │ ├── usm_fill_multiple_blits.h │ │ │ ├── usm_fill_specific_pattern.h │ │ │ ├── usm_memset.h │ │ │ ├── usm_shared_migrate_cpu.h │ │ │ ├── usm_shared_migrate_gpu.h │ │ │ ├── usm_shared_migrate_gpu_for_fill.h │ │ │ ├── write_buffer.h │ │ │ ├── write_buffer_rect.h │ │ │ └── write_image.h │ │ ├── gtest │ │ │ ├── copy_buffer.cpp │ │ │ ├── copy_buffer_rect.cpp │ │ │ ├── copy_buffer_to_image.cpp │ │ │ ├── copy_entire_image.cpp │ │ │ ├── copy_image_region.cpp │ │ │ ├── copy_image_to_buffer.cpp │ │ │ ├── fill_buffer.cpp │ │ │ ├── full_remote_access.cpp │ │ │ ├── full_remote_access_xe_cores_distributed.cpp │ │ │ ├── map_buffer.cpp │ │ │ ├── non_usm_copy.cpp │ │ │ ├── queue_in_order_memcpy.cpp │ │ │ ├── queue_memcpy.cpp │ │ │ ├── random_access.cpp │ │ │ ├── random_access_multi_resource.cpp │ │ │ ├── read_buffer.cpp │ │ │ ├── read_buffer_misaligned.cpp │ │ │ ├── read_buffer_rect.cpp │ │ │ ├── read_device_mem_buffer.cpp │ │ │ ├── read_image.cpp │ │ │ ├── remote_access.cpp │ │ │ ├── remote_access_max_saturation.cpp │ │ │ ├── slm.cpp │ │ │ ├── slm_switch_latency.cpp │ │ │ ├── stream_after_transfer.cpp │ │ │ ├── stream_memory.cpp │ │ │ ├── stream_memory_immediate.cpp │ │ │ ├── unmap_buffer.cpp │ │ │ ├── usm_copy.cpp │ │ │ ├── usm_copy_concurrent.cpp │ │ │ ├── usm_copy_concurrent_multiple_blits.cpp │ │ │ ├── usm_copy_immediate.cpp │ │ │ ├── usm_copy_multiple_blits.cpp │ │ │ ├── usm_copy_multiple_blits_immediate.cpp │ │ │ ├── usm_copy_region.cpp │ │ │ ├── usm_copy_staging_buffers.cpp │ │ │ ├── usm_fill.cpp │ │ │ ├── usm_fill_immediate.cpp │ │ │ ├── usm_fill_multiple_blits.cpp │ │ │ ├── usm_fill_specific_pattern.cpp │ │ │ ├── usm_memset.cpp │ │ │ ├── usm_shared_migrate_cpu.cpp │ │ │ ├── usm_shared_migrate_gpu.cpp │ │ │ ├── usm_shared_migrate_gpu_for_fill.cpp │ │ │ ├── write_buffer.cpp │ │ │ ├── write_buffer_rect.cpp │ │ │ └── write_image.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── copy_buffer_to_image_l0.cpp │ │ │ ├── copy_entire_image_l0.cpp │ │ │ ├── copy_image_region_l0.cpp │ │ │ ├── copy_image_to_buffer_l0.cpp │ │ │ ├── non_usm_copy_l0.cpp │ │ │ ├── queue_in_order_memcpy_l0.cpp │ │ │ ├── random_access_l0.cpp │ │ │ ├── random_access_multi_resource_l0.cpp │ │ │ ├── slm_switch_latency_l0.cpp │ │ │ ├── stream_memory_immediate_l0.cpp │ │ │ ├── stream_memory_l0.cpp │ │ │ ├── usm_copy_concurrent_l0.cpp │ │ │ ├── usm_copy_concurrent_multiple_blits_l0.cpp │ │ │ ├── usm_copy_immediate_l0.cpp │ │ │ ├── usm_copy_l0.cpp │ │ │ ├── usm_copy_multiple_blits_immediate_l0.cpp │ │ │ ├── usm_copy_multiple_blits_l0.cpp │ │ │ ├── usm_copy_region_l0.cpp │ │ │ ├── usm_copy_staging_buffers_l0.cpp │ │ │ ├── usm_fill_immediate_l0.cpp │ │ │ ├── usm_fill_l0.cpp │ │ │ ├── usm_fill_multiple_blits_l0.cpp │ │ │ ├── usm_fill_specific_pattern_l0.cpp │ │ │ ├── usm_shared_migrate_cpu_l0.cpp │ │ │ ├── usm_shared_migrate_gpu_for_fill_l0.cpp │ │ │ └── usm_shared_migrate_gpu_l0.cpp │ │ │ ├── ocl │ │ │ ├── copy_buffer_ocl.cpp │ │ │ ├── copy_buffer_rect_ocl.cpp │ │ │ ├── copy_buffer_to_image_ocl.cpp │ │ │ ├── copy_entire_image_ocl.cpp │ │ │ ├── copy_image_region_ocl.cpp │ │ │ ├── copy_image_to_buffer_ocl.cpp │ │ │ ├── fill_buffer_ocl.cpp │ │ │ ├── full_remote_access_ocl.cpp │ │ │ ├── full_remote_access_xe_cores_distributed_ocl.cpp │ │ │ ├── map_buffer_ocl.cpp │ │ │ ├── read_buffer_misaligned_ocl.cpp │ │ │ ├── read_buffer_ocl.cpp │ │ │ ├── read_buffer_rect_ocl.cpp │ │ │ ├── read_device_mem_buffer_ocl.cpp │ │ │ ├── read_image_ocl.cpp │ │ │ ├── remote_access_max_saturation_ocl.cpp │ │ │ ├── remote_access_ocl.cpp │ │ │ ├── slm_ocl.cpp │ │ │ ├── stream_after_transfer_ocl.cpp │ │ │ ├── stream_memory_ocl.cpp │ │ │ ├── unmap_buffer_ocl.cpp │ │ │ ├── usm_copy_multiple_blits_ocl.cpp │ │ │ ├── usm_copy_ocl.cpp │ │ │ ├── usm_fill_multiple_blits_ocl.cpp │ │ │ ├── usm_fill_ocl.cpp │ │ │ ├── usm_fill_specific_pattern_ocl.cpp │ │ │ ├── usm_memset_ocl.cpp │ │ │ ├── usm_shared_migrate_cpu_ocl.cpp │ │ │ ├── usm_shared_migrate_gpu_for_fill_ocl.cpp │ │ │ ├── usm_shared_migrate_gpu_ocl.cpp │ │ │ ├── write_buffer_ocl.cpp │ │ │ ├── write_buffer_rect_ocl.cpp │ │ │ └── write_image_ocl.cpp │ │ │ └── sycl │ │ │ ├── queue_in_order_memcpy_sycl.cpp │ │ │ ├── queue_memcpy_sycl.cpp │ │ │ └── stream_memory_sycl.cpp │ ├── miscellaneous_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── ioq_kernel_switch_latency.h │ │ │ ├── kernel_with_work_split.h │ │ │ ├── matrix_multiply.h │ │ │ ├── reduction.h │ │ │ ├── reduction2.h │ │ │ ├── reduction3.h │ │ │ ├── reduction4.h │ │ │ └── reduction5.h │ │ ├── gtest │ │ │ ├── ioq_kernel_switch_latency.cpp │ │ │ ├── kernel_with_work_split.cpp │ │ │ ├── matrix_multiply.cpp │ │ │ ├── reduction.cpp │ │ │ ├── reduction2.cpp │ │ │ ├── reduction3.cpp │ │ │ ├── reduction4.cpp │ │ │ └── reduction5.cpp │ │ └── implementations │ │ │ ├── ocl │ │ │ ├── ioq_kernel_switch_latency_ocl.cpp │ │ │ ├── kernel_with_work_split_ocl.cpp │ │ │ ├── matrix_multiply_ocl.cpp │ │ │ ├── reduction_ocl.cpp │ │ │ ├── reduction_ocl2.cpp │ │ │ ├── reduction_ocl3.cpp │ │ │ ├── reduction_ocl4.cpp │ │ │ └── reduction_ocl5.cpp │ │ │ └── sycl │ │ │ └── matrix_multiply_sycl.cpp │ ├── mpi_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── allreduce.h │ │ │ ├── alltoall.h │ │ │ ├── bandwidth.h │ │ │ ├── broadcast.h │ │ │ ├── latency.h │ │ │ ├── overlap.h │ │ │ ├── reduce.h │ │ │ └── startup.h │ │ ├── gtest │ │ │ ├── allreduce.cpp │ │ │ ├── alltoall.cpp │ │ │ ├── bandwidth.cpp │ │ │ ├── broadcast.cpp │ │ │ ├── latency.cpp │ │ │ ├── overlap.cpp │ │ │ ├── reduce.cpp │ │ │ └── startup.cpp │ │ ├── implementations │ │ │ └── l0 │ │ │ │ ├── allreduce_l0.cpp │ │ │ │ ├── alltoall_l0.cpp │ │ │ │ ├── bandwidth_l0.cpp │ │ │ │ ├── broadcast_l0.cpp │ │ │ │ ├── latency_l0.cpp │ │ │ │ ├── overlap_l0.cpp │ │ │ │ ├── reduce_l0.cpp │ │ │ │ └── startup_l0.cpp │ │ └── utility │ │ │ ├── mpi_helper.cpp │ │ │ └── mpi_helper.h │ ├── multiprocess_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── immediate_cmdlist_completion.h │ │ │ ├── immediate_cmdlist_submission.h │ │ │ ├── kernel_and_copy.h │ │ │ ├── multi_process_compute.h │ │ │ ├── multi_process_compute_shared_buffer.h │ │ │ └── multi_process_init.h │ │ ├── gtest │ │ │ ├── immediate_cmdlist_completion.cpp │ │ │ ├── immediate_cmdlist_submission.cpp │ │ │ ├── kernel_and_copy.cpp │ │ │ ├── multi_process_compute.cpp │ │ │ ├── multi_process_compute_shared_buffer.cpp │ │ │ └── multi_process_init.cpp │ │ ├── implementations │ │ │ ├── l0 │ │ │ │ ├── immediate_cmdlist_completion_l0.cpp │ │ │ │ ├── immediate_cmdlist_submission_l0.cpp │ │ │ │ ├── multi_process_compute_l0.cpp │ │ │ │ ├── multi_process_compute_shared_buffer_l0.cpp │ │ │ │ └── multi_process_init_l0.cpp │ │ │ └── ocl │ │ │ │ └── kernel_and_copy_ocl.cpp │ │ └── utility │ │ │ ├── l0 │ │ │ └── multi_process_helper_l0.h │ │ │ ├── multi_process_helper.cpp │ │ │ └── multi_process_helper.h │ ├── multithread_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── immediate_cmdlist_completion.h │ │ │ ├── immediate_cmdlist_submission.h │ │ │ ├── memcpy_execute.h │ │ │ └── svm_copy.h │ │ ├── gtest │ │ │ ├── immediate_cmdlist_completion.cpp │ │ │ ├── immediate_cmdlist_submission.cpp │ │ │ ├── memcpy_execute.cpp │ │ │ └── svm_copy.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── immediate_cmdlist_completion_l0.cpp │ │ │ ├── immediate_cmdlist_submission_l0.cpp │ │ │ └── svm_copy_l0.cpp │ │ │ ├── ocl │ │ │ └── svm_copy_ocl.cpp │ │ │ ├── sycl │ │ │ └── memcpy_execute_interleaved.cpp │ │ │ └── ur │ │ │ └── memcpy_execute_interleaved.cpp │ ├── multitile_memory_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── copy_buffer.h │ │ │ ├── fill_buffer.h │ │ │ ├── read_buffer.h │ │ │ ├── usm_bidirectional_copy.h │ │ │ ├── usm_copy.h │ │ │ ├── usm_copy_immediate.h │ │ │ ├── usm_copy_kernel.h │ │ │ ├── usm_fill.h │ │ │ ├── usm_shared_migrate_cpu.h │ │ │ ├── usm_shared_migrate_gpu.h │ │ │ └── write_buffer.h │ │ ├── gtest │ │ │ ├── copy_buffer.cpp │ │ │ ├── fill_buffer.cpp │ │ │ ├── read_buffer.cpp │ │ │ ├── usm_bidirectional_copy.cpp │ │ │ ├── usm_copy.cpp │ │ │ ├── usm_copy_immediate.cpp │ │ │ ├── usm_copy_kernel.cpp │ │ │ ├── usm_fill.cpp │ │ │ ├── usm_shared_migrate_cpu.cpp │ │ │ ├── usm_shared_migrate_gpu.cpp │ │ │ └── write_buffer.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── usm_bidirectional_copy_l0.cpp │ │ │ ├── usm_copy_immediate_l0.cpp │ │ │ ├── usm_copy_kernel_l0.cpp │ │ │ ├── usm_copy_l0.cpp │ │ │ ├── usm_fill_l0.cpp │ │ │ ├── usm_shared_migrate_cpu_l0.cpp │ │ │ └── usm_shared_migrate_gpu_l0.cpp │ │ │ └── ocl │ │ │ ├── copy_buffer_ocl.cpp │ │ │ ├── fill_buffer_ocl.cpp │ │ │ ├── read_buffer_ocl.cpp │ │ │ ├── usm_copy_kernel_ocl.cpp │ │ │ ├── usm_copy_ocl.cpp │ │ │ ├── usm_fill_ocl.cpp │ │ │ ├── usm_shared_migrate_cpu_ocl.cpp │ │ │ ├── usm_shared_migrate_gpu_ocl.cpp │ │ │ └── write_buffer.cpp │ ├── p2p_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── usm_copy_multiple_blits.h │ │ │ ├── usm_copy_multiple_blits_immediate.h │ │ │ └── usm_eu_copy.h │ │ ├── gtest │ │ │ ├── usm_copy_multiple_blits.cpp │ │ │ ├── usm_copy_multiple_blits_immediate.cpp │ │ │ └── usm_eu_copy.cpp │ │ └── implementations │ │ │ └── l0 │ │ │ ├── usm_copy_multiple_blits_immediate_l0.cpp │ │ │ ├── usm_copy_multiple_blits_l0.cpp │ │ │ └── usm_eu_copy_l0.cpp │ ├── record_and_replay_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ └── record_graph.h │ │ ├── gtest │ │ │ └── record_graph.cpp │ │ └── implementations │ │ │ └── l0 │ │ │ └── record_graph_impl_l0.cpp │ ├── torch_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ │ ├── kernel_submit_multi_queue.h │ │ │ ├── kernel_submit_slm_size.h │ │ │ └── sycl_kernels.h │ │ ├── gtest │ │ │ ├── kernel_submit_multi_queue.cpp │ │ │ └── kernel_submit_slm_size.cpp │ │ └── implementations │ │ │ ├── l0 │ │ │ ├── kernel_submit_common.cpp │ │ │ ├── kernel_submit_common.hpp │ │ │ ├── kernel_submit_multi_queue_l0.cpp │ │ │ └── kernel_submit_slm_size_l0.cpp │ │ │ └── sycl │ │ │ ├── kernel_submit_multi_queue_sycl.cpp │ │ │ └── kernel_submit_slm_size_sycl.cpp │ └── ulls_benchmark │ │ ├── CMakeLists.txt │ │ ├── benchmark_info.cpp │ │ ├── definitions │ │ ├── best_submission.h │ │ ├── best_walker_nth_commandlist_submission.h │ │ ├── best_walker_nth_submission.h │ │ ├── best_walker_nth_submission_immediate.h │ │ ├── best_walker_submission.h │ │ ├── best_walker_submission_immediate.h │ │ ├── best_walker_submission_immediate_multi_cmdlists.h │ │ ├── completion_latency.h │ │ ├── copy_submission_events.h │ │ ├── empty_kernel.h │ │ ├── empty_kernel_immediate.h │ │ ├── empty_kernels_with_global_timer.h │ │ ├── enqueue_barrier_with_empty_waitlist.h │ │ ├── kernel_switch_latency.h │ │ ├── kernel_switch_latency_immediate.h │ │ ├── kernel_with_work.h │ │ ├── kernel_with_work_immediate.h │ │ ├── kernel_with_work_periodic.h │ │ ├── multi_kernel_execution.h │ │ ├── multi_queue_submission.h │ │ ├── multiple_immediate_with_dependencies.h │ │ ├── new_resources_submission_device.h │ │ ├── new_resources_submission_host.h │ │ ├── new_resources_with_gpu_access.h │ │ ├── queue_concurrency.h │ │ ├── queue_priorities.h │ │ ├── queue_switch_latency.h │ │ ├── round_trip_submission.h │ │ ├── usm_shared_first_cpu_access.h │ │ ├── usm_shared_first_gpu_access.h │ │ ├── walker_completion_latency.h │ │ ├── walker_submission_events.h │ │ └── write_latency.h │ │ ├── gtest │ │ ├── best_submission.cpp │ │ ├── best_walker_nth_commandlist_submission.cpp │ │ ├── best_walker_nth_submission.cpp │ │ ├── best_walker_nth_submission_immediate.cpp │ │ ├── best_walker_submission.cpp │ │ ├── best_walker_submission_immediate.cpp │ │ ├── best_walker_submission_immediate_multi_cmdlists.cpp │ │ ├── completion_latency.cpp │ │ ├── copy_submission_events.cpp │ │ ├── empty_kernel.cpp │ │ ├── empty_kernel_immediate.cpp │ │ ├── empty_kernels_with_global_timer.cpp │ │ ├── enqueue_barrier_with_empty_waitlist.cpp │ │ ├── kernel_switch_latency.cpp │ │ ├── kernel_switch_latency_immediate.cpp │ │ ├── kernel_with_work.cpp │ │ ├── kernel_with_work_immediate.cpp │ │ ├── kernel_with_work_periodic.cpp │ │ ├── multi_kernel_execution.cpp │ │ ├── multi_queue_submission.cpp │ │ ├── multiple_immediate_with_dependencies.cpp │ │ ├── new_resources_submission_device.cpp │ │ ├── new_resources_submission_host.cpp │ │ ├── new_resources_with_gpu_access.cpp │ │ ├── queue_concurrency.cpp │ │ ├── queue_priorities.cpp │ │ ├── queue_switch_latency.cpp │ │ ├── round_trip_submission.cpp │ │ ├── usm_shared_first_cpu_access.cpp │ │ ├── usm_shared_first_gpu_access.cpp │ │ ├── walker_completion_latency.cpp │ │ ├── walker_submission_events.cpp │ │ └── write_latency.cpp │ │ └── implementations │ │ ├── l0 │ │ ├── best_submission_l0.cpp │ │ ├── best_walker_nth_commandlist_submission_l0.cpp │ │ ├── best_walker_nth_submission_immediate_l0.cpp │ │ ├── best_walker_nth_submission_l0.cpp │ │ ├── best_walker_submission_immediate_l0.cpp │ │ ├── best_walker_submission_immediate_multi_cmdlists_l0.cpp │ │ ├── best_walker_submission_l0.cpp │ │ ├── completion_latency_l0.cpp │ │ ├── copy_submission_events_l0.cpp │ │ ├── empty_kernel_immediate_l0.cpp │ │ ├── empty_kernel_l0.cpp │ │ ├── empty_kernels_with_global_timer_l0.cpp │ │ ├── kernel_switch_latency_immediate_l0.cpp │ │ ├── kernel_switch_latency_l0.cpp │ │ ├── kernel_with_work_immediate_l0.cpp │ │ ├── kernel_with_work_l0.cpp │ │ ├── kernel_with_work_periodic_l0.cpp │ │ ├── multi_kernel_execution_l0.cpp │ │ ├── multi_queue_submission_l0.cpp │ │ ├── multiple_immediate_with_dependencies_l0.cpp │ │ ├── new_resources_submission_device_l0.cpp │ │ ├── new_resources_submission_host_l0.cpp │ │ ├── new_resources_with_gpu_access_l0.cpp │ │ ├── queue_switch_latency_l0.cpp │ │ ├── round_trip_submission_l0.cpp │ │ ├── usm_shared_first_cpu_access_l0.cpp │ │ ├── usm_shared_first_gpu_access_l0.cpp │ │ ├── walker_completion_latency_l0.cpp │ │ ├── walker_submission_events_l0.cpp │ │ └── write_latency_l0.cpp │ │ ├── ocl │ │ ├── best_walker_submission_ocl.cpp │ │ ├── copy_submission_events_ocl.cpp │ │ ├── empty_kernel_ocl.cpp │ │ ├── enqueue_barrier_with_empty_waitlist_ocl.cpp │ │ ├── kernel_switch_latency_ocl.cpp │ │ ├── kernel_with_work_ocl.cpp │ │ ├── multi_queue_submission_ocl.cpp │ │ ├── new_resources_submission_device_ocl.cpp │ │ ├── new_resources_submission_host_ocl.cpp │ │ ├── new_resources_with_gpu_access_ocl.cpp │ │ ├── queue_concurrency_ocl.cpp │ │ ├── queue_priorities_ocl.cpp │ │ ├── round_trip_submission_ocl.cpp │ │ ├── usm_shared_first_cpu_access_ocl.cpp │ │ ├── usm_shared_first_gpu_access_ocl.cpp │ │ ├── walker_completion_latency_ocl.cpp │ │ └── walker_submission_events_ocl.cpp │ │ ├── omp │ │ ├── best_walker_submission_omp.cpp │ │ └── empty_kernel_omp.cpp │ │ └── sycl │ │ ├── best_walker_submission_sycl.cpp │ │ ├── empty_kernel_sycl.cpp │ │ └── kernel_switch_latency_sycl.cpp ├── docs_generator │ ├── CMakeLists.txt │ ├── data_types.h │ ├── helpers.h │ └── main.cpp ├── framework │ ├── CMakeLists.txt │ ├── additional │ │ ├── CMakeLists.txt │ │ ├── additional_configuration.cpp │ │ ├── additional_configuration.h │ │ └── api_additional.cpp │ ├── argument │ │ ├── CMakeLists.txt │ │ ├── abstract │ │ │ ├── argument.cpp │ │ │ ├── argument.h │ │ │ ├── bitfield_enum_argument.h │ │ │ └── enum_argument.h │ │ ├── argument_container.cpp │ │ ├── argument_container.h │ │ ├── basic_argument.h │ │ ├── bitmap_argument.h │ │ ├── boolean_flag_argument.h │ │ ├── compression_argument.h │ │ ├── enum │ │ │ ├── allocation_measure_mode_argument.h │ │ │ ├── api_argument.h │ │ │ ├── atomic_math_operation_argument.h │ │ │ ├── atomic_memory_order_argument.h │ │ │ ├── atomic_scope_argument.h │ │ │ ├── buffer_contents_argument.h │ │ │ ├── data_type_argument.h │ │ │ ├── device_selection_argument.h │ │ │ ├── distribution_kind_argument.h │ │ │ ├── engine_argument.h │ │ │ ├── event_scope_argument.h │ │ │ ├── graph_operation_type_argument.h │ │ │ ├── graph_structure_argument.h │ │ │ ├── hostptr_reuse_mode_argument.h │ │ │ ├── map_flags_argument.h │ │ │ ├── mpi_statistics_type_argument.h │ │ │ ├── multi_device_selection_argument.h │ │ │ ├── normal_math_operation_argument.h │ │ │ ├── profiler_type_argument.h │ │ │ ├── stream_memory_type_argument.h │ │ │ ├── tmp_memory_strategy_argument.h │ │ │ ├── usm_device_selection_argument.h │ │ │ ├── usm_initial_placement_argument.h │ │ │ ├── usm_memadvise_preferred_location_argument.h │ │ │ ├── usm_memory_placement_argument.h │ │ │ ├── usm_runtime_memory_placement_argument.h │ │ │ └── work_item_id_usage_argument.h │ │ ├── long_hex_argument.h │ │ ├── string_argument.h │ │ ├── string_list_argument.h │ │ └── three_component_uint_argument.h │ ├── benchmark_info.cpp │ ├── benchmark_info.h │ ├── benchmark_main.cpp │ ├── benchmark_main.h │ ├── configuration.cpp │ ├── configuration.h │ ├── enum │ │ ├── CMakeLists.txt │ │ ├── allocation_measure_mode.h │ │ ├── api.h │ │ ├── api_additional.h │ │ ├── atomic_memory_order.h │ │ ├── atomic_scope.h │ │ ├── buffer_contents.h │ │ ├── data_type.h │ │ ├── device_selection.h │ │ ├── distribution_kind.h │ │ ├── engine.h │ │ ├── event_scope_argument.h │ │ ├── graph_operation_type.h │ │ ├── graph_structure.h │ │ ├── hostptr_reuse_mode.h │ │ ├── image_type.h │ │ ├── map_flags.h │ │ ├── math_operation.h │ │ ├── measurement_type.h │ │ ├── measurement_unit.h │ │ ├── mpi_test.h │ │ ├── profiler_type.h │ │ ├── stream_memory_type.h │ │ ├── test_type.h │ │ ├── tmp_memory_strategy.h │ │ ├── usm_initial_placement.h │ │ ├── usm_memadvise_preferred_location.h │ │ ├── usm_memory_placement.h │ │ ├── usm_runtime_memory_placement.h │ │ └── work_item_id_usage.h │ ├── gtest_event_listener.h │ ├── intel_product │ │ ├── CMakeLists.txt │ │ ├── get_intel_product.h │ │ └── intel_products.inl │ ├── l0 │ │ ├── CMakeLists.txt │ │ ├── context_properties.h │ │ ├── extension_properties.h │ │ ├── intel_product │ │ │ ├── CMakeLists.txt │ │ │ ├── get_intel_product_l0.cpp │ │ │ └── get_intel_product_l0.h │ │ ├── levelzero.cpp │ │ ├── levelzero.h │ │ ├── null_levelzero.cpp │ │ ├── queue_properties.h │ │ └── utility │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_contents_helper_l0.cpp │ │ │ ├── buffer_contents_helper_l0.h │ │ │ ├── error.h │ │ │ ├── error_codes.cpp │ │ │ ├── error_codes.h │ │ │ ├── image_helper_l0.h │ │ │ ├── kernel_helper_l0.cpp │ │ │ ├── kernel_helper_l0.h │ │ │ ├── print_device_info_l0.inl │ │ │ ├── queue_families_helper.cpp │ │ │ ├── queue_families_helper.h │ │ │ ├── usm_helper.cpp │ │ │ └── usm_helper.h │ ├── ocl │ │ ├── CMakeLists.txt │ │ ├── cl.h │ │ ├── context_properties.h │ │ ├── function_signatures_ocl.h │ │ ├── intel_product │ │ │ ├── CMakeLists.txt │ │ │ ├── get_intel_product_ocl.cpp │ │ │ └── get_intel_product_ocl.h │ │ ├── opencl.cpp │ │ ├── opencl.h │ │ ├── queue_properties.h │ │ └── utility │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_contents_helper_ocl.cpp │ │ │ ├── buffer_contents_helper_ocl.h │ │ │ ├── compression_helper.h │ │ │ ├── error.h │ │ │ ├── error_codes.cpp │ │ │ ├── error_codes.h │ │ │ ├── extensions_helper.h │ │ │ ├── hostptr_reuse_helper.cpp │ │ │ ├── hostptr_reuse_helper.h │ │ │ ├── image_helper_ocl.h │ │ │ ├── map_flags_ocl.h │ │ │ ├── print_device_info_ocl.inl │ │ │ ├── profiling_helper.h │ │ │ ├── program_helper_ocl.cpp │ │ │ ├── program_helper_ocl.h │ │ │ ├── queue_families_helper.h │ │ │ ├── usm_helper_ocl.cpp │ │ │ └── usm_helper_ocl.h │ ├── omp │ │ └── CMakeLists.txt │ ├── print_device_info.cpp │ ├── print_device_info.h │ ├── supported_apis.cpp │ ├── supported_apis.h │ ├── sycl │ │ ├── CMakeLists.txt │ │ ├── sycl.cpp │ │ ├── sycl.h │ │ └── utility │ │ │ ├── print_device_info_sycl.inl │ │ │ ├── usm_helper.cpp │ │ │ └── usm_helper.h │ ├── test_case │ │ ├── CMakeLists.txt │ │ ├── register_test_case.h │ │ ├── test_case.h │ │ ├── test_case_argument_container.cpp │ │ ├── test_case_argument_container.h │ │ ├── test_case_base.cpp │ │ ├── test_case_base.h │ │ ├── test_case_interface.h │ │ ├── test_case_statistics.cpp │ │ ├── test_case_statistics.h │ │ ├── test_result.cpp │ │ └── test_result.h │ ├── test_map.cpp │ ├── test_map.h │ ├── ur │ │ ├── CMakeLists.txt │ │ ├── error.h │ │ ├── print_device_info.h │ │ ├── ur.cpp │ │ ├── ur.h │ │ └── usm_helper.h │ ├── utility │ │ ├── CMakeLists.txt │ │ ├── aligned_allocator.h │ │ ├── alignment.h │ │ ├── bit_operations_helper.h │ │ ├── buffer_contents_helper.cpp │ │ ├── buffer_contents_helper.h │ │ ├── combo_profiler.h │ │ ├── command_line_argument.cpp │ │ ├── command_line_argument.h │ │ ├── common_gtest_args.h │ │ ├── common_help_message.cpp │ │ ├── common_help_message.h │ │ ├── compiler_options_builder.cpp │ │ ├── compiler_options_builder.h │ │ ├── cpu_allocation_helper.cpp │ │ ├── cpu_allocation_helper.h │ │ ├── cpu_counter.h │ │ ├── error.h │ │ ├── execute_at_app_init.h │ │ ├── file_helper.cpp │ │ ├── file_helper.h │ │ ├── hex_helper.h │ │ ├── image_helper.cpp │ │ ├── image_helper.h │ │ ├── linux │ │ │ ├── CMakeLists.txt │ │ │ ├── aligned_allocator.cpp │ │ │ ├── error.h │ │ │ ├── ipc.cpp │ │ │ ├── ipc.h │ │ │ ├── process_linux.cpp │ │ │ ├── set_env_raii.h │ │ │ ├── sleep_linux.h │ │ │ └── working_directory_helper_linux.cpp │ │ ├── math_operation_helper.cpp │ │ ├── math_operation_helper.h │ │ ├── memory_constants.h │ │ ├── power_meter.h │ │ ├── process.cpp │ │ ├── process.h │ │ ├── process_group.cpp │ │ ├── process_group.h │ │ ├── process_synchronization_helper.h │ │ ├── random_distribution.cpp │ │ ├── random_distribution.h │ │ ├── sleep.h │ │ ├── statistics.cpp │ │ ├── statistics.h │ │ ├── string_utils.h │ │ ├── test_type_skip.h │ │ ├── timer.h │ │ ├── windows │ │ │ ├── CMakeLists.txt │ │ │ ├── aligned_allocator.cpp │ │ │ ├── process_windows.cpp │ │ │ ├── sleep_windows.h │ │ │ ├── windows.h │ │ │ └── working_directory_helper_windows.cpp │ │ └── working_directory_helper.h │ └── workload │ │ ├── CMakeLists.txt │ │ ├── linux │ │ ├── CMakeLists.txt │ │ └── workload_io_linux.cpp │ │ ├── register_workload.h │ │ ├── windows │ │ ├── CMakeLists.txt │ │ └── workload_io_windows.cpp │ │ ├── workload.h │ │ ├── workload_argument_container.h │ │ ├── workload_io.h │ │ ├── workload_statistics.cpp │ │ ├── workload_statistics.h │ │ ├── workload_synchronization.cpp │ │ └── workload_synchronization.h ├── kernels │ ├── access_device_mem_random.cl │ ├── access_device_mem_random.spv │ ├── api_overhead_benchmark_1024bytes_argument.cl │ ├── api_overhead_benchmark_1024bytes_argument.spv │ ├── api_overhead_benchmark_2048bytes_argument.cl │ ├── api_overhead_benchmark_2048bytes_argument.spv │ ├── api_overhead_benchmark_256bytes_argument.cl │ ├── api_overhead_benchmark_256bytes_argument.spv │ ├── api_overhead_benchmark_512bytes_argument.cl │ ├── api_overhead_benchmark_512bytes_argument.spv │ ├── api_overhead_benchmark_64bytes_argument.cl │ ├── api_overhead_benchmark_64bytes_argument.spv │ ├── api_overhead_benchmark_8bytes_argument.cl │ ├── api_overhead_benchmark_8bytes_argument.spv │ ├── api_overhead_benchmark_eat_time.cl │ ├── api_overhead_benchmark_eat_time.spv │ ├── api_overhead_benchmark_empty_kernel.cl │ ├── api_overhead_benchmark_empty_kernel.spv │ ├── api_overhead_benchmark_fill_with_ones.cl │ ├── api_overhead_benchmark_fill_with_ones.spv │ ├── api_overhead_benchmark_global_consts.cl │ ├── api_overhead_benchmark_global_consts.spv │ ├── api_overhead_benchmark_indirect_access_kernel.cl │ ├── api_overhead_benchmark_indirect_access_kernel.spv │ ├── api_overhead_benchmark_multi_arg_kernel.cl │ ├── api_overhead_benchmark_multi_arg_kernel.spv │ ├── api_overhead_benchmark_write_one.spv │ ├── api_overhead_benchmark_write_sum_local.cl │ ├── api_overhead_benchmark_write_sum_local.spv │ ├── atomic_benchmark_kernel.cl │ ├── benchmark_write_multiple.cl │ ├── benchmark_write_one.cl │ ├── benchmark_write_one_global_ids.cl │ ├── benchmark_write_one_local_ids.cl │ ├── emu_benchmark_int64_div.cl │ ├── eu_benchmark_perform_math_operation.cl │ ├── eu_benchmark_read_after_atomic_write.cl │ ├── gpu_cmds_benchmark_empty_kernel.cl │ ├── gpu_cmds_benchmark_empty_kernel.spv │ ├── gpu_cmds_benchmark_write_one.cl │ ├── gpu_cmds_benchmark_write_one.spv │ ├── gpu_cmds_benchmark_write_one_global_ids.cl │ ├── gpu_cmds_benchmark_write_one_global_ids.spv │ ├── gpu_cmds_benchmark_write_one_global_ids_with_check.cl │ ├── gpu_cmds_benchmark_write_one_global_ids_with_check.spv │ ├── gpu_cmds_benchmark_write_one_local_ids.cl │ ├── gpu_cmds_benchmark_write_one_local_ids.spv │ ├── graph_api_benchmark_kernel_assign.cl │ ├── graph_api_benchmark_kernel_assign.spv │ ├── graph_api_benchmark_kernel_increment.cl │ ├── graph_api_benchmark_kernel_increment.spv │ ├── graph_api_benchmark_kernel_multiply.cl │ ├── graph_api_benchmark_kernel_multiply.spv │ ├── graph_api_benchmark_kernel_sin.cl │ ├── graph_api_benchmark_kernel_sin.spv │ ├── graph_api_benchmark_kernel_sum.cl │ ├── graph_api_benchmark_kernel_sum.spv │ ├── heat3d_workload.cl │ ├── heat3d_workload.spv │ ├── memory_benchmark_fill_with_ones.cl │ ├── memory_benchmark_fill_with_ones.spv │ ├── memory_benchmark_stream_memory.cl │ ├── memory_benchmark_stream_memory.spv │ ├── memory_benchmark_stream_memory_fp64.spv │ ├── miscellaneous_benchmark_reduction.cl │ ├── mpi_workload_dummy_compute.cl │ ├── mpi_workload_dummy_compute.spv │ ├── multitile_memory_benchmark_copy_buffer.cl │ ├── multitile_memory_benchmark_copy_buffer.spv │ ├── multitile_memory_benchmark_fill_with_ones.cl │ ├── multitile_memory_benchmark_fill_with_ones.spv │ ├── read_device_mem_buffer.cl │ ├── single_queue_workload_increment.cl │ ├── single_queue_workload_increment.spv │ ├── slm_benchmark.cl │ ├── slm_benchmark.spv │ ├── torch_benchmark_elementwise_slm.cl │ ├── torch_benchmark_elementwise_slm.spv │ ├── torch_benchmark_elementwise_sum_2.cl │ ├── torch_benchmark_elementwise_sum_2.spv │ ├── ulls_benchmark_eat_time.cl │ ├── ulls_benchmark_eat_time.spv │ ├── ulls_benchmark_empty_kernel.cl │ ├── ulls_benchmark_empty_kernel.spv │ ├── ulls_benchmark_fill_with_ones.cl │ ├── ulls_benchmark_fill_with_ones.spv │ ├── ulls_benchmark_multi_kernel_execution.cl │ ├── ulls_benchmark_multi_kernel_execution.spv │ ├── ulls_benchmark_write_one.cl │ ├── ulls_benchmark_write_one.spv │ ├── ulls_benchmark_write_one_atomic_per_workgroup.cl │ ├── ulls_benchmark_write_one_atomic_per_workgroup_.spv │ ├── ulls_benchmark_write_one_global_ids.cl │ ├── ulls_benchmark_write_one_global_ids.spv │ ├── ulls_benchmark_write_one_local_ids.cl │ └── ulls_benchmark_write_one_local_ids.spv ├── tools │ ├── CMakeLists.txt │ ├── clflush_comparison │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── mutex_comparison │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── show_devices_l0 │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── show_devices_ocl │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── show_devices_sycl │ │ ├── CMakeLists.txt │ │ └── main.cpp └── workloads │ ├── CMakeLists.txt │ ├── heat3d_workload_l0 │ ├── CMakeLists.txt │ └── heat3d_workload_l0.cpp │ ├── hello_world_template_workload_ocl │ ├── CMakeLists.txt │ └── hello_world_template_workload_ocl.cpp │ ├── hello_world_workload_ocl │ ├── CMakeLists.txt │ └── hello_world_workload_ocl.cpp │ ├── immediate_cmdlist_copy_workload_l0 │ ├── CMakeLists.txt │ └── immediate_cmdlist_copy_workload_l0.cpp │ ├── immediate_cmdlist_walker_submission_workload_l0 │ ├── CMakeLists.txt │ └── immediate_cmdlist_walker_submission_workload_l0.cpp │ ├── init_workload_l0 │ ├── CMakeLists.txt │ └── init_workload_l0.cpp │ ├── mpi_workload_l0 │ ├── CMakeLists.txt │ └── mpi_workload_l0.cpp │ ├── single_queue_workload_l0 │ ├── CMakeLists.txt │ └── single_queue_workload_l0.cpp │ └── single_queue_workload_shared_buffer_l0 │ ├── CMakeLists.txt │ └── single_queue_workload_shared_buffer_l0.cpp └── third_party ├── level-zero-intel └── level_zero │ ├── driver_experimental │ └── public │ │ ├── zex_common.h │ │ └── zex_graph.h │ ├── zex_driver.h │ └── zex_event.h ├── level-zero-sdk ├── include │ └── level_zero │ │ ├── ze_api.h │ │ ├── ze_ddi.h │ │ ├── ze_ddi_common.h │ │ ├── ze_intel_gpu.h │ │ ├── ze_stypes.h │ │ ├── zer_api.h │ │ ├── zer_ddi.h │ │ ├── zes_api.h │ │ ├── zes_ddi.h │ │ ├── zet_api.h │ │ └── zet_ddi.h └── lib │ └── x64 │ ├── libze_loader.so │ ├── libze_loader.so.1 │ ├── libze_loader.so.1.25.1 │ ├── libze_tracing_layer.so │ ├── libze_tracing_layer.so.1 │ ├── libze_tracing_layer.so.1.25.1 │ ├── libze_validation_layer.so │ ├── libze_validation_layer.so.1 │ ├── libze_validation_layer.so.1.25.1 │ ├── ze_loader.lib │ ├── ze_tracing_layer.lib │ └── ze_validation_layer.lib ├── manifests.yml ├── opencl-intel └── CL │ └── intel │ └── cl_ext_private.h └── opencl-sdk ├── include └── CL │ ├── cl.h │ ├── cl.hpp │ ├── 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_icd.h │ ├── cl_platform.h │ ├── cl_va_api_media_sharing_intel.h │ ├── cl_version.h │ └── opencl.h └── lib └── x64 ├── OpenCL.lib └── libOpenCL.so /.branch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/.clang-format -------------------------------------------------------------------------------- /.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/.config -------------------------------------------------------------------------------- /.github/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/.github/lint.yml -------------------------------------------------------------------------------- /.github/pull-request.yml: -------------------------------------------------------------------------------- 1 | defaultbranch: master 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lint-revision: -------------------------------------------------------------------------------- 1 | 1.2.43 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/CMakeOptions.cmake -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/FAQ.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/TESTS.md -------------------------------------------------------------------------------- /cmake/CopyKernels.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/cmake/CopyKernels.cmake -------------------------------------------------------------------------------- /cmake/FindLevelZero.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/cmake/FindLevelZero.cmake -------------------------------------------------------------------------------- /cmake/FindSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/cmake/FindSYCL.cmake -------------------------------------------------------------------------------- /scripts/benchmark_visualization/benchmark_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/benchmark_visualization/benchmark_visualize.py -------------------------------------------------------------------------------- /scripts/benchmark_visualization/benchmark_visualize_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/benchmark_visualization/benchmark_visualize_usage.md -------------------------------------------------------------------------------- /scripts/benchmark_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/benchmark_visualize.py -------------------------------------------------------------------------------- /scripts/compile_to_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/compile_to_spv.sh -------------------------------------------------------------------------------- /scripts/run_clang-format_on_all_files.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/run_clang-format_on_all_files.cmd -------------------------------------------------------------------------------- /scripts/run_clang-format_on_all_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/run_clang-format_on_all_files.sh -------------------------------------------------------------------------------- /scripts/setup_remote_debugging_for_vs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/setup_remote_debugging_for_vs.sh -------------------------------------------------------------------------------- /scripts/sycl-proxy.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl-proxy.sh.in -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl/graph_input_generator/README.md -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/graph_dot_to_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl/graph_input_generator/graph_dot_to_cpp.py -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/graph_import.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl/graph_input_generator/graph_import.h.in -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/gromacs.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl/graph_input_generator/gromacs.dot -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/llama.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/scripts/sycl/graph_input_generator/llama.dot -------------------------------------------------------------------------------- /scripts/sycl/graph_input_generator/requirements.txt: -------------------------------------------------------------------------------- 1 | networkx == 3.4.2 2 | pygraphviz == 1.14 3 | -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/CMakeUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/CMakeUtils.cmake -------------------------------------------------------------------------------- /source/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/CMakeMacrosAddBenchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/CMakeMacrosAddBenchmark.cmake -------------------------------------------------------------------------------- /source/benchmarks/algorithm_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/algorithm_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/algorithm_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/algorithm_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/algorithm_benchmark/definitions/heat3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/algorithm_benchmark/definitions/heat3d.h -------------------------------------------------------------------------------- /source/benchmarks/algorithm_benchmark/gtest/heat3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/algorithm_benchmark/gtest/heat3d.cpp -------------------------------------------------------------------------------- /source/benchmarks/algorithm_benchmark/implementations/l0/heat3d_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/algorithm_benchmark/implementations/l0/heat3d_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/create_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/create_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/driver_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/driver_get.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/enqueue_ndr_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/enqueue_ndr_time.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/event_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/event_time.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/flush_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/flush_time.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/submit_barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/submit_barrier.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/submit_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/submit_kernel.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/virtual_mem_free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/virtual_mem_free.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/definitions/virtual_mem_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/definitions/virtual_mem_map.h -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/append_launch_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/append_launch_kernel.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/create_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/create_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/create_command_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/create_command_list.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/destroy_command_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/destroy_command_list.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/driver_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/driver_get.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/enqueue_ndr_null_lws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/enqueue_ndr_null_lws.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/enqueue_ndr_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/enqueue_ndr_time.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/event_query_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/event_query_status.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/event_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/event_time.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/execute_command_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/execute_command_list.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/flush_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/flush_time.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/mem_get_ipc_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/mem_get_ipc_handle.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/mem_open_ipc_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/mem_open_ipc_handle.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/mem_put_ipc_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/mem_put_ipc_handle.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/module_create_spv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/module_create_spv.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/physical_mem_create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/physical_mem_create.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/physical_mem_destroy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/physical_mem_destroy.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/reset_command_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/reset_command_list.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/submit_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/submit_barrier.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/submit_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/submit_kernel.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_free.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_map.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_reserve.cpp -------------------------------------------------------------------------------- /source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_unmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/api_overhead_benchmark/gtest/virtual_mem_unmap.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/definitions/one_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/definitions/one_atomic.h -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/definitions/one_atomic_explicit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/definitions/one_atomic_explicit.h -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/definitions/one_local_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/definitions/one_local_atomic.h -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/definitions/separate_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/definitions/separate_atomic.h -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/one_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/one_atomic.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/one_atomic_explicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/one_atomic_explicit.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/one_local_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/one_local_atomic.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/one_local_atomic_explicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/one_local_atomic_explicit.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/separate_atomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/separate_atomics.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/gtest/separate_atomics_explicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/gtest/separate_atomics_explicit.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/implementations/l0/one_atomic_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/implementations/l0/one_atomic_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/kernel_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/kernel_helper.cpp -------------------------------------------------------------------------------- /source/benchmarks/atomic_benchmark/kernel_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/atomic_benchmark/kernel_helper.h -------------------------------------------------------------------------------- /source/benchmarks/common/l0/registrations_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/l0/registrations_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/main.cpp -------------------------------------------------------------------------------- /source/benchmarks/common/ocl/registrations_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/ocl/registrations_ocl.cpp -------------------------------------------------------------------------------- /source/benchmarks/common/omp/registrations_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/omp/registrations_omp.cpp -------------------------------------------------------------------------------- /source/benchmarks/common/sycl/registrations_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/sycl/registrations_sycl.cpp -------------------------------------------------------------------------------- /source/benchmarks/common/ur/registrations_ur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/common/ur/registrations_ur.cpp -------------------------------------------------------------------------------- /source/benchmarks/emu_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/emu_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/emu_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/emu_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/emu_benchmark/definitions/int64_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/emu_benchmark/definitions/int64_div.h -------------------------------------------------------------------------------- /source/benchmarks/emu_benchmark/gtest/int64_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/emu_benchmark/gtest/int64_div.cpp -------------------------------------------------------------------------------- /source/benchmarks/emu_benchmark/implementations/ocl/int64_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/emu_benchmark/implementations/ocl/int64_div.cpp -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/definitions/do_math_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/definitions/do_math_operation.h -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/definitions/read_after_atomic_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/definitions/read_after_atomic_write.h -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/gtest/do_math_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/gtest/do_math_operation.cpp -------------------------------------------------------------------------------- /source/benchmarks/eu_benchmark/gtest/read_after_atomic_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/eu_benchmark/gtest/read_after_atomic_write.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/copy_with_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/copy_with_event.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/empty_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/empty_kernel.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/kernel_with_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/kernel_with_event.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/kernel_with_work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/kernel_with_work.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/last_event_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/last_event_latency.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/wait_on_event_cold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/wait_on_event_cold.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/wait_on_event_hot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/wait_on_event_hot.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/definitions/write_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/definitions/write_timestamp.h -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/barrier_between_kernels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/barrier_between_kernels.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/copy_with_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/copy_with_event.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/empty_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/empty_kernel.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/kernel_with_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/kernel_with_event.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/kernel_with_work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/kernel_with_work.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/last_event_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/last_event_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/wait_on_event_cold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/wait_on_event_cold.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/wait_on_event_hot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/wait_on_event_hot.cpp -------------------------------------------------------------------------------- /source/benchmarks/gpu_cmds_benchmark/gtest/write_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/gpu_cmds_benchmark/gtest/write_timestamp.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/decoder2_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/decoder2_graph.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/decoder2_graph_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/decoder2_graph_base.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/finalize_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/finalize_graph.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/graph_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/graph_import.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/mutate_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/mutate_graph.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/sin_kernel_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/sin_kernel_graph.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/definitions/submit_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/definitions/submit_graph.h -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/gtest/decoder2_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/gtest/decoder2_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/gtest/finalize_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/gtest/finalize_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/gtest/mutate_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/gtest/mutate_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/gtest/sin_kernel_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/gtest/sin_kernel_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/graph_api_benchmark/gtest/submit_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/graph_api_benchmark/gtest/submit_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/host_function_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/host_function_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/host_function_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/host_function_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/blit_size_assigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/blit_size_assigner.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_buffer_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_buffer_rect.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_buffer_to_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_buffer_to_image.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_entire_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_entire_image.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_image_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_image_region.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/copy_image_to_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/copy_image_to_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/fill_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/fill_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/full_remote_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/full_remote_access.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/map_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/map_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/non_usm_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/non_usm_copy.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/queue_in_order_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/queue_in_order_memcpy.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/queue_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/queue_memcpy.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/random_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/random_access.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/read_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/read_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/read_buffer_misaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/read_buffer_misaligned.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/read_buffer_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/read_buffer_rect.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/read_device_mem_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/read_device_mem_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/read_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/read_image.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/remote_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/remote_access.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/slm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/slm.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/slm_switch_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/slm_switch_latency.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/stream_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/stream_memory.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/unmap_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/unmap_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_copy.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_copy_concurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_copy_concurrent.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_copy_immediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_copy_immediate.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_copy_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_copy_region.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_fill.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_fill_immediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_fill_immediate.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/usm_memset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/usm_memset.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/write_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/write_buffer.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/write_buffer_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/write_buffer_rect.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/definitions/write_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/definitions/write_image.h -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_buffer_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_buffer_rect.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_buffer_to_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_buffer_to_image.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_entire_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_entire_image.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_image_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_image_region.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/copy_image_to_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/copy_image_to_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/fill_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/fill_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/full_remote_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/full_remote_access.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/map_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/map_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/non_usm_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/non_usm_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/queue_in_order_memcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/queue_in_order_memcpy.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/queue_memcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/queue_memcpy.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/random_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/random_access.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/read_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/read_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/read_buffer_misaligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/read_buffer_misaligned.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/read_buffer_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/read_buffer_rect.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/read_device_mem_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/read_device_mem_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/read_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/read_image.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/remote_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/remote_access.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/slm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/slm.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/slm_switch_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/slm_switch_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/stream_after_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/stream_after_transfer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/stream_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/stream_memory.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/stream_memory_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/stream_memory_immediate.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/unmap_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/unmap_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy_concurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy_concurrent.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy_immediate.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy_multiple_blits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy_multiple_blits.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy_region.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_copy_staging_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_copy_staging_buffers.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_fill.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_fill_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_fill_immediate.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_fill_multiple_blits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_fill_multiple_blits.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_memset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_memset.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_shared_migrate_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_shared_migrate_cpu.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/usm_shared_migrate_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/usm_shared_migrate_gpu.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/write_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/write_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/write_buffer_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/write_buffer_rect.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/gtest/write_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/gtest/write_image.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/implementations/l0/usm_copy_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/implementations/l0/usm_copy_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/implementations/l0/usm_fill_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/implementations/l0/usm_fill_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/memory_benchmark/implementations/ocl/slm_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/memory_benchmark/implementations/ocl/slm_ocl.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/definitions/reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/definitions/reduction.h -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/definitions/reduction2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/definitions/reduction2.h -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/definitions/reduction3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/definitions/reduction3.h -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/definitions/reduction4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/definitions/reduction4.h -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/definitions/reduction5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/definitions/reduction5.h -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/matrix_multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/matrix_multiply.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/reduction.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/reduction2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/reduction2.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/reduction3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/reduction3.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/reduction4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/reduction4.cpp -------------------------------------------------------------------------------- /source/benchmarks/miscellaneous_benchmark/gtest/reduction5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/miscellaneous_benchmark/gtest/reduction5.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/allreduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/allreduce.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/alltoall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/alltoall.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/bandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/bandwidth.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/broadcast.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/latency.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/overlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/overlap.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/reduce.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/definitions/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/definitions/startup.h -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/allreduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/allreduce.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/alltoall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/alltoall.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/bandwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/bandwidth.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/broadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/broadcast.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/overlap.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/reduce.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/gtest/startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/gtest/startup.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/allreduce_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/allreduce_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/alltoall_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/alltoall_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/bandwidth_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/bandwidth_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/broadcast_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/broadcast_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/latency_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/latency_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/overlap_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/overlap_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/reduce_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/reduce_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/implementations/l0/startup_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/implementations/l0/startup_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/utility/mpi_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/utility/mpi_helper.cpp -------------------------------------------------------------------------------- /source/benchmarks/mpi_benchmark/utility/mpi_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/mpi_benchmark/utility/mpi_helper.h -------------------------------------------------------------------------------- /source/benchmarks/multiprocess_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multiprocess_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/multiprocess_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multiprocess_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/multiprocess_benchmark/gtest/kernel_and_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multiprocess_benchmark/gtest/kernel_and_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/multiprocess_benchmark/gtest/multi_process_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multiprocess_benchmark/gtest/multi_process_init.cpp -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/definitions/memcpy_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/definitions/memcpy_execute.h -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/definitions/svm_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/definitions/svm_copy.h -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/gtest/memcpy_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/gtest/memcpy_execute.cpp -------------------------------------------------------------------------------- /source/benchmarks/multithread_benchmark/gtest/svm_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multithread_benchmark/gtest/svm_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/definitions/usm_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/definitions/usm_copy.h -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/definitions/usm_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/definitions/usm_fill.h -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/copy_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/copy_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/fill_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/fill_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/read_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/read_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/usm_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/usm_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/usm_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/usm_fill.cpp -------------------------------------------------------------------------------- /source/benchmarks/multitile_memory_benchmark/gtest/write_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/multitile_memory_benchmark/gtest/write_buffer.cpp -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/definitions/usm_copy_multiple_blits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/definitions/usm_copy_multiple_blits.h -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/definitions/usm_eu_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/definitions/usm_eu_copy.h -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/gtest/usm_copy_multiple_blits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/gtest/usm_copy_multiple_blits.cpp -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/gtest/usm_eu_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/gtest/usm_eu_copy.cpp -------------------------------------------------------------------------------- /source/benchmarks/p2p_benchmark/implementations/l0/usm_eu_copy_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/p2p_benchmark/implementations/l0/usm_eu_copy_l0.cpp -------------------------------------------------------------------------------- /source/benchmarks/record_and_replay_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/record_and_replay_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/record_and_replay_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/record_and_replay_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/record_and_replay_benchmark/gtest/record_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/record_and_replay_benchmark/gtest/record_graph.cpp -------------------------------------------------------------------------------- /source/benchmarks/torch_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/torch_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/torch_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/torch_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/torch_benchmark/definitions/sycl_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/torch_benchmark/definitions/sycl_kernels.h -------------------------------------------------------------------------------- /source/benchmarks/torch_benchmark/gtest/kernel_submit_multi_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/torch_benchmark/gtest/kernel_submit_multi_queue.cpp -------------------------------------------------------------------------------- /source/benchmarks/torch_benchmark/gtest/kernel_submit_slm_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/torch_benchmark/gtest/kernel_submit_slm_size.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/benchmark_info.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/best_submission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/best_submission.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/best_walker_submission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/best_walker_submission.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/completion_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/completion_latency.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/copy_submission_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/copy_submission_events.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/empty_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/empty_kernel.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/empty_kernel_immediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/empty_kernel_immediate.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/kernel_switch_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/kernel_switch_latency.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/kernel_with_work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/kernel_with_work.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/multi_kernel_execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/multi_kernel_execution.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/multi_queue_submission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/multi_queue_submission.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/queue_concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/queue_concurrency.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/queue_priorities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/queue_priorities.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/queue_switch_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/queue_switch_latency.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/round_trip_submission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/round_trip_submission.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/definitions/write_latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/definitions/write_latency.h -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/best_submission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/best_submission.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/best_walker_nth_submission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/best_walker_nth_submission.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/best_walker_submission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/best_walker_submission.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/completion_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/completion_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/copy_submission_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/copy_submission_events.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/empty_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/empty_kernel.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/empty_kernel_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/empty_kernel_immediate.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/kernel_switch_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/kernel_switch_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/kernel_with_work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/kernel_with_work.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/kernel_with_work_immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/kernel_with_work_immediate.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/kernel_with_work_periodic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/kernel_with_work_periodic.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/multi_kernel_execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/multi_kernel_execution.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/multi_queue_submission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/multi_queue_submission.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/queue_concurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/queue_concurrency.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/queue_priorities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/queue_priorities.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/queue_switch_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/queue_switch_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/round_trip_submission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/round_trip_submission.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/walker_completion_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/walker_completion_latency.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/walker_submission_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/walker_submission_events.cpp -------------------------------------------------------------------------------- /source/benchmarks/ulls_benchmark/gtest/write_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/benchmarks/ulls_benchmark/gtest/write_latency.cpp -------------------------------------------------------------------------------- /source/docs_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/docs_generator/CMakeLists.txt -------------------------------------------------------------------------------- /source/docs_generator/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/docs_generator/data_types.h -------------------------------------------------------------------------------- /source/docs_generator/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/docs_generator/helpers.h -------------------------------------------------------------------------------- /source/docs_generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/docs_generator/main.cpp -------------------------------------------------------------------------------- /source/framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/additional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/additional/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/additional/additional_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/additional/additional_configuration.cpp -------------------------------------------------------------------------------- /source/framework/additional/additional_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/additional/additional_configuration.h -------------------------------------------------------------------------------- /source/framework/additional/api_additional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/additional/api_additional.cpp -------------------------------------------------------------------------------- /source/framework/argument/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/argument/abstract/argument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/abstract/argument.cpp -------------------------------------------------------------------------------- /source/framework/argument/abstract/argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/abstract/argument.h -------------------------------------------------------------------------------- /source/framework/argument/abstract/bitfield_enum_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/abstract/bitfield_enum_argument.h -------------------------------------------------------------------------------- /source/framework/argument/abstract/enum_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/abstract/enum_argument.h -------------------------------------------------------------------------------- /source/framework/argument/argument_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/argument_container.cpp -------------------------------------------------------------------------------- /source/framework/argument/argument_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/argument_container.h -------------------------------------------------------------------------------- /source/framework/argument/basic_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/basic_argument.h -------------------------------------------------------------------------------- /source/framework/argument/bitmap_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/bitmap_argument.h -------------------------------------------------------------------------------- /source/framework/argument/boolean_flag_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/boolean_flag_argument.h -------------------------------------------------------------------------------- /source/framework/argument/compression_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/compression_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/allocation_measure_mode_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/allocation_measure_mode_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/api_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/api_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/atomic_math_operation_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/atomic_math_operation_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/atomic_memory_order_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/atomic_memory_order_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/atomic_scope_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/atomic_scope_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/buffer_contents_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/buffer_contents_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/data_type_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/data_type_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/device_selection_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/device_selection_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/distribution_kind_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/distribution_kind_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/engine_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/engine_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/event_scope_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/event_scope_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/graph_operation_type_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/graph_operation_type_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/graph_structure_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/graph_structure_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/hostptr_reuse_mode_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/hostptr_reuse_mode_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/map_flags_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/map_flags_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/mpi_statistics_type_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/mpi_statistics_type_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/multi_device_selection_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/multi_device_selection_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/normal_math_operation_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/normal_math_operation_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/profiler_type_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/profiler_type_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/stream_memory_type_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/stream_memory_type_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/tmp_memory_strategy_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/tmp_memory_strategy_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/usm_device_selection_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/usm_device_selection_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/usm_initial_placement_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/usm_initial_placement_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/usm_memory_placement_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/usm_memory_placement_argument.h -------------------------------------------------------------------------------- /source/framework/argument/enum/work_item_id_usage_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/enum/work_item_id_usage_argument.h -------------------------------------------------------------------------------- /source/framework/argument/long_hex_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/long_hex_argument.h -------------------------------------------------------------------------------- /source/framework/argument/string_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/string_argument.h -------------------------------------------------------------------------------- /source/framework/argument/string_list_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/string_list_argument.h -------------------------------------------------------------------------------- /source/framework/argument/three_component_uint_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/argument/three_component_uint_argument.h -------------------------------------------------------------------------------- /source/framework/benchmark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/benchmark_info.cpp -------------------------------------------------------------------------------- /source/framework/benchmark_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/benchmark_info.h -------------------------------------------------------------------------------- /source/framework/benchmark_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/benchmark_main.cpp -------------------------------------------------------------------------------- /source/framework/benchmark_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/benchmark_main.h -------------------------------------------------------------------------------- /source/framework/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/configuration.cpp -------------------------------------------------------------------------------- /source/framework/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/configuration.h -------------------------------------------------------------------------------- /source/framework/enum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/enum/allocation_measure_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/allocation_measure_mode.h -------------------------------------------------------------------------------- /source/framework/enum/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/api.h -------------------------------------------------------------------------------- /source/framework/enum/api_additional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/api_additional.h -------------------------------------------------------------------------------- /source/framework/enum/atomic_memory_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/atomic_memory_order.h -------------------------------------------------------------------------------- /source/framework/enum/atomic_scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/atomic_scope.h -------------------------------------------------------------------------------- /source/framework/enum/buffer_contents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/buffer_contents.h -------------------------------------------------------------------------------- /source/framework/enum/data_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/data_type.h -------------------------------------------------------------------------------- /source/framework/enum/device_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/device_selection.h -------------------------------------------------------------------------------- /source/framework/enum/distribution_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/distribution_kind.h -------------------------------------------------------------------------------- /source/framework/enum/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/engine.h -------------------------------------------------------------------------------- /source/framework/enum/event_scope_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/event_scope_argument.h -------------------------------------------------------------------------------- /source/framework/enum/graph_operation_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/graph_operation_type.h -------------------------------------------------------------------------------- /source/framework/enum/graph_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/graph_structure.h -------------------------------------------------------------------------------- /source/framework/enum/hostptr_reuse_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/hostptr_reuse_mode.h -------------------------------------------------------------------------------- /source/framework/enum/image_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/image_type.h -------------------------------------------------------------------------------- /source/framework/enum/map_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/map_flags.h -------------------------------------------------------------------------------- /source/framework/enum/math_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/math_operation.h -------------------------------------------------------------------------------- /source/framework/enum/measurement_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/measurement_type.h -------------------------------------------------------------------------------- /source/framework/enum/measurement_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/measurement_unit.h -------------------------------------------------------------------------------- /source/framework/enum/mpi_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/mpi_test.h -------------------------------------------------------------------------------- /source/framework/enum/profiler_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/profiler_type.h -------------------------------------------------------------------------------- /source/framework/enum/stream_memory_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/stream_memory_type.h -------------------------------------------------------------------------------- /source/framework/enum/test_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/test_type.h -------------------------------------------------------------------------------- /source/framework/enum/tmp_memory_strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/tmp_memory_strategy.h -------------------------------------------------------------------------------- /source/framework/enum/usm_initial_placement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/usm_initial_placement.h -------------------------------------------------------------------------------- /source/framework/enum/usm_memadvise_preferred_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/usm_memadvise_preferred_location.h -------------------------------------------------------------------------------- /source/framework/enum/usm_memory_placement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/usm_memory_placement.h -------------------------------------------------------------------------------- /source/framework/enum/usm_runtime_memory_placement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/usm_runtime_memory_placement.h -------------------------------------------------------------------------------- /source/framework/enum/work_item_id_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/enum/work_item_id_usage.h -------------------------------------------------------------------------------- /source/framework/gtest_event_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/gtest_event_listener.h -------------------------------------------------------------------------------- /source/framework/intel_product/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/intel_product/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/intel_product/get_intel_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/intel_product/get_intel_product.h -------------------------------------------------------------------------------- /source/framework/intel_product/intel_products.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/intel_product/intel_products.inl -------------------------------------------------------------------------------- /source/framework/l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/l0/context_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/context_properties.h -------------------------------------------------------------------------------- /source/framework/l0/extension_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/extension_properties.h -------------------------------------------------------------------------------- /source/framework/l0/intel_product/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/intel_product/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/l0/intel_product/get_intel_product_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/intel_product/get_intel_product_l0.cpp -------------------------------------------------------------------------------- /source/framework/l0/intel_product/get_intel_product_l0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/intel_product/get_intel_product_l0.h -------------------------------------------------------------------------------- /source/framework/l0/levelzero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/levelzero.cpp -------------------------------------------------------------------------------- /source/framework/l0/levelzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/levelzero.h -------------------------------------------------------------------------------- /source/framework/l0/null_levelzero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/null_levelzero.cpp -------------------------------------------------------------------------------- /source/framework/l0/queue_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/queue_properties.h -------------------------------------------------------------------------------- /source/framework/l0/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/l0/utility/buffer_contents_helper_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/buffer_contents_helper_l0.cpp -------------------------------------------------------------------------------- /source/framework/l0/utility/buffer_contents_helper_l0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/buffer_contents_helper_l0.h -------------------------------------------------------------------------------- /source/framework/l0/utility/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/error.h -------------------------------------------------------------------------------- /source/framework/l0/utility/error_codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/error_codes.cpp -------------------------------------------------------------------------------- /source/framework/l0/utility/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/error_codes.h -------------------------------------------------------------------------------- /source/framework/l0/utility/image_helper_l0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/image_helper_l0.h -------------------------------------------------------------------------------- /source/framework/l0/utility/kernel_helper_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/kernel_helper_l0.cpp -------------------------------------------------------------------------------- /source/framework/l0/utility/kernel_helper_l0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/kernel_helper_l0.h -------------------------------------------------------------------------------- /source/framework/l0/utility/print_device_info_l0.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/print_device_info_l0.inl -------------------------------------------------------------------------------- /source/framework/l0/utility/queue_families_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/queue_families_helper.cpp -------------------------------------------------------------------------------- /source/framework/l0/utility/queue_families_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/queue_families_helper.h -------------------------------------------------------------------------------- /source/framework/l0/utility/usm_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/usm_helper.cpp -------------------------------------------------------------------------------- /source/framework/l0/utility/usm_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/l0/utility/usm_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/ocl/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/cl.h -------------------------------------------------------------------------------- /source/framework/ocl/context_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/context_properties.h -------------------------------------------------------------------------------- /source/framework/ocl/function_signatures_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/function_signatures_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/intel_product/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/intel_product/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/ocl/intel_product/get_intel_product_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/intel_product/get_intel_product_ocl.cpp -------------------------------------------------------------------------------- /source/framework/ocl/intel_product/get_intel_product_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/intel_product/get_intel_product_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/opencl.cpp -------------------------------------------------------------------------------- /source/framework/ocl/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/opencl.h -------------------------------------------------------------------------------- /source/framework/ocl/queue_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/queue_properties.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/ocl/utility/buffer_contents_helper_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/buffer_contents_helper_ocl.cpp -------------------------------------------------------------------------------- /source/framework/ocl/utility/buffer_contents_helper_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/buffer_contents_helper_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/compression_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/compression_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/error.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/error_codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/error_codes.cpp -------------------------------------------------------------------------------- /source/framework/ocl/utility/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/error_codes.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/extensions_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/extensions_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/hostptr_reuse_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/hostptr_reuse_helper.cpp -------------------------------------------------------------------------------- /source/framework/ocl/utility/hostptr_reuse_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/hostptr_reuse_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/image_helper_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/image_helper_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/map_flags_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/map_flags_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/print_device_info_ocl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/print_device_info_ocl.inl -------------------------------------------------------------------------------- /source/framework/ocl/utility/profiling_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/profiling_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/program_helper_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/program_helper_ocl.cpp -------------------------------------------------------------------------------- /source/framework/ocl/utility/program_helper_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/program_helper_ocl.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/queue_families_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/queue_families_helper.h -------------------------------------------------------------------------------- /source/framework/ocl/utility/usm_helper_ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/usm_helper_ocl.cpp -------------------------------------------------------------------------------- /source/framework/ocl/utility/usm_helper_ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ocl/utility/usm_helper_ocl.h -------------------------------------------------------------------------------- /source/framework/omp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/omp/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/print_device_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/print_device_info.cpp -------------------------------------------------------------------------------- /source/framework/print_device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/print_device_info.h -------------------------------------------------------------------------------- /source/framework/supported_apis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/supported_apis.cpp -------------------------------------------------------------------------------- /source/framework/supported_apis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/supported_apis.h -------------------------------------------------------------------------------- /source/framework/sycl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/sycl/sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/sycl.cpp -------------------------------------------------------------------------------- /source/framework/sycl/sycl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/sycl.h -------------------------------------------------------------------------------- /source/framework/sycl/utility/print_device_info_sycl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/utility/print_device_info_sycl.inl -------------------------------------------------------------------------------- /source/framework/sycl/utility/usm_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/utility/usm_helper.cpp -------------------------------------------------------------------------------- /source/framework/sycl/utility/usm_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/sycl/utility/usm_helper.h -------------------------------------------------------------------------------- /source/framework/test_case/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/test_case/register_test_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/register_test_case.h -------------------------------------------------------------------------------- /source/framework/test_case/test_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case.h -------------------------------------------------------------------------------- /source/framework/test_case/test_case_argument_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_argument_container.cpp -------------------------------------------------------------------------------- /source/framework/test_case/test_case_argument_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_argument_container.h -------------------------------------------------------------------------------- /source/framework/test_case/test_case_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_base.cpp -------------------------------------------------------------------------------- /source/framework/test_case/test_case_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_base.h -------------------------------------------------------------------------------- /source/framework/test_case/test_case_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_interface.h -------------------------------------------------------------------------------- /source/framework/test_case/test_case_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_statistics.cpp -------------------------------------------------------------------------------- /source/framework/test_case/test_case_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_case_statistics.h -------------------------------------------------------------------------------- /source/framework/test_case/test_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_result.cpp -------------------------------------------------------------------------------- /source/framework/test_case/test_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_case/test_result.h -------------------------------------------------------------------------------- /source/framework/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_map.cpp -------------------------------------------------------------------------------- /source/framework/test_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/test_map.h -------------------------------------------------------------------------------- /source/framework/ur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/ur/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/error.h -------------------------------------------------------------------------------- /source/framework/ur/print_device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/print_device_info.h -------------------------------------------------------------------------------- /source/framework/ur/ur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/ur.cpp -------------------------------------------------------------------------------- /source/framework/ur/ur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/ur.h -------------------------------------------------------------------------------- /source/framework/ur/usm_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/ur/usm_helper.h -------------------------------------------------------------------------------- /source/framework/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/utility/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/aligned_allocator.h -------------------------------------------------------------------------------- /source/framework/utility/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/alignment.h -------------------------------------------------------------------------------- /source/framework/utility/bit_operations_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/bit_operations_helper.h -------------------------------------------------------------------------------- /source/framework/utility/buffer_contents_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/buffer_contents_helper.cpp -------------------------------------------------------------------------------- /source/framework/utility/buffer_contents_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/buffer_contents_helper.h -------------------------------------------------------------------------------- /source/framework/utility/combo_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/combo_profiler.h -------------------------------------------------------------------------------- /source/framework/utility/command_line_argument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/command_line_argument.cpp -------------------------------------------------------------------------------- /source/framework/utility/command_line_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/command_line_argument.h -------------------------------------------------------------------------------- /source/framework/utility/common_gtest_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/common_gtest_args.h -------------------------------------------------------------------------------- /source/framework/utility/common_help_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/common_help_message.cpp -------------------------------------------------------------------------------- /source/framework/utility/common_help_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/common_help_message.h -------------------------------------------------------------------------------- /source/framework/utility/compiler_options_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/compiler_options_builder.cpp -------------------------------------------------------------------------------- /source/framework/utility/compiler_options_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/compiler_options_builder.h -------------------------------------------------------------------------------- /source/framework/utility/cpu_allocation_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/cpu_allocation_helper.cpp -------------------------------------------------------------------------------- /source/framework/utility/cpu_allocation_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/cpu_allocation_helper.h -------------------------------------------------------------------------------- /source/framework/utility/cpu_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/cpu_counter.h -------------------------------------------------------------------------------- /source/framework/utility/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/error.h -------------------------------------------------------------------------------- /source/framework/utility/execute_at_app_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/execute_at_app_init.h -------------------------------------------------------------------------------- /source/framework/utility/file_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/file_helper.cpp -------------------------------------------------------------------------------- /source/framework/utility/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/file_helper.h -------------------------------------------------------------------------------- /source/framework/utility/hex_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/hex_helper.h -------------------------------------------------------------------------------- /source/framework/utility/image_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/image_helper.cpp -------------------------------------------------------------------------------- /source/framework/utility/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/image_helper.h -------------------------------------------------------------------------------- /source/framework/utility/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/utility/linux/aligned_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/aligned_allocator.cpp -------------------------------------------------------------------------------- /source/framework/utility/linux/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/error.h -------------------------------------------------------------------------------- /source/framework/utility/linux/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/ipc.cpp -------------------------------------------------------------------------------- /source/framework/utility/linux/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/ipc.h -------------------------------------------------------------------------------- /source/framework/utility/linux/process_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/process_linux.cpp -------------------------------------------------------------------------------- /source/framework/utility/linux/set_env_raii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/set_env_raii.h -------------------------------------------------------------------------------- /source/framework/utility/linux/sleep_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/sleep_linux.h -------------------------------------------------------------------------------- /source/framework/utility/linux/working_directory_helper_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/linux/working_directory_helper_linux.cpp -------------------------------------------------------------------------------- /source/framework/utility/math_operation_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/math_operation_helper.cpp -------------------------------------------------------------------------------- /source/framework/utility/math_operation_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/math_operation_helper.h -------------------------------------------------------------------------------- /source/framework/utility/memory_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/memory_constants.h -------------------------------------------------------------------------------- /source/framework/utility/power_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/power_meter.h -------------------------------------------------------------------------------- /source/framework/utility/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/process.cpp -------------------------------------------------------------------------------- /source/framework/utility/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/process.h -------------------------------------------------------------------------------- /source/framework/utility/process_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/process_group.cpp -------------------------------------------------------------------------------- /source/framework/utility/process_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/process_group.h -------------------------------------------------------------------------------- /source/framework/utility/process_synchronization_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/process_synchronization_helper.h -------------------------------------------------------------------------------- /source/framework/utility/random_distribution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/random_distribution.cpp -------------------------------------------------------------------------------- /source/framework/utility/random_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/random_distribution.h -------------------------------------------------------------------------------- /source/framework/utility/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/sleep.h -------------------------------------------------------------------------------- /source/framework/utility/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/statistics.cpp -------------------------------------------------------------------------------- /source/framework/utility/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/statistics.h -------------------------------------------------------------------------------- /source/framework/utility/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/string_utils.h -------------------------------------------------------------------------------- /source/framework/utility/test_type_skip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/test_type_skip.h -------------------------------------------------------------------------------- /source/framework/utility/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/timer.h -------------------------------------------------------------------------------- /source/framework/utility/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/utility/windows/aligned_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/aligned_allocator.cpp -------------------------------------------------------------------------------- /source/framework/utility/windows/process_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/process_windows.cpp -------------------------------------------------------------------------------- /source/framework/utility/windows/sleep_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/sleep_windows.h -------------------------------------------------------------------------------- /source/framework/utility/windows/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/windows.h -------------------------------------------------------------------------------- /source/framework/utility/windows/working_directory_helper_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/windows/working_directory_helper_windows.cpp -------------------------------------------------------------------------------- /source/framework/utility/working_directory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/utility/working_directory_helper.h -------------------------------------------------------------------------------- /source/framework/workload/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/workload/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/linux/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/workload/linux/workload_io_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/linux/workload_io_linux.cpp -------------------------------------------------------------------------------- /source/framework/workload/register_workload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/register_workload.h -------------------------------------------------------------------------------- /source/framework/workload/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/windows/CMakeLists.txt -------------------------------------------------------------------------------- /source/framework/workload/windows/workload_io_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/windows/workload_io_windows.cpp -------------------------------------------------------------------------------- /source/framework/workload/workload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload.h -------------------------------------------------------------------------------- /source/framework/workload/workload_argument_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_argument_container.h -------------------------------------------------------------------------------- /source/framework/workload/workload_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_io.h -------------------------------------------------------------------------------- /source/framework/workload/workload_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_statistics.cpp -------------------------------------------------------------------------------- /source/framework/workload/workload_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_statistics.h -------------------------------------------------------------------------------- /source/framework/workload/workload_synchronization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_synchronization.cpp -------------------------------------------------------------------------------- /source/framework/workload/workload_synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/framework/workload/workload_synchronization.h -------------------------------------------------------------------------------- /source/kernels/access_device_mem_random.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/access_device_mem_random.cl -------------------------------------------------------------------------------- /source/kernels/access_device_mem_random.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/access_device_mem_random.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_1024bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_1024bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_1024bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_1024bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_2048bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_2048bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_2048bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_2048bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_256bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_256bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_256bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_256bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_512bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_512bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_512bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_512bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_64bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_64bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_64bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_64bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_8bytes_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_8bytes_argument.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_8bytes_argument.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_8bytes_argument.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_eat_time.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_eat_time.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_eat_time.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_eat_time.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_empty_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_empty_kernel.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_empty_kernel.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_empty_kernel.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_fill_with_ones.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_fill_with_ones.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_fill_with_ones.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_fill_with_ones.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_global_consts.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_global_consts.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_global_consts.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_global_consts.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_indirect_access_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_indirect_access_kernel.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_indirect_access_kernel.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_indirect_access_kernel.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_multi_arg_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_multi_arg_kernel.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_multi_arg_kernel.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_multi_arg_kernel.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_write_one.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_write_one.spv -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_write_sum_local.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_write_sum_local.cl -------------------------------------------------------------------------------- /source/kernels/api_overhead_benchmark_write_sum_local.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/api_overhead_benchmark_write_sum_local.spv -------------------------------------------------------------------------------- /source/kernels/atomic_benchmark_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/atomic_benchmark_kernel.cl -------------------------------------------------------------------------------- /source/kernels/benchmark_write_multiple.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/benchmark_write_multiple.cl -------------------------------------------------------------------------------- /source/kernels/benchmark_write_one.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/benchmark_write_one.cl -------------------------------------------------------------------------------- /source/kernels/benchmark_write_one_global_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/benchmark_write_one_global_ids.cl -------------------------------------------------------------------------------- /source/kernels/benchmark_write_one_local_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/benchmark_write_one_local_ids.cl -------------------------------------------------------------------------------- /source/kernels/emu_benchmark_int64_div.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/emu_benchmark_int64_div.cl -------------------------------------------------------------------------------- /source/kernels/eu_benchmark_perform_math_operation.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/eu_benchmark_perform_math_operation.cl -------------------------------------------------------------------------------- /source/kernels/eu_benchmark_read_after_atomic_write.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/eu_benchmark_read_after_atomic_write.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_empty_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_empty_kernel.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_empty_kernel.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_empty_kernel.spv -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one.spv -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_global_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_global_ids.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_global_ids.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_global_ids.spv -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_global_ids_with_check.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_global_ids_with_check.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_global_ids_with_check.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_global_ids_with_check.spv -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_local_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_local_ids.cl -------------------------------------------------------------------------------- /source/kernels/gpu_cmds_benchmark_write_one_local_ids.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/gpu_cmds_benchmark_write_one_local_ids.spv -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_assign.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_assign.cl -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_assign.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_assign.spv -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_increment.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_increment.cl -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_increment.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_increment.spv -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_multiply.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_multiply.cl -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_multiply.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_multiply.spv -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_sin.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_sin.cl -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_sin.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_sin.spv -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_sum.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_sum.cl -------------------------------------------------------------------------------- /source/kernels/graph_api_benchmark_kernel_sum.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/graph_api_benchmark_kernel_sum.spv -------------------------------------------------------------------------------- /source/kernels/heat3d_workload.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/heat3d_workload.cl -------------------------------------------------------------------------------- /source/kernels/heat3d_workload.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/heat3d_workload.spv -------------------------------------------------------------------------------- /source/kernels/memory_benchmark_fill_with_ones.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/memory_benchmark_fill_with_ones.cl -------------------------------------------------------------------------------- /source/kernels/memory_benchmark_fill_with_ones.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/memory_benchmark_fill_with_ones.spv -------------------------------------------------------------------------------- /source/kernels/memory_benchmark_stream_memory.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/memory_benchmark_stream_memory.cl -------------------------------------------------------------------------------- /source/kernels/memory_benchmark_stream_memory.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/memory_benchmark_stream_memory.spv -------------------------------------------------------------------------------- /source/kernels/memory_benchmark_stream_memory_fp64.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/memory_benchmark_stream_memory_fp64.spv -------------------------------------------------------------------------------- /source/kernels/miscellaneous_benchmark_reduction.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/miscellaneous_benchmark_reduction.cl -------------------------------------------------------------------------------- /source/kernels/mpi_workload_dummy_compute.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/mpi_workload_dummy_compute.cl -------------------------------------------------------------------------------- /source/kernels/mpi_workload_dummy_compute.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/mpi_workload_dummy_compute.spv -------------------------------------------------------------------------------- /source/kernels/multitile_memory_benchmark_copy_buffer.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/multitile_memory_benchmark_copy_buffer.cl -------------------------------------------------------------------------------- /source/kernels/multitile_memory_benchmark_copy_buffer.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/multitile_memory_benchmark_copy_buffer.spv -------------------------------------------------------------------------------- /source/kernels/multitile_memory_benchmark_fill_with_ones.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/multitile_memory_benchmark_fill_with_ones.cl -------------------------------------------------------------------------------- /source/kernels/multitile_memory_benchmark_fill_with_ones.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/multitile_memory_benchmark_fill_with_ones.spv -------------------------------------------------------------------------------- /source/kernels/read_device_mem_buffer.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/read_device_mem_buffer.cl -------------------------------------------------------------------------------- /source/kernels/single_queue_workload_increment.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/single_queue_workload_increment.cl -------------------------------------------------------------------------------- /source/kernels/single_queue_workload_increment.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/single_queue_workload_increment.spv -------------------------------------------------------------------------------- /source/kernels/slm_benchmark.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/slm_benchmark.cl -------------------------------------------------------------------------------- /source/kernels/slm_benchmark.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/slm_benchmark.spv -------------------------------------------------------------------------------- /source/kernels/torch_benchmark_elementwise_slm.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/torch_benchmark_elementwise_slm.cl -------------------------------------------------------------------------------- /source/kernels/torch_benchmark_elementwise_slm.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/torch_benchmark_elementwise_slm.spv -------------------------------------------------------------------------------- /source/kernels/torch_benchmark_elementwise_sum_2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/torch_benchmark_elementwise_sum_2.cl -------------------------------------------------------------------------------- /source/kernels/torch_benchmark_elementwise_sum_2.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/torch_benchmark_elementwise_sum_2.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_eat_time.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_eat_time.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_eat_time.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_eat_time.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_empty_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_empty_kernel.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_empty_kernel.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_empty_kernel.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_fill_with_ones.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_fill_with_ones.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_fill_with_ones.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_fill_with_ones.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_multi_kernel_execution.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_multi_kernel_execution.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_multi_kernel_execution.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_multi_kernel_execution.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_atomic_per_workgroup.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_atomic_per_workgroup.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_atomic_per_workgroup_.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_atomic_per_workgroup_.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_global_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_global_ids.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_global_ids.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_global_ids.spv -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_local_ids.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_local_ids.cl -------------------------------------------------------------------------------- /source/kernels/ulls_benchmark_write_one_local_ids.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/kernels/ulls_benchmark_write_one_local_ids.spv -------------------------------------------------------------------------------- /source/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/clflush_comparison/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/clflush_comparison/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/clflush_comparison/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/clflush_comparison/main.cpp -------------------------------------------------------------------------------- /source/tools/mutex_comparison/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/mutex_comparison/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/mutex_comparison/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/mutex_comparison/main.cpp -------------------------------------------------------------------------------- /source/tools/show_devices_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/show_devices_l0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_l0/main.cpp -------------------------------------------------------------------------------- /source/tools/show_devices_ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_ocl/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/show_devices_ocl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_ocl/main.cpp -------------------------------------------------------------------------------- /source/tools/show_devices_sycl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_sycl/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/show_devices_sycl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/tools/show_devices_sycl/main.cpp -------------------------------------------------------------------------------- /source/workloads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/heat3d_workload_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/heat3d_workload_l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/heat3d_workload_l0/heat3d_workload_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/heat3d_workload_l0/heat3d_workload_l0.cpp -------------------------------------------------------------------------------- /source/workloads/hello_world_template_workload_ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/hello_world_template_workload_ocl/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/hello_world_workload_ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/hello_world_workload_ocl/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/immediate_cmdlist_copy_workload_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/immediate_cmdlist_copy_workload_l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/init_workload_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/init_workload_l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/init_workload_l0/init_workload_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/init_workload_l0/init_workload_l0.cpp -------------------------------------------------------------------------------- /source/workloads/mpi_workload_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/mpi_workload_l0/CMakeLists.txt -------------------------------------------------------------------------------- /source/workloads/mpi_workload_l0/mpi_workload_l0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/mpi_workload_l0/mpi_workload_l0.cpp -------------------------------------------------------------------------------- /source/workloads/single_queue_workload_l0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/source/workloads/single_queue_workload_l0/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/level-zero-intel/level_zero/zex_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-intel/level_zero/zex_driver.h -------------------------------------------------------------------------------- /third_party/level-zero-intel/level_zero/zex_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-intel/level_zero/zex_event.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/ze_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/ze_api.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/ze_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/ze_ddi.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/ze_ddi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/ze_ddi_common.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/ze_intel_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/ze_intel_gpu.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/ze_stypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/ze_stypes.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zer_api.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zer_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zer_ddi.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zes_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zes_api.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zes_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zes_ddi.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zet_api.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/include/level_zero/zet_ddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/include/level_zero/zet_ddi.h -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_loader.so: -------------------------------------------------------------------------------- 1 | libze_loader.so.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_loader.so.1: -------------------------------------------------------------------------------- 1 | libze_loader.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_loader.so.1.25.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/libze_loader.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_tracing_layer.so: -------------------------------------------------------------------------------- 1 | libze_tracing_layer.so.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_tracing_layer.so.1: -------------------------------------------------------------------------------- 1 | libze_tracing_layer.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_tracing_layer.so.1.25.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/libze_tracing_layer.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_validation_layer.so: -------------------------------------------------------------------------------- 1 | libze_validation_layer.so.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_validation_layer.so.1: -------------------------------------------------------------------------------- 1 | libze_validation_layer.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/libze_validation_layer.so.1.25.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/libze_validation_layer.so.1.25.1 -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/ze_loader.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/ze_loader.lib -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/ze_tracing_layer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/ze_tracing_layer.lib -------------------------------------------------------------------------------- /third_party/level-zero-sdk/lib/x64/ze_validation_layer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/level-zero-sdk/lib/x64/ze_validation_layer.lib -------------------------------------------------------------------------------- /third_party/manifests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/manifests.yml -------------------------------------------------------------------------------- /third_party/opencl-intel/CL/intel/cl_ext_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-intel/CL/intel/cl_ext_private.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl.hpp -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_d3d10.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_d3d11.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_egl.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_ext.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_gl.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_icd.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_platform.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/cl_version.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/include/CL/opencl.h -------------------------------------------------------------------------------- /third_party/opencl-sdk/lib/x64/OpenCL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/lib/x64/OpenCL.lib -------------------------------------------------------------------------------- /third_party/opencl-sdk/lib/x64/libOpenCL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/compute-benchmarks/HEAD/third_party/opencl-sdk/lib/x64/libOpenCL.so --------------------------------------------------------------------------------