├── .bazelrc ├── .bazelversion ├── .clang-format ├── .github ├── mistaken-pull-closer.yml └── pull_request_template.md ├── .gitignore ├── AUTHORS ├── BUILD ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── WORKSPACE ├── backends ├── common │ ├── BUILD │ ├── cpp_tests │ │ ├── BUILD │ │ └── bcast_test.cc │ ├── include │ │ └── tfrt │ │ │ └── common │ │ │ ├── compat │ │ │ └── eigen │ │ │ │ ├── contraction_kernel.h │ │ │ │ ├── contraction_output_kernel.h │ │ │ │ ├── eigen_dtype.h │ │ │ │ ├── eigen_evaluator.h │ │ │ │ ├── eigen_kernel.h │ │ │ │ ├── kernels │ │ │ │ └── shape_functions.h │ │ │ │ ├── partial_packets.h │ │ │ │ ├── spatial_convolution.h │ │ │ │ ├── spatial_convolution_data_mapper.h │ │ │ │ ├── tensor_types.h │ │ │ │ └── thread_pool_device.h │ │ │ └── ops │ │ │ ├── test │ │ │ └── metadata_functions.h │ │ │ └── tf │ │ │ ├── bcast.h │ │ │ ├── dnn_ops_util.h │ │ │ └── metadata_functions.h │ └── lib │ │ ├── compat │ │ └── eigen │ │ │ ├── contraction_kernel.cc │ │ │ ├── kernels │ │ │ ├── batch_norm.h │ │ │ ├── batch_norm_grad.cc │ │ │ ├── conv2d.h │ │ │ ├── conv2d_grad_filter.cc │ │ │ ├── conv2d_grad_input.cc │ │ │ ├── conv2d_shape_functions.cc │ │ │ ├── conv2d_shape_functions.h │ │ │ ├── cpu_kernels.cc │ │ │ ├── matmul.cc │ │ │ ├── max_pooling.h │ │ │ ├── shape_functions.cc │ │ │ ├── static_registration.cc │ │ │ └── zero_padding.h │ │ │ └── ops │ │ │ ├── cpu_ops.cc │ │ │ └── static_registration.cc │ │ └── ops │ │ ├── test │ │ └── metadata │ │ │ └── test_ops.cc │ │ └── tf │ │ ├── bcast.cc │ │ ├── dnn_ops_util.cc │ │ └── metadata_functions.cc └── cpu │ ├── BUILD │ ├── LICENSE │ ├── cpp_tests │ ├── BUILD │ ├── kernels │ │ └── cwise_binary_kernels_test.cc │ └── ops │ │ └── tf │ │ ├── buffer_forwarding_test.cc │ │ └── type_dispatch_test.cc │ ├── include │ └── tfrt │ │ └── cpu │ │ ├── core_runtime │ │ ├── cpu_op_handler.h │ │ ├── cpu_op_registry.h │ │ └── null_op_handler.h │ │ ├── kernels │ │ └── proto │ │ │ └── example.proto │ │ └── ops │ │ ├── test │ │ └── cpu_ops_and_kernels.h │ │ └── tf │ │ ├── cpu_jit_ops.h │ │ └── cpu_ops.h │ ├── lib │ ├── core_runtime │ │ ├── cpu_op_handler.cc │ │ ├── cpu_op_registry.cc │ │ ├── cpu_op_registry_impl.h │ │ ├── null_op_handler.cc │ │ ├── op_handler_kernels.cc │ │ ├── op_handler_kernels.h │ │ └── static_registration.cc │ ├── kernels │ │ ├── cpu_kernels.h │ │ ├── cwise_binary_kernels.h │ │ ├── cwise_unary_kernels.h │ │ ├── fused_matmul_kernel.h │ │ ├── image │ │ │ ├── image_kernels.cc │ │ │ ├── jpeg │ │ │ │ ├── jpeg_handle.cc │ │ │ │ ├── jpeg_handle.h │ │ │ │ ├── jpeg_mem.cc │ │ │ │ └── jpeg_mem.h │ │ │ ├── resize_bilinear_op.cc │ │ │ ├── resize_bilinear_op.h │ │ │ └── static_registration.cc │ │ ├── matmul_kernel.h │ │ ├── proto │ │ │ ├── proto_kernels.cc │ │ │ └── static_registration.cc │ │ ├── softmax_kernel.h │ │ ├── tile_kernel.cc │ │ └── tile_kernel.h │ └── ops │ │ ├── test │ │ ├── btf_kernels.cc │ │ ├── coo_host_tensor_kernels.cc │ │ ├── example_ops.cc │ │ ├── mnist_tensor_kernels.cc │ │ ├── resnet_tensor_kernels.cc │ │ └── static_registration.cc │ │ └── tf │ │ ├── buffer_forwarding.cc │ │ ├── buffer_forwarding.h │ │ ├── constant_ops.cc │ │ ├── constant_ops.h │ │ ├── cpu_jit_ops.cc │ │ ├── cpu_ops.cc │ │ ├── cwise_binary_ops.cc │ │ ├── cwise_binary_ops.h │ │ ├── cwise_unary_ops.cc │ │ ├── cwise_unary_ops.h │ │ ├── matmul_fusion_ops.cc │ │ ├── matmul_fusion_ops.h │ │ ├── matmul_ops.cc │ │ ├── matmul_ops.h │ │ ├── shape_ops.cc │ │ ├── shape_ops.h │ │ ├── softmax_ops.cc │ │ ├── softmax_ops.h │ │ ├── static_registration.cc │ │ ├── static_registration_jit.cc │ │ ├── tile_op.cc │ │ ├── tile_op.h │ │ └── type_dispatch.h │ └── mlir_tests │ ├── mnist │ ├── BUILD │ ├── btf_kernels.mlir │ └── test_data │ │ ├── BUILD │ │ ├── matmul_test_f32.btf │ │ ├── matmul_test_i32.btf │ │ └── test_tensor.btf │ ├── resnet │ ├── BUILD │ ├── max_pool.mlir │ ├── resnet_tensor_kernels.mlir │ └── test_data │ │ └── max_pool.btf │ └── rt │ └── cost_driven_async_parallel_for.mlir ├── cpp_tests ├── BUILD ├── bef │ ├── bef_test.cc │ ├── kernel_test.cc │ └── span_test.cc ├── bef_converter │ ├── bef_attr_emitter_test.cc │ ├── bef_attr_encoder_test.cc │ ├── bef_attr_reader_test.cc │ ├── bef_location_emitter_test.cc │ ├── bef_location_reader_test.cc │ └── bef_string_emitter_test.cc ├── core_runtime │ ├── driver.cc │ ├── driver.h │ ├── driver_test.cc │ ├── op_attrs_test.cc │ └── op_handler_test.cc ├── dtype │ └── dtype_test.cc ├── host_context │ ├── async_dispatch_test.cc │ ├── host_allocator_test.cc │ ├── host_buffer_test.cc │ ├── host_context_test.cc │ ├── location_test.cc │ ├── parallel_for_test.cc │ ├── request_context_test.cc │ ├── request_deadline_tracker_test.cc │ ├── resource_context_test.cc │ ├── timer_queue_test.cc │ └── value_test.cc ├── host_runtime │ └── concurrent_work_queue_test.cc ├── include │ └── tfrt │ │ └── cpp_tests │ │ ├── error_util.h │ │ └── test_util.h ├── support │ ├── aligned_buffer_test.cc │ ├── bef_encoding_test.cc │ ├── bef_reader_test.cc │ ├── concurrent_vector_test.cc │ ├── crc32c_test.cc │ ├── dense_host_tensor_test.cc │ ├── error_test.cc │ ├── hash_util_test.cc │ ├── latch_test.cc │ ├── map_by_type_test.cc │ ├── philox_random_test.cc │ ├── random_util_test.cc │ ├── ranges_test.cc │ ├── ranges_util_test.cc │ ├── ref_count_test.cc │ ├── string_util_test.cc │ ├── tensor_type_registration_test.cc │ ├── thread_local_test.cc │ └── variant_test.cc ├── tensor │ ├── btf_test.cc │ ├── tensor_serialize_utils_test.cc │ ├── tensor_shape_test.cc │ └── tensor_test.cc ├── tracing │ ├── tracing_benchmark.cc │ └── tracing_test.cc └── utils │ └── kernel_runner_test.cc ├── dependencies.bzl ├── documents ├── async_value.md ├── binary_executable_format.md ├── binary_tensor_format.md ├── code_size_test_app.md ├── cuda-proposal.md ├── design_philosophy.md ├── error_handling.md ├── explicit_dependency.md ├── high_level_overview.md ├── img │ ├── BEF_conversion.svg │ ├── TFRT_overview.svg │ ├── async-values.svg │ ├── graph-execution.svg │ ├── host-runtime.svg │ ├── mlir-bef.svg │ ├── reg-states.svg │ └── tfrt-arch.svg ├── style_guide.md ├── subsystems.md ├── tfrt_host_runtime_design.md ├── tfrt_op_by_op_execution_design.md └── tutorial.md ├── include └── tfrt │ ├── basic_kernels │ ├── basic_kernels.h │ └── opdefs │ │ ├── basic_kernels.h │ │ ├── basic_kernels.td │ │ ├── tfrt_base.h │ │ ├── tfrt_base.td │ │ └── types.h │ ├── bef │ ├── bef.h │ ├── bef_buffer.h │ ├── bef_encoding.h │ ├── bef_location.h │ ├── bef_reader.h │ ├── kernel.h │ └── span.h │ ├── bef_converter │ ├── bef_attr_encoder.h │ ├── bef_emitter.h │ ├── bef_to_mlir.h │ ├── bef_to_mlir_translate.h │ ├── mlir_src_to_bef.h │ ├── mlir_to_bef.h │ └── mlir_to_bef_translate.h │ ├── bef_executor │ ├── bef_file.h │ ├── bef_interpreter.h │ └── function_util.h │ ├── bef_executor_driver │ └── bef_executor_driver.h │ ├── compiler │ ├── compiler_pass.h │ ├── opdefs │ │ ├── tfrt_op_interfaces.h │ │ ├── tfrt_op_interfaces.td │ │ ├── tfrt_traits.h │ │ └── tfrt_traits.td │ └── stream_analysis.h │ ├── concurrency │ ├── async_value.h │ ├── async_value_ref.h │ ├── chain.h │ ├── concurrent_vector.h │ └── ref_count.h │ ├── core_runtime │ ├── core_runtime.h │ ├── core_runtime_op.h │ ├── dispatch_utils.h │ ├── execute_op_impl.h │ ├── kernels.h │ ├── logging_op_handler.h │ ├── op_args.h │ ├── op_attr_type.def │ ├── op_attr_type.h │ ├── op_attrs.h │ ├── op_handler.h │ ├── op_invocation.h │ ├── op_metadata_function.h │ ├── op_utils.h │ ├── opdefs │ │ ├── attributes.h │ │ ├── core_runtime.h │ │ ├── core_runtime.td │ │ ├── corert_base.td │ │ ├── corert_traits.td │ │ ├── corert_utils.h │ │ ├── sync │ │ │ ├── core_runtime.h │ │ │ └── core_runtime.td │ │ ├── traits.h │ │ └── types.h │ └── tensor_handle.h │ ├── dtype │ ├── dtype.def │ ├── dtype.h │ ├── dtype_formatter.h │ └── quantized_types.h │ ├── host_context │ ├── async_dispatch.h │ ├── async_value.h │ ├── async_value_ref.h │ ├── attribute_utils.h │ ├── chain.h │ ├── concurrent_work_queue.h │ ├── device.h │ ├── diagnostic.h │ ├── execution_context.h │ ├── function.h │ ├── host_allocator.h │ ├── host_buffer.h │ ├── host_context.h │ ├── host_context_ptr.h │ ├── kernel_frame.h │ ├── kernel_registry.h │ ├── kernel_utils.h │ ├── location.h │ ├── native_function.h │ ├── parallel_for.h │ ├── profiled_allocator.h │ ├── request_deadline_tracker.h │ ├── resource_context.h │ ├── shared_context.h │ ├── sync_kernel_frame.h │ ├── sync_kernel_utils.h │ ├── task_function.h │ ├── timer_queue.h │ ├── type_name.h │ └── value.h │ ├── init_tfrt_dialects.h │ ├── io │ ├── buffered_input_stream.h │ ├── file_input_stream.h │ ├── file_system.h │ └── input_stream.h │ ├── metrics │ ├── common_metrics.h │ ├── gauge.h │ ├── histogram.h │ ├── metrics.h │ └── metrics_registry.h │ ├── support │ ├── absl_mutex.h │ ├── aligned_buffer.h │ ├── alloc.h │ ├── bf16.h │ ├── byte_order.h │ ├── concurrent_vector.h │ ├── crc32c.h │ ├── error_type.def │ ├── error_util.h │ ├── forward_decls.h │ ├── fp16.h │ ├── hash_util.h │ ├── latch.h │ ├── logging.h │ ├── map_by_type.h │ ├── msan.h │ ├── op_registry_impl.h │ ├── philox_random.h │ ├── pointer_util.h │ ├── random_util.h │ ├── ranges.h │ ├── ranges_util.h │ ├── raw_coding.h │ ├── rc_array.h │ ├── ref_count.h │ ├── refcounted_callback.h │ ├── std_mutex.h │ ├── string_util.h │ ├── template_util.h │ ├── thread_annotations.h │ ├── thread_environment_std.h │ ├── thread_local.h │ ├── type_id.h │ ├── type_traits.h │ └── variant.h │ ├── tensor │ ├── btf.h │ ├── btf_util.h │ ├── conversion_registry.h │ ├── conversion_utils.h │ ├── coo_host_tensor.h │ ├── dense_host_tensor.h │ ├── dense_host_tensor_kernels.h │ ├── dense_host_tensor_view.h │ ├── dense_tensor_utils.h │ ├── dense_view.h │ ├── host_tensor.h │ ├── opdefs │ │ ├── coo_host_tensor.h │ │ ├── coo_host_tensor.td │ │ ├── dense_host_tensor.h │ │ ├── dense_host_tensor.td │ │ ├── dense_host_tensor_sync.h │ │ ├── dense_host_tensor_sync.td │ │ ├── host_tensor.h │ │ ├── host_tensor.td │ │ ├── tensor.h │ │ ├── tensor.td │ │ ├── tensor_shape.h │ │ ├── tensor_shape.td │ │ ├── tensor_shape_base.td │ │ ├── tensor_shape_sync.h │ │ └── tensor_shape_sync.td │ ├── scalar_host_tensor.h │ ├── string_host_tensor.h │ ├── string_host_tensor_kernels.h │ ├── tensor.h │ ├── tensor_metadata.h │ ├── tensor_serialize_utils.h │ ├── tensor_shape.h │ └── tensor_type_registration.h │ ├── test_kernels.h │ ├── test_kernels │ └── opdefs │ │ ├── test_kernels.h │ │ ├── test_kernels.td │ │ ├── test_kernels_sync.h │ │ └── test_kernels_sync.td │ ├── tfrt_op_base.td │ ├── tracing │ └── tracing.h │ └── utils │ ├── kernel_runner.h │ └── mlir_runner_util.h ├── integrationtest ├── BUILD ├── fizzbuzz │ ├── BUILD │ └── fizzbuzz.mlir └── resnet │ └── BUILD ├── lib ├── basic_kernels │ ├── boolean_kernels.cc │ ├── control_flow_kernels.cc │ ├── device_kernels.cc │ ├── float_kernels.cc │ ├── integer_kernels.cc │ ├── opdefs │ │ ├── basic_kernels.cc │ │ └── tfrt_base.cc │ ├── parallel_kernels.cc │ └── static_registration.cc ├── bef │ └── bef_location.cc ├── bef_converter │ ├── bef_attr_encoder │ │ └── bef_attr_encoder.cc │ ├── bef_emitter.cc │ ├── bef_to_mlir │ │ ├── bef_attr_reader.cc │ │ ├── bef_attr_reader.h │ │ ├── bef_location_reader.cc │ │ ├── bef_location_reader.h │ │ ├── bef_to_mlir.cc │ │ ├── bef_to_mlir_translate.cc │ │ └── static_registration.cc │ └── mlir_to_bef │ │ ├── bef_attr_emitter.cc │ │ ├── bef_attr_emitter.h │ │ ├── bef_compilation_units.cc │ │ ├── bef_compilation_units.h │ │ ├── bef_location_emitter.cc │ │ ├── bef_location_emitter.h │ │ ├── bef_string_emitter.cc │ │ ├── bef_string_emitter.h │ │ ├── mlir_src_to_bef.cc │ │ ├── mlir_to_bef.cc │ │ ├── mlir_to_bef_translate.cc │ │ └── static_registration.cc ├── bef_executor │ ├── bef_executor.cc │ ├── bef_file.cc │ ├── bef_file_impl.h │ └── bef_interpreter.cc ├── bef_executor_driver │ └── bef_executor_driver.cc ├── compiler │ ├── compiler_pass.cc │ ├── opdefs │ │ ├── tfrt_op_interfaces.cc │ │ └── tfrt_traits.cc │ ├── print_stream_pass.cc │ └── stream_analysis.cc ├── core_runtime │ ├── core_runtime.cc │ ├── core_runtime_op.cc │ ├── dispatch_utils.cc │ ├── execute_op_impl.cc │ ├── kernels.cc │ ├── logging_op_handler.cc │ ├── op_attrs.cc │ ├── opdefs │ │ ├── core_runtime.cc │ │ ├── corert_utils.cc │ │ └── sync │ │ │ └── core_runtime.cc │ ├── static_registration.cc │ ├── tensor_handle.cc │ └── test_kernels.cc ├── dtype │ └── dtype.cc ├── host_context │ ├── async_dispatch.cc │ ├── concurrent_work_queue.cc │ ├── device.cc │ ├── diagnostic.cc │ ├── execution_context.cc │ ├── host_allocator.cc │ ├── host_buffer.cc │ ├── host_context.cc │ ├── host_context_ptr.cc │ ├── kernel_frame.cc │ ├── kernel_registry.cc │ ├── location.cc │ ├── native_function.cc │ ├── parallel_for.cc │ ├── profiled_allocator.cc │ ├── shared_context.cc │ ├── single_threaded_work_queue.cc │ ├── static_registration.cc │ ├── test_fixed_size_allocator.cc │ └── timer_queue.cc ├── init_tfrt_dialects.cc ├── io │ ├── buffered_input_stream.cc │ ├── file_input_stream.cc │ ├── file_system.cc │ ├── posix_file_system.cc │ ├── posix_file_system.h │ ├── static_registration.cc │ ├── windows_file_system.cc │ └── windows_file_system.h ├── metrics │ ├── metrics.cc │ └── metrics_registry.cc ├── support │ ├── alloc.cc │ ├── crc32c.cc │ ├── crc32c_accelerate.cc │ ├── error_util.cc │ ├── hash_util.cc │ ├── logging.cc │ ├── random_util.cc │ ├── stack_trace.cc │ └── string_util.cc ├── tensor │ ├── btf.cc │ ├── btf_util.cc │ ├── conversion_registry.cc │ ├── coo_host_tensor.cc │ ├── coo_host_tensor_kernels.cc │ ├── dense_host_tensor.cc │ ├── dense_host_tensor_kernels.cc │ ├── dense_tensor_utils.cc │ ├── opdefs │ │ ├── coo_host_tensor.cc │ │ ├── dense_host_tensor.cc │ │ ├── dense_host_tensor_sync.cc │ │ ├── host_tensor.cc │ │ ├── tensor.cc │ │ ├── tensor_shape.cc │ │ └── tensor_shape_sync.cc │ ├── scalar_host_tensor.cc │ ├── static_registration.cc │ ├── string_host_tensor.cc │ ├── string_host_tensor_kernels.cc │ ├── tensor.cc │ ├── tensor_serialize_utils.cc │ ├── tensor_shape.cc │ ├── tensor_shape_kernels.cc │ └── tensor_type_registration.cc ├── test_kernels │ ├── async_kernels.cc │ ├── async_test_kernels.cc │ ├── atomic_test_kernels.cc │ ├── benchmark_kernels.cc │ ├── opdefs │ │ ├── test_kernels.cc │ │ └── test_kernels_sync.cc │ ├── simple_kernels.cc │ ├── simple_test_kernels.cc │ ├── static_registration.cc │ ├── test_native_functions.cc │ └── tutorial_kernels.cc ├── tracing │ ├── chrome_tracing_sink.cc │ ├── debug_tracing_sink.cc │ ├── simple_tracing_sink.cc │ └── tracing.cc └── utils │ ├── kernel_runner.cc │ └── mlir_runner_util.cc ├── mlir_tests ├── BUILD ├── basic_kernels │ ├── BUILD │ ├── control_flow.mlir │ ├── float_kernels.mlir │ ├── kernel_errors.mlir │ ├── kernels.mlir │ ├── parallel.benchmark.mlir │ └── parallel.mlir ├── bef_executor │ ├── BUILD │ ├── allocator.mlir │ ├── async.mlir │ ├── basics.mlir │ ├── benchmark.mlir │ ├── concurrent.mlir │ ├── cost.mlir │ ├── debug_info.mlir │ ├── err_unknown_kernel.mlir │ ├── error_code.mlir │ ├── init.mlir │ ├── lifetimes.mlir │ ├── memory_leak.mlir │ ├── native_function.mlir │ ├── scheduling.mlir │ ├── single_threaded_work_queue.mlir │ ├── tutorial.mlir │ ├── unique_loc.mlir │ └── uniqueness.mlir ├── bef_to_mlir │ ├── BUILD │ ├── attributes.mlir │ ├── basics.mlir │ ├── disable_optional_sections.mlir │ ├── many_users.mlir │ ├── modules.mlir │ ├── native_function.mlir │ └── sync_function.mlir ├── benchmarks │ ├── BUILD │ └── basic_benchmark_test.cc ├── code_size_test_app │ ├── BUILD │ └── fib.mlir ├── compiler │ ├── BUILD │ ├── inline.mlir │ ├── merge_chains.mlir │ ├── opt_err.mlir │ └── stream_analysis.mlir ├── core_runtime │ ├── BUILD │ ├── basic_ops.mlir │ ├── composite_op.mlir │ ├── const_tensor.mlir │ ├── fp16.mlir │ ├── logging.mlir │ ├── op_attrs.mlir │ ├── op_handler.mlir │ ├── opt.mlir │ └── opt_err.mlir ├── lit.bzl ├── lit.cfg.py ├── lit.site.cfg.py ├── mlir_runner_util_test.cc ├── mlir_to_bef │ ├── BUILD │ ├── basics.mlir │ ├── encoding.mlir │ ├── err.mlir │ └── modules.mlir ├── tensor │ ├── BUILD │ ├── coo_host_tensor.mlir │ ├── kernel_errors.mlir │ ├── string_host_tensor.mlir │ └── tensor_shape.mlir └── tracing │ ├── BUILD │ ├── core_runtime.mlir │ └── simple.mlir ├── opensource_only.files ├── third_party ├── BUILD ├── concurrent_work_queue │ ├── BUILD │ ├── LICENSE │ ├── cpp_tests │ │ ├── blocking_work_queue_test.cc │ │ ├── multi_threaded_work_queue_test.cc │ │ ├── non_blocking_work_queue_test.cc │ │ ├── task_deque_test.cc │ │ ├── task_priority_deque_test.cc │ │ └── task_queue_test.cc │ └── lib │ │ ├── blocking_work_queue.h │ │ ├── event_count.h │ │ ├── multi_threaded_work_queue.cc │ │ ├── non_blocking_work_queue.h │ │ ├── task_deque.h │ │ ├── task_priority_deque.h │ │ ├── task_queue.h │ │ └── work_queue_base.h ├── hip │ ├── BUILD │ ├── LICENSE │ ├── hip_stub.cc.inc │ ├── hip_stub.h.inc │ ├── hipfft_stub.cc.inc │ ├── hipfft_stub.h.inc │ ├── hiprtc_stub.cc.inc │ ├── hiprtc_stub.h.inc │ ├── miopen_stub.cc.inc │ ├── miopen_stub.h.inc │ ├── rccl_stub.cc.inc │ ├── rccl_stub.h.inc │ ├── rocblas_stub.cc.inc │ ├── rocblas_stub.h.inc │ ├── rocsolver_stub.cc.inc │ └── rocsolver_stub.h.inc ├── llvm_derived │ ├── BUILD │ ├── LICENSE │ ├── cpp_tests │ │ ├── BUILD │ │ └── Support │ │ │ └── unique_any_test.cc │ ├── include │ │ └── llvm_derived │ │ │ └── Support │ │ │ ├── in_place.h │ │ │ ├── raw_ostream.h │ │ │ └── unique_any.h │ ├── lib │ │ └── Support │ │ │ └── raw_ostream.cpp │ └── tools │ │ └── mlir-translate │ │ └── mlir-translate.cpp ├── py-cpuinfo.BUILD ├── repo.bzl └── xla │ ├── BUILD │ └── workspace.bzl └── tools ├── BUILD ├── bef_executor └── main.cc ├── btf_info_tool ├── btf_info_test.py └── main.cc ├── code_size_test_app └── main.cc ├── mlir_to_bef.bzl └── tfrt_opt └── tfrt_opt.cc /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | 3 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /.github/mistaken-pull-closer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/.github/mistaken-pull-closer.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | .vscode 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/BUILD -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global owners. 2 | * @bramandia @fdxmw @jing-dong @mhong 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/RELEASE.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/WORKSPACE -------------------------------------------------------------------------------- /backends/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/BUILD -------------------------------------------------------------------------------- /backends/common/cpp_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/cpp_tests/BUILD -------------------------------------------------------------------------------- /backends/common/cpp_tests/bcast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/cpp_tests/bcast_test.cc -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/contraction_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/contraction_kernel.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/contraction_output_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/contraction_output_kernel.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/eigen_dtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/eigen_dtype.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/eigen_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/eigen_evaluator.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/eigen_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/eigen_kernel.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/kernels/shape_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/kernels/shape_functions.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/partial_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/partial_packets.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/spatial_convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/spatial_convolution.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/spatial_convolution_data_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/spatial_convolution_data_mapper.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/tensor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/tensor_types.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/compat/eigen/thread_pool_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/compat/eigen/thread_pool_device.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/ops/test/metadata_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/ops/test/metadata_functions.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/ops/tf/bcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/ops/tf/bcast.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/ops/tf/dnn_ops_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/ops/tf/dnn_ops_util.h -------------------------------------------------------------------------------- /backends/common/include/tfrt/common/ops/tf/metadata_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/include/tfrt/common/ops/tf/metadata_functions.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/contraction_kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/contraction_kernel.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/batch_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/batch_norm.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/batch_norm_grad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/batch_norm_grad.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/conv2d.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/conv2d_grad_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/conv2d_grad_filter.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/conv2d_grad_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/conv2d_grad_input.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/conv2d_shape_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/conv2d_shape_functions.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/conv2d_shape_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/conv2d_shape_functions.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/cpu_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/cpu_kernels.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/matmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/matmul.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/max_pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/max_pooling.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/shape_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/shape_functions.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/static_registration.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/kernels/zero_padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/kernels/zero_padding.h -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/ops/cpu_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/ops/cpu_ops.cc -------------------------------------------------------------------------------- /backends/common/lib/compat/eigen/ops/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/compat/eigen/ops/static_registration.cc -------------------------------------------------------------------------------- /backends/common/lib/ops/test/metadata/test_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/ops/test/metadata/test_ops.cc -------------------------------------------------------------------------------- /backends/common/lib/ops/tf/bcast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/ops/tf/bcast.cc -------------------------------------------------------------------------------- /backends/common/lib/ops/tf/dnn_ops_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/ops/tf/dnn_ops_util.cc -------------------------------------------------------------------------------- /backends/common/lib/ops/tf/metadata_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/common/lib/ops/tf/metadata_functions.cc -------------------------------------------------------------------------------- /backends/cpu/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/BUILD -------------------------------------------------------------------------------- /backends/cpu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/LICENSE -------------------------------------------------------------------------------- /backends/cpu/cpp_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/cpp_tests/BUILD -------------------------------------------------------------------------------- /backends/cpu/cpp_tests/kernels/cwise_binary_kernels_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/cpp_tests/kernels/cwise_binary_kernels_test.cc -------------------------------------------------------------------------------- /backends/cpu/cpp_tests/ops/tf/buffer_forwarding_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/cpp_tests/ops/tf/buffer_forwarding_test.cc -------------------------------------------------------------------------------- /backends/cpu/cpp_tests/ops/tf/type_dispatch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/cpp_tests/ops/tf/type_dispatch_test.cc -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/core_runtime/cpu_op_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/core_runtime/cpu_op_handler.h -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/core_runtime/cpu_op_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/core_runtime/cpu_op_registry.h -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/core_runtime/null_op_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/core_runtime/null_op_handler.h -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/kernels/proto/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/kernels/proto/example.proto -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/ops/test/cpu_ops_and_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/ops/test/cpu_ops_and_kernels.h -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/ops/tf/cpu_jit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/ops/tf/cpu_jit_ops.h -------------------------------------------------------------------------------- /backends/cpu/include/tfrt/cpu/ops/tf/cpu_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/include/tfrt/cpu/ops/tf/cpu_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/cpu_op_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/cpu_op_handler.cc -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/cpu_op_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/cpu_op_registry.cc -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/cpu_op_registry_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/cpu_op_registry_impl.h -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/null_op_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/null_op_handler.cc -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/op_handler_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/op_handler_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/op_handler_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/op_handler_kernels.h -------------------------------------------------------------------------------- /backends/cpu/lib/core_runtime/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/core_runtime/static_registration.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/cpu_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/cpu_kernels.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/cwise_binary_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/cwise_binary_kernels.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/cwise_unary_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/cwise_unary_kernels.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/fused_matmul_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/fused_matmul_kernel.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/image_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/image_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/jpeg/jpeg_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/jpeg/jpeg_handle.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/jpeg/jpeg_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/jpeg/jpeg_handle.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/jpeg/jpeg_mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/jpeg/jpeg_mem.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/jpeg/jpeg_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/jpeg/jpeg_mem.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/resize_bilinear_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/resize_bilinear_op.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/resize_bilinear_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/resize_bilinear_op.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/image/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/image/static_registration.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/matmul_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/matmul_kernel.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/proto/proto_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/proto/proto_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/proto/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/proto/static_registration.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/softmax_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/softmax_kernel.h -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/tile_kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/tile_kernel.cc -------------------------------------------------------------------------------- /backends/cpu/lib/kernels/tile_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/kernels/tile_kernel.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/btf_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/btf_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/coo_host_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/coo_host_tensor_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/example_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/example_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/mnist_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/mnist_tensor_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/resnet_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/resnet_tensor_kernels.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/test/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/test/static_registration.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/buffer_forwarding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/buffer_forwarding.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/buffer_forwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/buffer_forwarding.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/constant_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/constant_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/constant_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/constant_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cpu_jit_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cpu_jit_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cpu_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cpu_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cwise_binary_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cwise_binary_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cwise_binary_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cwise_binary_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cwise_unary_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cwise_unary_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/cwise_unary_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/cwise_unary_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/matmul_fusion_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/matmul_fusion_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/matmul_fusion_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/matmul_fusion_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/matmul_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/matmul_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/matmul_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/matmul_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/shape_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/shape_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/shape_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/shape_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/softmax_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/softmax_ops.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/softmax_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/softmax_ops.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/static_registration.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/static_registration_jit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/static_registration_jit.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/tile_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/tile_op.cc -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/tile_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/tile_op.h -------------------------------------------------------------------------------- /backends/cpu/lib/ops/tf/type_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/lib/ops/tf/type_dispatch.h -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/BUILD -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/btf_kernels.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/btf_kernels.mlir -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/test_data/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/test_data/BUILD -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/test_data/matmul_test_f32.btf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/test_data/matmul_test_f32.btf -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/test_data/matmul_test_i32.btf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/test_data/matmul_test_i32.btf -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/mnist/test_data/test_tensor.btf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/mnist/test_data/test_tensor.btf -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/resnet/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/resnet/BUILD -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/resnet/max_pool.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/resnet/max_pool.mlir -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/resnet/resnet_tensor_kernels.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/resnet/resnet_tensor_kernels.mlir -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/resnet/test_data/max_pool.btf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/resnet/test_data/max_pool.btf -------------------------------------------------------------------------------- /backends/cpu/mlir_tests/rt/cost_driven_async_parallel_for.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/backends/cpu/mlir_tests/rt/cost_driven_async_parallel_for.mlir -------------------------------------------------------------------------------- /cpp_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/BUILD -------------------------------------------------------------------------------- /cpp_tests/bef/bef_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef/bef_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef/kernel_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef/kernel_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef/span_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef/span_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_attr_emitter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_attr_emitter_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_attr_encoder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_attr_encoder_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_attr_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_attr_reader_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_location_emitter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_location_emitter_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_location_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_location_reader_test.cc -------------------------------------------------------------------------------- /cpp_tests/bef_converter/bef_string_emitter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/bef_converter/bef_string_emitter_test.cc -------------------------------------------------------------------------------- /cpp_tests/core_runtime/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/core_runtime/driver.cc -------------------------------------------------------------------------------- /cpp_tests/core_runtime/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/core_runtime/driver.h -------------------------------------------------------------------------------- /cpp_tests/core_runtime/driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/core_runtime/driver_test.cc -------------------------------------------------------------------------------- /cpp_tests/core_runtime/op_attrs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/core_runtime/op_attrs_test.cc -------------------------------------------------------------------------------- /cpp_tests/core_runtime/op_handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/core_runtime/op_handler_test.cc -------------------------------------------------------------------------------- /cpp_tests/dtype/dtype_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/dtype/dtype_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/async_dispatch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/async_dispatch_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/host_allocator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/host_allocator_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/host_buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/host_buffer_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/host_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/host_context_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/location_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/location_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/parallel_for_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/parallel_for_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/request_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/request_context_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/request_deadline_tracker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/request_deadline_tracker_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/resource_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/resource_context_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/timer_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/timer_queue_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_context/value_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_context/value_test.cc -------------------------------------------------------------------------------- /cpp_tests/host_runtime/concurrent_work_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/host_runtime/concurrent_work_queue_test.cc -------------------------------------------------------------------------------- /cpp_tests/include/tfrt/cpp_tests/error_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/include/tfrt/cpp_tests/error_util.h -------------------------------------------------------------------------------- /cpp_tests/include/tfrt/cpp_tests/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/include/tfrt/cpp_tests/test_util.h -------------------------------------------------------------------------------- /cpp_tests/support/aligned_buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/aligned_buffer_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/bef_encoding_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/bef_encoding_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/bef_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/bef_reader_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/concurrent_vector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/concurrent_vector_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/crc32c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/crc32c_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/dense_host_tensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/dense_host_tensor_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/error_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/error_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/hash_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/hash_util_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/latch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/latch_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/map_by_type_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/map_by_type_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/philox_random_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/philox_random_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/random_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/random_util_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/ranges_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/ranges_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/ranges_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/ranges_util_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/ref_count_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/ref_count_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/string_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/string_util_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/tensor_type_registration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/tensor_type_registration_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/thread_local_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/thread_local_test.cc -------------------------------------------------------------------------------- /cpp_tests/support/variant_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/support/variant_test.cc -------------------------------------------------------------------------------- /cpp_tests/tensor/btf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tensor/btf_test.cc -------------------------------------------------------------------------------- /cpp_tests/tensor/tensor_serialize_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tensor/tensor_serialize_utils_test.cc -------------------------------------------------------------------------------- /cpp_tests/tensor/tensor_shape_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tensor/tensor_shape_test.cc -------------------------------------------------------------------------------- /cpp_tests/tensor/tensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tensor/tensor_test.cc -------------------------------------------------------------------------------- /cpp_tests/tracing/tracing_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tracing/tracing_benchmark.cc -------------------------------------------------------------------------------- /cpp_tests/tracing/tracing_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/tracing/tracing_test.cc -------------------------------------------------------------------------------- /cpp_tests/utils/kernel_runner_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/cpp_tests/utils/kernel_runner_test.cc -------------------------------------------------------------------------------- /dependencies.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/dependencies.bzl -------------------------------------------------------------------------------- /documents/async_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/async_value.md -------------------------------------------------------------------------------- /documents/binary_executable_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/binary_executable_format.md -------------------------------------------------------------------------------- /documents/binary_tensor_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/binary_tensor_format.md -------------------------------------------------------------------------------- /documents/code_size_test_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/code_size_test_app.md -------------------------------------------------------------------------------- /documents/cuda-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/cuda-proposal.md -------------------------------------------------------------------------------- /documents/design_philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/design_philosophy.md -------------------------------------------------------------------------------- /documents/error_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/error_handling.md -------------------------------------------------------------------------------- /documents/explicit_dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/explicit_dependency.md -------------------------------------------------------------------------------- /documents/high_level_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/high_level_overview.md -------------------------------------------------------------------------------- /documents/img/BEF_conversion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/BEF_conversion.svg -------------------------------------------------------------------------------- /documents/img/TFRT_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/TFRT_overview.svg -------------------------------------------------------------------------------- /documents/img/async-values.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/async-values.svg -------------------------------------------------------------------------------- /documents/img/graph-execution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/graph-execution.svg -------------------------------------------------------------------------------- /documents/img/host-runtime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/host-runtime.svg -------------------------------------------------------------------------------- /documents/img/mlir-bef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/mlir-bef.svg -------------------------------------------------------------------------------- /documents/img/reg-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/reg-states.svg -------------------------------------------------------------------------------- /documents/img/tfrt-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/img/tfrt-arch.svg -------------------------------------------------------------------------------- /documents/style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/style_guide.md -------------------------------------------------------------------------------- /documents/subsystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/subsystems.md -------------------------------------------------------------------------------- /documents/tfrt_host_runtime_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/tfrt_host_runtime_design.md -------------------------------------------------------------------------------- /documents/tfrt_op_by_op_execution_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/tfrt_op_by_op_execution_design.md -------------------------------------------------------------------------------- /documents/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/documents/tutorial.md -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/basic_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/basic_kernels.h -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/opdefs/basic_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/opdefs/basic_kernels.h -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/opdefs/basic_kernels.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/opdefs/basic_kernels.td -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/opdefs/tfrt_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/opdefs/tfrt_base.h -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/opdefs/tfrt_base.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/opdefs/tfrt_base.td -------------------------------------------------------------------------------- /include/tfrt/basic_kernels/opdefs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/basic_kernels/opdefs/types.h -------------------------------------------------------------------------------- /include/tfrt/bef/bef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/bef.h -------------------------------------------------------------------------------- /include/tfrt/bef/bef_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/bef_buffer.h -------------------------------------------------------------------------------- /include/tfrt/bef/bef_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/bef_encoding.h -------------------------------------------------------------------------------- /include/tfrt/bef/bef_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/bef_location.h -------------------------------------------------------------------------------- /include/tfrt/bef/bef_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/bef_reader.h -------------------------------------------------------------------------------- /include/tfrt/bef/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/kernel.h -------------------------------------------------------------------------------- /include/tfrt/bef/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef/span.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/bef_attr_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/bef_attr_encoder.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/bef_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/bef_emitter.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/bef_to_mlir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/bef_to_mlir.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/bef_to_mlir_translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/bef_to_mlir_translate.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/mlir_src_to_bef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/mlir_src_to_bef.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/mlir_to_bef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/mlir_to_bef.h -------------------------------------------------------------------------------- /include/tfrt/bef_converter/mlir_to_bef_translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_converter/mlir_to_bef_translate.h -------------------------------------------------------------------------------- /include/tfrt/bef_executor/bef_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_executor/bef_file.h -------------------------------------------------------------------------------- /include/tfrt/bef_executor/bef_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_executor/bef_interpreter.h -------------------------------------------------------------------------------- /include/tfrt/bef_executor/function_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_executor/function_util.h -------------------------------------------------------------------------------- /include/tfrt/bef_executor_driver/bef_executor_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/bef_executor_driver/bef_executor_driver.h -------------------------------------------------------------------------------- /include/tfrt/compiler/compiler_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/compiler_pass.h -------------------------------------------------------------------------------- /include/tfrt/compiler/opdefs/tfrt_op_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/opdefs/tfrt_op_interfaces.h -------------------------------------------------------------------------------- /include/tfrt/compiler/opdefs/tfrt_op_interfaces.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/opdefs/tfrt_op_interfaces.td -------------------------------------------------------------------------------- /include/tfrt/compiler/opdefs/tfrt_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/opdefs/tfrt_traits.h -------------------------------------------------------------------------------- /include/tfrt/compiler/opdefs/tfrt_traits.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/opdefs/tfrt_traits.td -------------------------------------------------------------------------------- /include/tfrt/compiler/stream_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/compiler/stream_analysis.h -------------------------------------------------------------------------------- /include/tfrt/concurrency/async_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/concurrency/async_value.h -------------------------------------------------------------------------------- /include/tfrt/concurrency/async_value_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/concurrency/async_value_ref.h -------------------------------------------------------------------------------- /include/tfrt/concurrency/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/concurrency/chain.h -------------------------------------------------------------------------------- /include/tfrt/concurrency/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/concurrency/concurrent_vector.h -------------------------------------------------------------------------------- /include/tfrt/concurrency/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/concurrency/ref_count.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/core_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/core_runtime.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/core_runtime_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/core_runtime_op.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/dispatch_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/dispatch_utils.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/execute_op_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/execute_op_impl.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/kernels.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/logging_op_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/logging_op_handler.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_args.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_attr_type.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_attr_type.def -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_attr_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_attr_type.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_attrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_attrs.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_handler.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_invocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_invocation.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_metadata_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_metadata_function.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/op_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/op_utils.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/attributes.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/core_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/core_runtime.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/core_runtime.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/core_runtime.td -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/corert_base.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/corert_base.td -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/corert_traits.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/corert_traits.td -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/corert_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/corert_utils.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/sync/core_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/sync/core_runtime.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/sync/core_runtime.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/sync/core_runtime.td -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/traits.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/opdefs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/opdefs/types.h -------------------------------------------------------------------------------- /include/tfrt/core_runtime/tensor_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/core_runtime/tensor_handle.h -------------------------------------------------------------------------------- /include/tfrt/dtype/dtype.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/dtype/dtype.def -------------------------------------------------------------------------------- /include/tfrt/dtype/dtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/dtype/dtype.h -------------------------------------------------------------------------------- /include/tfrt/dtype/dtype_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/dtype/dtype_formatter.h -------------------------------------------------------------------------------- /include/tfrt/dtype/quantized_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/dtype/quantized_types.h -------------------------------------------------------------------------------- /include/tfrt/host_context/async_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/async_dispatch.h -------------------------------------------------------------------------------- /include/tfrt/host_context/async_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/async_value.h -------------------------------------------------------------------------------- /include/tfrt/host_context/async_value_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/async_value_ref.h -------------------------------------------------------------------------------- /include/tfrt/host_context/attribute_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/attribute_utils.h -------------------------------------------------------------------------------- /include/tfrt/host_context/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/chain.h -------------------------------------------------------------------------------- /include/tfrt/host_context/concurrent_work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/concurrent_work_queue.h -------------------------------------------------------------------------------- /include/tfrt/host_context/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/device.h -------------------------------------------------------------------------------- /include/tfrt/host_context/diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/diagnostic.h -------------------------------------------------------------------------------- /include/tfrt/host_context/execution_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/execution_context.h -------------------------------------------------------------------------------- /include/tfrt/host_context/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/function.h -------------------------------------------------------------------------------- /include/tfrt/host_context/host_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/host_allocator.h -------------------------------------------------------------------------------- /include/tfrt/host_context/host_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/host_buffer.h -------------------------------------------------------------------------------- /include/tfrt/host_context/host_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/host_context.h -------------------------------------------------------------------------------- /include/tfrt/host_context/host_context_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/host_context_ptr.h -------------------------------------------------------------------------------- /include/tfrt/host_context/kernel_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/kernel_frame.h -------------------------------------------------------------------------------- /include/tfrt/host_context/kernel_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/kernel_registry.h -------------------------------------------------------------------------------- /include/tfrt/host_context/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/kernel_utils.h -------------------------------------------------------------------------------- /include/tfrt/host_context/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/location.h -------------------------------------------------------------------------------- /include/tfrt/host_context/native_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/native_function.h -------------------------------------------------------------------------------- /include/tfrt/host_context/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/parallel_for.h -------------------------------------------------------------------------------- /include/tfrt/host_context/profiled_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/profiled_allocator.h -------------------------------------------------------------------------------- /include/tfrt/host_context/request_deadline_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/request_deadline_tracker.h -------------------------------------------------------------------------------- /include/tfrt/host_context/resource_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/resource_context.h -------------------------------------------------------------------------------- /include/tfrt/host_context/shared_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/shared_context.h -------------------------------------------------------------------------------- /include/tfrt/host_context/sync_kernel_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/sync_kernel_frame.h -------------------------------------------------------------------------------- /include/tfrt/host_context/sync_kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/sync_kernel_utils.h -------------------------------------------------------------------------------- /include/tfrt/host_context/task_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/task_function.h -------------------------------------------------------------------------------- /include/tfrt/host_context/timer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/timer_queue.h -------------------------------------------------------------------------------- /include/tfrt/host_context/type_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/type_name.h -------------------------------------------------------------------------------- /include/tfrt/host_context/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/host_context/value.h -------------------------------------------------------------------------------- /include/tfrt/init_tfrt_dialects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/init_tfrt_dialects.h -------------------------------------------------------------------------------- /include/tfrt/io/buffered_input_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/io/buffered_input_stream.h -------------------------------------------------------------------------------- /include/tfrt/io/file_input_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/io/file_input_stream.h -------------------------------------------------------------------------------- /include/tfrt/io/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/io/file_system.h -------------------------------------------------------------------------------- /include/tfrt/io/input_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/io/input_stream.h -------------------------------------------------------------------------------- /include/tfrt/metrics/common_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/metrics/common_metrics.h -------------------------------------------------------------------------------- /include/tfrt/metrics/gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/metrics/gauge.h -------------------------------------------------------------------------------- /include/tfrt/metrics/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/metrics/histogram.h -------------------------------------------------------------------------------- /include/tfrt/metrics/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/metrics/metrics.h -------------------------------------------------------------------------------- /include/tfrt/metrics/metrics_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/metrics/metrics_registry.h -------------------------------------------------------------------------------- /include/tfrt/support/absl_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/absl_mutex.h -------------------------------------------------------------------------------- /include/tfrt/support/aligned_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/aligned_buffer.h -------------------------------------------------------------------------------- /include/tfrt/support/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/alloc.h -------------------------------------------------------------------------------- /include/tfrt/support/bf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/bf16.h -------------------------------------------------------------------------------- /include/tfrt/support/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/byte_order.h -------------------------------------------------------------------------------- /include/tfrt/support/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/concurrent_vector.h -------------------------------------------------------------------------------- /include/tfrt/support/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/crc32c.h -------------------------------------------------------------------------------- /include/tfrt/support/error_type.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/error_type.def -------------------------------------------------------------------------------- /include/tfrt/support/error_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/error_util.h -------------------------------------------------------------------------------- /include/tfrt/support/forward_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/forward_decls.h -------------------------------------------------------------------------------- /include/tfrt/support/fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/fp16.h -------------------------------------------------------------------------------- /include/tfrt/support/hash_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/hash_util.h -------------------------------------------------------------------------------- /include/tfrt/support/latch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/latch.h -------------------------------------------------------------------------------- /include/tfrt/support/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/logging.h -------------------------------------------------------------------------------- /include/tfrt/support/map_by_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/map_by_type.h -------------------------------------------------------------------------------- /include/tfrt/support/msan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/msan.h -------------------------------------------------------------------------------- /include/tfrt/support/op_registry_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/op_registry_impl.h -------------------------------------------------------------------------------- /include/tfrt/support/philox_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/philox_random.h -------------------------------------------------------------------------------- /include/tfrt/support/pointer_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/pointer_util.h -------------------------------------------------------------------------------- /include/tfrt/support/random_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/random_util.h -------------------------------------------------------------------------------- /include/tfrt/support/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/ranges.h -------------------------------------------------------------------------------- /include/tfrt/support/ranges_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/ranges_util.h -------------------------------------------------------------------------------- /include/tfrt/support/raw_coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/raw_coding.h -------------------------------------------------------------------------------- /include/tfrt/support/rc_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/rc_array.h -------------------------------------------------------------------------------- /include/tfrt/support/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/ref_count.h -------------------------------------------------------------------------------- /include/tfrt/support/refcounted_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/refcounted_callback.h -------------------------------------------------------------------------------- /include/tfrt/support/std_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/std_mutex.h -------------------------------------------------------------------------------- /include/tfrt/support/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/string_util.h -------------------------------------------------------------------------------- /include/tfrt/support/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/template_util.h -------------------------------------------------------------------------------- /include/tfrt/support/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/thread_annotations.h -------------------------------------------------------------------------------- /include/tfrt/support/thread_environment_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/thread_environment_std.h -------------------------------------------------------------------------------- /include/tfrt/support/thread_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/thread_local.h -------------------------------------------------------------------------------- /include/tfrt/support/type_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/type_id.h -------------------------------------------------------------------------------- /include/tfrt/support/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/type_traits.h -------------------------------------------------------------------------------- /include/tfrt/support/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/support/variant.h -------------------------------------------------------------------------------- /include/tfrt/tensor/btf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/btf.h -------------------------------------------------------------------------------- /include/tfrt/tensor/btf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/btf_util.h -------------------------------------------------------------------------------- /include/tfrt/tensor/conversion_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/conversion_registry.h -------------------------------------------------------------------------------- /include/tfrt/tensor/conversion_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/conversion_utils.h -------------------------------------------------------------------------------- /include/tfrt/tensor/coo_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/coo_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/dense_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/dense_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/dense_host_tensor_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/dense_host_tensor_kernels.h -------------------------------------------------------------------------------- /include/tfrt/tensor/dense_host_tensor_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/dense_host_tensor_view.h -------------------------------------------------------------------------------- /include/tfrt/tensor/dense_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/dense_tensor_utils.h -------------------------------------------------------------------------------- /include/tfrt/tensor/dense_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/dense_view.h -------------------------------------------------------------------------------- /include/tfrt/tensor/host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/coo_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/coo_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/coo_host_tensor.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/coo_host_tensor.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/dense_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/dense_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/dense_host_tensor.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/dense_host_tensor.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/dense_host_tensor_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/dense_host_tensor_sync.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/dense_host_tensor_sync.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/dense_host_tensor_sync.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/host_tensor.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/host_tensor.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor_shape.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor_shape.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor_shape.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor_shape_base.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor_shape_base.td -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor_shape_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor_shape_sync.h -------------------------------------------------------------------------------- /include/tfrt/tensor/opdefs/tensor_shape_sync.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/opdefs/tensor_shape_sync.td -------------------------------------------------------------------------------- /include/tfrt/tensor/scalar_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/scalar_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/string_host_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/string_host_tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/string_host_tensor_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/string_host_tensor_kernels.h -------------------------------------------------------------------------------- /include/tfrt/tensor/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/tensor.h -------------------------------------------------------------------------------- /include/tfrt/tensor/tensor_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/tensor_metadata.h -------------------------------------------------------------------------------- /include/tfrt/tensor/tensor_serialize_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/tensor_serialize_utils.h -------------------------------------------------------------------------------- /include/tfrt/tensor/tensor_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/tensor_shape.h -------------------------------------------------------------------------------- /include/tfrt/tensor/tensor_type_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tensor/tensor_type_registration.h -------------------------------------------------------------------------------- /include/tfrt/test_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/test_kernels.h -------------------------------------------------------------------------------- /include/tfrt/test_kernels/opdefs/test_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/test_kernels/opdefs/test_kernels.h -------------------------------------------------------------------------------- /include/tfrt/test_kernels/opdefs/test_kernels.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/test_kernels/opdefs/test_kernels.td -------------------------------------------------------------------------------- /include/tfrt/test_kernels/opdefs/test_kernels_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/test_kernels/opdefs/test_kernels_sync.h -------------------------------------------------------------------------------- /include/tfrt/test_kernels/opdefs/test_kernels_sync.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/test_kernels/opdefs/test_kernels_sync.td -------------------------------------------------------------------------------- /include/tfrt/tfrt_op_base.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tfrt_op_base.td -------------------------------------------------------------------------------- /include/tfrt/tracing/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/tracing/tracing.h -------------------------------------------------------------------------------- /include/tfrt/utils/kernel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/utils/kernel_runner.h -------------------------------------------------------------------------------- /include/tfrt/utils/mlir_runner_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/include/tfrt/utils/mlir_runner_util.h -------------------------------------------------------------------------------- /integrationtest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/integrationtest/BUILD -------------------------------------------------------------------------------- /integrationtest/fizzbuzz/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/integrationtest/fizzbuzz/BUILD -------------------------------------------------------------------------------- /integrationtest/fizzbuzz/fizzbuzz.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/integrationtest/fizzbuzz/fizzbuzz.mlir -------------------------------------------------------------------------------- /integrationtest/resnet/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/integrationtest/resnet/BUILD -------------------------------------------------------------------------------- /lib/basic_kernels/boolean_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/boolean_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/control_flow_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/control_flow_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/device_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/device_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/float_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/float_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/integer_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/integer_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/opdefs/basic_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/opdefs/basic_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/opdefs/tfrt_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/opdefs/tfrt_base.cc -------------------------------------------------------------------------------- /lib/basic_kernels/parallel_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/parallel_kernels.cc -------------------------------------------------------------------------------- /lib/basic_kernels/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/basic_kernels/static_registration.cc -------------------------------------------------------------------------------- /lib/bef/bef_location.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef/bef_location.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_attr_encoder/bef_attr_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_attr_encoder/bef_attr_encoder.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_emitter.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_attr_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_attr_reader.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_attr_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_attr_reader.h -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_location_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_location_reader.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_location_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_location_reader.h -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_to_mlir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_to_mlir.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/bef_to_mlir_translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/bef_to_mlir_translate.cc -------------------------------------------------------------------------------- /lib/bef_converter/bef_to_mlir/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/bef_to_mlir/static_registration.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_attr_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_attr_emitter.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_attr_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_attr_emitter.h -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_compilation_units.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_compilation_units.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_compilation_units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_compilation_units.h -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_location_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_location_emitter.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_location_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_location_emitter.h -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_string_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_string_emitter.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/bef_string_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/bef_string_emitter.h -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/mlir_src_to_bef.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/mlir_src_to_bef.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/mlir_to_bef.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/mlir_to_bef.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/mlir_to_bef_translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/mlir_to_bef_translate.cc -------------------------------------------------------------------------------- /lib/bef_converter/mlir_to_bef/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_converter/mlir_to_bef/static_registration.cc -------------------------------------------------------------------------------- /lib/bef_executor/bef_executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_executor/bef_executor.cc -------------------------------------------------------------------------------- /lib/bef_executor/bef_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_executor/bef_file.cc -------------------------------------------------------------------------------- /lib/bef_executor/bef_file_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_executor/bef_file_impl.h -------------------------------------------------------------------------------- /lib/bef_executor/bef_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_executor/bef_interpreter.cc -------------------------------------------------------------------------------- /lib/bef_executor_driver/bef_executor_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/bef_executor_driver/bef_executor_driver.cc -------------------------------------------------------------------------------- /lib/compiler/compiler_pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/compiler/compiler_pass.cc -------------------------------------------------------------------------------- /lib/compiler/opdefs/tfrt_op_interfaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/compiler/opdefs/tfrt_op_interfaces.cc -------------------------------------------------------------------------------- /lib/compiler/opdefs/tfrt_traits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/compiler/opdefs/tfrt_traits.cc -------------------------------------------------------------------------------- /lib/compiler/print_stream_pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/compiler/print_stream_pass.cc -------------------------------------------------------------------------------- /lib/compiler/stream_analysis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/compiler/stream_analysis.cc -------------------------------------------------------------------------------- /lib/core_runtime/core_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/core_runtime.cc -------------------------------------------------------------------------------- /lib/core_runtime/core_runtime_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/core_runtime_op.cc -------------------------------------------------------------------------------- /lib/core_runtime/dispatch_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/dispatch_utils.cc -------------------------------------------------------------------------------- /lib/core_runtime/execute_op_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/execute_op_impl.cc -------------------------------------------------------------------------------- /lib/core_runtime/kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/kernels.cc -------------------------------------------------------------------------------- /lib/core_runtime/logging_op_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/logging_op_handler.cc -------------------------------------------------------------------------------- /lib/core_runtime/op_attrs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/op_attrs.cc -------------------------------------------------------------------------------- /lib/core_runtime/opdefs/core_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/opdefs/core_runtime.cc -------------------------------------------------------------------------------- /lib/core_runtime/opdefs/corert_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/opdefs/corert_utils.cc -------------------------------------------------------------------------------- /lib/core_runtime/opdefs/sync/core_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/opdefs/sync/core_runtime.cc -------------------------------------------------------------------------------- /lib/core_runtime/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/static_registration.cc -------------------------------------------------------------------------------- /lib/core_runtime/tensor_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/tensor_handle.cc -------------------------------------------------------------------------------- /lib/core_runtime/test_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/core_runtime/test_kernels.cc -------------------------------------------------------------------------------- /lib/dtype/dtype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/dtype/dtype.cc -------------------------------------------------------------------------------- /lib/host_context/async_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/async_dispatch.cc -------------------------------------------------------------------------------- /lib/host_context/concurrent_work_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/concurrent_work_queue.cc -------------------------------------------------------------------------------- /lib/host_context/device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/device.cc -------------------------------------------------------------------------------- /lib/host_context/diagnostic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/diagnostic.cc -------------------------------------------------------------------------------- /lib/host_context/execution_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/execution_context.cc -------------------------------------------------------------------------------- /lib/host_context/host_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/host_allocator.cc -------------------------------------------------------------------------------- /lib/host_context/host_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/host_buffer.cc -------------------------------------------------------------------------------- /lib/host_context/host_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/host_context.cc -------------------------------------------------------------------------------- /lib/host_context/host_context_ptr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/host_context_ptr.cc -------------------------------------------------------------------------------- /lib/host_context/kernel_frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/kernel_frame.cc -------------------------------------------------------------------------------- /lib/host_context/kernel_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/kernel_registry.cc -------------------------------------------------------------------------------- /lib/host_context/location.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/location.cc -------------------------------------------------------------------------------- /lib/host_context/native_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/native_function.cc -------------------------------------------------------------------------------- /lib/host_context/parallel_for.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/parallel_for.cc -------------------------------------------------------------------------------- /lib/host_context/profiled_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/profiled_allocator.cc -------------------------------------------------------------------------------- /lib/host_context/shared_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/shared_context.cc -------------------------------------------------------------------------------- /lib/host_context/single_threaded_work_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/single_threaded_work_queue.cc -------------------------------------------------------------------------------- /lib/host_context/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/static_registration.cc -------------------------------------------------------------------------------- /lib/host_context/test_fixed_size_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/test_fixed_size_allocator.cc -------------------------------------------------------------------------------- /lib/host_context/timer_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/host_context/timer_queue.cc -------------------------------------------------------------------------------- /lib/init_tfrt_dialects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/init_tfrt_dialects.cc -------------------------------------------------------------------------------- /lib/io/buffered_input_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/buffered_input_stream.cc -------------------------------------------------------------------------------- /lib/io/file_input_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/file_input_stream.cc -------------------------------------------------------------------------------- /lib/io/file_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/file_system.cc -------------------------------------------------------------------------------- /lib/io/posix_file_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/posix_file_system.cc -------------------------------------------------------------------------------- /lib/io/posix_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/posix_file_system.h -------------------------------------------------------------------------------- /lib/io/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/static_registration.cc -------------------------------------------------------------------------------- /lib/io/windows_file_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/windows_file_system.cc -------------------------------------------------------------------------------- /lib/io/windows_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/io/windows_file_system.h -------------------------------------------------------------------------------- /lib/metrics/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/metrics/metrics.cc -------------------------------------------------------------------------------- /lib/metrics/metrics_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/metrics/metrics_registry.cc -------------------------------------------------------------------------------- /lib/support/alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/alloc.cc -------------------------------------------------------------------------------- /lib/support/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/crc32c.cc -------------------------------------------------------------------------------- /lib/support/crc32c_accelerate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/crc32c_accelerate.cc -------------------------------------------------------------------------------- /lib/support/error_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/error_util.cc -------------------------------------------------------------------------------- /lib/support/hash_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/hash_util.cc -------------------------------------------------------------------------------- /lib/support/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/logging.cc -------------------------------------------------------------------------------- /lib/support/random_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/random_util.cc -------------------------------------------------------------------------------- /lib/support/stack_trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/stack_trace.cc -------------------------------------------------------------------------------- /lib/support/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/support/string_util.cc -------------------------------------------------------------------------------- /lib/tensor/btf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/btf.cc -------------------------------------------------------------------------------- /lib/tensor/btf_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/btf_util.cc -------------------------------------------------------------------------------- /lib/tensor/conversion_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/conversion_registry.cc -------------------------------------------------------------------------------- /lib/tensor/coo_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/coo_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/coo_host_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/coo_host_tensor_kernels.cc -------------------------------------------------------------------------------- /lib/tensor/dense_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/dense_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/dense_host_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/dense_host_tensor_kernels.cc -------------------------------------------------------------------------------- /lib/tensor/dense_tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/dense_tensor_utils.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/coo_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/coo_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/dense_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/dense_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/dense_host_tensor_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/dense_host_tensor_sync.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/tensor.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/tensor_shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/tensor_shape.cc -------------------------------------------------------------------------------- /lib/tensor/opdefs/tensor_shape_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/opdefs/tensor_shape_sync.cc -------------------------------------------------------------------------------- /lib/tensor/scalar_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/scalar_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/static_registration.cc -------------------------------------------------------------------------------- /lib/tensor/string_host_tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/string_host_tensor.cc -------------------------------------------------------------------------------- /lib/tensor/string_host_tensor_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/string_host_tensor_kernels.cc -------------------------------------------------------------------------------- /lib/tensor/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/tensor.cc -------------------------------------------------------------------------------- /lib/tensor/tensor_serialize_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/tensor_serialize_utils.cc -------------------------------------------------------------------------------- /lib/tensor/tensor_shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/tensor_shape.cc -------------------------------------------------------------------------------- /lib/tensor/tensor_shape_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/tensor_shape_kernels.cc -------------------------------------------------------------------------------- /lib/tensor/tensor_type_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tensor/tensor_type_registration.cc -------------------------------------------------------------------------------- /lib/test_kernels/async_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/async_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/async_test_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/async_test_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/atomic_test_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/atomic_test_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/benchmark_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/benchmark_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/opdefs/test_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/opdefs/test_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/opdefs/test_kernels_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/opdefs/test_kernels_sync.cc -------------------------------------------------------------------------------- /lib/test_kernels/simple_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/simple_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/simple_test_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/simple_test_kernels.cc -------------------------------------------------------------------------------- /lib/test_kernels/static_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/static_registration.cc -------------------------------------------------------------------------------- /lib/test_kernels/test_native_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/test_native_functions.cc -------------------------------------------------------------------------------- /lib/test_kernels/tutorial_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/test_kernels/tutorial_kernels.cc -------------------------------------------------------------------------------- /lib/tracing/chrome_tracing_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tracing/chrome_tracing_sink.cc -------------------------------------------------------------------------------- /lib/tracing/debug_tracing_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tracing/debug_tracing_sink.cc -------------------------------------------------------------------------------- /lib/tracing/simple_tracing_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tracing/simple_tracing_sink.cc -------------------------------------------------------------------------------- /lib/tracing/tracing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/tracing/tracing.cc -------------------------------------------------------------------------------- /lib/utils/kernel_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/utils/kernel_runner.cc -------------------------------------------------------------------------------- /lib/utils/mlir_runner_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/lib/utils/mlir_runner_util.cc -------------------------------------------------------------------------------- /mlir_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/BUILD -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/BUILD -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/control_flow.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/control_flow.mlir -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/float_kernels.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/float_kernels.mlir -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/kernel_errors.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/kernel_errors.mlir -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/kernels.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/kernels.mlir -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/parallel.benchmark.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/parallel.benchmark.mlir -------------------------------------------------------------------------------- /mlir_tests/basic_kernels/parallel.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/basic_kernels/parallel.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/BUILD -------------------------------------------------------------------------------- /mlir_tests/bef_executor/allocator.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/allocator.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/async.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/async.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/basics.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/basics.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/benchmark.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/benchmark.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/concurrent.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/concurrent.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/cost.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/cost.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/debug_info.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/debug_info.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/err_unknown_kernel.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/err_unknown_kernel.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/error_code.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/error_code.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/init.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/init.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/lifetimes.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/lifetimes.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/memory_leak.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/memory_leak.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/native_function.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/native_function.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/scheduling.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/scheduling.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/single_threaded_work_queue.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/single_threaded_work_queue.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/tutorial.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/tutorial.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/unique_loc.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/unique_loc.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_executor/uniqueness.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_executor/uniqueness.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/BUILD -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/attributes.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/attributes.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/basics.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/basics.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/disable_optional_sections.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/disable_optional_sections.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/many_users.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/many_users.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/modules.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/modules.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/native_function.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/native_function.mlir -------------------------------------------------------------------------------- /mlir_tests/bef_to_mlir/sync_function.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/bef_to_mlir/sync_function.mlir -------------------------------------------------------------------------------- /mlir_tests/benchmarks/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/benchmarks/BUILD -------------------------------------------------------------------------------- /mlir_tests/benchmarks/basic_benchmark_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/benchmarks/basic_benchmark_test.cc -------------------------------------------------------------------------------- /mlir_tests/code_size_test_app/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/code_size_test_app/BUILD -------------------------------------------------------------------------------- /mlir_tests/code_size_test_app/fib.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/code_size_test_app/fib.mlir -------------------------------------------------------------------------------- /mlir_tests/compiler/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/compiler/BUILD -------------------------------------------------------------------------------- /mlir_tests/compiler/inline.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/compiler/inline.mlir -------------------------------------------------------------------------------- /mlir_tests/compiler/merge_chains.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/compiler/merge_chains.mlir -------------------------------------------------------------------------------- /mlir_tests/compiler/opt_err.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/compiler/opt_err.mlir -------------------------------------------------------------------------------- /mlir_tests/compiler/stream_analysis.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/compiler/stream_analysis.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/BUILD -------------------------------------------------------------------------------- /mlir_tests/core_runtime/basic_ops.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/basic_ops.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/composite_op.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/composite_op.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/const_tensor.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/const_tensor.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/fp16.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/fp16.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/logging.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/logging.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/op_attrs.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/op_attrs.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/op_handler.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/op_handler.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/opt.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/opt.mlir -------------------------------------------------------------------------------- /mlir_tests/core_runtime/opt_err.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/core_runtime/opt_err.mlir -------------------------------------------------------------------------------- /mlir_tests/lit.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/lit.bzl -------------------------------------------------------------------------------- /mlir_tests/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/lit.cfg.py -------------------------------------------------------------------------------- /mlir_tests/lit.site.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/lit.site.cfg.py -------------------------------------------------------------------------------- /mlir_tests/mlir_runner_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_runner_util_test.cc -------------------------------------------------------------------------------- /mlir_tests/mlir_to_bef/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_to_bef/BUILD -------------------------------------------------------------------------------- /mlir_tests/mlir_to_bef/basics.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_to_bef/basics.mlir -------------------------------------------------------------------------------- /mlir_tests/mlir_to_bef/encoding.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_to_bef/encoding.mlir -------------------------------------------------------------------------------- /mlir_tests/mlir_to_bef/err.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_to_bef/err.mlir -------------------------------------------------------------------------------- /mlir_tests/mlir_to_bef/modules.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/mlir_to_bef/modules.mlir -------------------------------------------------------------------------------- /mlir_tests/tensor/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tensor/BUILD -------------------------------------------------------------------------------- /mlir_tests/tensor/coo_host_tensor.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tensor/coo_host_tensor.mlir -------------------------------------------------------------------------------- /mlir_tests/tensor/kernel_errors.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tensor/kernel_errors.mlir -------------------------------------------------------------------------------- /mlir_tests/tensor/string_host_tensor.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tensor/string_host_tensor.mlir -------------------------------------------------------------------------------- /mlir_tests/tensor/tensor_shape.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tensor/tensor_shape.mlir -------------------------------------------------------------------------------- /mlir_tests/tracing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tracing/BUILD -------------------------------------------------------------------------------- /mlir_tests/tracing/core_runtime.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tracing/core_runtime.mlir -------------------------------------------------------------------------------- /mlir_tests/tracing/simple.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/mlir_tests/tracing/simple.mlir -------------------------------------------------------------------------------- /opensource_only.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/opensource_only.files -------------------------------------------------------------------------------- /third_party/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/BUILD -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/BUILD -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/LICENSE -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/blocking_work_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/blocking_work_queue_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/multi_threaded_work_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/multi_threaded_work_queue_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/non_blocking_work_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/non_blocking_work_queue_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/task_deque_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/task_deque_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/task_priority_deque_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/task_priority_deque_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/cpp_tests/task_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/cpp_tests/task_queue_test.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/blocking_work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/blocking_work_queue.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/event_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/event_count.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/multi_threaded_work_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/multi_threaded_work_queue.cc -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/non_blocking_work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/non_blocking_work_queue.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/task_deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/task_deque.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/task_priority_deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/task_priority_deque.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/task_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/task_queue.h -------------------------------------------------------------------------------- /third_party/concurrent_work_queue/lib/work_queue_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/concurrent_work_queue/lib/work_queue_base.h -------------------------------------------------------------------------------- /third_party/hip/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/BUILD -------------------------------------------------------------------------------- /third_party/hip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/LICENSE -------------------------------------------------------------------------------- /third_party/hip/hip_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hip_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/hip_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hip_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/hipfft_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hipfft_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/hipfft_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hipfft_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/hiprtc_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hiprtc_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/hiprtc_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/hiprtc_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/miopen_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/miopen_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/miopen_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/miopen_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/rccl_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rccl_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/rccl_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rccl_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/rocblas_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rocblas_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/rocblas_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rocblas_stub.h.inc -------------------------------------------------------------------------------- /third_party/hip/rocsolver_stub.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rocsolver_stub.cc.inc -------------------------------------------------------------------------------- /third_party/hip/rocsolver_stub.h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/hip/rocsolver_stub.h.inc -------------------------------------------------------------------------------- /third_party/llvm_derived/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/BUILD -------------------------------------------------------------------------------- /third_party/llvm_derived/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/LICENSE -------------------------------------------------------------------------------- /third_party/llvm_derived/cpp_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/cpp_tests/BUILD -------------------------------------------------------------------------------- /third_party/llvm_derived/cpp_tests/Support/unique_any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/cpp_tests/Support/unique_any_test.cc -------------------------------------------------------------------------------- /third_party/llvm_derived/include/llvm_derived/Support/in_place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/include/llvm_derived/Support/in_place.h -------------------------------------------------------------------------------- /third_party/llvm_derived/include/llvm_derived/Support/raw_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/include/llvm_derived/Support/raw_ostream.h -------------------------------------------------------------------------------- /third_party/llvm_derived/include/llvm_derived/Support/unique_any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/include/llvm_derived/Support/unique_any.h -------------------------------------------------------------------------------- /third_party/llvm_derived/lib/Support/raw_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/lib/Support/raw_ostream.cpp -------------------------------------------------------------------------------- /third_party/llvm_derived/tools/mlir-translate/mlir-translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/llvm_derived/tools/mlir-translate/mlir-translate.cpp -------------------------------------------------------------------------------- /third_party/py-cpuinfo.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/py-cpuinfo.BUILD -------------------------------------------------------------------------------- /third_party/repo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/repo.bzl -------------------------------------------------------------------------------- /third_party/xla/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/xla/workspace.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/third_party/xla/workspace.bzl -------------------------------------------------------------------------------- /tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/BUILD -------------------------------------------------------------------------------- /tools/bef_executor/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/bef_executor/main.cc -------------------------------------------------------------------------------- /tools/btf_info_tool/btf_info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/btf_info_tool/btf_info_test.py -------------------------------------------------------------------------------- /tools/btf_info_tool/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/btf_info_tool/main.cc -------------------------------------------------------------------------------- /tools/code_size_test_app/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/code_size_test_app/main.cc -------------------------------------------------------------------------------- /tools/mlir_to_bef.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/mlir_to_bef.bzl -------------------------------------------------------------------------------- /tools/tfrt_opt/tfrt_opt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/runtime/HEAD/tools/tfrt_opt/tfrt_opt.cc --------------------------------------------------------------------------------