├── .idea ├── .gitignore ├── DPCRN.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── C++ ├── 440C020A_mix.wav ├── pocketfft_hdronly.h ├── real_time_inference.sln ├── sin_512.h ├── tflite-c-win.cpp ├── tflite-c-win.vcxproj ├── tflite-c-win.vcxproj.filters ├── tflite-c-win.vcxproj.user └── tflite-dist │ ├── include │ ├── absl │ │ ├── algorithm │ │ │ ├── algorithm.h │ │ │ └── container.h │ │ ├── base │ │ │ ├── attributes.h │ │ │ ├── call_once.h │ │ │ ├── casts.h │ │ │ ├── config.h │ │ │ ├── const_init.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── internal │ │ │ │ ├── atomic_hook.h │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ ├── bits.h │ │ │ │ ├── cycleclock.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno_saver.h │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── periodic_sampler.h │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── thread_identity.h │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ └── unscaledcycleclock.h │ │ │ ├── log_severity.h │ │ │ ├── macros.h │ │ │ ├── optimization.h │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ └── thread_annotations.h │ │ ├── container │ │ │ ├── btree_map.h │ │ │ ├── btree_set.h │ │ │ ├── btree_test.h │ │ │ ├── fixed_array.h │ │ │ ├── flat_hash_map.h │ │ │ ├── flat_hash_set.h │ │ │ ├── inlined_vector.h │ │ │ ├── internal │ │ │ │ ├── btree.h │ │ │ │ ├── btree_container.h │ │ │ │ ├── common.h │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── container_memory.h │ │ │ │ ├── counting_allocator.h │ │ │ │ ├── hash_function_defaults.h │ │ │ │ ├── hash_generator_testing.h │ │ │ │ ├── hash_policy_testing.h │ │ │ │ ├── hash_policy_traits.h │ │ │ │ ├── hashtable_debug.h │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ ├── have_sse.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── node_hash_policy.h │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── test_instance_tracker.h │ │ │ │ ├── tracked.h │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ └── unordered_set_modifiers_test.h │ │ │ ├── node_hash_map.h │ │ │ └── node_hash_set.h │ │ ├── debugging │ │ │ ├── failure_signal_handler.h │ │ │ ├── internal │ │ │ │ ├── address_is_readable.h │ │ │ │ ├── demangle.h │ │ │ │ ├── elf_mem_image.h │ │ │ │ ├── examine_stack.h │ │ │ │ ├── stack_consumption.h │ │ │ │ ├── stacktrace_config.h │ │ │ │ ├── symbolize.h │ │ │ │ └── vdso_support.h │ │ │ ├── leak_check.h │ │ │ ├── stacktrace.h │ │ │ └── symbolize.h │ │ ├── flags │ │ │ ├── config.h │ │ │ ├── declare.h │ │ │ ├── flag.h │ │ │ ├── internal │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── flag.h │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── program_name.h │ │ │ │ ├── registry.h │ │ │ │ ├── type_erased.h │ │ │ │ └── usage.h │ │ │ ├── marshalling.h │ │ │ ├── parse.h │ │ │ ├── usage.h │ │ │ └── usage_config.h │ │ ├── functional │ │ │ ├── bind_front.h │ │ │ ├── function_ref.h │ │ │ └── internal │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ ├── hash │ │ │ ├── hash.h │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.h │ │ │ │ ├── hash.h │ │ │ │ └── spy_hash_state.h │ │ ├── memory │ │ │ └── memory.h │ │ ├── meta │ │ │ └── type_traits.h │ │ ├── numeric │ │ │ └── int128.h │ │ ├── random │ │ │ ├── bernoulli_distribution.h │ │ │ ├── beta_distribution.h │ │ │ ├── bit_gen_ref.h │ │ │ ├── discrete_distribution.h │ │ │ ├── distribution_format_traits.h │ │ │ ├── distributions.h │ │ │ ├── exponential_distribution.h │ │ │ ├── gaussian_distribution.h │ │ │ ├── internal │ │ │ │ ├── chi_square.h │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── distributions.h │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fastmath.h │ │ │ │ ├── generate_real.h │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── mock_overload_set.h │ │ │ │ ├── mocking_bit_gen_base.h │ │ │ │ ├── nanobenchmark.h │ │ │ │ ├── nonsecure_base.h │ │ │ │ ├── pcg_engine.h │ │ │ │ ├── platform.h │ │ │ │ ├── pool_urbg.h │ │ │ │ ├── randen.h │ │ │ │ ├── randen_detect.h │ │ │ │ ├── randen_engine.h │ │ │ │ ├── randen_hwaes.h │ │ │ │ ├── randen_slow.h │ │ │ │ ├── randen_traits.h │ │ │ │ ├── salted_seed_seq.h │ │ │ │ ├── seed_material.h │ │ │ │ ├── sequence_urbg.h │ │ │ │ ├── traits.h │ │ │ │ ├── uniform_helper.h │ │ │ │ └── wide_multiply.h │ │ │ ├── log_uniform_int_distribution.h │ │ │ ├── mock_distributions.h │ │ │ ├── mocking_bit_gen.h │ │ │ ├── poisson_distribution.h │ │ │ ├── random.h │ │ │ ├── seed_gen_exception.h │ │ │ ├── seed_sequences.h │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_real_distribution.h │ │ │ └── zipf_distribution.h │ │ ├── status │ │ │ ├── status.h │ │ │ └── status_payload_printer.h │ │ ├── strings │ │ │ ├── ascii.h │ │ │ ├── charconv.h │ │ │ ├── cord.h │ │ │ ├── cord_test_helpers.h │ │ │ ├── escaping.h │ │ │ ├── internal │ │ │ │ ├── char_map.h │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── cord_internal.h │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── memutil.h │ │ │ │ ├── numbers_test_common.h │ │ │ │ ├── ostringstream.h │ │ │ │ ├── pow10_helper.h │ │ │ │ ├── resize_uninitialized.h │ │ │ │ ├── stl_type_traits.h │ │ │ │ ├── str_format │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── bind.h │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.h │ │ │ │ │ └── parser.h │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ └── utf8.h │ │ │ ├── match.h │ │ │ ├── numbers.h │ │ │ ├── str_cat.h │ │ │ ├── str_format.h │ │ │ ├── str_join.h │ │ │ ├── str_replace.h │ │ │ ├── str_split.h │ │ │ ├── string_view.h │ │ │ ├── strip.h │ │ │ └── substitute.h │ │ ├── synchronization │ │ │ ├── barrier.h │ │ │ ├── blocking_counter.h │ │ │ ├── internal │ │ │ │ ├── create_thread_identity.h │ │ │ │ ├── graphcycles.h │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── thread_pool.h │ │ │ │ └── waiter.h │ │ │ ├── mutex.h │ │ │ └── notification.h │ │ ├── time │ │ │ ├── civil_time.h │ │ │ ├── clock.h │ │ │ ├── internal │ │ │ │ ├── cctz │ │ │ │ │ ├── include │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ └── tzfile.h │ │ │ │ └── test_util.h │ │ │ └── time.h │ │ ├── types │ │ │ ├── any.h │ │ │ ├── bad_any_cast.h │ │ │ ├── bad_optional_access.h │ │ │ ├── bad_variant_access.h │ │ │ ├── compare.h │ │ │ ├── internal │ │ │ │ ├── conformance_aliases.h │ │ │ │ ├── conformance_archetype.h │ │ │ │ ├── conformance_profile.h │ │ │ │ ├── optional.h │ │ │ │ ├── span.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── span.h │ │ │ └── variant.h │ │ └── utility │ │ │ └── utility.h │ ├── flatbuffers │ │ ├── base.h │ │ ├── code_generators.h │ │ ├── flatbuffers.h │ │ ├── flatc.h │ │ ├── flexbuffers.h │ │ ├── grpc.h │ │ ├── hash.h │ │ ├── idl.h │ │ ├── minireflect.h │ │ ├── reflection.h │ │ ├── reflection_generated.h │ │ ├── registry.h │ │ ├── stl_emulation.h │ │ └── util.h │ └── tensorflow │ │ └── lite │ │ ├── allocation.h │ │ ├── arena_planner.h │ │ ├── builtin_op_data.h │ │ ├── builtin_ops.h │ │ ├── c │ │ ├── builtin_op_data.h │ │ ├── c_api.h │ │ ├── c_api_experimental.h │ │ ├── c_api_internal.h │ │ └── common.h │ │ ├── context.h │ │ ├── context_util.h │ │ ├── core │ │ ├── api │ │ │ ├── error_reporter.h │ │ │ ├── flatbuffer_conversions.h │ │ │ ├── op_resolver.h │ │ │ ├── profiler.h │ │ │ └── tensor_utils.h │ │ ├── macros.h │ │ └── subgraph.h │ │ ├── delegates │ │ ├── flex │ │ │ ├── buffer_map.h │ │ │ ├── delegate.h │ │ │ ├── delegate_data.h │ │ │ ├── kernel.h │ │ │ ├── test_util.h │ │ │ ├── util.h │ │ │ └── whitelisted_flex_ops.h │ │ ├── gpu │ │ │ ├── api.h │ │ │ ├── cl │ │ │ │ ├── api.h │ │ │ │ ├── arguments.h │ │ │ │ ├── buffer.h │ │ │ │ ├── cl_command_queue.h │ │ │ │ ├── cl_context.h │ │ │ │ ├── cl_device.h │ │ │ │ ├── cl_errors.h │ │ │ │ ├── cl_event.h │ │ │ │ ├── cl_image_format.h │ │ │ │ ├── cl_kernel.h │ │ │ │ ├── cl_memory.h │ │ │ │ ├── cl_program.h │ │ │ │ ├── cl_test.h │ │ │ │ ├── egl_sync.h │ │ │ │ ├── environment.h │ │ │ │ ├── gl_interop.h │ │ │ │ ├── gpu_api_delegate.h │ │ │ │ ├── gpu_object.h │ │ │ │ ├── inference_context.h │ │ │ │ ├── kernels │ │ │ │ │ ├── add.h │ │ │ │ │ ├── cl_test.h │ │ │ │ │ ├── concat_xy.h │ │ │ │ │ ├── concat_z.h │ │ │ │ │ ├── conv_3d.h │ │ │ │ │ ├── conv_buffer_1x1.h │ │ │ │ │ ├── conv_common.h │ │ │ │ │ ├── conv_constants.h │ │ │ │ │ ├── conv_powervr.h │ │ │ │ │ ├── conv_texture.h │ │ │ │ │ ├── conv_weights_converter.h │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── convolution_transposed.h │ │ │ │ │ ├── convolution_transposed_3d.h │ │ │ │ │ ├── convolution_transposed_3x3.h │ │ │ │ │ ├── convolution_transposed_3x3_thin.h │ │ │ │ │ ├── convolution_transposed_4x4.h │ │ │ │ │ ├── convolution_transposed_thin.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_3d.h │ │ │ │ │ ├── depthwise_conv_3x3.h │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── flt_type.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── gpu_operation.h │ │ │ │ │ ├── lstm.h │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── padding.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── reshapex4.h │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── softmax1x1.h │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── strided_slice.h │ │ │ │ │ ├── transpose.h │ │ │ │ │ ├── tuning_parameters.h │ │ │ │ │ ├── util.h │ │ │ │ │ ├── winograd.h │ │ │ │ │ └── work_group_picking.h │ │ │ │ ├── linear_storage.h │ │ │ │ ├── model_hints.h │ │ │ │ ├── opencl_wrapper.h │ │ │ │ ├── precision.h │ │ │ │ ├── program_cache.h │ │ │ │ ├── selectors │ │ │ │ │ ├── convolution_selector.h │ │ │ │ │ ├── convolution_transposed_selector.h │ │ │ │ │ ├── default_selector.h │ │ │ │ │ ├── dw_convolution_selector.h │ │ │ │ │ ├── fully_connected_selector.h │ │ │ │ │ ├── operation_selector.h │ │ │ │ │ ├── simple_selectors.h │ │ │ │ │ └── subgraph.h │ │ │ │ ├── storage_type_util.h │ │ │ │ ├── tensor.h │ │ │ │ ├── tensor_type.h │ │ │ │ ├── tensor_type_util.h │ │ │ │ ├── texture2d.h │ │ │ │ └── util.h │ │ │ ├── common │ │ │ │ ├── access_type.h │ │ │ │ ├── convert.h │ │ │ │ ├── custom_parsers.h │ │ │ │ ├── data_type.h │ │ │ │ ├── gpu_info.h │ │ │ │ ├── memory_management.h │ │ │ │ ├── memory_management │ │ │ │ │ ├── equality_assignment.h │ │ │ │ │ ├── greedy_by_breadth_assignment.h │ │ │ │ │ ├── greedy_by_size_assignment.h │ │ │ │ │ ├── greedy_in_order_assignment.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── min_cost_flow_assignment.h │ │ │ │ │ ├── naive_assignment.h │ │ │ │ │ └── types.h │ │ │ │ ├── model.h │ │ │ │ ├── model_builder.h │ │ │ │ ├── model_builder_helper.h │ │ │ │ ├── model_transformer.h │ │ │ │ ├── object_reader.h │ │ │ │ ├── operations.h │ │ │ │ ├── quantization_util.h │ │ │ │ ├── shape.h │ │ │ │ ├── status.h │ │ │ │ ├── tensor.h │ │ │ │ ├── testing │ │ │ │ │ ├── feature_parity │ │ │ │ │ │ ├── feature_parity.h │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ └── add.h │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── interpreter_utils.h │ │ │ │ │ └── tflite_model_reader.h │ │ │ │ ├── transformations │ │ │ │ │ ├── add_bias.h │ │ │ │ │ ├── add_quant_adjustments.h │ │ │ │ │ ├── fuse_add_to_conv.h │ │ │ │ │ ├── fuse_mul_to_conv.h │ │ │ │ │ ├── general_transformations.h │ │ │ │ │ ├── make_fully_connected.h │ │ │ │ │ ├── make_padding.h │ │ │ │ │ ├── matching.h │ │ │ │ │ ├── merge_padding_with.h │ │ │ │ │ └── remove_noop.h │ │ │ │ ├── types.h │ │ │ │ ├── util.h │ │ │ │ ├── winograd_util.h │ │ │ │ └── workgroup_selection.h │ │ │ ├── delegate.h │ │ │ ├── gl │ │ │ │ ├── api.h │ │ │ │ ├── api2.h │ │ │ │ ├── command_queue.h │ │ │ │ ├── compiler.h │ │ │ │ ├── compiler │ │ │ │ │ ├── compiled_node.h │ │ │ │ │ ├── fuse_auto_input.h │ │ │ │ │ ├── fuse_inline.h │ │ │ │ │ ├── fuse_inplace.h │ │ │ │ │ ├── object_accessor.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── rename.h │ │ │ │ │ ├── shader_code.h │ │ │ │ │ ├── shader_codegen.h │ │ │ │ │ └── variable_accessor.h │ │ │ │ ├── compiler_options.h │ │ │ │ ├── converters │ │ │ │ │ ├── bhwc_to_phwc4.h │ │ │ │ │ ├── phwc4_to_bhwc.h │ │ │ │ │ └── util.h │ │ │ │ ├── egl_context.h │ │ │ │ ├── egl_environment.h │ │ │ │ ├── egl_surface.h │ │ │ │ ├── float16_conversions.h │ │ │ │ ├── gl_buffer.h │ │ │ │ ├── gl_call.h │ │ │ │ ├── gl_errors.h │ │ │ │ ├── gl_program.h │ │ │ │ ├── gl_shader.h │ │ │ │ ├── gl_sync.h │ │ │ │ ├── gl_texture.h │ │ │ │ ├── kernels │ │ │ │ │ ├── add.h │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── custom_registry.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── lstm.h │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pad.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── test_util.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── node_shader.h │ │ │ │ ├── object.h │ │ │ │ ├── object_manager.h │ │ │ │ ├── portable_egl.h │ │ │ │ ├── portable_gl31.h │ │ │ │ ├── request_gpu_info.h │ │ │ │ ├── runtime.h │ │ │ │ ├── runtime │ │ │ │ │ └── shared_buffer.h │ │ │ │ ├── runtime_options.h │ │ │ │ ├── serialization.h │ │ │ │ ├── stats.h │ │ │ │ ├── variable.h │ │ │ │ └── workgroups │ │ │ │ │ ├── best_effort_calculator.h │ │ │ │ │ ├── calculator.h │ │ │ │ │ ├── calculator_from_metadata.h │ │ │ │ │ ├── default_calculator.h │ │ │ │ │ └── ideal_workgroup_picker.h │ │ │ ├── gl_delegate.h │ │ │ ├── metal │ │ │ │ ├── api.h │ │ │ │ ├── buffer_convert.h │ │ │ │ ├── common.h │ │ │ │ ├── compiled_model.h │ │ │ │ ├── compute_task.h │ │ │ │ ├── compute_task_descriptor.h │ │ │ │ ├── environment.h │ │ │ │ ├── inference_context.h │ │ │ │ ├── kernels │ │ │ │ │ ├── add.h │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── custom_registry.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── padding.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── transpose_conv.h │ │ │ │ │ ├── util.h │ │ │ │ │ └── winograd.h │ │ │ │ └── runtime_options.h │ │ │ ├── metal_delegate.h │ │ │ ├── metal_delegate_internal.h │ │ │ └── spi.h │ │ ├── hexagon │ │ │ ├── builders │ │ │ │ ├── activation_builder.h │ │ │ │ ├── arg_min_max_builder.h │ │ │ │ ├── arithmetic_builder.h │ │ │ │ ├── batch_seq_builder.h │ │ │ │ ├── cast_builder.h │ │ │ │ ├── concat_builder.h │ │ │ │ ├── conv_2d_builder.h │ │ │ │ ├── hardswish_builder.h │ │ │ │ ├── l2_normalization_builder.h │ │ │ │ ├── matmul_builder.h │ │ │ │ ├── min_max_builder.h │ │ │ │ ├── mirror_pad_builder.h │ │ │ │ ├── neg_op_builder.h │ │ │ │ ├── op_builder.h │ │ │ │ ├── op_factory.h │ │ │ │ ├── pack_builder.h │ │ │ │ ├── pad_builder.h │ │ │ │ ├── pool_2d_builder.h │ │ │ │ ├── quantize_builder.h │ │ │ │ ├── reduce_builder.h │ │ │ │ ├── reshape_builder.h │ │ │ │ ├── resize_bilinear_builder.h │ │ │ │ ├── resize_nearest_neighbor_builder.h │ │ │ │ ├── slice_builder.h │ │ │ │ ├── softmax_builder.h │ │ │ │ ├── space_to_depth_builder.h │ │ │ │ ├── split_builder.h │ │ │ │ ├── strided_slice_builder.h │ │ │ │ ├── tests │ │ │ │ │ └── hexagon_delegate_op_model.h │ │ │ │ ├── transpose_builder.h │ │ │ │ └── transpose_conv_2d_builder.h │ │ │ ├── hexagon_delegate.h │ │ │ ├── hexagon_delegate_kernel.h │ │ │ ├── hexagon_implementation.h │ │ │ ├── hexagon_nn │ │ │ │ ├── hexagon_nn.h │ │ │ │ └── hexagon_nn_init.h │ │ │ ├── hexagon_nn_interface.h │ │ │ └── utils.h │ │ ├── interpreter_utils.h │ │ ├── nnapi │ │ │ ├── acceleration_test_util.h │ │ │ ├── nnapi_delegate.h │ │ │ ├── nnapi_delegate_kernel.h │ │ │ ├── nnapi_delegate_mock_test.h │ │ │ └── quant_lstm_sup.h │ │ ├── status.h │ │ ├── utils.h │ │ ├── utils │ │ │ ├── dummy_delegate │ │ │ │ └── dummy_delegate.h │ │ │ └── simple_delegate.h │ │ └── xnnpack │ │ │ ├── binary_elementwise_tester.h │ │ │ ├── conv_2d_tester.h │ │ │ ├── depthwise_conv_2d_tester.h │ │ │ ├── fully_connected_tester.h │ │ │ ├── leaky_relu_tester.h │ │ │ ├── pad_tester.h │ │ │ ├── pool_2d_tester.h │ │ │ ├── reduce_tester.h │ │ │ ├── softmax_tester.h │ │ │ ├── unary_elementwise_tester.h │ │ │ └── xnnpack_delegate.h │ │ ├── error_reporter.h │ │ ├── examples │ │ ├── ios │ │ │ ├── camera │ │ │ │ ├── CameraExampleAppDelegate.h │ │ │ │ └── CameraExampleViewController.h │ │ │ └── simple │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── RunModelViewController.h │ │ │ │ └── ios_image_load.h │ │ └── label_image │ │ │ ├── bitmap_helpers.h │ │ │ ├── bitmap_helpers_impl.h │ │ │ ├── get_top_n.h │ │ │ ├── get_top_n_impl.h │ │ │ └── label_image.h │ │ ├── experimental │ │ ├── acceleration │ │ │ ├── compatibility │ │ │ │ ├── android_info.h │ │ │ │ ├── devicedb.h │ │ │ │ ├── gpu_compatibility.h │ │ │ │ └── variables.h │ │ │ └── configuration │ │ │ │ ├── delegate_registry.h │ │ │ │ └── proto_to_flatbuffer.h │ │ ├── delegates │ │ │ └── coreml │ │ │ │ ├── builders │ │ │ │ ├── activation_layer_builder.h │ │ │ │ ├── add_op_builder.h │ │ │ │ ├── concatenation_op_builder.h │ │ │ │ ├── convolution_op_builder.h │ │ │ │ ├── dummy_op_builder.h │ │ │ │ ├── fully_connected_op_builder.h │ │ │ │ ├── hardswish_op_builder.h │ │ │ │ ├── mul_op_builder.h │ │ │ │ ├── op_builder.h │ │ │ │ ├── op_factory.h │ │ │ │ ├── op_validator.h │ │ │ │ ├── pooling_layer_builder.h │ │ │ │ ├── reshape_op_builder.h │ │ │ │ ├── resize_bilinear_op_builder.h │ │ │ │ ├── softmax_op_builder.h │ │ │ │ ├── test_util.h │ │ │ │ ├── threshold_layer_builder.h │ │ │ │ └── util.h │ │ │ │ ├── coreml_delegate.h │ │ │ │ ├── coreml_delegate_kernel.h │ │ │ │ └── coreml_executor.h │ │ ├── kernels │ │ │ ├── ctc_beam_entry.h │ │ │ ├── ctc_beam_scorer.h │ │ │ ├── ctc_beam_search.h │ │ │ ├── ctc_decoder.h │ │ │ ├── ctc_loss_util.h │ │ │ ├── gru_cell.h │ │ │ └── top_n.h │ │ ├── microfrontend │ │ │ ├── audio_microfrontend.h │ │ │ └── lib │ │ │ │ ├── bits.h │ │ │ │ ├── fft.h │ │ │ │ ├── fft_io.h │ │ │ │ ├── fft_util.h │ │ │ │ ├── filterbank.h │ │ │ │ ├── filterbank_io.h │ │ │ │ ├── filterbank_util.h │ │ │ │ ├── frontend.h │ │ │ │ ├── frontend_io.h │ │ │ │ ├── frontend_util.h │ │ │ │ ├── log_lut.h │ │ │ │ ├── log_scale.h │ │ │ │ ├── log_scale_io.h │ │ │ │ ├── log_scale_util.h │ │ │ │ ├── noise_reduction.h │ │ │ │ ├── noise_reduction_io.h │ │ │ │ ├── noise_reduction_util.h │ │ │ │ ├── pcan_gain_control.h │ │ │ │ ├── pcan_gain_control_util.h │ │ │ │ ├── window.h │ │ │ │ ├── window_io.h │ │ │ │ └── window_util.h │ │ ├── objc │ │ │ ├── apis │ │ │ │ ├── TFLInterpreter.h │ │ │ │ ├── TFLInterpreterOptions.h │ │ │ │ ├── TFLQuantizationParameters.h │ │ │ │ ├── TFLTensor.h │ │ │ │ └── TFLTensorFlowLite.h │ │ │ ├── apps │ │ │ │ └── TestApp │ │ │ │ │ └── TestApp │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ └── ViewController.h │ │ │ └── sources │ │ │ │ ├── TFLErrorUtil.h │ │ │ │ ├── TFLInterpreter+Internal.h │ │ │ │ ├── TFLQuantizationParameters+Internal.h │ │ │ │ └── TFLTensor+Internal.h │ │ ├── resource │ │ │ ├── lookup_interfaces.h │ │ │ ├── lookup_util.h │ │ │ ├── resource_base.h │ │ │ ├── resource_variable.h │ │ │ └── static_hashtable.h │ │ ├── support │ │ │ ├── codegen │ │ │ │ ├── android_java_generator.h │ │ │ │ ├── code_generator.h │ │ │ │ ├── metadata_helper.h │ │ │ │ └── utils.h │ │ │ └── metadata │ │ │ │ └── cc │ │ │ │ └── metadata_version.h │ │ ├── tflite_api_dispatcher │ │ │ └── tflite_api_dispatcher.h │ │ └── writer │ │ │ ├── enum_mapping.h │ │ │ └── writer_lib.h │ │ ├── external_cpu_backend_context.h │ │ ├── graph_info.h │ │ ├── interpreter.h │ │ ├── interpreter_builder.h │ │ ├── java │ │ └── src │ │ │ └── main │ │ │ └── native │ │ │ ├── jni_utils.h │ │ │ └── op_resolver.h │ │ ├── kernels │ │ ├── acceleration_test_util.h │ │ ├── acceleration_test_util_internal.h │ │ ├── builtin_op_kernels.h │ │ ├── cpu_backend_context.h │ │ ├── cpu_backend_gemm.h │ │ ├── cpu_backend_gemm_custom_gemv.h │ │ ├── cpu_backend_gemm_eigen.h │ │ ├── cpu_backend_gemm_gemmlowp.h │ │ ├── cpu_backend_gemm_params.h │ │ ├── cpu_backend_gemm_ruy.h │ │ ├── cpu_backend_threadpool.h │ │ ├── custom_ops_register.h │ │ ├── dequantize.h │ │ ├── eigen_support.h │ │ ├── fully_connected.h │ │ ├── hashtable │ │ │ └── hashtable_ops.h │ │ ├── internal │ │ │ ├── common.h │ │ │ ├── compatibility.h │ │ │ ├── cppmath.h │ │ │ ├── kernel_utils.h │ │ │ ├── legacy_types.h │ │ │ ├── max.h │ │ │ ├── mfcc.h │ │ │ ├── mfcc_dct.h │ │ │ ├── mfcc_mel_filterbank.h │ │ │ ├── min.h │ │ │ ├── optimized │ │ │ │ ├── batch_matmul.h │ │ │ │ ├── cpu_check.h │ │ │ │ ├── depthwiseconv_3x3_filter_common.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_multithread.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ │ ├── depthwiseconv_uint8_transitional.h │ │ │ │ ├── eigen_spatial_convolutions.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ │ ├── im2col_utils.h │ │ │ │ ├── integer_ops │ │ │ │ │ ├── add.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_3x3_filter.h │ │ │ │ │ ├── depthwise_conv_hybrid.h │ │ │ │ │ ├── depthwise_conv_hybrid_3x3_filter.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── legacy_optimized_ops.h │ │ │ │ ├── multithreaded_conv.h │ │ │ │ ├── neon_check.h │ │ │ │ ├── neon_tensor_utils.h │ │ │ │ ├── neon_tensor_utils_impl.h │ │ │ │ ├── optimized_ops.h │ │ │ │ ├── sparse_ops │ │ │ │ │ └── fully_connected.h │ │ │ │ ├── sse_check.h │ │ │ │ ├── sse_tensor_utils.h │ │ │ │ └── sse_tensor_utils_impl.h │ │ │ ├── quantization_util.h │ │ │ ├── reference │ │ │ │ ├── add.h │ │ │ │ ├── arg_min_max.h │ │ │ │ ├── batch_matmul.h │ │ │ │ ├── binary_function.h │ │ │ │ ├── ceil.h │ │ │ │ ├── comparisons.h │ │ │ │ ├── concatenation.h │ │ │ │ ├── conv.h │ │ │ │ ├── densify.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── dequantize.h │ │ │ │ ├── floor.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── integer_ops │ │ │ │ │ ├── add.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── dequantize.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ ├── log_softmax.h │ │ │ │ │ ├── logistic.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── l2normalization.h │ │ │ │ ├── legacy_reference_ops.h │ │ │ │ ├── logistic.h │ │ │ │ ├── maximum_minimum.h │ │ │ │ ├── mul.h │ │ │ │ ├── neg.h │ │ │ │ ├── non_max_suppression.h │ │ │ │ ├── pad.h │ │ │ │ ├── pooling.h │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ ├── portable_tensor_utils_impl.h │ │ │ │ ├── prelu.h │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ ├── quantize.h │ │ │ │ ├── reduce.h │ │ │ │ ├── reference_ops.h │ │ │ │ ├── requantize.h │ │ │ │ ├── resize_nearest_neighbor.h │ │ │ │ ├── round.h │ │ │ │ ├── softmax.h │ │ │ │ ├── sparse_ops │ │ │ │ │ └── fully_connected.h │ │ │ │ ├── strided_slice.h │ │ │ │ ├── sub.h │ │ │ │ ├── svdf.h │ │ │ │ └── tanh.h │ │ │ ├── spectrogram.h │ │ │ ├── strided_slice_logic.h │ │ │ ├── tensor.h │ │ │ ├── tensor_ctypes.h │ │ │ ├── tensor_utils.h │ │ │ ├── test_util.h │ │ │ ├── transpose_utils.h │ │ │ └── types.h │ │ ├── kernel_util.h │ │ ├── lstm_eval.h │ │ ├── lstm_shared.h │ │ ├── op_macros.h │ │ ├── padding.h │ │ ├── register.h │ │ ├── register_ref.h │ │ ├── reshape_test_common.h │ │ ├── subgraph_test_util.h │ │ └── test_util.h │ │ ├── memory_planner.h │ │ ├── micro │ │ ├── all_ops_resolver.h │ │ ├── benchmarks │ │ │ ├── keyword_scrambled_model_data.h │ │ │ └── micro_benchmark.h │ │ ├── compatibility.h │ │ ├── debug_log.h │ │ ├── examples │ │ │ ├── hello_world │ │ │ │ ├── constants.h │ │ │ │ ├── main_functions.h │ │ │ │ ├── model.h │ │ │ │ └── output_handler.h │ │ │ ├── image_recognition_experimental │ │ │ │ ├── image_provider.h │ │ │ │ ├── image_recognition_model.h │ │ │ │ ├── stm32f746_discovery │ │ │ │ │ ├── display_util.h │ │ │ │ │ └── image_util.h │ │ │ │ └── util.h │ │ │ ├── magic_wand │ │ │ │ ├── accelerometer_handler.h │ │ │ │ ├── constants.h │ │ │ │ ├── gesture_predictor.h │ │ │ │ ├── magic_wand_model_data.h │ │ │ │ ├── main_functions.h │ │ │ │ ├── output_handler.h │ │ │ │ ├── ring_micro_features_data.h │ │ │ │ ├── slope_micro_features_data.h │ │ │ │ └── zephyr_riscv │ │ │ │ │ └── src │ │ │ │ │ └── accelerometer_handler.h │ │ │ ├── micro_speech │ │ │ │ ├── CMSIS │ │ │ │ │ ├── hanning.h │ │ │ │ │ └── sin_1k.h │ │ │ │ ├── audio_provider.h │ │ │ │ ├── command_responder.h │ │ │ │ ├── esp │ │ │ │ │ └── ringbuf.h │ │ │ │ ├── feature_provider.h │ │ │ │ ├── main_functions.h │ │ │ │ ├── micro_features │ │ │ │ │ ├── micro_features_generator.h │ │ │ │ │ ├── micro_model_settings.h │ │ │ │ │ ├── model.h │ │ │ │ │ ├── no_feature_data_slice.h │ │ │ │ │ ├── no_micro_features_data.h │ │ │ │ │ ├── static_alloc.h │ │ │ │ │ ├── yes_feature_data_slice.h │ │ │ │ │ └── yes_micro_features_data.h │ │ │ │ ├── no_1000ms_sample_data.h │ │ │ │ ├── no_30ms_sample_data.h │ │ │ │ ├── recognize_commands.h │ │ │ │ ├── simple_features │ │ │ │ │ ├── model.h │ │ │ │ │ ├── no_power_spectrum_data.h │ │ │ │ │ ├── no_simple_features_data.h │ │ │ │ │ ├── simple_features_generator.h │ │ │ │ │ ├── simple_model_settings.h │ │ │ │ │ ├── yes_power_spectrum_data.h │ │ │ │ │ └── yes_simple_features_data.h │ │ │ │ ├── yes_1000ms_sample_data.h │ │ │ │ └── yes_30ms_sample_data.h │ │ │ ├── network_tester │ │ │ │ ├── expected_output_data.h │ │ │ │ ├── input_data.h │ │ │ │ └── network_model.h │ │ │ ├── person_detection │ │ │ │ ├── arduino │ │ │ │ │ └── HM01B0_platform.h │ │ │ │ ├── detection_responder.h │ │ │ │ ├── esp │ │ │ │ │ └── app_camera_esp.h │ │ │ │ ├── himax_driver │ │ │ │ │ ├── HM01B0.h │ │ │ │ │ ├── HM01B0_RAW8_QVGA_8bits_lsb_5fps.h │ │ │ │ │ ├── HM01B0_Walking1s_01.h │ │ │ │ │ ├── HM01B0_debug.h │ │ │ │ │ └── HM01B0_optimized.h │ │ │ │ ├── image_provider.h │ │ │ │ ├── main_functions.h │ │ │ │ ├── model_settings.h │ │ │ │ ├── no_person_image_data.h │ │ │ │ ├── person_detect_model_data.h │ │ │ │ └── person_image_data.h │ │ │ └── person_detection_experimental │ │ │ │ ├── detection_responder.h │ │ │ │ ├── himax_driver │ │ │ │ ├── HM01B0.h │ │ │ │ ├── HM01B0_RAW8_QVGA_8bits_lsb_5fps.h │ │ │ │ ├── HM01B0_Walking1s_01.h │ │ │ │ ├── HM01B0_debug.h │ │ │ │ ├── HM01B0_optimized.h │ │ │ │ └── platform_Sparkfun_Edge.h │ │ │ │ ├── image_provider.h │ │ │ │ ├── main_functions.h │ │ │ │ ├── model_settings.h │ │ │ │ ├── no_person_image_data.h │ │ │ │ ├── person_detect_model_data.h │ │ │ │ └── person_image_data.h │ │ ├── kernels │ │ │ ├── activation_utils.h │ │ │ ├── arc_mli │ │ │ │ ├── mli_slicers.h │ │ │ │ ├── mli_tf_utils.h │ │ │ │ ├── scratch_buf_mgr.h │ │ │ │ └── scratch_buffers.h │ │ │ ├── micro_ops.h │ │ │ ├── micro_utils.h │ │ │ ├── xtensa_hifi │ │ │ │ └── xtensa_tf_micro_common.h │ │ │ └── xtensa_hifimini_legacy │ │ │ │ └── fixedpoint_utils.h │ │ ├── memory_helpers.h │ │ ├── memory_planner │ │ │ ├── greedy_memory_planner.h │ │ │ ├── linear_memory_planner.h │ │ │ └── memory_planner.h │ │ ├── micro_allocator.h │ │ ├── micro_error_reporter.h │ │ ├── micro_interpreter.h │ │ ├── micro_mutable_op_resolver.h │ │ ├── micro_op_resolver.h │ │ ├── micro_optional_debug_tools.h │ │ ├── micro_profiler.h │ │ ├── micro_string.h │ │ ├── micro_time.h │ │ ├── micro_utils.h │ │ ├── recording_micro_allocator.h │ │ ├── recording_micro_interpreter.h │ │ ├── recording_simple_memory_allocator.h │ │ ├── simple_memory_allocator.h │ │ ├── test_helpers.h │ │ ├── testing │ │ │ ├── micro_test.h │ │ │ ├── test_conv_model.h │ │ │ └── test_utils.h │ │ └── tools │ │ │ └── make │ │ │ └── templates │ │ │ └── TensorFlowLite.h │ │ ├── minimal_logging.h │ │ ├── model.h │ │ ├── model_builder.h │ │ ├── mutable_op_resolver.h │ │ ├── nnapi │ │ ├── NeuralNetworksShim.h │ │ ├── NeuralNetworksTypes.h │ │ ├── nnapi_handler.h │ │ ├── nnapi_implementation.h │ │ └── nnapi_util.h │ │ ├── op_resolver.h │ │ ├── optional_debug_tools.h │ │ ├── profiling │ │ ├── atrace_profiler.h │ │ ├── buffered_profiler.h │ │ ├── memory_info.h │ │ ├── noop_profiler.h │ │ ├── platform_profiler.h │ │ ├── profile_buffer.h │ │ ├── profile_summarizer.h │ │ ├── profile_summary_formatter.h │ │ ├── profiler.h │ │ └── time.h │ │ ├── python │ │ ├── interpreter_wrapper │ │ │ ├── interpreter_wrapper.h │ │ │ ├── numpy.h │ │ │ ├── python_error_reporter.h │ │ │ └── python_utils.h │ │ ├── optimize │ │ │ └── calibration_wrapper.h │ │ └── testdata │ │ │ └── test_registerer.h │ │ ├── schema │ │ ├── builtin_ops_header │ │ │ └── generator.h │ │ └── schema_generated.h │ │ ├── simple_memory_arena.h │ │ ├── stderr_reporter.h │ │ ├── string_type.h │ │ ├── string_util.h │ │ ├── testing │ │ ├── generate_testspec.h │ │ ├── init_tensorflow.h │ │ ├── join.h │ │ ├── kernel_test │ │ │ ├── diff_analyzer.h │ │ │ ├── input_generator.h │ │ │ └── util.h │ │ ├── message.h │ │ ├── parse_testdata.h │ │ ├── split.h │ │ ├── string_util.h │ │ ├── test_runner.h │ │ ├── tf_driver.h │ │ ├── tflite_diff_flags.h │ │ ├── tflite_diff_util.h │ │ ├── tflite_driver.h │ │ ├── tokenize.h │ │ └── util.h │ │ ├── tflite_with_xnnpack_optional.h │ │ ├── toco │ │ ├── allocate_transient_arrays.h │ │ ├── args.h │ │ ├── dump_graphviz.h │ │ ├── export_tensorflow.h │ │ ├── format_port.h │ │ ├── graph_transformations │ │ │ ├── graph_transformations.h │ │ │ ├── identify_util.h │ │ │ ├── lstm_utils.h │ │ │ ├── quantization_util.h │ │ │ └── remove_trivial_passthrough.h │ │ ├── import_tensorflow.h │ │ ├── logging │ │ │ └── conversion_log_util.h │ │ ├── model.h │ │ ├── model_cmdline_flags.h │ │ ├── python │ │ │ └── toco_python_api.h │ │ ├── runtime │ │ │ ├── common.h │ │ │ └── types.h │ │ ├── tensorflow_graph_matching │ │ │ ├── cluster.h │ │ │ ├── cluster_utils.h │ │ │ ├── resolve_cluster.h │ │ │ └── resolve_svdf.h │ │ ├── tensorflow_util.h │ │ ├── tflite │ │ │ ├── builtin_operator.h │ │ │ ├── custom_operator.h │ │ │ ├── export.h │ │ │ ├── import.h │ │ │ ├── op_version.h │ │ │ ├── operator.h │ │ │ ├── simple_operator.h │ │ │ └── types.h │ │ ├── toco_cmdline_flags.h │ │ ├── toco_convert.h │ │ ├── toco_graphviz_dump_options.h │ │ ├── toco_port.h │ │ ├── toco_tooling.h │ │ ├── toco_types.h │ │ └── tooling_util.h │ │ ├── tools │ │ ├── accuracy │ │ │ ├── csv_writer.h │ │ │ └── ilsvrc │ │ │ │ ├── default │ │ │ │ └── custom_delegates.h │ │ │ │ ├── imagenet_accuracy_eval.h │ │ │ │ └── imagenet_model_evaluator.h │ │ ├── benchmark │ │ │ ├── benchmark_model.h │ │ │ ├── benchmark_params.h │ │ │ ├── benchmark_performance_options.h │ │ │ ├── benchmark_tflite_model.h │ │ │ ├── benchmark_utils.h │ │ │ ├── experimental │ │ │ │ └── c │ │ │ │ │ ├── benchmark_c_api.h │ │ │ │ │ └── c_api_types.h │ │ │ ├── ios │ │ │ │ └── TFLiteBenchmark │ │ │ │ │ └── TFLiteBenchmark │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ └── BenchmarkViewController.h │ │ │ └── profiling_listener.h │ │ ├── command_line_flags.h │ │ ├── delegates │ │ │ └── delegate_provider.h │ │ ├── evaluation │ │ │ ├── evaluation_delegate_provider.h │ │ │ ├── evaluation_stage.h │ │ │ ├── stages │ │ │ │ ├── image_classification_stage.h │ │ │ │ ├── image_preprocessing_stage.h │ │ │ │ ├── inference_profiler_stage.h │ │ │ │ ├── object_detection_average_precision_stage.h │ │ │ │ ├── object_detection_stage.h │ │ │ │ ├── tflite_inference_stage.h │ │ │ │ ├── topk_accuracy_eval_stage.h │ │ │ │ └── utils │ │ │ │ │ └── image_metrics.h │ │ │ ├── tasks │ │ │ │ └── task_executor.h │ │ │ └── utils.h │ │ ├── gen_op_registration.h │ │ ├── list_flex_ops.h │ │ ├── logging.h │ │ ├── make │ │ │ └── downloads │ │ │ │ ├── absl │ │ │ │ ├── absl │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── algorithm.h │ │ │ │ │ │ └── container.h │ │ │ │ │ ├── base │ │ │ │ │ │ ├── attributes.h │ │ │ │ │ │ ├── call_once.h │ │ │ │ │ │ ├── casts.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── const_init.h │ │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ │ ├── errno_saver.h │ │ │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ │ │ ├── exponential_biased.h │ │ │ │ │ │ │ ├── hide_ptr.h │ │ │ │ │ │ │ ├── identity.h │ │ │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ │ │ ├── invoke.h │ │ │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ │ │ ├── periodic_sampler.h │ │ │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ │ │ ├── scoped_set_env.h │ │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ │ ├── thread_annotations.h │ │ │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ │ │ └── unscaledcycleclock.h │ │ │ │ │ │ ├── log_severity.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── optimization.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── policy_checks.h │ │ │ │ │ │ ├── port.h │ │ │ │ │ │ └── thread_annotations.h │ │ │ │ │ ├── container │ │ │ │ │ │ ├── btree_map.h │ │ │ │ │ │ ├── btree_set.h │ │ │ │ │ │ ├── btree_test.h │ │ │ │ │ │ ├── fixed_array.h │ │ │ │ │ │ ├── flat_hash_map.h │ │ │ │ │ │ ├── flat_hash_set.h │ │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── btree.h │ │ │ │ │ │ │ ├── btree_container.h │ │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ │ ├── compressed_tuple.h │ │ │ │ │ │ │ ├── container_memory.h │ │ │ │ │ │ │ ├── counting_allocator.h │ │ │ │ │ │ │ ├── hash_function_defaults.h │ │ │ │ │ │ │ ├── hash_generator_testing.h │ │ │ │ │ │ │ ├── hash_policy_testing.h │ │ │ │ │ │ │ ├── hash_policy_traits.h │ │ │ │ │ │ │ ├── hashtable_debug.h │ │ │ │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ │ │ │ ├── have_sse.h │ │ │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ │ │ ├── layout.h │ │ │ │ │ │ │ ├── node_hash_policy.h │ │ │ │ │ │ │ ├── raw_hash_map.h │ │ │ │ │ │ │ ├── raw_hash_set.h │ │ │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ │ │ ├── tracked.h │ │ │ │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ │ │ │ └── unordered_set_modifiers_test.h │ │ │ │ │ │ ├── node_hash_map.h │ │ │ │ │ │ └── node_hash_set.h │ │ │ │ │ ├── debugging │ │ │ │ │ │ ├── failure_signal_handler.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ │ │ ├── demangle.h │ │ │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ │ │ ├── symbolize.h │ │ │ │ │ │ │ └── vdso_support.h │ │ │ │ │ │ ├── leak_check.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ └── symbolize.h │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── declare.h │ │ │ │ │ │ ├── flag.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── commandlineflag.h │ │ │ │ │ │ │ ├── flag.h │ │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ │ ├── path_util.h │ │ │ │ │ │ │ ├── program_name.h │ │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ │ ├── type_erased.h │ │ │ │ │ │ │ └── usage.h │ │ │ │ │ │ ├── marshalling.h │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ ├── usage.h │ │ │ │ │ │ └── usage_config.h │ │ │ │ │ ├── functional │ │ │ │ │ │ ├── bind_front.h │ │ │ │ │ │ ├── function_ref.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── front_binder.h │ │ │ │ │ │ │ └── function_ref.h │ │ │ │ │ ├── hash │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hash_testing.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── city.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ └── spy_hash_state.h │ │ │ │ │ ├── memory │ │ │ │ │ │ └── memory.h │ │ │ │ │ ├── meta │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ ├── numeric │ │ │ │ │ │ └── int128.h │ │ │ │ │ ├── random │ │ │ │ │ │ ├── bernoulli_distribution.h │ │ │ │ │ │ ├── beta_distribution.h │ │ │ │ │ │ ├── bit_gen_ref.h │ │ │ │ │ │ ├── discrete_distribution.h │ │ │ │ │ │ ├── distribution_format_traits.h │ │ │ │ │ │ ├── distributions.h │ │ │ │ │ │ ├── exponential_distribution.h │ │ │ │ │ │ ├── gaussian_distribution.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── chi_square.h │ │ │ │ │ │ │ ├── distribution_caller.h │ │ │ │ │ │ │ ├── distribution_test_util.h │ │ │ │ │ │ │ ├── distributions.h │ │ │ │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ │ │ │ ├── fastmath.h │ │ │ │ │ │ │ ├── generate_real.h │ │ │ │ │ │ │ ├── iostream_state_saver.h │ │ │ │ │ │ │ ├── mock_overload_set.h │ │ │ │ │ │ │ ├── mocking_bit_gen_base.h │ │ │ │ │ │ │ ├── nanobenchmark.h │ │ │ │ │ │ │ ├── nonsecure_base.h │ │ │ │ │ │ │ ├── pcg_engine.h │ │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ │ ├── pool_urbg.h │ │ │ │ │ │ │ ├── randen.h │ │ │ │ │ │ │ ├── randen_detect.h │ │ │ │ │ │ │ ├── randen_engine.h │ │ │ │ │ │ │ ├── randen_hwaes.h │ │ │ │ │ │ │ ├── randen_slow.h │ │ │ │ │ │ │ ├── randen_traits.h │ │ │ │ │ │ │ ├── salted_seed_seq.h │ │ │ │ │ │ │ ├── seed_material.h │ │ │ │ │ │ │ ├── sequence_urbg.h │ │ │ │ │ │ │ ├── traits.h │ │ │ │ │ │ │ ├── uniform_helper.h │ │ │ │ │ │ │ └── wide_multiply.h │ │ │ │ │ │ ├── log_uniform_int_distribution.h │ │ │ │ │ │ ├── mock_distributions.h │ │ │ │ │ │ ├── mocking_bit_gen.h │ │ │ │ │ │ ├── poisson_distribution.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── seed_gen_exception.h │ │ │ │ │ │ ├── seed_sequences.h │ │ │ │ │ │ ├── uniform_int_distribution.h │ │ │ │ │ │ ├── uniform_real_distribution.h │ │ │ │ │ │ └── zipf_distribution.h │ │ │ │ │ ├── status │ │ │ │ │ │ ├── status.h │ │ │ │ │ │ └── status_payload_printer.h │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── ascii.h │ │ │ │ │ │ ├── charconv.h │ │ │ │ │ │ ├── cord.h │ │ │ │ │ │ ├── cord_test_helpers.h │ │ │ │ │ │ ├── escaping.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── char_map.h │ │ │ │ │ │ │ ├── charconv_bigint.h │ │ │ │ │ │ │ ├── charconv_parse.h │ │ │ │ │ │ │ ├── cord_internal.h │ │ │ │ │ │ │ ├── escaping.h │ │ │ │ │ │ │ ├── escaping_test_common.h │ │ │ │ │ │ │ ├── memutil.h │ │ │ │ │ │ │ ├── numbers_test_common.h │ │ │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ │ │ ├── pow10_helper.h │ │ │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ │ │ ├── str_format │ │ │ │ │ │ │ │ ├── arg.h │ │ │ │ │ │ │ │ ├── bind.h │ │ │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ │ │ ├── extension.h │ │ │ │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ │ │ │ ├── output.h │ │ │ │ │ │ │ │ └── parser.h │ │ │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ │ │ └── utf8.h │ │ │ │ │ │ ├── match.h │ │ │ │ │ │ ├── numbers.h │ │ │ │ │ │ ├── str_cat.h │ │ │ │ │ │ ├── str_format.h │ │ │ │ │ │ ├── str_join.h │ │ │ │ │ │ ├── str_replace.h │ │ │ │ │ │ ├── str_split.h │ │ │ │ │ │ ├── string_view.h │ │ │ │ │ │ ├── strip.h │ │ │ │ │ │ └── substitute.h │ │ │ │ │ ├── synchronization │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── blocking_counter.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ │ │ └── waiter.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ └── notification.h │ │ │ │ │ ├── time │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── cctz │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ │ │ └── tzfile.h │ │ │ │ │ │ │ └── test_util.h │ │ │ │ │ │ └── time.h │ │ │ │ │ ├── types │ │ │ │ │ │ ├── any.h │ │ │ │ │ │ ├── bad_any_cast.h │ │ │ │ │ │ ├── bad_optional_access.h │ │ │ │ │ │ ├── bad_variant_access.h │ │ │ │ │ │ ├── compare.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── conformance_aliases.h │ │ │ │ │ │ │ ├── conformance_archetype.h │ │ │ │ │ │ │ ├── conformance_profile.h │ │ │ │ │ │ │ ├── optional.h │ │ │ │ │ │ │ ├── span.h │ │ │ │ │ │ │ └── variant.h │ │ │ │ │ │ ├── optional.h │ │ │ │ │ │ ├── span.h │ │ │ │ │ │ └── variant.h │ │ │ │ │ └── utility │ │ │ │ │ │ └── utility.h │ │ │ │ └── ci │ │ │ │ │ └── absl_alternate_options.h │ │ │ │ ├── eigen │ │ │ │ ├── Eigen │ │ │ │ │ └── src │ │ │ │ │ │ ├── Cholesky │ │ │ │ │ │ ├── LDLT.h │ │ │ │ │ │ ├── LLT.h │ │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ │ ├── Array.h │ │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ │ ├── Assign.h │ │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ │ ├── Block.h │ │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ │ ├── Dot.h │ │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ │ ├── IO.h │ │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ │ ├── Inverse.h │ │ │ │ │ │ ├── Map.h │ │ │ │ │ │ ├── MapBase.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ │ ├── Matrix.h │ │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ │ ├── PartialReduxEvaluator.h │ │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ │ ├── Product.h │ │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ │ ├── Random.h │ │ │ │ │ │ ├── Redux.h │ │ │ │ │ │ ├── Ref.h │ │ │ │ │ │ ├── Replicate.h │ │ │ │ │ │ ├── Reshaped.h │ │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ │ ├── Reverse.h │ │ │ │ │ │ ├── Select.h │ │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ │ ├── Solve.h │ │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ │ ├── StlIterators.h │ │ │ │ │ │ ├── Stride.h │ │ │ │ │ │ ├── Swap.h │ │ │ │ │ │ ├── Transpose.h │ │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ │ ├── Visitor.h │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ │ └── Complex.h │ │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ │ ├── Settings.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── GPU │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── HIP │ │ │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ │ │ └── math_constants.h │ │ │ │ │ │ │ ├── MSA │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── SYCL │ │ │ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── functors │ │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ │ ├── products │ │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ │ ├── ReshapedHelper.h │ │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ │ ├── Scaling.h │ │ │ │ │ │ ├── Transform.h │ │ │ │ │ │ ├── Translation.h │ │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ │ ├── Householder │ │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ │ ├── Householder.h │ │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ │ ├── Jacobi │ │ │ │ │ │ └── Jacobi.h │ │ │ │ │ │ ├── KLUSupport │ │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ │ ├── LU │ │ │ │ │ │ ├── Determinant.h │ │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ │ ├── MetisSupport │ │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ │ ├── Amd.h │ │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ │ └── Ordering.h │ │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ │ ├── QR │ │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ │ ├── SVD │ │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ │ ├── SparseCore │ │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ │ ├── SparseView.h │ │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ │ ├── SparseLU │ │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ │ ├── SparseQR │ │ │ │ │ │ └── SparseQR.h │ │ │ │ │ │ ├── StlSupport │ │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ │ ├── StdList.h │ │ │ │ │ │ ├── StdVector.h │ │ │ │ │ │ └── details.h │ │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── Image.h │ │ │ │ │ │ ├── Kernel.h │ │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ ├── lapack.h │ │ │ │ │ │ ├── lapacke.h │ │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ │ │ │ └── ReshapedMethods.h │ │ │ │ ├── bench │ │ │ │ │ ├── BenchSparseUtil.h │ │ │ │ │ ├── BenchTimer.h │ │ │ │ │ ├── BenchUtil.h │ │ │ │ │ ├── basicbenchmark.h │ │ │ │ │ ├── btl │ │ │ │ │ │ ├── generic_bench │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ └── utilities.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ └── BLAS │ │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ │ └── c_interface_base.h │ │ │ │ │ ├── perf_monitoring │ │ │ │ │ │ ├── gemm_common.h │ │ │ │ │ │ └── gemv_common.h │ │ │ │ │ ├── spbench │ │ │ │ │ │ ├── spbenchsolver.h │ │ │ │ │ │ └── spbenchstyle.h │ │ │ │ │ └── tensors │ │ │ │ │ │ ├── benchmark.h │ │ │ │ │ │ └── tensor_benchmarks.h │ │ │ │ ├── blas │ │ │ │ │ ├── BandTriangularSolver.h │ │ │ │ │ ├── GeneralRank1Update.h │ │ │ │ │ ├── PackedSelfadjointProduct.h │ │ │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ │ │ ├── PackedTriangularSolverVector.h │ │ │ │ │ ├── Rank2Update.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── f2c │ │ │ │ │ │ └── datatypes.h │ │ │ │ │ ├── level1_cplx_impl.h │ │ │ │ │ ├── level1_impl.h │ │ │ │ │ ├── level1_real_impl.h │ │ │ │ │ ├── level2_cplx_impl.h │ │ │ │ │ ├── level2_impl.h │ │ │ │ │ ├── level2_real_impl.h │ │ │ │ │ └── level3_impl.h │ │ │ │ ├── demos │ │ │ │ │ ├── mandelbrot │ │ │ │ │ │ └── mandelbrot.h │ │ │ │ │ ├── mix_eigen_and_c │ │ │ │ │ │ └── binary_library.h │ │ │ │ │ └── opengl │ │ │ │ │ │ ├── camera.h │ │ │ │ │ │ ├── gpuhelper.h │ │ │ │ │ │ ├── icosphere.h │ │ │ │ │ │ ├── quaternion_demo.h │ │ │ │ │ │ └── trackball.h │ │ │ │ ├── lapack │ │ │ │ │ └── lapack_common.h │ │ │ │ ├── test │ │ │ │ │ ├── AnnoyingScalar.h │ │ │ │ │ ├── MovableScalar.h │ │ │ │ │ ├── bug1213.h │ │ │ │ │ ├── evaluator_common.h │ │ │ │ │ ├── gpu_common.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── packetmath_test_shared.h │ │ │ │ │ ├── product.h │ │ │ │ │ ├── solverbase.h │ │ │ │ │ ├── sparse.h │ │ │ │ │ ├── sparse_solver.h │ │ │ │ │ ├── split_test_helper.h │ │ │ │ │ ├── svd_common.h │ │ │ │ │ └── svd_fill.h │ │ │ │ └── unsupported │ │ │ │ │ ├── Eigen │ │ │ │ │ ├── CXX11 │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Tensor │ │ │ │ │ │ │ ├── Tensor.h │ │ │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ │ │ ├── TensorBlock.h │ │ │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ │ │ ├── TensorContractionGpu.h │ │ │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ │ │ ├── TensorDeviceGpu.h │ │ │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ │ │ │ │ ├── TensorGpuHipCudaUndefines.h │ │ │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ │ │ ├── TensorReductionGpu.h │ │ │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ │ │ ├── TensorScanSycl.h │ │ │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ │ │ ├── ThreadPool │ │ │ │ │ │ │ ├── Barrier.h │ │ │ │ │ │ │ ├── EventCount.h │ │ │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ │ │ └── MaxSizeVector.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── AutoDiff │ │ │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ │ │ └── AutoDiffVector.h │ │ │ │ │ │ ├── BVH │ │ │ │ │ │ ├── BVAlgorithms.h │ │ │ │ │ │ └── KdBVH.h │ │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ │ │ │ ├── EulerAngles │ │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ │ └── EulerSystem.h │ │ │ │ │ │ ├── FFT │ │ │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ │ │ ├── IterativeSolvers │ │ │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ │ │ ├── DGMRES.h │ │ │ │ │ │ ├── GMRES.h │ │ │ │ │ │ ├── IncompleteLU.h │ │ │ │ │ │ ├── IterationController.h │ │ │ │ │ │ ├── MINRES.h │ │ │ │ │ │ └── Scaling.h │ │ │ │ │ │ ├── KroneckerProduct │ │ │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ │ │ ├── LevenbergMarquardt │ │ │ │ │ │ ├── LMcovar.h │ │ │ │ │ │ ├── LMonestep.h │ │ │ │ │ │ ├── LMpar.h │ │ │ │ │ │ ├── LMqrsolv.h │ │ │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ │ ├── MatrixExponential.h │ │ │ │ │ │ ├── MatrixFunction.h │ │ │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ │ │ ├── MatrixPower.h │ │ │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ │ │ └── StemFunction.h │ │ │ │ │ │ ├── MoreVectorization │ │ │ │ │ │ └── MathFunctions.h │ │ │ │ │ │ ├── NonLinearOptimization │ │ │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ │ │ ├── chkder.h │ │ │ │ │ │ ├── covar.h │ │ │ │ │ │ ├── dogleg.h │ │ │ │ │ │ ├── fdjac1.h │ │ │ │ │ │ ├── lmpar.h │ │ │ │ │ │ ├── qrsolv.h │ │ │ │ │ │ ├── r1mpyq.h │ │ │ │ │ │ ├── r1updt.h │ │ │ │ │ │ └── rwupdt.h │ │ │ │ │ │ ├── NumericalDiff │ │ │ │ │ │ └── NumericalDiff.h │ │ │ │ │ │ ├── Polynomials │ │ │ │ │ │ ├── Companion.h │ │ │ │ │ │ ├── PolynomialSolver.h │ │ │ │ │ │ └── PolynomialUtils.h │ │ │ │ │ │ ├── Skyline │ │ │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ │ │ ├── SkylineMatrix.h │ │ │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ │ │ ├── SkylineProduct.h │ │ │ │ │ │ ├── SkylineStorage.h │ │ │ │ │ │ └── SkylineUtil.h │ │ │ │ │ │ ├── SparseExtra │ │ │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ │ │ ├── MarketIO.h │ │ │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ │ │ └── RandomSetter.h │ │ │ │ │ │ ├── SpecialFunctions │ │ │ │ │ │ ├── BesselFunctionsArrayAPI.h │ │ │ │ │ │ ├── BesselFunctionsBFloat16.h │ │ │ │ │ │ ├── BesselFunctionsFunctors.h │ │ │ │ │ │ ├── BesselFunctionsHalf.h │ │ │ │ │ │ ├── BesselFunctionsImpl.h │ │ │ │ │ │ ├── BesselFunctionsPacketMath.h │ │ │ │ │ │ ├── HipVectorCompatibility.h │ │ │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ │ │ ├── SpecialFunctionsBFloat16.h │ │ │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── GPU │ │ │ │ │ │ │ └── GpuSpecialFunctions.h │ │ │ │ │ │ └── Splines │ │ │ │ │ │ ├── Spline.h │ │ │ │ │ │ ├── SplineFitting.h │ │ │ │ │ │ └── SplineFwd.h │ │ │ │ │ └── test │ │ │ │ │ ├── matrix_functions.h │ │ │ │ │ └── mpreal │ │ │ │ │ └── mpreal.h │ │ │ │ ├── farmhash │ │ │ │ ├── dev │ │ │ │ │ └── farmhash.h │ │ │ │ └── src │ │ │ │ │ └── farmhash.h │ │ │ │ ├── fft2d │ │ │ │ ├── alloc.h │ │ │ │ └── sample2d │ │ │ │ │ └── alloc.h │ │ │ │ ├── flatbuffers │ │ │ │ ├── grpc │ │ │ │ │ └── src │ │ │ │ │ │ └── compiler │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ │ ├── go_generator.h │ │ │ │ │ │ ├── java_generator.h │ │ │ │ │ │ ├── python_generator.h │ │ │ │ │ │ ├── python_private_generator.h │ │ │ │ │ │ ├── schema_interface.h │ │ │ │ │ │ └── swift_generator.h │ │ │ │ ├── include │ │ │ │ │ └── flatbuffers │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── code_generators.h │ │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ │ ├── flatc.h │ │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ │ ├── grpc.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── idl.h │ │ │ │ │ │ ├── minireflect.h │ │ │ │ │ │ ├── reflection.h │ │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ │ └── util.h │ │ │ │ ├── samples │ │ │ │ │ └── monster_generated.h │ │ │ │ └── tests │ │ │ │ │ ├── arrays_test_generated.h │ │ │ │ │ ├── cpp17 │ │ │ │ │ └── generated_cpp17 │ │ │ │ │ │ └── monster_test_generated.h │ │ │ │ │ ├── evolution_test │ │ │ │ │ ├── evolution_v1_generated.h │ │ │ │ │ └── evolution_v2_generated.h │ │ │ │ │ ├── fuzzer │ │ │ │ │ ├── fuzzer_assert.h │ │ │ │ │ └── test_init.h │ │ │ │ │ ├── monster_extra_generated.h │ │ │ │ │ ├── monster_test.grpc.fb.h │ │ │ │ │ ├── monster_test_bfbs_generated.h │ │ │ │ │ ├── monster_test_generated.h │ │ │ │ │ ├── namespace_test │ │ │ │ │ ├── namespace_test1_generated.h │ │ │ │ │ └── namespace_test2_generated.h │ │ │ │ │ ├── native_type_test_generated.h │ │ │ │ │ ├── native_type_test_impl.h │ │ │ │ │ ├── test_assert.h │ │ │ │ │ ├── test_builder.h │ │ │ │ │ └── union_vector │ │ │ │ │ └── union_vector_generated.h │ │ │ │ ├── fp16 │ │ │ │ ├── include │ │ │ │ │ ├── fp16.h │ │ │ │ │ └── fp16 │ │ │ │ │ │ ├── bitcasts.h │ │ │ │ │ │ ├── fp16.h │ │ │ │ │ │ └── psimd.h │ │ │ │ ├── test │ │ │ │ │ └── tables.h │ │ │ │ └── third-party │ │ │ │ │ ├── THHalf.h │ │ │ │ │ ├── eigen-half.h │ │ │ │ │ ├── float16-compressor.h │ │ │ │ │ └── npy-halffloat.h │ │ │ │ ├── gemmlowp │ │ │ │ ├── eight_bit_int_gemm │ │ │ │ │ └── eight_bit_int_gemm.h │ │ │ │ ├── fixedpoint │ │ │ │ │ ├── fixedpoint.h │ │ │ │ │ ├── fixedpoint_avx.h │ │ │ │ │ ├── fixedpoint_msa.h │ │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ │ └── fixedpoint_sse.h │ │ │ │ ├── internal │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── block_params.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── compute.h │ │ │ │ │ ├── detect_platform.h │ │ │ │ │ ├── dispatch_gemm_shape.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_avx.h │ │ │ │ │ ├── kernel_default.h │ │ │ │ │ ├── kernel_msa.h │ │ │ │ │ ├── kernel_neon.h │ │ │ │ │ ├── kernel_reference.h │ │ │ │ │ ├── kernel_sse.h │ │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_avx.h │ │ │ │ │ ├── output_msa.h │ │ │ │ │ ├── output_neon.h │ │ │ │ │ ├── output_sse.h │ │ │ │ │ ├── pack.h │ │ │ │ │ ├── pack_avx.h │ │ │ │ │ ├── pack_msa.h │ │ │ │ │ ├── pack_neon.h │ │ │ │ │ ├── pack_sse.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── simd_wrappers.h │ │ │ │ │ ├── simd_wrappers_common_neon_sse.h │ │ │ │ │ ├── simd_wrappers_msa.h │ │ │ │ │ ├── simd_wrappers_neon.h │ │ │ │ │ ├── simd_wrappers_sse.h │ │ │ │ │ ├── single_thread_gemm.h │ │ │ │ │ └── unpack.h │ │ │ │ ├── meta │ │ │ │ │ ├── base.h │ │ │ │ │ ├── legacy_multi_thread_common.h │ │ │ │ │ ├── legacy_multi_thread_gemm.h │ │ │ │ │ ├── legacy_multi_thread_gemv.h │ │ │ │ │ ├── legacy_operations_common.h │ │ │ │ │ ├── legacy_single_thread_gemm.h │ │ │ │ │ ├── multi_thread_common.h │ │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ │ ├── multi_thread_transform.h │ │ │ │ │ ├── quantized_mul_kernels.h │ │ │ │ │ ├── quantized_mul_kernels_arm_32.h │ │ │ │ │ ├── quantized_mul_kernels_arm_64.h │ │ │ │ │ ├── single_thread_gemm.h │ │ │ │ │ ├── single_thread_transform.h │ │ │ │ │ ├── streams.h │ │ │ │ │ ├── streams_arm_32.h │ │ │ │ │ ├── streams_arm_64.h │ │ │ │ │ ├── transform_kernels.h │ │ │ │ │ ├── transform_kernels_arm_32.h │ │ │ │ │ └── transform_kernels_arm_64.h │ │ │ │ ├── profiling │ │ │ │ │ ├── instrumentation.h │ │ │ │ │ ├── profiler.h │ │ │ │ │ └── pthread_everywhere.h │ │ │ │ ├── public │ │ │ │ │ ├── bit_depth.h │ │ │ │ │ ├── gemmlowp.h │ │ │ │ │ ├── map.h │ │ │ │ │ └── output_stages.h │ │ │ │ └── test │ │ │ │ │ ├── ios │ │ │ │ │ └── gemmlowp_test │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ └── ViewController.h │ │ │ │ │ ├── test.h │ │ │ │ │ └── test_data.h │ │ │ │ ├── googletest │ │ │ │ ├── googlemock │ │ │ │ │ ├── include │ │ │ │ │ │ └── gmock │ │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ └── test │ │ │ │ │ │ └── gmock_link_test.h │ │ │ │ └── googletest │ │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ └── gtest-type-util.h │ │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ └── sample4.h │ │ │ │ │ ├── src │ │ │ │ │ └── gtest-internal-inl.h │ │ │ │ │ ├── test │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ └── production.h │ │ │ │ │ └── xcode │ │ │ │ │ └── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ └── widget.h │ │ │ │ ├── neon_2_sse │ │ │ │ └── NEON_2_SSE.h │ │ │ │ └── ruy │ │ │ │ └── ruy │ │ │ │ ├── allocator.h │ │ │ │ ├── apply_multiplier.h │ │ │ │ ├── block_map.h │ │ │ │ ├── blocking_counter.h │ │ │ │ ├── check_macros.h │ │ │ │ ├── common.h │ │ │ │ ├── context.h │ │ │ │ ├── context_get_ctx.h │ │ │ │ ├── cpu_cache_params.h │ │ │ │ ├── cpuinfo.h │ │ │ │ ├── create_trmul_params.h │ │ │ │ ├── ctx.h │ │ │ │ ├── ctx_impl.h │ │ │ │ ├── dispatch.h │ │ │ │ ├── gtest_wrapper.h │ │ │ │ ├── have_built_path_for.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_arm.h │ │ │ │ ├── kernel_common.h │ │ │ │ ├── kernel_x86.h │ │ │ │ ├── mat.h │ │ │ │ ├── matrix.h │ │ │ │ ├── mul_params.h │ │ │ │ ├── opt_set.h │ │ │ │ ├── pack.h │ │ │ │ ├── pack_arm.h │ │ │ │ ├── pack_common.h │ │ │ │ ├── pack_x86.h │ │ │ │ ├── path.h │ │ │ │ ├── platform.h │ │ │ │ ├── pmu.h │ │ │ │ ├── prepacked_cache.h │ │ │ │ ├── profiler │ │ │ │ ├── instrumentation.h │ │ │ │ ├── profiler.h │ │ │ │ ├── test_instrumented_library.h │ │ │ │ └── treeview.h │ │ │ │ ├── reference_mul.h │ │ │ │ ├── ruy.h │ │ │ │ ├── side_pair.h │ │ │ │ ├── size_util.h │ │ │ │ ├── system_aligned_alloc.h │ │ │ │ ├── test.h │ │ │ │ ├── thread_pool.h │ │ │ │ ├── time.h │ │ │ │ ├── trmul.h │ │ │ │ ├── trmul_params.h │ │ │ │ ├── tune.h │ │ │ │ └── wait.h │ │ ├── optimize │ │ │ ├── calibration │ │ │ │ ├── builtin_logging_ops │ │ │ │ │ └── lstm.h │ │ │ │ ├── calibration_common.h │ │ │ │ ├── calibration_logger.h │ │ │ │ ├── calibration_reader.h │ │ │ │ ├── calibrator.h │ │ │ │ ├── logging_op.h │ │ │ │ ├── logging_op_resolver.h │ │ │ │ └── node_info_delegate.h │ │ │ ├── model_utils.h │ │ │ ├── modify_model_interface.h │ │ │ ├── operator_property.h │ │ │ ├── quantization_utils.h │ │ │ ├── quantization_wrapper.h │ │ │ ├── quantization_wrapper_utils.h │ │ │ ├── quantize_model.h │ │ │ ├── quantize_weights.h │ │ │ ├── sparsity │ │ │ │ └── format_converter.h │ │ │ └── test_util.h │ │ ├── signature │ │ │ └── signature_def_util.h │ │ ├── tool_params.h │ │ ├── verifier.h │ │ └── versioning │ │ │ ├── op_version.h │ │ │ └── runtime_version.h │ │ ├── type_to_tflitetype.h │ │ ├── util.h │ │ └── version.h │ ├── libs │ └── windows_x86_64 │ │ ├── tensorflowlite_c.dll │ │ └── tensorflowlite_c.dll.if.lib │ └── version ├── DPCRN_base.py ├── README.md ├── configuration └── DPCRN-base.yaml ├── convert_weights_to_onnx.py ├── convert_weights_to_tf_lite.py ├── data_loader.py ├── evaluations ├── metric.py └── mir_eval.py ├── loss.py ├── main.py ├── networks └── modules.py ├── real_time_onnx.py ├── real_time_tflite.py ├── signal_processing.py └── test_audio ├── enhanced └── 440C020A_mix.wav └── noisy └── 440C020A_mix.wav /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/DPCRN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/DPCRN.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /C++/440C020A_mix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/440C020A_mix.wav -------------------------------------------------------------------------------- /C++/pocketfft_hdronly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/pocketfft_hdronly.h -------------------------------------------------------------------------------- /C++/real_time_inference.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/real_time_inference.sln -------------------------------------------------------------------------------- /C++/sin_512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/sin_512.h -------------------------------------------------------------------------------- /C++/tflite-c-win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-c-win.cpp -------------------------------------------------------------------------------- /C++/tflite-c-win.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-c-win.vcxproj -------------------------------------------------------------------------------- /C++/tflite-c-win.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-c-win.vcxproj.filters -------------------------------------------------------------------------------- /C++/tflite-c-win.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-c-win.vcxproj.user -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/algorithm/container.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/attributes.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/call_once.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/casts.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/config.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/const_init.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/dynamic_annotations.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/atomic_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/atomic_hook.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/atomic_hook_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/atomic_hook_test_helper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/bits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/cycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/cycleclock.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/direct_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/direct_mmap.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/endian.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/errno_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/errno_saver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/exception_safety_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/exception_safety_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/exception_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/exception_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/exponential_biased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/exponential_biased.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/hide_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/hide_ptr.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/identity.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/inline_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/inline_variable.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/inline_variable_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/inline_variable_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/invoke.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/low_level_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/low_level_alloc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/low_level_scheduling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/low_level_scheduling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/per_thread_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/per_thread_tls.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/periodic_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/periodic_sampler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/pretty_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/pretty_function.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/raw_logging.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/scheduling_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/scheduling_mode.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/scoped_set_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/scoped_set_env.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/spinlock.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/spinlock_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/spinlock_wait.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/sysinfo.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/thread_annotations.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/thread_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/thread_identity.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/throw_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/throw_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/tsan_mutex_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/tsan_mutex_interface.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/unaligned_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/unaligned_access.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/internal/unscaledcycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/internal/unscaledcycleclock.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/log_severity.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/macros.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/optimization.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/options.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/policy_checks.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/port.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/base/thread_annotations.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/btree_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/btree_set.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/btree_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/btree_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/fixed_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/fixed_array.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/flat_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/flat_hash_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/flat_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/flat_hash_set.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/inlined_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/inlined_vector.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/btree.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/btree_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/btree_container.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/compressed_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/compressed_tuple.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/container_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/container_memory.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/counting_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/counting_allocator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hash_function_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hash_function_defaults.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hash_generator_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hash_generator_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hash_policy_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hash_policy_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hash_policy_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hash_policy_traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hashtable_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hashtable_debug.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hashtable_debug_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hashtable_debug_hooks.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/hashtablez_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/hashtablez_sampler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/have_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/have_sse.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/inlined_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/inlined_vector.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/layout.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/node_hash_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/node_hash_policy.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/raw_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/raw_hash_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/raw_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/raw_hash_set.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/test_instance_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/test_instance_tracker.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/tracked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/tracked.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_map_constructor_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_map_constructor_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_map_lookup_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_map_lookup_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_map_members_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_map_members_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_map_modifiers_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_map_modifiers_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_set_constructor_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_set_constructor_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_set_lookup_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_set_lookup_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_set_members_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_set_members_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/internal/unordered_set_modifiers_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/internal/unordered_set_modifiers_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/node_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/node_hash_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/container/node_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/container/node_hash_set.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/failure_signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/failure_signal_handler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/address_is_readable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/address_is_readable.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/demangle.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/elf_mem_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/elf_mem_image.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/examine_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/examine_stack.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/stack_consumption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/stack_consumption.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/stacktrace_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/stacktrace_config.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/symbolize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/internal/vdso_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/internal/vdso_support.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/leak_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/leak_check.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/stacktrace.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/debugging/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/debugging/symbolize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/config.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/declare.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/flag.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/commandlineflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/commandlineflag.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/flag.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/parse.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/path_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/program_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/program_name.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/registry.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/type_erased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/type_erased.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/internal/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/internal/usage.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/marshalling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/marshalling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/parse.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/usage.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/flags/usage_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/flags/usage_config.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/functional/bind_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/functional/bind_front.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/functional/function_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/functional/function_ref.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/functional/internal/front_binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/functional/internal/front_binder.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/functional/internal/function_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/functional/internal/function_ref.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/hash/hash.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/hash/internal/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/hash/internal/city.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/hash/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/hash/internal/hash.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/hash/internal/spy_hash_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/hash/internal/spy_hash_state.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/memory/memory.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/meta/type_traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/numeric/int128.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/bernoulli_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/bernoulli_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/beta_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/beta_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/bit_gen_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/bit_gen_ref.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/discrete_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/discrete_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/distribution_format_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/distribution_format_traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/distributions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/distributions.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/exponential_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/exponential_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/gaussian_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/gaussian_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/chi_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/chi_square.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/distribution_caller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/distribution_caller.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/distribution_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/distribution_test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/distributions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/distributions.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/explicit_seed_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/explicit_seed_seq.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/fast_uniform_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/fast_uniform_bits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/fastmath.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/generate_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/generate_real.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/iostream_state_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/iostream_state_saver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/mock_overload_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/mock_overload_set.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/mocking_bit_gen_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/mocking_bit_gen_base.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/nanobenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/nanobenchmark.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/nonsecure_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/nonsecure_base.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/pcg_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/pcg_engine.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/platform.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/pool_urbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/pool_urbg.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen_detect.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen_engine.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen_hwaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen_hwaes.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen_slow.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/randen_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/randen_traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/salted_seed_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/salted_seed_seq.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/seed_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/seed_material.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/sequence_urbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/sequence_urbg.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/uniform_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/uniform_helper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/internal/wide_multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/internal/wide_multiply.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/log_uniform_int_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/log_uniform_int_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/mock_distributions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/mock_distributions.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/mocking_bit_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/mocking_bit_gen.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/poisson_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/poisson_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/random.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/seed_gen_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/seed_gen_exception.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/seed_sequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/seed_sequences.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/uniform_int_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/uniform_int_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/uniform_real_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/uniform_real_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/random/zipf_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/random/zipf_distribution.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/status/status.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/status/status_payload_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/status/status_payload_printer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/ascii.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/charconv.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/cord.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/cord_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/cord_test_helpers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/escaping.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/char_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/char_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/charconv_bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/charconv_bigint.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/charconv_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/charconv_parse.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/cord_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/cord_internal.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/escaping.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/escaping_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/escaping_test_common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/memutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/memutil.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/numbers_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/numbers_test_common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/ostringstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/ostringstream.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/pow10_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/pow10_helper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/resize_uninitialized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/resize_uninitialized.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/stl_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/stl_type_traits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/arg.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/bind.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/checker.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/extension.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/float_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/float_conversion.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/output.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_format/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_format/parser.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_join_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_join_internal.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/str_split_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/str_split_internal.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/internal/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/internal/utf8.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/match.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/numbers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/str_cat.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/str_format.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/str_join.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/str_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/str_replace.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/str_split.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/string_view.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/strip.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/strings/substitute.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/barrier.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/blocking_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/blocking_counter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/create_thread_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/create_thread_identity.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/graphcycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/graphcycles.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/kernel_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/kernel_timeout.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/per_thread_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/per_thread_sem.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/thread_pool.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/internal/waiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/internal/waiter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/mutex.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/synchronization/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/synchronization/notification.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/civil_time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/clock.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/civil_time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/civil_time_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/civil_time_detail.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/time_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/time_zone.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/zone_info_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/include/cctz/zone_info_source.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_fixed.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_if.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_impl.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_info.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_libc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/time_zone_posix.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/cctz/src/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/cctz/src/tzfile.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/internal/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/internal/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/time/time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/any.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/bad_optional_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/bad_optional_access.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/bad_variant_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/bad_variant_access.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/compare.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/conformance_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/conformance_aliases.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/conformance_archetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/conformance_archetype.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/conformance_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/conformance_profile.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/optional.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/span.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/internal/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/internal/variant.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/optional.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/span.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/types/variant.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/absl/utility/utility.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/base.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/code_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/code_generators.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/flatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/flatc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/grpc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/hash.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/idl.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/minireflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/minireflect.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/reflection.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/reflection_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/reflection_generated.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/registry.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/flatbuffers/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/allocation.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/arena_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/arena_planner.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/c/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/c/c_api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/c/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/c/c_api_experimental.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/c/c_api_internal.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/api/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/api/profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/macros.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/core/subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/core/subgraph.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/buffer_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/buffer_map.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/delegate_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/delegate_data.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/kernel.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/flex/whitelisted_flex_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/flex/whitelisted_flex_ops.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/arguments.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/buffer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_command_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_command_queue.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_device.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_errors.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_event.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_image_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_image_format.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_kernel.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_memory.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_program.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/cl_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/egl_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/egl_sync.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/environment.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gl_interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gl_interop.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gpu_api_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gpu_api_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gpu_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/gpu_object.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/inference_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/inference_context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/add.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/cl_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/cl_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/concat_xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/concat_xy.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/concat_z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/concat_z.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_3d.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_powervr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_powervr.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/conv_texture.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/converter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/elementwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/elementwise.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/flt_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/flt_type.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/gpu_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/gpu_operation.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/lstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/lstm.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/max_unpooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/max_unpooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/mean.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/padding.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/pooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/prelu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/relu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/reshape.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/reshapex4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/reshapex4.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/resize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/softmax.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/softmax1x1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/softmax1x1.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/strided_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/strided_slice.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/transpose.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/winograd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/kernels/winograd.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/linear_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/linear_storage.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/model_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/model_hints.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/opencl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/opencl_wrapper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/precision.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/program_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/program_cache.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/selectors/subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/selectors/subgraph.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/storage_type_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/storage_type_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor_type.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor_type_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/tensor_type_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/texture2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/texture2d.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/cl/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/access_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/access_type.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/convert.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/custom_parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/custom_parsers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/data_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/data_type.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/gpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/gpu_info.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/memory_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/memory_management.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model_builder.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model_transformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/model_transformer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/object_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/object_reader.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/operations.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/quantization_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/shape.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/status.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/tensor.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/winograd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/common/winograd_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/api2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/api2.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/command_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/command_queue.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inline.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inplace.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler/rename.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/compiler_options.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/converters/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/converters/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_environment.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/egl_surface.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_buffer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_call.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_errors.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_program.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_shader.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_sync.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/gl_texture.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/add.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/concat.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/conv.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/converter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/lstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/lstm.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/mean.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/mul.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/pad.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/pooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/prelu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/registry.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/relu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/reshape.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/resize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/slice.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/softmax.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/kernels/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/node_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/node_shader.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/object.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/object_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/object_manager.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/portable_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/portable_egl.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/portable_gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/portable_gl31.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/request_gpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/request_gpu_info.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/runtime.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/runtime_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/runtime_options.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/serialization.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/stats.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl/variable.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/gl_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/buffer_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/buffer_convert.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/compiled_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/compiled_model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/compute_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/compute_task.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/environment.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/add.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/concat.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/conv.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/mean.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/padding.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/pooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/prelu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/relu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/reshape.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/resize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/slice.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/softmax.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/kernels/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/runtime_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal/runtime_options.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/metal_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/gpu/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/gpu/spi.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/hexagon/hexagon_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/hexagon/hexagon_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/hexagon/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/hexagon/utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/interpreter_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/interpreter_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/nnapi/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/nnapi/nnapi_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/nnapi/quant_lstm_sup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/nnapi/quant_lstm_sup.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/status.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/utils/simple_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/utils/simple_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/conv_2d_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/conv_2d_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/leaky_relu_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/leaky_relu_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/pad_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/pad_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/pool_2d_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/pool_2d_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/reduce_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/reduce_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/softmax_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/softmax_tester.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/error_reporter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/ios/simple/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/ios/simple/AppDelegate.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/ios/simple/ios_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/ios/simple/ios_image_load.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/label_image/bitmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/label_image/bitmap_helpers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/label_image/get_top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/label_image/get_top_n.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/label_image/get_top_n_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/label_image/get_top_n_impl.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/examples/label_image/label_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/examples/label_image/label_image.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_beam_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_beam_entry.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_decoder.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_loss_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/kernels/ctc_loss_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/kernels/gru_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/kernels/gru_cell.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/kernels/top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/kernels/top_n.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/microfrontend/lib/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/microfrontend/lib/bits.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/microfrontend/lib/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/microfrontend/lib/fft.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/objc/apis/TFLTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/objc/apis/TFLTensor.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/resource/lookup_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/resource/lookup_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/resource/resource_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/resource/resource_base.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/support/codegen/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/support/codegen/utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/writer/enum_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/writer/enum_mapping.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/experimental/writer/writer_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/experimental/writer/writer_lib.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/external_cpu_backend_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/external_cpu_backend_context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/graph_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/graph_info.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/interpreter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/interpreter_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/interpreter_builder.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/java/src/main/native/jni_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/java/src/main/native/jni_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/java/src/main/native/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/java/src/main/native/op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/acceleration_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/acceleration_test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/builtin_op_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/builtin_op_kernels.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_context.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_eigen.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_gemmlowp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_gemmlowp.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_params.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_ruy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_gemm_ruy.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/cpu_backend_threadpool.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/custom_ops_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/custom_ops_register.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/dequantize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/eigen_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/eigen_support.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/fully_connected.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/hashtable/hashtable_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/hashtable/hashtable_ops.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/kernel_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/legacy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/legacy_types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/mfcc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/mfcc_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/mfcc_dct.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/add.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/ceil.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/conv.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/densify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/densify.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/floor.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/logistic.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/mul.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/neg.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/pad.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/pooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/prelu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/quantize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/reduce.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/round.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/sub.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/svdf.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/reference/tanh.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/spectrogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/spectrogram.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/tensor_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/transpose_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/transpose_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/lstm_eval.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/lstm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/lstm_shared.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/register.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/register_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/register_ref.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/reshape_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/reshape_test_common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/subgraph_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/subgraph_test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/kernels/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/memory_planner.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/all_ops_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/examples/hello_world/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/examples/hello_world/model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/examples/magic_wand/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/examples/magic_wand/constants.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/kernels/activation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/kernels/activation_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/kernels/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/kernels/micro_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/memory_planner/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/memory_planner/memory_planner.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_optional_debug_tools.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_string.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/recording_micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/recording_micro_allocator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/recording_micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/recording_micro_interpreter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/simple_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/simple_memory_allocator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/testing/micro_test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/testing/test_conv_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/testing/test_conv_model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/micro/testing/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/micro/testing/test_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/minimal_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/minimal_logging.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/model_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/model_builder.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/mutable_op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/nnapi/NeuralNetworksShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/nnapi/NeuralNetworksShim.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/nnapi/NeuralNetworksTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/nnapi/NeuralNetworksTypes.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_handler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_implementation.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/nnapi/nnapi_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/op_resolver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/optional_debug_tools.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/atrace_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/atrace_profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/buffered_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/buffered_profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/memory_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/memory_info.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/noop_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/noop_profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/platform_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/platform_profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/profile_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/profile_buffer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/profile_summarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/profile_summarizer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/profile_summary_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/profile_summary_formatter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/profiler.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/profiling/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/profiling/time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/python/interpreter_wrapper/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/python/interpreter_wrapper/numpy.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/python/optimize/calibration_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/python/optimize/calibration_wrapper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/python/testdata/test_registerer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/python/testdata/test_registerer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/schema/builtin_ops_header/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/schema/builtin_ops_header/generator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/simple_memory_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/simple_memory_arena.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/stderr_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/stderr_reporter.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/string_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/string_type.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/string_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/generate_testspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/generate_testspec.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/init_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/init_tensorflow.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/join.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/diff_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/diff_analyzer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/input_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/input_generator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/kernel_test/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/message.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/parse_testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/parse_testdata.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/split.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/string_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/test_runner.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/tf_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/tf_driver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/tflite_diff_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/tflite_diff_flags.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/tflite_diff_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/tflite_diff_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/tflite_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/tflite_driver.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/tokenize.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/testing/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/testing/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tflite_with_xnnpack_optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tflite_with_xnnpack_optional.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/allocate_transient_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/allocate_transient_arrays.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/args.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/dump_graphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/dump_graphviz.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/export_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/export_tensorflow.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/format_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/format_port.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/import_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/import_tensorflow.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/logging/conversion_log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/logging/conversion_log_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/model_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/model_cmdline_flags.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/python/toco_python_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/python/toco_python_api.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/runtime/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/runtime/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/runtime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/runtime/types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tensorflow_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tensorflow_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/builtin_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/builtin_operator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/custom_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/custom_operator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/export.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/import.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/op_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/op_version.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/operator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/simple_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/simple_operator.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tflite/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tflite/types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_cmdline_flags.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_convert.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_graphviz_dump_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_graphviz_dump_options.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_port.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_tooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_tooling.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/toco_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/toco_types.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/toco/tooling_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/toco/tooling_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/accuracy/csv_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/accuracy/csv_writer.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_params.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/benchmark/benchmark_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/benchmark/profiling_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/benchmark/profiling_listener.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/command_line_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/command_line_flags.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/delegates/delegate_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/delegates/delegate_provider.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/evaluation/evaluation_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/evaluation/evaluation_stage.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/evaluation/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/evaluation/utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/gen_op_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/gen_op_registration.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/list_flex_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/list_flex_ops.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/logging.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/fft2d/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/fft2d/alloc.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/common.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ctx.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/mat.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/matrix.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/path.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pmu.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ruy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ruy.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/test.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/time.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/trmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/trmul.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/tune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/tune.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/make/downloads/ruy/ruy/wait.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/model_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/model_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/operator_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/operator_property.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantization_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantization_utils.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantization_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantization_wrapper.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantize_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantize_model.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantize_weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/quantize_weights.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/optimize/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/optimize/test_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/signature/signature_def_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/signature/signature_def_util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/tool_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/tool_params.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/verifier.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/versioning/op_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/versioning/op_version.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/tools/versioning/runtime_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/tools/versioning/runtime_version.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/type_to_tflitetype.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/util.h -------------------------------------------------------------------------------- /C++/tflite-dist/include/tensorflow/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/include/tensorflow/lite/version.h -------------------------------------------------------------------------------- /C++/tflite-dist/libs/windows_x86_64/tensorflowlite_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/libs/windows_x86_64/tensorflowlite_c.dll -------------------------------------------------------------------------------- /C++/tflite-dist/libs/windows_x86_64/tensorflowlite_c.dll.if.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/C++/tflite-dist/libs/windows_x86_64/tensorflowlite_c.dll.if.lib -------------------------------------------------------------------------------- /C++/tflite-dist/version: -------------------------------------------------------------------------------- 1 | 2.3.0 -------------------------------------------------------------------------------- /DPCRN_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/DPCRN_base.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/README.md -------------------------------------------------------------------------------- /configuration/DPCRN-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/configuration/DPCRN-base.yaml -------------------------------------------------------------------------------- /convert_weights_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/convert_weights_to_onnx.py -------------------------------------------------------------------------------- /convert_weights_to_tf_lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/convert_weights_to_tf_lite.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/data_loader.py -------------------------------------------------------------------------------- /evaluations/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/evaluations/metric.py -------------------------------------------------------------------------------- /evaluations/mir_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/evaluations/mir_eval.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/main.py -------------------------------------------------------------------------------- /networks/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/networks/modules.py -------------------------------------------------------------------------------- /real_time_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/real_time_onnx.py -------------------------------------------------------------------------------- /real_time_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/real_time_tflite.py -------------------------------------------------------------------------------- /signal_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/signal_processing.py -------------------------------------------------------------------------------- /test_audio/enhanced/440C020A_mix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/test_audio/enhanced/440C020A_mix.wav -------------------------------------------------------------------------------- /test_audio/noisy/440C020A_mix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqlsnr/DPCRN/HEAD/test_audio/noisy/440C020A_mix.wav --------------------------------------------------------------------------------