├── .clang-format ├── .github └── workflows │ └── benchmark.yml ├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── README_zh.md ├── benchmark ├── README.md ├── RESULTS.md ├── benchmodulellm.py ├── default.yaml └── utils │ ├── __init__.py │ ├── llm.py │ └── token_calc.py ├── doc ├── assets │ ├── StackFlow_unit.dot │ └── network.png ├── component_doc │ ├── StackFlow_en.md │ └── StackFlow_zh.md └── projects_llm_framework_doc │ ├── llm_asr_en.md │ ├── llm_asr_zh.md │ ├── llm_audio_en.md │ ├── llm_audio_zh.md │ ├── llm_camera_en.md │ ├── llm_camera_zh.md │ ├── llm_depth_anything_en.md │ ├── llm_depth_anything_zh.md │ ├── llm_kws_en.md │ ├── llm_kws_zh.md │ ├── llm_llm_en.md │ ├── llm_llm_zh.md │ ├── llm_melotts_en.md │ ├── llm_melotts_zh.md │ ├── llm_sys_en.md │ ├── llm_sys_zh.md │ ├── llm_tts_en.md │ ├── llm_tts_zh.md │ ├── llm_vad_en.md │ ├── llm_vad_zh.md │ ├── llm_vlm_en.md │ ├── llm_vlm_zh.md │ ├── llm_whisper_en.md │ ├── llm_whisper_zh.md │ ├── llm_yolo_en.md │ └── llm_yolo_zh.md ├── ext_components ├── StackFlow │ ├── Kconfig │ ├── SConstruct │ └── stackflow │ │ ├── StackFlow.cpp │ │ ├── StackFlow.h │ │ ├── StackFlowUtil.cpp │ │ ├── StackFlowUtil.h │ │ ├── libzmq │ │ ├── zmq.h │ │ └── zmq_utils.h │ │ └── pzmq.hpp ├── ax-samples │ ├── Kconfig │ └── SConstruct └── ax_msp │ ├── Kconfig │ └── SConstruct └── projects └── llm_framework ├── .gitignore ├── README.md ├── SConstruct ├── config_defaults.mk ├── include ├── abseil-cpp │ ├── 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 │ │ │ │ ├── cycleclock.h │ │ │ │ ├── cycleclock_config.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno_saver.h │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── fast_type_id.h │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── nullability_impl.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── strerror.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── thread_identity.h │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ ├── unscaledcycleclock.h │ │ │ │ └── unscaledcycleclock_config.h │ │ │ ├── log_severity.h │ │ │ ├── macros.h │ │ │ ├── no_destructor.h │ │ │ ├── nullability.h │ │ │ ├── optimization.h │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ ├── prefetch.h │ │ │ └── thread_annotations.h │ │ ├── cleanup │ │ │ ├── cleanup.h │ │ │ └── internal │ │ │ │ └── cleanup.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 │ │ │ │ ├── common_policy_traits.h │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── container_memory.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 │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── node_slot_policy.h │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── test_allocator.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 │ │ ├── crc │ │ │ ├── crc32c.h │ │ │ └── internal │ │ │ │ ├── cpu_detect.h │ │ │ │ ├── crc.h │ │ │ │ ├── crc32_x86_arm_combined_simd.h │ │ │ │ ├── crc32c.h │ │ │ │ ├── crc32c_inline.h │ │ │ │ ├── crc_cord_state.h │ │ │ │ ├── crc_internal.h │ │ │ │ ├── crc_memcpy.h │ │ │ │ ├── non_temporal_arm_intrinsics.h │ │ │ │ └── non_temporal_memcpy.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 │ │ │ ├── commandlineflag.h │ │ │ ├── config.h │ │ │ ├── declare.h │ │ │ ├── flag.h │ │ │ ├── internal │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── flag.h │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── private_handle_accessor.h │ │ │ │ ├── program_name.h │ │ │ │ ├── registry.h │ │ │ │ ├── sequence_lock.h │ │ │ │ └── usage.h │ │ │ ├── marshalling.h │ │ │ ├── parse.h │ │ │ ├── reflection.h │ │ │ ├── usage.h │ │ │ └── usage_config.h │ │ ├── functional │ │ │ ├── any_invocable.h │ │ │ ├── bind_front.h │ │ │ ├── function_ref.h │ │ │ ├── internal │ │ │ │ ├── any_invocable.h │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ │ └── overload.h │ │ ├── hash │ │ │ ├── hash.h │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.h │ │ │ │ ├── hash.h │ │ │ │ ├── hash_test.h │ │ │ │ ├── low_level_hash.h │ │ │ │ └── spy_hash_state.h │ │ ├── log │ │ │ ├── absl_check.h │ │ │ ├── absl_log.h │ │ │ ├── absl_vlog_is_on.h │ │ │ ├── check.h │ │ │ ├── die_if_null.h │ │ │ ├── flags.h │ │ │ ├── globals.h │ │ │ ├── initialize.h │ │ │ ├── internal │ │ │ │ ├── append_truncated.h │ │ │ │ ├── check_impl.h │ │ │ │ ├── check_op.h │ │ │ │ ├── conditions.h │ │ │ │ ├── config.h │ │ │ │ ├── flags.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── globals.h │ │ │ │ ├── log_format.h │ │ │ │ ├── log_impl.h │ │ │ │ ├── log_message.h │ │ │ │ ├── log_sink_set.h │ │ │ │ ├── nullguard.h │ │ │ │ ├── nullstream.h │ │ │ │ ├── proto.h │ │ │ │ ├── strip.h │ │ │ │ ├── structured.h │ │ │ │ ├── test_actions.h │ │ │ │ ├── test_helpers.h │ │ │ │ ├── test_matchers.h │ │ │ │ ├── vlog_config.h │ │ │ │ └── voidify.h │ │ │ ├── log.h │ │ │ ├── log_entry.h │ │ │ ├── log_sink.h │ │ │ ├── log_sink_registry.h │ │ │ ├── log_streamer.h │ │ │ ├── scoped_mock_log.h │ │ │ ├── structured.h │ │ │ └── vlog_is_on.h │ │ ├── memory │ │ │ └── memory.h │ │ ├── meta │ │ │ └── type_traits.h │ │ ├── numeric │ │ │ ├── bits.h │ │ │ ├── int128.h │ │ │ └── internal │ │ │ │ ├── bits.h │ │ │ │ └── representation.h │ │ ├── profiling │ │ │ └── internal │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── periodic_sampler.h │ │ │ │ └── sample_recorder.h │ │ ├── random │ │ │ ├── bernoulli_distribution.h │ │ │ ├── beta_distribution.h │ │ │ ├── bit_gen_ref.h │ │ │ ├── discrete_distribution.h │ │ │ ├── distributions.h │ │ │ ├── exponential_distribution.h │ │ │ ├── gaussian_distribution.h │ │ │ ├── internal │ │ │ │ ├── chi_square.h │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fastmath.h │ │ │ │ ├── generate_real.h │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── mock_helpers.h │ │ │ │ ├── mock_overload_set.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 │ │ │ ├── internal │ │ │ │ ├── status_internal.h │ │ │ │ └── statusor_internal.h │ │ │ ├── status.h │ │ │ ├── status_payload_printer.h │ │ │ └── statusor.h │ │ ├── strings │ │ │ ├── ascii.h │ │ │ ├── charconv.h │ │ │ ├── charset.h │ │ │ ├── cord.h │ │ │ ├── cord_analysis.h │ │ │ ├── cord_buffer.h │ │ │ ├── cord_test_helpers.h │ │ │ ├── cordz_test_helpers.h │ │ │ ├── escaping.h │ │ │ ├── has_absl_stringify.h │ │ │ ├── has_ostream_operator.h │ │ │ ├── internal │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── cord_data_edge.h │ │ │ │ ├── cord_internal.h │ │ │ │ ├── cord_rep_btree.h │ │ │ │ ├── cord_rep_btree_navigator.h │ │ │ │ ├── cord_rep_btree_reader.h │ │ │ │ ├── cord_rep_consume.h │ │ │ │ ├── cord_rep_crc.h │ │ │ │ ├── cord_rep_flat.h │ │ │ │ ├── cord_rep_test_util.h │ │ │ │ ├── cordz_functions.h │ │ │ │ ├── cordz_handle.h │ │ │ │ ├── cordz_info.h │ │ │ │ ├── cordz_sample_token.h │ │ │ │ ├── cordz_statistics.h │ │ │ │ ├── cordz_update_scope.h │ │ │ │ ├── cordz_update_tracker.h │ │ │ │ ├── damerau_levenshtein_distance.h │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── has_absl_stringify.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 │ │ │ │ │ ├── constexpr_parser.h │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.h │ │ │ │ │ └── parser.h │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ ├── string_constant.h │ │ │ │ ├── stringify_sink.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 │ │ │ │ ├── futex.h │ │ │ │ ├── futex_waiter.h │ │ │ │ ├── graphcycles.h │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── pthread_waiter.h │ │ │ │ ├── sem_waiter.h │ │ │ │ ├── stdcpp_waiter.h │ │ │ │ ├── thread_pool.h │ │ │ │ ├── waiter.h │ │ │ │ ├── waiter_base.h │ │ │ │ └── win32_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 │ │ │ │ ├── optional.h │ │ │ │ ├── span.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── span.h │ │ │ └── variant.h │ │ └── utility │ │ │ ├── internal │ │ │ └── if_constexpr.h │ │ │ └── utility.h │ └── ci │ │ └── absl_alternate_options.h ├── archive.h ├── archive_entry.h ├── dwarf.h ├── elfutils │ ├── elf-knowledge.h │ ├── known-dwarf.h │ ├── libdw.h │ ├── libdwelf.h │ ├── libdwfl.h │ └── version.h ├── gelf.h ├── libdw.h ├── libelf.h ├── onnxruntime │ └── core │ │ ├── common │ │ ├── basic_types.h │ │ ├── code_location.h │ │ ├── common.h │ │ ├── const_pointer_container.h │ │ ├── denormal.h │ │ ├── eigen_common_wrapper.h │ │ ├── exceptions.h │ │ ├── gpu_profiler_common.h │ │ ├── gsl.h │ │ ├── hash_combine.h │ │ ├── inlined_containers.h │ │ ├── inlined_containers_fwd.h │ │ ├── logging │ │ │ ├── capture.h │ │ │ ├── isink.h │ │ │ ├── logging.h │ │ │ ├── macros.h │ │ │ └── severity.h │ │ ├── make_string.h │ │ ├── narrow.h │ │ ├── optional.h │ │ ├── parse_string.h │ │ ├── profiler_common.h │ │ ├── span_utils.h │ │ ├── spin_pause.h │ │ ├── status.h │ │ └── string_helper.h │ │ ├── framework │ │ ├── alloc_kind.h │ │ ├── allocator.h │ │ ├── buffer_deleter.h │ │ ├── customregistry.h │ │ ├── data_types.h │ │ ├── data_types_internal.h │ │ ├── endian.h │ │ ├── execution_provider.h │ │ ├── float16.h │ │ ├── framework_common.h │ │ ├── func_api.h │ │ ├── kernel_def_builder.h │ │ ├── kernel_registry.h │ │ ├── op_kernel.h │ │ ├── op_kernel_context.h │ │ ├── op_kernel_info.h │ │ ├── op_node_proto_helper.h │ │ ├── ort_value.h │ │ ├── ortdevice.h │ │ ├── ortmemoryinfo.h │ │ ├── provider_options.h │ │ ├── provider_options_utils.h │ │ ├── provider_shutdown.h │ │ ├── run_options.h │ │ ├── sparse_tensor.h │ │ ├── stream_handles.h │ │ ├── tensor.h │ │ ├── tensor_shape.h │ │ └── to_tensor_proto_element_type.h │ │ ├── graph │ │ ├── basic_types.h │ │ ├── constants.h │ │ ├── function.h │ │ ├── graph.h │ │ ├── graph_nodes.h │ │ ├── graph_viewer.h │ │ ├── indexed_sub_graph.h │ │ ├── node_arg.h │ │ └── schema_registry.h │ │ ├── optimizer │ │ ├── graph_transformer.h │ │ ├── graph_transformer_config.h │ │ ├── graph_transformer_level.h │ │ ├── graph_transformer_utils.h │ │ ├── rewrite_rule.h │ │ └── rule_based_graph_transformer.h │ │ ├── providers │ │ └── cpu │ │ │ └── cpu_provider_factory.h │ │ └── session │ │ ├── environment.h │ │ ├── experimental_onnxruntime_cxx_api.h │ │ ├── experimental_onnxruntime_cxx_inline.h │ │ ├── onnxruntime_c_api.h │ │ ├── onnxruntime_cxx_api.h │ │ ├── onnxruntime_cxx_inline.h │ │ ├── onnxruntime_run_options_config_keys.h │ │ ├── onnxruntime_session_options_config_keys.h │ │ └── snippets.dox ├── opencv4 │ └── opencv2 │ │ ├── core.hpp │ │ ├── core │ │ ├── affine.hpp │ │ ├── async.hpp │ │ ├── base.hpp │ │ ├── bindings_utils.hpp │ │ ├── bufferpool.hpp │ │ ├── check.hpp │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── cuda.hpp │ │ ├── cuda.inl.hpp │ │ ├── cuda │ │ │ ├── block.hpp │ │ │ ├── border_interpolate.hpp │ │ │ ├── color.hpp │ │ │ ├── common.hpp │ │ │ ├── datamov_utils.hpp │ │ │ ├── detail │ │ │ │ ├── color_detail.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ ├── transform_detail.hpp │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ └── vec_distance_detail.hpp │ │ │ ├── dynamic_smem.hpp │ │ │ ├── emulation.hpp │ │ │ ├── filters.hpp │ │ │ ├── funcattrib.hpp │ │ │ ├── functional.hpp │ │ │ ├── limits.hpp │ │ │ ├── reduce.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── scan.hpp │ │ │ ├── simd_functions.hpp │ │ │ ├── transform.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── vec_distance.hpp │ │ │ ├── vec_math.hpp │ │ │ ├── vec_traits.hpp │ │ │ ├── warp.hpp │ │ │ ├── warp_reduce.hpp │ │ │ └── warp_shuffle.hpp │ │ ├── cuda_stream_accessor.hpp │ │ ├── cuda_types.hpp │ │ ├── cv_cpu_dispatch.h │ │ ├── cv_cpu_helper.h │ │ ├── cvdef.h │ │ ├── cvstd.hpp │ │ ├── cvstd.inl.hpp │ │ ├── cvstd_wrapper.hpp │ │ ├── detail │ │ │ ├── async_promise.hpp │ │ │ ├── dispatch_helper.impl.hpp │ │ │ └── exception_ptr.hpp │ │ ├── directx.hpp │ │ ├── dualquaternion.hpp │ │ ├── dualquaternion.inl.hpp │ │ ├── eigen.hpp │ │ ├── fast_math.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ ├── interface.h │ │ │ ├── intrin.hpp │ │ │ ├── intrin_avx.hpp │ │ │ ├── intrin_avx512.hpp │ │ │ ├── intrin_cpp.hpp │ │ │ ├── intrin_forward.hpp │ │ │ ├── intrin_msa.hpp │ │ │ ├── intrin_neon.hpp │ │ │ ├── intrin_rvv.hpp │ │ │ ├── intrin_rvv071.hpp │ │ │ ├── intrin_sse.hpp │ │ │ ├── intrin_sse_em.hpp │ │ │ ├── intrin_vsx.hpp │ │ │ ├── intrin_wasm.hpp │ │ │ ├── msa_macros.h │ │ │ └── simd_utils.impl.hpp │ │ ├── mat.hpp │ │ ├── mat.inl.hpp │ │ ├── matx.hpp │ │ ├── neon_utils.hpp │ │ ├── ocl.hpp │ │ ├── ocl_genbase.hpp │ │ ├── opencl │ │ │ ├── ocl_defs.hpp │ │ │ ├── opencl_info.hpp │ │ │ ├── opencl_svm.hpp │ │ │ └── runtime │ │ │ │ ├── autogenerated │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ ├── opencl_core.hpp │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ ├── opencl_gl.hpp │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ ├── opencl_core.hpp │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ ├── opencl_gl.hpp │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ ├── opengl.hpp │ │ ├── operations.hpp │ │ ├── optim.hpp │ │ ├── ovx.hpp │ │ ├── parallel │ │ │ ├── backend │ │ │ │ ├── parallel_for.openmp.hpp │ │ │ │ └── parallel_for.tbb.hpp │ │ │ └── parallel_backend.hpp │ │ ├── persistence.hpp │ │ ├── quaternion.hpp │ │ ├── quaternion.inl.hpp │ │ ├── saturate.hpp │ │ ├── simd_intrinsics.hpp │ │ ├── softfloat.hpp │ │ ├── sse_utils.hpp │ │ ├── traits.hpp │ │ ├── types.hpp │ │ ├── types_c.h │ │ ├── utility.hpp │ │ ├── utils │ │ │ ├── allocator_stats.hpp │ │ │ ├── allocator_stats.impl.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── instrumentation.hpp │ │ │ ├── logger.defines.hpp │ │ │ ├── logger.hpp │ │ │ ├── logtag.hpp │ │ │ ├── tls.hpp │ │ │ └── trace.hpp │ │ ├── va_intel.hpp │ │ ├── version.hpp │ │ └── vsx_utils.hpp │ │ ├── cvconfig.h │ │ ├── highgui.hpp │ │ ├── highgui │ │ ├── highgui.hpp │ │ └── highgui_c.h │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs_c.h │ │ ├── ios.h │ │ ├── legacy │ │ │ └── constants_c.h │ │ └── macosx.h │ │ ├── imgproc.hpp │ │ ├── imgproc │ │ ├── bindings.hpp │ │ ├── detail │ │ │ └── gcgraph.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ └── interface.h │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ ├── segmentation.hpp │ │ └── types_c.h │ │ ├── opencv.hpp │ │ ├── opencv_modules.hpp │ │ ├── videoio.hpp │ │ └── videoio │ │ ├── cap_ios.h │ │ ├── legacy │ │ └── constants_c.h │ │ ├── registry.hpp │ │ ├── videoio.hpp │ │ └── videoio_c.h ├── protobuf-lite │ └── google │ │ └── protobuf │ │ ├── any.h │ │ ├── arena.h │ │ ├── arena_impl.h │ │ ├── arenastring.h │ │ ├── descriptor.h │ │ ├── extension_set.h │ │ ├── extension_set_inl.h │ │ ├── generated_enum_reflection.h │ │ ├── generated_enum_util.h │ │ ├── generated_message_table_driven.h │ │ ├── generated_message_table_driven_lite.h │ │ ├── generated_message_util.h │ │ ├── has_bits.h │ │ ├── implicit_weak_message.h │ │ ├── io │ │ ├── coded_stream.h │ │ ├── io_win32.h │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.h │ │ └── zero_copy_stream_impl_lite.h │ │ ├── map.h │ │ ├── map_entry_lite.h │ │ ├── map_field_lite.h │ │ ├── map_type_handler.h │ │ ├── message_lite.h │ │ ├── metadata_lite.h │ │ ├── parse_context.h │ │ ├── port.h │ │ ├── port_def.inc │ │ ├── port_undef.inc │ │ ├── repeated_field.h │ │ ├── stubs │ │ ├── bytestream.h │ │ ├── callback.h │ │ ├── casts.h │ │ ├── common.h │ │ ├── hash.h │ │ ├── int128.h │ │ ├── logging.h │ │ ├── macros.h │ │ ├── map_util.h │ │ ├── mutex.h │ │ ├── once.h │ │ ├── platform_macros.h │ │ ├── port.h │ │ ├── status.h │ │ ├── statusor.h │ │ ├── stl_util.h │ │ ├── stringpiece.h │ │ ├── stringprintf.h │ │ ├── strutil.h │ │ └── time.h │ │ ├── unknown_field_set.h │ │ └── wire_format_lite.h ├── re2 │ ├── re2 │ │ ├── bitmap256.h │ │ ├── filtered_re2.h │ │ ├── pod_array.h │ │ ├── prefilter.h │ │ ├── prefilter_tree.h │ │ ├── prog.h │ │ ├── re2.h │ │ ├── regexp.h │ │ ├── set.h │ │ ├── sparse_array.h │ │ ├── sparse_set.h │ │ ├── stringpiece.h │ │ ├── testing │ │ │ ├── exhaustive_tester.h │ │ │ ├── regexp_generator.h │ │ │ ├── string_generator.h │ │ │ └── tester.h │ │ ├── unicode_casefold.h │ │ ├── unicode_groups.h │ │ └── walker-inl.h │ └── util │ │ ├── logging.h │ │ ├── malloc_counter.h │ │ ├── pcre.h │ │ ├── strutil.h │ │ └── utf.h ├── sentencepiece │ ├── bpe_model.h │ ├── bpe_model_trainer.h │ ├── builder.h │ ├── builtin_pb │ │ ├── sentencepiece.pb.h │ │ └── sentencepiece_model.pb.h │ ├── char_model.h │ ├── char_model_trainer.h │ ├── common.h │ ├── filesystem.h │ ├── freelist.h │ ├── init.h │ ├── model_factory.h │ ├── model_interface.h │ ├── normalization_rule.h │ ├── normalizer.h │ ├── pretokenizer_for_training.h │ ├── sentencepiece_processor.h │ ├── sentencepiece_trainer.h │ ├── spec_parser.h │ ├── testharness.h │ ├── trainer_factory.h │ ├── trainer_interface.h │ ├── unicode_script.h │ ├── unicode_script_map.h │ ├── unigram_model.h │ ├── unigram_model_trainer.h │ ├── util.h │ ├── word_model.h │ └── word_model_trainer.h ├── sherpa │ ├── sherpa-ncnn │ │ ├── allocator.h │ │ ├── benchmark.h │ │ ├── blob.h │ │ ├── c_api.h │ │ ├── command.h │ │ ├── cpu.h │ │ ├── csrc │ │ │ ├── alsa.h │ │ │ ├── context-graph.h │ │ │ ├── conv-emformer-model.h │ │ │ ├── decoder.h │ │ │ ├── display.h │ │ │ ├── endpoint.h │ │ │ ├── features.h │ │ │ ├── greedy-search-decoder.h │ │ │ ├── hypothesis.h │ │ │ ├── lstm-model.h │ │ │ ├── math.h │ │ │ ├── meta-data.h │ │ │ ├── microphone.h │ │ │ ├── model.h │ │ │ ├── modified-beam-search-decoder.h │ │ │ ├── poolingmodulenoproj.h │ │ │ ├── recognizer.h │ │ │ ├── resample.h │ │ │ ├── simpleupsample.h │ │ │ ├── stack.h │ │ │ ├── stream.h │ │ │ ├── symbol-table.h │ │ │ ├── tensorasstrided.h │ │ │ ├── wave-reader.h │ │ │ └── zipformer-model.h │ │ ├── datareader.h │ │ ├── gpu.h │ │ ├── layer.h │ │ ├── layer │ │ │ ├── absval.h │ │ │ ├── argmax.h │ │ │ ├── arm │ │ │ │ ├── absval_arm.h │ │ │ │ ├── arm_activation.h │ │ │ │ ├── arm_usability.h │ │ │ │ ├── batchnorm_arm.h │ │ │ │ ├── bias_arm.h │ │ │ │ ├── binaryop_arm.h │ │ │ │ ├── cast_arm.h │ │ │ │ ├── cast_bf16.h │ │ │ │ ├── cast_fp16.h │ │ │ │ ├── clip_arm.h │ │ │ │ ├── concat_arm.h │ │ │ │ ├── convolution1d_arm.h │ │ │ │ ├── convolution1d_packed.h │ │ │ │ ├── convolution1d_packed_bf16s.h │ │ │ │ ├── convolution1d_packed_fp16s.h │ │ │ │ ├── convolution_1x1.h │ │ │ │ ├── convolution_2x2.h │ │ │ │ ├── convolution_3x3.h │ │ │ │ ├── convolution_3x3_int8.h │ │ │ │ ├── convolution_3x3_pack1to4.h │ │ │ │ ├── convolution_3x3_pack1to4_bf16s.h │ │ │ │ ├── convolution_3x3_pack1to4_fp16s.h │ │ │ │ ├── convolution_3x3_pack1to8_fp16s.h │ │ │ │ ├── convolution_3x3_pack4.h │ │ │ │ ├── convolution_3x3_pack4_bf16s.h │ │ │ │ ├── convolution_3x3_pack4_fp16s.h │ │ │ │ ├── convolution_3x3_pack4to1.h │ │ │ │ ├── convolution_3x3_pack8_fp16s.h │ │ │ │ ├── convolution_3x3_winograd.h │ │ │ │ ├── convolution_3x3_winograd_bf16s.h │ │ │ │ ├── convolution_3x3_winograd_fp16s.h │ │ │ │ ├── convolution_3x3_winograd_int8.h │ │ │ │ ├── convolution_4x4.h │ │ │ │ ├── convolution_5x5.h │ │ │ │ ├── convolution_5x5_pack4.h │ │ │ │ ├── convolution_5x5_pack4_bf16s.h │ │ │ │ ├── convolution_5x5_pack8_fp16s.h │ │ │ │ ├── convolution_7x7.h │ │ │ │ ├── convolution_7x7_pack1to4.h │ │ │ │ ├── convolution_7x7_pack1to4_bf16s.h │ │ │ │ ├── convolution_7x7_pack1to8_fp16s.h │ │ │ │ ├── convolution_arm.h │ │ │ │ ├── convolution_im2col_gemm.h │ │ │ │ ├── convolution_im2col_gemm_bf16s.h │ │ │ │ ├── convolution_im2col_gemm_bf16s_fp16s.h │ │ │ │ ├── convolution_im2col_gemm_fp16s.h │ │ │ │ ├── convolution_im2col_gemm_int8.h │ │ │ │ ├── convolution_packed.h │ │ │ │ ├── convolution_packed_bf16s.h │ │ │ │ ├── convolution_packed_fp16s.h │ │ │ │ ├── convolution_packed_int8.h │ │ │ │ ├── convolutiondepthwise_3x3.h │ │ │ │ ├── convolutiondepthwise_3x3_fp16s.h │ │ │ │ ├── convolutiondepthwise_3x3_int8.h │ │ │ │ ├── convolutiondepthwise_3x3_pack4.h │ │ │ │ ├── convolutiondepthwise_3x3_pack4_bf16s.h │ │ │ │ ├── convolutiondepthwise_3x3_pack8_fp16s.h │ │ │ │ ├── convolutiondepthwise_3x3_pack8_int8.h │ │ │ │ ├── convolutiondepthwise_5x5.h │ │ │ │ ├── convolutiondepthwise_5x5_pack4.h │ │ │ │ ├── convolutiondepthwise_5x5_pack4_bf16s.h │ │ │ │ ├── convolutiondepthwise_5x5_pack8_fp16s.h │ │ │ │ ├── convolutiondepthwise_arm.h │ │ │ │ ├── crop_arm.h │ │ │ │ ├── deconvolution_3x3.h │ │ │ │ ├── deconvolution_4x4.h │ │ │ │ ├── deconvolution_4x4_fp16s.h │ │ │ │ ├── deconvolution_arm.h │ │ │ │ ├── deconvolutiondepthwise_arm.h │ │ │ │ ├── dequantize_arm.h │ │ │ │ ├── dropout_arm.h │ │ │ │ ├── eltwise_arm.h │ │ │ │ ├── flatten_arm.h │ │ │ │ ├── gelu_arm.h │ │ │ │ ├── gemm_arm.h │ │ │ │ ├── gemm_bf16s.h │ │ │ │ ├── gemm_bf16s_fp16s.h │ │ │ │ ├── gemm_fp16s.h │ │ │ │ ├── gru_arm.h │ │ │ │ ├── hardsigmoid_arm.h │ │ │ │ ├── hardswish_arm.h │ │ │ │ ├── innerproduct_arm.h │ │ │ │ ├── innerproduct_fp16s.h │ │ │ │ ├── innerproduct_gemm_fp16s.h │ │ │ │ ├── instancenorm_arm.h │ │ │ │ ├── interp_arm.h │ │ │ │ ├── interp_bicubic.h │ │ │ │ ├── interp_bicubic_bf16s.h │ │ │ │ ├── interp_bicubic_fp16s.h │ │ │ │ ├── interp_bicubic_pack4.h │ │ │ │ ├── interp_bicubic_pack4_bf16s.h │ │ │ │ ├── interp_bicubic_pack4_fp16s.h │ │ │ │ ├── interp_bicubic_pack8_fp16s.h │ │ │ │ ├── interp_bilinear.h │ │ │ │ ├── interp_bilinear_bf16s.h │ │ │ │ ├── interp_bilinear_fp16s.h │ │ │ │ ├── interp_bilinear_pack4.h │ │ │ │ ├── interp_bilinear_pack4_bf16s.h │ │ │ │ ├── interp_bilinear_pack4_fp16s.h │ │ │ │ ├── interp_bilinear_pack8_fp16s.h │ │ │ │ ├── lrn_arm.h │ │ │ │ ├── lstm_arm.h │ │ │ │ ├── matmul_arm.h │ │ │ │ ├── mish_arm.h │ │ │ │ ├── multiheadattention_arm.h │ │ │ │ ├── neon_mathfun.h │ │ │ │ ├── neon_mathfun_fp16s.h │ │ │ │ ├── neon_mathfun_tanh.h │ │ │ │ ├── packing_arm.h │ │ │ │ ├── padding_arm.h │ │ │ │ ├── padding_pack4.h │ │ │ │ ├── padding_pack4_bf16s_fp16s.h │ │ │ │ ├── padding_pack8_fp16s.h │ │ │ │ ├── padding_pack8_int8.h │ │ │ │ ├── pixelshuffle_arm.h │ │ │ │ ├── pooling_2x2.h │ │ │ │ ├── pooling_2x2_pack4.h │ │ │ │ ├── pooling_2x2_pack4_bf16s.h │ │ │ │ ├── pooling_3x3.h │ │ │ │ ├── pooling_3x3_pack4.h │ │ │ │ ├── pooling_3x3_pack4_bf16s.h │ │ │ │ ├── pooling_arm.h │ │ │ │ ├── prelu_arm.h │ │ │ │ ├── quantize_arm.h │ │ │ │ ├── relu_arm.h │ │ │ │ ├── requantize_arm.h │ │ │ │ ├── requantize_leakyrelu_pack4.h │ │ │ │ ├── requantize_leakyrelu_pack8.h │ │ │ │ ├── requantize_relu_pack4.h │ │ │ │ ├── requantize_relu_pack8.h │ │ │ │ ├── reshape_arm.h │ │ │ │ ├── rnn_arm.h │ │ │ │ ├── scale_arm.h │ │ │ │ ├── selu_arm.h │ │ │ │ ├── shufflechannel_arm.h │ │ │ │ ├── sigmoid_arm.h │ │ │ │ ├── slice_arm.h │ │ │ │ ├── softmax_arm.h │ │ │ │ ├── swish_arm.h │ │ │ │ ├── tanh_arm.h │ │ │ │ └── unaryop_arm.h │ │ │ ├── batchnorm.h │ │ │ ├── bias.h │ │ │ ├── binaryop.h │ │ │ ├── bnll.h │ │ │ ├── cast.h │ │ │ ├── celu.h │ │ │ ├── clip.h │ │ │ ├── concat.h │ │ │ ├── convolution.h │ │ │ ├── convolution1d.h │ │ │ ├── convolution3d.h │ │ │ ├── convolutiondepthwise.h │ │ │ ├── convolutiondepthwise1d.h │ │ │ ├── convolutiondepthwise3d.h │ │ │ ├── copyto.h │ │ │ ├── crop.h │ │ │ ├── cumulativesum.h │ │ │ ├── deconvolution.h │ │ │ ├── deconvolution1d.h │ │ │ ├── deconvolution3d.h │ │ │ ├── deconvolutiondepthwise.h │ │ │ ├── deconvolutiondepthwise1d.h │ │ │ ├── deconvolutiondepthwise3d.h │ │ │ ├── deepcopy.h │ │ │ ├── deformableconv2d.h │ │ │ ├── dequantize.h │ │ │ ├── detectionoutput.h │ │ │ ├── diag.h │ │ │ ├── dropout.h │ │ │ ├── einsum.h │ │ │ ├── eltwise.h │ │ │ ├── elu.h │ │ │ ├── embed.h │ │ │ ├── erf.h │ │ │ ├── exp.h │ │ │ ├── expanddims.h │ │ │ ├── flatten.h │ │ │ ├── fold.h │ │ │ ├── fused_activation.h │ │ │ ├── gelu.h │ │ │ ├── gemm.h │ │ │ ├── glu.h │ │ │ ├── gridsample.h │ │ │ ├── groupnorm.h │ │ │ ├── gru.h │ │ │ ├── hardsigmoid.h │ │ │ ├── hardswish.h │ │ │ ├── innerproduct.h │ │ │ ├── input.h │ │ │ ├── instancenorm.h │ │ │ ├── interp.h │ │ │ ├── layernorm.h │ │ │ ├── log.h │ │ │ ├── loongarch │ │ │ │ ├── absval_loongarch.h │ │ │ │ ├── batchnorm_loongarch.h │ │ │ │ ├── bias_loongarch.h │ │ │ │ ├── binaryop_loongarch.h │ │ │ │ ├── cast_loongarch.h │ │ │ │ ├── clip_loongarch.h │ │ │ │ ├── concat_loongarch.h │ │ │ │ ├── convolution1d_loongarch.h │ │ │ │ ├── convolution_1x1.h │ │ │ │ ├── convolution_1x1_int8.h │ │ │ │ ├── convolution_1x1_pack1to4_int8.h │ │ │ │ ├── convolution_1x1_pack4.h │ │ │ │ ├── convolution_1x1_pack4to1.h │ │ │ │ ├── convolution_1x1_pack8to1_int8.h │ │ │ │ ├── convolution_1x1_pack8to4_int8.h │ │ │ │ ├── convolution_3x3.h │ │ │ │ ├── convolution_3x3_int8.h │ │ │ │ ├── convolution_3x3_pack1to4.h │ │ │ │ ├── convolution_3x3_pack4.h │ │ │ │ ├── convolution_3x3_pack8to1_int8.h │ │ │ │ ├── convolution_3x3_pack8to4_int8.h │ │ │ │ ├── convolution_7x7_pack1to4.h │ │ │ │ ├── convolution_int8.h │ │ │ │ ├── convolution_loongarch.h │ │ │ │ ├── convolution_pack1to4.h │ │ │ │ ├── convolution_pack1to4_int8.h │ │ │ │ ├── convolution_pack4.h │ │ │ │ ├── convolution_pack4to1.h │ │ │ │ ├── convolution_pack8to1_int8.h │ │ │ │ ├── convolution_pack8to4_int8.h │ │ │ │ ├── convolution_sgemm.h │ │ │ │ ├── convolution_sgemm_int8.h │ │ │ │ ├── convolution_sgemm_pack1to4_int8.h │ │ │ │ ├── convolution_sgemm_pack4.h │ │ │ │ ├── convolution_sgemm_pack4to1.h │ │ │ │ ├── convolution_sgemm_pack8to1_int8.h │ │ │ │ ├── convolution_sgemm_pack8to4_int8.h │ │ │ │ ├── convolution_winograd_dot.h │ │ │ │ ├── convolution_winograd_dot_int8.h │ │ │ │ ├── convolution_winograd_dot_pack4.h │ │ │ │ ├── convolution_winograd_dot_pack8to1_int8.h │ │ │ │ ├── convolution_winograd_dot_pack8to4_int8.h │ │ │ │ ├── convolution_winograd_transform.h │ │ │ │ ├── convolution_winograd_transform_int8.h │ │ │ │ ├── convolution_winograd_transform_pack4.h │ │ │ │ ├── convolution_winograd_transform_pack4_int8.h │ │ │ │ ├── convolution_winograd_transform_pack8_int8.h │ │ │ │ ├── convolutiondepthwise_3x3.h │ │ │ │ ├── convolutiondepthwise_3x3_pack4.h │ │ │ │ ├── convolutiondepthwise_5x5_pack4.h │ │ │ │ ├── convolutiondepthwise_loongarch.h │ │ │ │ ├── crop_loongarch.h │ │ │ │ ├── deconvolution_loongarch.h │ │ │ │ ├── deconvolution_pack1to4.h │ │ │ │ ├── deconvolution_pack4.h │ │ │ │ ├── deconvolution_pack4to1.h │ │ │ │ ├── deconvolutiondepthwise_loongarch.h │ │ │ │ ├── dequantize_loongarch.h │ │ │ │ ├── dropout_loongarch.h │ │ │ │ ├── eltwise_loongarch.h │ │ │ │ ├── flatten_loongarch.h │ │ │ │ ├── hardsigmoid_loongarch.h │ │ │ │ ├── hardswish_loongarch.h │ │ │ │ ├── innerproduct_loongarch.h │ │ │ │ ├── interp_bicubic.h │ │ │ │ ├── interp_bicubic_pack4.h │ │ │ │ ├── interp_bilinear.h │ │ │ │ ├── interp_bilinear_pack4.h │ │ │ │ ├── interp_loongarch.h │ │ │ │ ├── loongarch_activation.h │ │ │ │ ├── loongarch_usability.h │ │ │ │ ├── lsx_mathfun.h │ │ │ │ ├── mish_loongarch.h │ │ │ │ ├── packing_loongarch.h │ │ │ │ ├── padding_loongarch.h │ │ │ │ ├── padding_pack4.h │ │ │ │ ├── padding_pack8_int8.h │ │ │ │ ├── pooling_loongarch.h │ │ │ │ ├── prelu_loongarch.h │ │ │ │ ├── quantize_loongarch.h │ │ │ │ ├── relu_loongarch.h │ │ │ │ ├── requantize_leakyrelu_pack4.h │ │ │ │ ├── requantize_leakyrelu_pack8.h │ │ │ │ ├── requantize_loongarch.h │ │ │ │ ├── requantize_relu_pack4.h │ │ │ │ ├── requantize_relu_pack8.h │ │ │ │ ├── sigmoid_loongarch.h │ │ │ │ ├── slice_loongarch.h │ │ │ │ ├── softmax_loongarch.h │ │ │ │ ├── swish_loongarch.h │ │ │ │ ├── tanh_loongarch.h │ │ │ │ └── unaryop_loongarch.h │ │ │ ├── lrn.h │ │ │ ├── lstm.h │ │ │ ├── matmul.h │ │ │ ├── memorydata.h │ │ │ ├── mips │ │ │ │ ├── absval_mips.h │ │ │ │ ├── batchnorm_mips.h │ │ │ │ ├── bias_mips.h │ │ │ │ ├── binaryop_mips.h │ │ │ │ ├── cast_mips.h │ │ │ │ ├── clip_mips.h │ │ │ │ ├── concat_mips.h │ │ │ │ ├── convolution1d_mips.h │ │ │ │ ├── convolution_1x1.h │ │ │ │ ├── convolution_1x1_int8.h │ │ │ │ ├── convolution_1x1_pack1to4_int8.h │ │ │ │ ├── convolution_1x1_pack4.h │ │ │ │ ├── convolution_1x1_pack4to1.h │ │ │ │ ├── convolution_1x1_pack8to1_int8.h │ │ │ │ ├── convolution_1x1_pack8to4_int8.h │ │ │ │ ├── convolution_3x3.h │ │ │ │ ├── convolution_3x3_int8.h │ │ │ │ ├── convolution_3x3_pack1to4.h │ │ │ │ ├── convolution_3x3_pack4.h │ │ │ │ ├── convolution_3x3_pack8to1_int8.h │ │ │ │ ├── convolution_3x3_pack8to4_int8.h │ │ │ │ ├── convolution_7x7_pack1to4.h │ │ │ │ ├── convolution_int8.h │ │ │ │ ├── convolution_mips.h │ │ │ │ ├── convolution_pack1to4.h │ │ │ │ ├── convolution_pack1to4_int8.h │ │ │ │ ├── convolution_pack4.h │ │ │ │ ├── convolution_pack4to1.h │ │ │ │ ├── convolution_pack8to1_int8.h │ │ │ │ ├── convolution_pack8to4_int8.h │ │ │ │ ├── convolution_sgemm.h │ │ │ │ ├── convolution_sgemm_int8.h │ │ │ │ ├── convolution_sgemm_pack1to4_int8.h │ │ │ │ ├── convolution_sgemm_pack4.h │ │ │ │ ├── convolution_sgemm_pack4to1.h │ │ │ │ ├── convolution_sgemm_pack8to1_int8.h │ │ │ │ ├── convolution_sgemm_pack8to4_int8.h │ │ │ │ ├── convolution_winograd_dot.h │ │ │ │ ├── convolution_winograd_dot_int8.h │ │ │ │ ├── convolution_winograd_dot_pack4.h │ │ │ │ ├── convolution_winograd_dot_pack8to1_int8.h │ │ │ │ ├── convolution_winograd_dot_pack8to4_int8.h │ │ │ │ ├── convolution_winograd_transform.h │ │ │ │ ├── convolution_winograd_transform_int8.h │ │ │ │ ├── convolution_winograd_transform_pack4.h │ │ │ │ ├── convolution_winograd_transform_pack4_int8.h │ │ │ │ ├── convolution_winograd_transform_pack8_int8.h │ │ │ │ ├── convolutiondepthwise_3x3.h │ │ │ │ ├── convolutiondepthwise_3x3_pack4.h │ │ │ │ ├── convolutiondepthwise_5x5_pack4.h │ │ │ │ ├── convolutiondepthwise_mips.h │ │ │ │ ├── crop_mips.h │ │ │ │ ├── deconvolution_mips.h │ │ │ │ ├── deconvolution_pack1to4.h │ │ │ │ ├── deconvolution_pack4.h │ │ │ │ ├── deconvolution_pack4to1.h │ │ │ │ ├── deconvolutiondepthwise_mips.h │ │ │ │ ├── dequantize_mips.h │ │ │ │ ├── dropout_mips.h │ │ │ │ ├── eltwise_mips.h │ │ │ │ ├── flatten_mips.h │ │ │ │ ├── hardsigmoid_mips.h │ │ │ │ ├── hardswish_mips.h │ │ │ │ ├── innerproduct_mips.h │ │ │ │ ├── interp_bicubic.h │ │ │ │ ├── interp_bicubic_pack4.h │ │ │ │ ├── interp_bilinear.h │ │ │ │ ├── interp_bilinear_pack4.h │ │ │ │ ├── interp_mips.h │ │ │ │ ├── loongson_mmi.h │ │ │ │ ├── mips_activation.h │ │ │ │ ├── mips_usability.h │ │ │ │ ├── mish_mips.h │ │ │ │ ├── msa_mathfun.h │ │ │ │ ├── packing_mips.h │ │ │ │ ├── padding_mips.h │ │ │ │ ├── padding_pack4.h │ │ │ │ ├── padding_pack8_int8.h │ │ │ │ ├── pooling_mips.h │ │ │ │ ├── prelu_mips.h │ │ │ │ ├── quantize_mips.h │ │ │ │ ├── relu_mips.h │ │ │ │ ├── requantize_leakyrelu_pack4.h │ │ │ │ ├── requantize_leakyrelu_pack8.h │ │ │ │ ├── requantize_mips.h │ │ │ │ ├── requantize_relu_pack4.h │ │ │ │ ├── requantize_relu_pack8.h │ │ │ │ ├── sigmoid_mips.h │ │ │ │ ├── slice_mips.h │ │ │ │ ├── softmax_mips.h │ │ │ │ ├── swish_mips.h │ │ │ │ ├── tanh_mips.h │ │ │ │ └── unaryop_mips.h │ │ │ ├── mish.h │ │ │ ├── multiheadattention.h │ │ │ ├── mvn.h │ │ │ ├── noop.h │ │ │ ├── normalize.h │ │ │ ├── packing.h │ │ │ ├── padding.h │ │ │ ├── permute.h │ │ │ ├── pixelshuffle.h │ │ │ ├── pooling.h │ │ │ ├── pooling1d.h │ │ │ ├── pooling3d.h │ │ │ ├── power.h │ │ │ ├── prelu.h │ │ │ ├── priorbox.h │ │ │ ├── proposal.h │ │ │ ├── psroipooling.h │ │ │ ├── quantize.h │ │ │ ├── reduction.h │ │ │ ├── relu.h │ │ │ ├── reorg.h │ │ │ ├── requantize.h │ │ │ ├── reshape.h │ │ │ ├── riscv │ │ │ │ ├── absval_riscv.h │ │ │ │ ├── batchnorm_riscv.h │ │ │ │ ├── binaryop_riscv.h │ │ │ │ ├── cast_riscv.h │ │ │ │ ├── clip_riscv.h │ │ │ │ ├── concat_riscv.h │ │ │ │ ├── convolution1d_riscv.h │ │ │ │ ├── convolution_1x1.h │ │ │ │ ├── convolution_1x1_fp16s.h │ │ │ │ ├── convolution_1x1_pack1ton.h │ │ │ │ ├── convolution_1x1_pack1ton_fp16s.h │ │ │ │ ├── convolution_1x1_packn.h │ │ │ │ ├── convolution_1x1_packn_fp16s.h │ │ │ │ ├── convolution_1x1_packnto1.h │ │ │ │ ├── convolution_1x1_packnto1_fp16s.h │ │ │ │ ├── convolution_3x3.h │ │ │ │ ├── convolution_3x3_pack1ton.h │ │ │ │ ├── convolution_3x3_pack1ton_fp16s.h │ │ │ │ ├── convolution_3x3_packn.h │ │ │ │ ├── convolution_3x3_packn_fp16s.h │ │ │ │ ├── convolution_7x7_pack1ton.h │ │ │ │ ├── convolution_7x7_pack1ton_fp16s.h │ │ │ │ ├── convolution_fp16s.h │ │ │ │ ├── convolution_pack1ton.h │ │ │ │ ├── convolution_pack1ton_fp16s.h │ │ │ │ ├── convolution_packn.h │ │ │ │ ├── convolution_packn_fp16s.h │ │ │ │ ├── convolution_packnto1.h │ │ │ │ ├── convolution_packnto1_fp16s.h │ │ │ │ ├── convolution_riscv.h │ │ │ │ ├── convolution_sgemm.h │ │ │ │ ├── convolution_sgemm_fp16s.h │ │ │ │ ├── convolution_sgemm_pack1ton.h │ │ │ │ ├── convolution_sgemm_pack1ton_fp16s.h │ │ │ │ ├── convolution_sgemm_packn.h │ │ │ │ ├── convolution_sgemm_packn_fp16s.h │ │ │ │ ├── convolution_sgemm_packnto1.h │ │ │ │ ├── convolution_sgemm_packnto1_fp16s.h │ │ │ │ ├── convolution_winograd_dot.h │ │ │ │ ├── convolution_winograd_dot_packn.h │ │ │ │ ├── convolution_winograd_dot_packn_fp16s.h │ │ │ │ ├── convolution_winograd_transform.h │ │ │ │ ├── convolution_winograd_transform_packn.h │ │ │ │ ├── convolution_winograd_transform_packn_fp16s.h │ │ │ │ ├── convolutiondepthwise_3x3.h │ │ │ │ ├── convolutiondepthwise_3x3_packn.h │ │ │ │ ├── convolutiondepthwise_3x3_packn_fp16s.h │ │ │ │ ├── convolutiondepthwise_5x5_packn.h │ │ │ │ ├── convolutiondepthwise_5x5_packn_fp16s.h │ │ │ │ ├── convolutiondepthwise_riscv.h │ │ │ │ ├── crop_riscv.h │ │ │ │ ├── deconvolution_fp16s.h │ │ │ │ ├── deconvolution_pack1ton.h │ │ │ │ ├── deconvolution_pack1ton_fp16s.h │ │ │ │ ├── deconvolution_packn.h │ │ │ │ ├── deconvolution_packn_fp16s.h │ │ │ │ ├── deconvolution_packnto1.h │ │ │ │ ├── deconvolution_packnto1_fp16s.h │ │ │ │ ├── deconvolution_riscv.h │ │ │ │ ├── deconvolutiondepthwise_riscv.h │ │ │ │ ├── dropout_riscv.h │ │ │ │ ├── flatten_riscv.h │ │ │ │ ├── gelu_riscv.h │ │ │ │ ├── gemm_riscv.h │ │ │ │ ├── gru_riscv.h │ │ │ │ ├── hardsigmoid_riscv.h │ │ │ │ ├── hardswish_riscv.h │ │ │ │ ├── innerproduct_riscv.h │ │ │ │ ├── instancenorm_riscv.h │ │ │ │ ├── interp_bicubic.h │ │ │ │ ├── interp_bicubic_fp16s.h │ │ │ │ ├── interp_bicubic_packn.h │ │ │ │ ├── interp_bicubic_packn_fp16s.h │ │ │ │ ├── interp_bilinear.h │ │ │ │ ├── interp_bilinear_fp16s.h │ │ │ │ ├── interp_bilinear_packn.h │ │ │ │ ├── interp_bilinear_packn_fp16s.h │ │ │ │ ├── interp_riscv.h │ │ │ │ ├── mish_riscv.h │ │ │ │ ├── packing_riscv.h │ │ │ │ ├── padding_packn.h │ │ │ │ ├── padding_riscv.h │ │ │ │ ├── pooling_riscv.h │ │ │ │ ├── prelu_riscv.h │ │ │ │ ├── relu_riscv.h │ │ │ │ ├── riscv_activation.h │ │ │ │ ├── riscv_usability.h │ │ │ │ ├── rvv_mathfun.h │ │ │ │ ├── rvv_mathfun_fp16s.h │ │ │ │ ├── selu_riscv.h │ │ │ │ ├── sigmoid_riscv.h │ │ │ │ ├── softmax_riscv.h │ │ │ │ ├── swish_riscv.h │ │ │ │ ├── tanh_riscv.h │ │ │ │ └── unaryop_riscv.h │ │ │ ├── rnn.h │ │ │ ├── roialign.h │ │ │ ├── roipooling.h │ │ │ ├── scale.h │ │ │ ├── selu.h │ │ │ ├── shrink.h │ │ │ ├── shufflechannel.h │ │ │ ├── sigmoid.h │ │ │ ├── slice.h │ │ │ ├── softmax.h │ │ │ ├── softplus.h │ │ │ ├── split.h │ │ │ ├── spp.h │ │ │ ├── squeeze.h │ │ │ ├── statisticspooling.h │ │ │ ├── swish.h │ │ │ ├── tanh.h │ │ │ ├── threshold.h │ │ │ ├── tile.h │ │ │ ├── unaryop.h │ │ │ ├── unfold.h │ │ │ ├── vulkan │ │ │ │ ├── absval_vulkan.h │ │ │ │ ├── batchnorm_vulkan.h │ │ │ │ ├── binaryop_vulkan.h │ │ │ │ ├── cast_vulkan.h │ │ │ │ ├── celu_vulkan.h │ │ │ │ ├── clip_vulkan.h │ │ │ │ ├── concat_vulkan.h │ │ │ │ ├── convolution1d_vulkan.h │ │ │ │ ├── convolution_vulkan.h │ │ │ │ ├── convolutiondepthwise_vulkan.h │ │ │ │ ├── crop_vulkan.h │ │ │ │ ├── deconvolution_vulkan.h │ │ │ │ ├── deconvolutiondepthwise_vulkan.h │ │ │ │ ├── deepcopy_vulkan.h │ │ │ │ ├── dropout_vulkan.h │ │ │ │ ├── eltwise_vulkan.h │ │ │ │ ├── elu_vulkan.h │ │ │ │ ├── erf_vulkan.h │ │ │ │ ├── flatten_vulkan.h │ │ │ │ ├── gelu_vulkan.h │ │ │ │ ├── gemm_vulkan.h │ │ │ │ ├── hardsigmoid_vulkan.h │ │ │ │ ├── hardswish_vulkan.h │ │ │ │ ├── innerproduct_vulkan.h │ │ │ │ ├── instancenorm_vulkan.h │ │ │ │ ├── interp_vulkan.h │ │ │ │ ├── lrn_vulkan.h │ │ │ │ ├── memorydata_vulkan.h │ │ │ │ ├── mish_vulkan.h │ │ │ │ ├── multiheadattention_vulkan.h │ │ │ │ ├── noop_vulkan.h │ │ │ │ ├── normalize_vulkan.h │ │ │ │ ├── packing_vulkan.h │ │ │ │ ├── padding_vulkan.h │ │ │ │ ├── permute_vulkan.h │ │ │ │ ├── pixelshuffle_vulkan.h │ │ │ │ ├── pooling_vulkan.h │ │ │ │ ├── prelu_vulkan.h │ │ │ │ ├── priorbox_vulkan.h │ │ │ │ ├── relu_vulkan.h │ │ │ │ ├── reorg_vulkan.h │ │ │ │ ├── reshape_vulkan.h │ │ │ │ ├── scale_vulkan.h │ │ │ │ ├── shufflechannel_vulkan.h │ │ │ │ ├── sigmoid_vulkan.h │ │ │ │ ├── slice_vulkan.h │ │ │ │ ├── softmax_vulkan.h │ │ │ │ ├── split_vulkan.h │ │ │ │ ├── swish_vulkan.h │ │ │ │ ├── tanh_vulkan.h │ │ │ │ └── unaryop_vulkan.h │ │ │ ├── x86 │ │ │ │ ├── avx512_mathfun.h │ │ │ │ ├── avx_mathfun.h │ │ │ │ ├── batchnorm_x86.h │ │ │ │ ├── bias_x86.h │ │ │ │ ├── binaryop_x86.h │ │ │ │ ├── bnll_x86.h │ │ │ │ ├── cast_bf16.h │ │ │ │ ├── cast_fp16.h │ │ │ │ ├── cast_x86.h │ │ │ │ ├── clip_x86.h │ │ │ │ ├── concat_x86.h │ │ │ │ ├── convolution1d_packed.h │ │ │ │ ├── convolution1d_x86.h │ │ │ │ ├── convolution_1x1.h │ │ │ │ ├── convolution_2x2_pack8.h │ │ │ │ ├── convolution_3x3.h │ │ │ │ ├── convolution_3x3_int8.h │ │ │ │ ├── convolution_3x3_pack16to1.h │ │ │ │ ├── convolution_3x3_pack1to4.h │ │ │ │ ├── convolution_3x3_pack1to8.h │ │ │ │ ├── convolution_3x3_pack8.h │ │ │ │ ├── convolution_3x3_pack8to1.h │ │ │ │ ├── convolution_3x3_winograd.h │ │ │ │ ├── convolution_3x3_winograd_int8.h │ │ │ │ ├── convolution_5x5.h │ │ │ │ ├── convolution_im2col_gemm_int8.h │ │ │ │ ├── convolution_packed.h │ │ │ │ ├── convolution_packed_int8.h │ │ │ │ ├── convolution_x86.h │ │ │ │ ├── convolutiondepthwise_3x3.h │ │ │ │ ├── convolutiondepthwise_3x3_int8.h │ │ │ │ ├── convolutiondepthwise_3x3_pack16.h │ │ │ │ ├── convolutiondepthwise_3x3_pack4.h │ │ │ │ ├── convolutiondepthwise_3x3_pack8.h │ │ │ │ ├── convolutiondepthwise_5x5_pack16.h │ │ │ │ ├── convolutiondepthwise_5x5_pack4.h │ │ │ │ ├── convolutiondepthwise_5x5_pack8.h │ │ │ │ ├── convolutiondepthwise_x86.h │ │ │ │ ├── crop_x86.h │ │ │ │ ├── deconvolution_pack16.h │ │ │ │ ├── deconvolution_pack16to1.h │ │ │ │ ├── deconvolution_pack16to4.h │ │ │ │ ├── deconvolution_pack16to8.h │ │ │ │ ├── deconvolution_pack1to16.h │ │ │ │ ├── deconvolution_pack1to4.h │ │ │ │ ├── deconvolution_pack1to8.h │ │ │ │ ├── deconvolution_pack4.h │ │ │ │ ├── deconvolution_pack4to1.h │ │ │ │ ├── deconvolution_pack4to16.h │ │ │ │ ├── deconvolution_pack4to8.h │ │ │ │ ├── deconvolution_pack8.h │ │ │ │ ├── deconvolution_pack8to1.h │ │ │ │ ├── deconvolution_pack8to16.h │ │ │ │ ├── deconvolution_pack8to4.h │ │ │ │ ├── deconvolution_x86.h │ │ │ │ ├── deconvolutiondepthwise_x86.h │ │ │ │ ├── deformableconv2d_pack16.h │ │ │ │ ├── deformableconv2d_pack16to1.h │ │ │ │ ├── deformableconv2d_pack16to4.h │ │ │ │ ├── deformableconv2d_pack16to8.h │ │ │ │ ├── deformableconv2d_pack1to16.h │ │ │ │ ├── deformableconv2d_pack1to4.h │ │ │ │ ├── deformableconv2d_pack1to8.h │ │ │ │ ├── deformableconv2d_pack4.h │ │ │ │ ├── deformableconv2d_pack4to1.h │ │ │ │ ├── deformableconv2d_pack4to16.h │ │ │ │ ├── deformableconv2d_pack4to8.h │ │ │ │ ├── deformableconv2d_pack8.h │ │ │ │ ├── deformableconv2d_pack8to1.h │ │ │ │ ├── deformableconv2d_pack8to16.h │ │ │ │ ├── deformableconv2d_pack8to4.h │ │ │ │ ├── deformableconv2d_x86.h │ │ │ │ ├── dequantize_x86.h │ │ │ │ ├── dropout_x86.h │ │ │ │ ├── eltwise_x86.h │ │ │ │ ├── elu_x86.h │ │ │ │ ├── flatten_x86.h │ │ │ │ ├── gelu_x86.h │ │ │ │ ├── gemm_x86.h │ │ │ │ ├── gridsample_bicubic_apply_interpolation.h │ │ │ │ ├── gridsample_bicubic_compute_blob.h │ │ │ │ ├── gridsample_bilinear_apply_interpolation.h │ │ │ │ ├── gridsample_bilinear_compute_blob.h │ │ │ │ ├── gridsample_compute_blob.h │ │ │ │ ├── gridsample_nearest_apply_interpolation.h │ │ │ │ ├── gridsample_nearest_compute_blob.h │ │ │ │ ├── gridsample_x86.h │ │ │ │ ├── groupnorm_x86.h │ │ │ │ ├── hardsigmoid_x86.h │ │ │ │ ├── hardswish_x86.h │ │ │ │ ├── innerproduct_fp.h │ │ │ │ ├── innerproduct_gemm_fp.h │ │ │ │ ├── innerproduct_x86.h │ │ │ │ ├── interp_bicubic.h │ │ │ │ ├── interp_bicubic_pack16.h │ │ │ │ ├── interp_bicubic_pack4.h │ │ │ │ ├── interp_bicubic_pack8.h │ │ │ │ ├── interp_bilinear.h │ │ │ │ ├── interp_bilinear_pack16.h │ │ │ │ ├── interp_bilinear_pack4.h │ │ │ │ ├── interp_bilinear_pack8.h │ │ │ │ ├── interp_x86.h │ │ │ │ ├── layernorm_x86.h │ │ │ │ ├── lrn_x86.h │ │ │ │ ├── lstm_x86.h │ │ │ │ ├── matmul_x86.h │ │ │ │ ├── mish_x86.h │ │ │ │ ├── multiheadattention_x86.h │ │ │ │ ├── packing_x86.h │ │ │ │ ├── padding_pack16.h │ │ │ │ ├── padding_pack4.h │ │ │ │ ├── padding_pack8.h │ │ │ │ ├── padding_pack8_int8.h │ │ │ │ ├── padding_x86.h │ │ │ │ ├── pooling_2x2.h │ │ │ │ ├── pooling_2x2_pack16.h │ │ │ │ ├── pooling_2x2_pack4.h │ │ │ │ ├── pooling_2x2_pack8.h │ │ │ │ ├── pooling_3x3_pack16.h │ │ │ │ ├── pooling_3x3_pack4.h │ │ │ │ ├── pooling_3x3_pack8.h │ │ │ │ ├── pooling_x86.h │ │ │ │ ├── prelu_x86.h │ │ │ │ ├── quantize_x86.h │ │ │ │ ├── relu_x86.h │ │ │ │ ├── requantize_x86.h │ │ │ │ ├── reshape_x86.h │ │ │ │ ├── roialign_x86.h │ │ │ │ ├── scale_x86.h │ │ │ │ ├── selu_x86.h │ │ │ │ ├── shufflechannel_x86.h │ │ │ │ ├── sigmoid_x86.h │ │ │ │ ├── slice_x86.h │ │ │ │ ├── softmax_x86.h │ │ │ │ ├── sse_mathfun.h │ │ │ │ ├── swish_x86.h │ │ │ │ ├── tanh_x86.h │ │ │ │ ├── unaryop_x86.h │ │ │ │ ├── x86_activation.h │ │ │ │ ├── x86_usability.h │ │ │ │ └── yolov3detectionoutput_x86.h │ │ │ ├── yolodetectionoutput.h │ │ │ └── yolov3detectionoutput.h │ │ ├── layer_declaration.h │ │ ├── layer_registry.h │ │ ├── layer_shader_registry.h │ │ ├── layer_shader_spv_data.h │ │ ├── layer_shader_type.h │ │ ├── layer_shader_type_enum.h │ │ ├── layer_type.h │ │ ├── layer_type_enum.h │ │ ├── mat.h │ │ ├── mat_pixel_drawing_font.h │ │ ├── modelbin.h │ │ ├── ncnn_export.h │ │ ├── net.h │ │ ├── option.h │ │ ├── paramdict.h │ │ ├── pipeline.h │ │ ├── pipelinecache.h │ │ ├── platform.h │ │ ├── ruapu.h │ │ ├── simplemath.h │ │ ├── simpleocv.h │ │ ├── simpleomp.h │ │ ├── simplestl.h │ │ ├── simplevk.h │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ └── vulkan_header_fix.h │ └── sherpa-onnx │ │ ├── csrc │ │ ├── alsa-play.h │ │ ├── alsa.h │ │ ├── audio-tagging-ced-impl.h │ │ ├── audio-tagging-impl.h │ │ ├── audio-tagging-label-file.h │ │ ├── audio-tagging-model-config.h │ │ ├── audio-tagging-zipformer-impl.h │ │ ├── audio-tagging.h │ │ ├── base64-decode.h │ │ ├── cat.h │ │ ├── circular-buffer.h │ │ ├── context-graph.h │ │ ├── display.h │ │ ├── endpoint.h │ │ ├── fast-clustering-config.h │ │ ├── fast-clustering.h │ │ ├── features.h │ │ ├── file-utils.h │ │ ├── fst-utils.h │ │ ├── hypothesis.h │ │ ├── jieba-lexicon.h │ │ ├── keyword-spotter-impl.h │ │ ├── keyword-spotter-transducer-impl.h │ │ ├── keyword-spotter.h │ │ ├── lexicon.h │ │ ├── log.h │ │ ├── macros.h │ │ ├── math.h │ │ ├── melo-tts-lexicon.h │ │ ├── microphone.h │ │ ├── offline-ced-model.h │ │ ├── offline-ct-transformer-model-meta-data.h │ │ ├── offline-ct-transformer-model.h │ │ ├── offline-ctc-decoder.h │ │ ├── offline-ctc-fst-decoder-config.h │ │ ├── offline-ctc-fst-decoder.h │ │ ├── offline-ctc-greedy-search-decoder.h │ │ ├── offline-ctc-model.h │ │ ├── offline-lm-config.h │ │ ├── offline-lm.h │ │ ├── offline-model-config.h │ │ ├── offline-moonshine-decoder.h │ │ ├── offline-moonshine-greedy-search-decoder.h │ │ ├── offline-moonshine-model-config.h │ │ ├── offline-moonshine-model.h │ │ ├── offline-nemo-enc-dec-ctc-model-config.h │ │ ├── offline-nemo-enc-dec-ctc-model.h │ │ ├── offline-paraformer-decoder.h │ │ ├── offline-paraformer-greedy-search-decoder.h │ │ ├── offline-paraformer-model-config.h │ │ ├── offline-paraformer-model.h │ │ ├── offline-punctuation-ct-transformer-impl.h │ │ ├── offline-punctuation-impl.h │ │ ├── offline-punctuation-model-config.h │ │ ├── offline-punctuation.h │ │ ├── offline-recognizer-ctc-impl.h │ │ ├── offline-recognizer-impl.h │ │ ├── offline-recognizer-moonshine-impl.h │ │ ├── offline-recognizer-paraformer-impl.h │ │ ├── offline-recognizer-sense-voice-impl.h │ │ ├── offline-recognizer-transducer-impl.h │ │ ├── offline-recognizer-transducer-nemo-impl.h │ │ ├── offline-recognizer-whisper-impl.h │ │ ├── offline-recognizer.h │ │ ├── offline-rnn-lm.h │ │ ├── offline-sense-voice-model-config.h │ │ ├── offline-sense-voice-model-meta-data.h │ │ ├── offline-sense-voice-model.h │ │ ├── offline-speaker-diarization-impl.h │ │ ├── offline-speaker-diarization-pyannote-impl.h │ │ ├── offline-speaker-diarization-result.h │ │ ├── offline-speaker-diarization.h │ │ ├── offline-speaker-segmentation-model-config.h │ │ ├── offline-speaker-segmentation-pyannote-model-config.h │ │ ├── offline-speaker-segmentation-pyannote-model-meta-data.h │ │ ├── offline-speaker-segmentation-pyannote-model.h │ │ ├── offline-stream.h │ │ ├── offline-tdnn-ctc-model.h │ │ ├── offline-tdnn-model-config.h │ │ ├── offline-telespeech-ctc-model.h │ │ ├── offline-transducer-decoder.h │ │ ├── offline-transducer-greedy-search-decoder.h │ │ ├── offline-transducer-greedy-search-nemo-decoder.h │ │ ├── offline-transducer-model-config.h │ │ ├── offline-transducer-model.h │ │ ├── offline-transducer-modified-beam-search-decoder.h │ │ ├── offline-transducer-nemo-model.h │ │ ├── offline-tts-character-frontend.h │ │ ├── offline-tts-frontend.h │ │ ├── offline-tts-impl.h │ │ ├── offline-tts-model-config.h │ │ ├── offline-tts-vits-impl.h │ │ ├── offline-tts-vits-model-config.h │ │ ├── offline-tts-vits-model-metadata.h │ │ ├── offline-tts-vits-model.h │ │ ├── offline-tts.h │ │ ├── offline-websocket-server-impl.h │ │ ├── offline-wenet-ctc-model-config.h │ │ ├── offline-wenet-ctc-model.h │ │ ├── offline-whisper-decoder.h │ │ ├── offline-whisper-greedy-search-decoder.h │ │ ├── offline-whisper-model-config.h │ │ ├── offline-whisper-model.h │ │ ├── offline-zipformer-audio-tagging-model-config.h │ │ ├── offline-zipformer-audio-tagging-model.h │ │ ├── offline-zipformer-ctc-model-config.h │ │ ├── offline-zipformer-ctc-model.h │ │ ├── online-cnn-bilstm-model-meta-data.h │ │ ├── online-cnn-bilstm-model.h │ │ ├── online-conformer-transducer-model.h │ │ ├── online-ctc-decoder.h │ │ ├── online-ctc-fst-decoder-config.h │ │ ├── online-ctc-fst-decoder.h │ │ ├── online-ctc-greedy-search-decoder.h │ │ ├── online-ctc-model.h │ │ ├── online-lm-config.h │ │ ├── online-lm.h │ │ ├── online-lstm-transducer-model.h │ │ ├── online-model-config.h │ │ ├── online-nemo-ctc-model-config.h │ │ ├── online-nemo-ctc-model.h │ │ ├── online-paraformer-decoder.h │ │ ├── online-paraformer-model-config.h │ │ ├── online-paraformer-model.h │ │ ├── online-punctuation-cnn-bilstm-impl.h │ │ ├── online-punctuation-impl.h │ │ ├── online-punctuation-model-config.h │ │ ├── online-punctuation.h │ │ ├── online-recognizer-ctc-impl.h │ │ ├── online-recognizer-impl.h │ │ ├── online-recognizer-paraformer-impl.h │ │ ├── online-recognizer-transducer-impl.h │ │ ├── online-recognizer-transducer-nemo-impl.h │ │ ├── online-recognizer.h │ │ ├── online-rnn-lm.h │ │ ├── online-stream.h │ │ ├── online-transducer-decoder.h │ │ ├── online-transducer-greedy-search-decoder.h │ │ ├── online-transducer-greedy-search-nemo-decoder.h │ │ ├── online-transducer-model-config.h │ │ ├── online-transducer-model.h │ │ ├── online-transducer-modified-beam-search-decoder.h │ │ ├── online-transducer-nemo-model.h │ │ ├── online-websocket-server-impl.h │ │ ├── online-wenet-ctc-model-config.h │ │ ├── online-wenet-ctc-model.h │ │ ├── online-zipformer-transducer-model.h │ │ ├── online-zipformer2-ctc-model-config.h │ │ ├── online-zipformer2-ctc-model.h │ │ ├── online-zipformer2-transducer-model.h │ │ ├── onnx-utils.h │ │ ├── packed-sequence.h │ │ ├── pad-sequence.h │ │ ├── parse-options.h │ │ ├── piper-phonemize-lexicon.h │ │ ├── provider-config.h │ │ ├── provider.h │ │ ├── resample.h │ │ ├── session.h │ │ ├── silero-vad-model-config.h │ │ ├── silero-vad-model.h │ │ ├── slice.h │ │ ├── speaker-embedding-extractor-general-impl.h │ │ ├── speaker-embedding-extractor-impl.h │ │ ├── speaker-embedding-extractor-model-meta-data.h │ │ ├── speaker-embedding-extractor-model.h │ │ ├── speaker-embedding-extractor-nemo-impl.h │ │ ├── speaker-embedding-extractor-nemo-model-meta-data.h │ │ ├── speaker-embedding-extractor-nemo-model.h │ │ ├── speaker-embedding-extractor.h │ │ ├── speaker-embedding-manager.h │ │ ├── spoken-language-identification-impl.h │ │ ├── spoken-language-identification-whisper-impl.h │ │ ├── spoken-language-identification.h │ │ ├── stack.h │ │ ├── symbol-table.h │ │ ├── tee-stream.h │ │ ├── text-utils.h │ │ ├── transducer-keyword-decoder.h │ │ ├── transpose.h │ │ ├── unbind.h │ │ ├── utils.h │ │ ├── vad-model-config.h │ │ ├── vad-model.h │ │ ├── voice-activity-detector.h │ │ ├── wave-reader.h │ │ └── wave-writer.h │ │ ├── kaldi-decoder │ │ └── csrc │ │ │ ├── decodable-ctc.h │ │ │ ├── decodable-itf.h │ │ │ ├── eigen.h │ │ │ ├── faster-decoder.h │ │ │ ├── hash-list-inl.h │ │ │ ├── hash-list.h │ │ │ ├── kaldi-math.h │ │ │ ├── lattice-faster-decoder.h │ │ │ ├── lattice-simple-decoder.h │ │ │ ├── log.h │ │ │ ├── simple-decoder.h │ │ │ └── stl-utils.h │ │ ├── kaldifst │ │ └── csrc │ │ │ ├── basic-filebuf.h │ │ │ ├── const-integer-set-inl.h │ │ │ ├── const-integer-set.h │ │ │ ├── context-fst.h │ │ │ ├── deterministic-fst-inl.h │ │ │ ├── deterministic-fst.h │ │ │ ├── determinize-star-inl.h │ │ │ ├── determinize-star.h │ │ │ ├── fstext-utils-inl.h │ │ │ ├── fstext-utils.h │ │ │ ├── grammar-context-fst.h │ │ │ ├── io-funcs-inl.h │ │ │ ├── io-funcs.h │ │ │ ├── kaldi-fst-io-inl.h │ │ │ ├── kaldi-fst-io.h │ │ │ ├── kaldi-holder-inl.h │ │ │ ├── kaldi-holder.h │ │ │ ├── kaldi-io-inl.h │ │ │ ├── kaldi-io.h │ │ │ ├── kaldi-math.h │ │ │ ├── kaldi-pipebuf.h │ │ │ ├── kaldi-semaphore.h │ │ │ ├── kaldi-table-inl.h │ │ │ ├── kaldi-table.h │ │ │ ├── lattice-utils-inl.h │ │ │ ├── lattice-utils.h │ │ │ ├── lattice-weight.h │ │ │ ├── log.h │ │ │ ├── parse-options.h │ │ │ ├── pre-determinize-inl.h │ │ │ ├── pre-determinize.h │ │ │ ├── remove-eps-local-inl.h │ │ │ ├── remove-eps-local.h │ │ │ ├── stl-utils.h │ │ │ ├── table-matcher.h │ │ │ ├── text-normalizer.h │ │ │ └── text-utils.h │ │ ├── onnxruntime-src │ │ ├── cpu_provider_factory.h │ │ ├── onnxruntime_c_api.h │ │ ├── onnxruntime_cxx_api.h │ │ ├── onnxruntime_cxx_inline.h │ │ ├── onnxruntime_float16.h │ │ ├── onnxruntime_run_options_config_keys.h │ │ ├── onnxruntime_session_options_config_keys.h │ │ └── provider_options.h │ │ └── openfst-src │ │ └── fst │ │ ├── accumulator.h │ │ ├── add-on.h │ │ ├── arc-arena.h │ │ ├── arc-map.h │ │ ├── arc.h │ │ ├── arcfilter.h │ │ ├── arcsort.h │ │ ├── bi-table.h │ │ ├── cache.h │ │ ├── closure.h │ │ ├── compact-fst.h │ │ ├── compat.h │ │ ├── complement.h │ │ ├── compose-filter.h │ │ ├── compose.h │ │ ├── concat.h │ │ ├── config.h │ │ ├── connect.h │ │ ├── const-fst.h │ │ ├── determinize.h │ │ ├── dfs-visit.h │ │ ├── difference.h │ │ ├── disambiguate.h │ │ ├── edit-fst.h │ │ ├── encode.h │ │ ├── epsnormalize.h │ │ ├── equal.h │ │ ├── equivalent.h │ │ ├── expanded-fst.h │ │ ├── expectation-weight.h │ │ ├── extensions │ │ ├── compress │ │ │ ├── compress-script.h │ │ │ ├── compress.h │ │ │ ├── elias.h │ │ │ ├── gzfile.h │ │ │ └── randmod.h │ │ ├── far │ │ │ ├── compile-strings.h │ │ │ ├── create.h │ │ │ ├── equal.h │ │ │ ├── extract.h │ │ │ ├── far-class.h │ │ │ ├── far.h │ │ │ ├── farlib.h │ │ │ ├── farscript.h │ │ │ ├── getters.h │ │ │ ├── info.h │ │ │ ├── isomorphic.h │ │ │ ├── print-strings.h │ │ │ ├── script-impl.h │ │ │ ├── stlist.h │ │ │ └── sttable.h │ │ ├── linear │ │ │ ├── linear-fst-data-builder.h │ │ │ ├── linear-fst-data.h │ │ │ ├── linear-fst.h │ │ │ ├── linearscript.h │ │ │ ├── loglinear-apply.h │ │ │ └── trie.h │ │ ├── mpdt │ │ │ ├── compose.h │ │ │ ├── expand.h │ │ │ ├── info.h │ │ │ ├── mpdt.h │ │ │ ├── mpdtlib.h │ │ │ ├── mpdtscript.h │ │ │ ├── read_write_utils.h │ │ │ └── reverse.h │ │ ├── ngram │ │ │ ├── bitmap-index.h │ │ │ ├── ngram-fst.h │ │ │ └── nthbit.h │ │ ├── pdt │ │ │ ├── collection.h │ │ │ ├── compose.h │ │ │ ├── expand.h │ │ │ ├── getters.h │ │ │ ├── info.h │ │ │ ├── paren.h │ │ │ ├── pdt.h │ │ │ ├── pdtlib.h │ │ │ ├── pdtscript.h │ │ │ ├── replace.h │ │ │ ├── reverse.h │ │ │ └── shortest-path.h │ │ └── special │ │ │ ├── phi-fst.h │ │ │ ├── rho-fst.h │ │ │ └── sigma-fst.h │ │ ├── factor-weight.h │ │ ├── filter-state.h │ │ ├── flags.h │ │ ├── float-weight.h │ │ ├── fst-decl.h │ │ ├── fst.h │ │ ├── fstlib.h │ │ ├── generic-register.h │ │ ├── heap.h │ │ ├── icu.h │ │ ├── intersect.h │ │ ├── interval-set.h │ │ ├── invert.h │ │ ├── isomorphic.h │ │ ├── label-reachable.h │ │ ├── lexicographic-weight.h │ │ ├── lock.h │ │ ├── log.h │ │ ├── lookahead-filter.h │ │ ├── lookahead-matcher.h │ │ ├── map.h │ │ ├── mapped-file.h │ │ ├── matcher-fst.h │ │ ├── matcher.h │ │ ├── memory.h │ │ ├── minimize.h │ │ ├── mutable-fst.h │ │ ├── pair-weight.h │ │ ├── partition.h │ │ ├── power-weight.h │ │ ├── product-weight.h │ │ ├── project.h │ │ ├── properties.h │ │ ├── prune.h │ │ ├── push.h │ │ ├── queue.h │ │ ├── randequivalent.h │ │ ├── randgen.h │ │ ├── rational.h │ │ ├── register.h │ │ ├── relabel.h │ │ ├── replace-util.h │ │ ├── replace.h │ │ ├── reverse.h │ │ ├── reweight.h │ │ ├── rmepsilon.h │ │ ├── rmfinalepsilon.h │ │ ├── script │ │ ├── arc-class.h │ │ ├── arciterator-class.h │ │ ├── arcsort.h │ │ ├── arg-packs.h │ │ ├── closure.h │ │ ├── compile-impl.h │ │ ├── compile.h │ │ ├── compose.h │ │ ├── concat.h │ │ ├── connect.h │ │ ├── convert.h │ │ ├── decode.h │ │ ├── determinize.h │ │ ├── difference.h │ │ ├── disambiguate.h │ │ ├── draw-impl.h │ │ ├── draw.h │ │ ├── encode.h │ │ ├── encodemapper-class.h │ │ ├── epsnormalize.h │ │ ├── equal.h │ │ ├── equivalent.h │ │ ├── fst-class.h │ │ ├── fstscript-decl.h │ │ ├── fstscript.h │ │ ├── getters.h │ │ ├── info-impl.h │ │ ├── info.h │ │ ├── intersect.h │ │ ├── invert.h │ │ ├── isomorphic.h │ │ ├── map.h │ │ ├── minimize.h │ │ ├── print-impl.h │ │ ├── print.h │ │ ├── project.h │ │ ├── prune.h │ │ ├── push.h │ │ ├── randequivalent.h │ │ ├── randgen.h │ │ ├── register.h │ │ ├── relabel.h │ │ ├── replace.h │ │ ├── reverse.h │ │ ├── reweight.h │ │ ├── rmepsilon.h │ │ ├── script-impl.h │ │ ├── shortest-distance.h │ │ ├── shortest-path.h │ │ ├── stateiterator-class.h │ │ ├── synchronize.h │ │ ├── text-io.h │ │ ├── topsort.h │ │ ├── union.h │ │ ├── verify.h │ │ └── weight-class.h │ │ ├── set-weight.h │ │ ├── shortest-distance.h │ │ ├── shortest-path.h │ │ ├── signed-log-weight.h │ │ ├── sparse-power-weight.h │ │ ├── sparse-tuple-weight.h │ │ ├── state-map.h │ │ ├── state-reachable.h │ │ ├── state-table.h │ │ ├── statesort.h │ │ ├── string-weight.h │ │ ├── string.h │ │ ├── symbol-table-ops.h │ │ ├── symbol-table.h │ │ ├── synchronize.h │ │ ├── test-properties.h │ │ ├── topsort.h │ │ ├── tuple-weight.h │ │ ├── types.h │ │ ├── union-find.h │ │ ├── union-weight.h │ │ ├── union.h │ │ ├── util.h │ │ ├── vector-fst.h │ │ ├── verify.h │ │ ├── visit.h │ │ └── weight.h └── utils │ ├── checker.h │ ├── io.hpp │ └── logger.h ├── main ├── Kconfig ├── SConstruct └── src │ └── main.cpp ├── main_asr ├── Kconfig ├── SConstruct ├── mode_sherpa-ncnn-streaming-zipformer-20M-2023-02-17.json ├── mode_sherpa-ncnn-streaming-zipformer-zh-14M-2023-02-23.json └── src │ └── main.cpp ├── main_audio ├── Kconfig ├── SConstruct ├── audio.json └── src │ ├── main.cpp │ ├── sample_audio.c │ └── sample_audio.h ├── main_camera ├── Kconfig ├── SConstruct ├── camera.json └── src │ ├── axera_camera.c │ ├── axera_camera.h │ ├── camera.h │ ├── main.cpp │ └── v4l2_camera.c ├── main_depth_anything ├── Kconfig ├── SConstruct ├── mode_depth-anything-ax630c.json └── src │ ├── EngineWrapper.cpp │ ├── EngineWrapper.hpp │ └── main.cpp ├── main_kws ├── Kconfig ├── SConstruct ├── llm-kws_text2token.py ├── mode_sherpa-onnx-kws-zipformer-gigaspeech-3.3M-2024-01-01.json ├── mode_sherpa-onnx-kws-zipformer-wenetspeech-3.3M-2024-01-01.json ├── src │ └── main.cpp └── text2token.txt ├── main_llm ├── Kconfig ├── SConstruct ├── models │ ├── mode_deepseek-r1-1.5B-ax630c.json │ ├── mode_deepseek-r1-1.5B-p256-ax630c.json │ ├── mode_llama3.2-1B-p256-ax630c.json │ ├── mode_llama3.2-1B-prefill-ax630c.json │ ├── mode_openbuddy-llama3.2-1B-ax630c.json │ ├── mode_qwen2.5-0.5B-Int4-ax630c.json │ ├── mode_qwen2.5-0.5B-p256-ax630c.json │ ├── mode_qwen2.5-0.5B-prefill-20e.json │ ├── mode_qwen2.5-1.5B-Int4-ax630c.json │ ├── mode_qwen2.5-1.5B-ax630c.json │ ├── mode_qwen2.5-1.5B-p256-ax630c.json │ ├── mode_qwen2.5-coder-0.5B-ax630c.json │ └── mode_qwen3-0.6B-ax630c.json ├── scripts │ ├── llm-llm_tokenizer_auto.py │ ├── tokenizer_deepseek-r1-1.5B-ax630c.py │ ├── tokenizer_deepseek-r1-1.5B-p256-ax630c.py │ ├── tokenizer_llama3.2-1B-p256-ax630c.py │ ├── tokenizer_llama3.2-1B-prefill-ax630c.py │ ├── tokenizer_openbuddy-llama3.2-1B-ax630c.py │ ├── tokenizer_qwen2.5-0.5B-Int4-ax630c.py │ ├── tokenizer_qwen2.5-0.5B-p256-ax630c.py │ ├── tokenizer_qwen2.5-1.5B-Int4-ax630c.py │ ├── tokenizer_qwen2.5-1.5B-ax630c.py │ ├── tokenizer_qwen2.5-1.5B-p256-ax630c.py │ ├── tokenizer_qwen2.5-coder-0.5B-ax630c.py │ └── tokenizer_qwen3-0.6B-ax630c.py └── src │ ├── main.cpp │ └── runner │ ├── LLM.hpp │ ├── LLMEmbedSelector.hpp │ ├── LLMPostprocess.hpp │ ├── Tokenizer │ ├── QwenTokenizer.cpp │ ├── QwenTokenizer.hpp │ ├── Tokenizer.cpp │ ├── Tokenizer.hpp │ ├── base64.h │ ├── tiktoken.h │ └── unordered_dense.h │ ├── ax_model_runner │ ├── ax_model_runner.hpp │ ├── ax_model_runner_ax650.cpp │ └── ax_model_runner_ax650.hpp │ └── utils │ ├── ax_cmm_utils.hpp │ ├── bfloat16.hpp │ ├── cqdm.cpp │ ├── cqdm.h │ ├── httplib.h │ ├── json.hpp │ ├── memory_utils.cpp │ ├── memory_utils.hpp │ ├── sample_log.h │ ├── string_utility.hpp │ └── timer.hpp ├── main_melotts ├── Kconfig ├── SConstruct ├── mode_melotts-en-default.json ├── mode_melotts-en-us.json ├── mode_melotts-ja-jp.json ├── mode_melotts-zh-cn.json └── src │ ├── main.cpp │ └── runner │ ├── AudioFile.h │ ├── EngineWrapper.cpp │ ├── EngineWrapper.hpp │ ├── Lexicon.hpp │ ├── OnnxWrapper.cpp │ ├── OnnxWrapper.hpp │ ├── base64.cpp │ ├── base64.h │ └── cmdline.hpp ├── main_openai_api ├── Kconfig ├── SConstruct └── src │ └── main.cpp ├── main_skel ├── Kconfig ├── SConstruct └── src │ ├── main.c │ ├── main.cpp.bak │ └── runner │ ├── YuvHandler.c │ ├── YuvHandler.h │ ├── attrParser.cpp │ ├── attrParser.h │ ├── common_vdec_utils.c │ ├── frameMgr.cpp │ ├── frameMgr.h │ ├── picojson.h │ ├── sample_skel.c │ ├── skel_log.h │ ├── statMgr.cpp │ └── statMgr.h ├── main_sys ├── Kconfig ├── SConstruct ├── include │ ├── all.h │ ├── event_loop.h │ ├── remote_action.h │ ├── remote_server.h │ ├── serial.h │ └── zmq_bus.h ├── src │ ├── config.cpp │ ├── event_loop.cpp │ ├── main.cpp │ ├── remote_action.cpp │ ├── remote_server.cpp │ ├── serial_com.cpp │ ├── tcp_com.cpp │ └── zmq_bus.cpp └── sys_config.json ├── main_tts ├── Kconfig ├── SConstruct ├── mode_single-speaker-english-fast.json ├── mode_single-speaker-fast.json └── src │ ├── main.cpp │ └── runner │ ├── eigen-3.4.0 │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .gitlab │ │ ├── issue_templates │ │ │ ├── Bug Report.md │ │ │ └── Feature Request.md │ │ └── merge_request_templates │ │ │ └── Merge Request Template.md │ ├── .hgeol │ ├── CMakeLists.txt │ ├── COPYING.APACHE │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── 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 │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ ├── MatrixProductMMA.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 │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SVE │ │ │ │ │ ├── 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_SIMD.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 │ │ │ │ └── InverseSize4.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 │ ├── INSTALL │ ├── README.md │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_move_semantics.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark-blocking-sizes.cpp │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ ├── changesets.txt │ │ │ ├── gemm.cpp │ │ │ ├── gemm_common.h │ │ │ ├── gemm_settings.txt │ │ │ ├── gemm_square_settings.txt │ │ │ ├── gemv.cpp │ │ │ ├── gemv_common.h │ │ │ ├── gemv_settings.txt │ │ │ ├── gemv_square_settings.txt │ │ │ ├── gemvt.cpp │ │ │ ├── lazy_gemm.cpp │ │ │ ├── lazy_gemm_settings.txt │ │ │ ├── llt.cpp │ │ │ ├── make_plot.sh │ │ │ ├── resources │ │ │ │ ├── chart_footer.html │ │ │ │ ├── chart_header.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── s1.js │ │ │ │ └── s2.js │ │ │ ├── run.sh │ │ │ ├── runall.sh │ │ │ ├── trmv_lo.cpp │ │ │ ├── trmv_lot.cpp │ │ │ ├── trmv_up.cpp │ │ │ └── trmv_upt.cpp │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── eigen_sycl_bench.sh │ │ │ ├── eigen_sycl_bench_contract.sh │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ ├── tensor_benchmarks_sycl.cc │ │ │ └── tensor_contract_sycl_bench.cc │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.f │ │ ├── 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 │ │ ├── single.cpp │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ └── xerbla.cpp │ ├── ci │ │ ├── CTest2JUnit.xsl │ │ ├── README.md │ │ ├── build.gitlab-ci.yml │ │ ├── smoketests.gitlab-ci.yml │ │ └── test.gitlab-ci.yml │ ├── cmake │ │ ├── ComputeCppCompilerChecks.cmake │ │ ├── ComputeCppIRMap.cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenSmokeTestList.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindBLASEXT.cmake │ │ ├── FindCHOLMOD.cmake │ │ ├── FindComputeCpp.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindHWLOC.cmake │ │ ├── FindKLU.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMPREAL.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPASTIX.cmake │ │ ├── FindPTSCOTCH.cmake │ │ ├── FindSCOTCH.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindTriSYCL.cmake │ │ ├── FindUMFPACK.cmake │ │ ├── RegexUtils.cmake │ │ └── UseEigen3.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicCMakeGuide.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialReshape.dox │ │ ├── TutorialSTL.dox │ │ ├── TutorialSlicingIndexing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedReshaped.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_Reshaped.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── ftv2node.png │ │ ├── ftv2pnode.png │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ │ ├── Array_variadic_ctor_cxx11.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_rint.cpp │ │ │ ├── Cwise_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ ├── DenseBase_LinSpaced_seq_deprecated.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_colwise_iterator_cxx11.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseArg.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reshaped_auto.cpp │ │ │ ├── MatrixBase_reshaped_fixed.cpp │ │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ │ ├── MatrixBase_reshaped_to_vector.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_Map_stride.cpp │ │ │ ├── Matrix_initializer_list_23_cxx11.cpp │ │ │ ├── Matrix_initializer_list_vector_cxx11.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── Matrix_variadic_ctor_cxx11.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── Slicing_arrayexpr.cpp │ │ │ ├── Slicing_custom_padding_cxx11.cpp │ │ │ ├── Slicing_rawarray_cxx11.cpp │ │ │ ├── Slicing_stdvector_cxx11.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_range_for_loop_1d_cxx11.cpp │ │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_1.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_2.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── Tutorial_std_sort.cpp │ │ │ ├── Tutorial_std_sort_rows_cxx11.cpp │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── initializer_list_1.cpp │ │ ├── initializer_list_2.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── svd.cpp │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── eigen_gen_split_test_help.cmake │ │ ├── eigen_monitor_perf.sh │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── AnnoyingScalar.h │ │ ├── CMakeLists.txt │ │ ├── MovableScalar.h │ │ ├── SafeScalar.h │ │ ├── adjoint.cpp │ │ ├── array_cwise.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bfloat16_float.cpp │ │ ├── bicgstab.cpp │ │ ├── blasutil.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── constructor.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonal_matrix_variadic_ctor.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── gpu_basic.cu │ │ ├── gpu_common.h │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── indexed_view.cpp │ │ ├── initializer_list_construction.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── io.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── klu_support.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nestbyvalue.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── num_dimensions.cpp │ │ ├── numext.cpp │ │ ├── packetmath.cpp │ │ ├── packetmath_test_shared.h │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── rand.cpp │ │ ├── random_without_cast_overflow.h │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── reshape.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── solverbase.h │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── split_test_helper.h │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── stl_iterators.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── symbolic_index.cpp │ │ ├── triangular.cpp │ │ ├── type_alias.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── 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 │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IDRS.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── 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 │ │ │ │ ├── AVX │ │ │ │ ├── BesselFunctions.h │ │ │ │ └── SpecialFunctions.h │ │ │ │ ├── AVX512 │ │ │ │ ├── BesselFunctions.h │ │ │ │ └── SpecialFunctions.h │ │ │ │ ├── GPU │ │ │ │ └── SpecialFunctions.h │ │ │ │ └── NEON │ │ │ │ ├── BesselFunctions.h │ │ │ │ └── SpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── SYCL.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ ├── PolynomialUtils1.cpp │ │ │ └── SYCL │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── CwiseMul.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── bessel_functions.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_maxsizevector.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_gpu.cu │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_block_access.cpp │ │ ├── cxx11_tensor_block_eval.cpp │ │ ├── cxx11_tensor_block_io.cpp │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ ├── cxx11_tensor_cast_float16_gpu.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ │ ├── cxx11_tensor_complex_gpu.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_gpu.cu │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_device_sycl.cpp │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_executor.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_generator_sycl.cpp │ │ ├── cxx11_tensor_gpu.cu │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_op_sycl.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_math_sycl.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ ├── cxx11_tensor_move.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_gpu.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_gpu.cu │ │ ├── cxx11_tensor_random_sycl.cpp │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_gpu.cu │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_gpu.cu │ │ ├── cxx11_tensor_scan_sycl.cpp │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_sycl.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_local.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_trace.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── idrs.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── special_functions.cpp │ │ ├── special_packetmath.cpp │ │ └── splines.cpp │ ├── include │ ├── SynthesizerTrn.h │ ├── tts_file_io.h │ ├── tts_logger.h │ └── utils.h │ └── src │ ├── engipa │ ├── EnglishText2Id.cpp │ ├── InitIPASymbols.cpp │ ├── InitIPASymbols.h │ ├── alphabet.cpp │ └── ipa.cpp │ ├── header │ ├── ConvFlow.h │ ├── DDSConv.h │ ├── DurationPredictor_base.h │ ├── ElementwiseAffine.h │ ├── EnglishText2Id.h │ ├── FixDurationPredictor.h │ ├── Generator_Istft.h │ ├── Generator_MBB.h │ ├── Generator_MS.h │ ├── Generator_base.h │ ├── Generator_hifigan.h │ ├── Hanz2Piny.h │ ├── ResBlock1.h │ ├── ResidualCouplingBlock.h │ ├── ResidualCouplingLayer.h │ ├── StochasticDurationPredictor.h │ ├── TextEncoder.h │ ├── WN.h │ ├── attention_encoder.h │ ├── cppjieba │ │ ├── DictTrie.hpp │ │ ├── FullSegment.hpp │ │ ├── HMMModel.hpp │ │ ├── HMMSegment.hpp │ │ ├── Jieba.hpp │ │ ├── KeywordExtractor.hpp │ │ ├── MPSegment.hpp │ │ ├── MixSegment.hpp │ │ ├── PosTagger.hpp │ │ ├── PreFilter.hpp │ │ ├── QuerySegment.hpp │ │ ├── SegmentBase.hpp │ │ ├── SegmentTagged.hpp │ │ ├── TextRankExtractor.hpp │ │ ├── Trie.hpp │ │ └── Unicode.hpp │ ├── ffn.h │ ├── hanzi2phoneid.h │ ├── iStft.h │ ├── limonp │ │ ├── ArgvContext.hpp │ │ ├── BlockingQueue.hpp │ │ ├── BoundedBlockingQueue.hpp │ │ ├── BoundedQueue.hpp │ │ ├── Closure.hpp │ │ ├── Colors.hpp │ │ ├── Condition.hpp │ │ ├── Config.hpp │ │ ├── FileLock.hpp │ │ ├── ForcePublic.hpp │ │ ├── LocalVector.hpp │ │ ├── Logging.hpp │ │ ├── Md5.hpp │ │ ├── MutexLock.hpp │ │ ├── NonCopyable.hpp │ │ ├── StdExtension.hpp │ │ ├── StringUtil.hpp │ │ ├── Thread.hpp │ │ └── ThreadPool.hpp │ ├── multi_head_attention.h │ ├── nn_clamp_min.h │ ├── nn_conv1d.h │ ├── nn_conv1d_transposed.h │ ├── nn_cumsum.h │ ├── nn_flip.h │ ├── nn_gelu.h │ ├── nn_layer_norm.h │ ├── nn_leaky_relu.h │ ├── nn_relu.h │ ├── nn_sigmoid.h │ ├── nn_softmax.h │ ├── nn_softplus.h │ ├── nn_tanh.h │ ├── pinyinmap.h │ ├── pqmf.h │ └── random_gen.h │ ├── hz2py │ ├── Hanz2Piny.cpp │ ├── hanzi2phoneid.cpp │ ├── pinyinmap.cpp │ └── utf8 │ │ ├── utf8.h │ │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ └── unchecked.h │ ├── models │ ├── DurationPredictor_base.cpp │ ├── FixDurationPredictor.cpp │ ├── Generator_Istft.cpp │ ├── Generator_MBB.cpp │ ├── Generator_MS.cpp │ ├── Generator_base.cpp │ ├── Generator_hifigan.cpp │ ├── ResidualCouplingBlock.cpp │ ├── StochasticDurationPredictor.cpp │ ├── SynthesizerTrn.cpp │ └── TextEncoder.cpp │ ├── modules │ ├── ConvFlow.cpp │ ├── DDSConv.cpp │ ├── ElementwiseAffine.cpp │ ├── ResBlock1.cpp │ ├── ResidualCouplingLayer.cpp │ ├── WN.cpp │ ├── attention_encoder.cpp │ ├── ffn.cpp │ ├── hann.cpp │ ├── iStft.cpp │ ├── multi_head_attention.cpp │ ├── pqmf.cpp │ └── random_gen.cpp │ ├── nn_op │ ├── nn_clamp_min.cpp │ ├── nn_conv1d.cpp │ ├── nn_conv1d_transposed.cpp │ ├── nn_cumsum.cpp │ ├── nn_flip.cpp │ ├── nn_gelu.cpp │ ├── nn_layer_norm.cpp │ ├── nn_leaky_relu.cpp │ ├── nn_relu.cpp │ ├── nn_sigmoid.cpp │ ├── nn_softmax.cpp │ ├── nn_softplus.cpp │ └── nn_tanh.cpp │ ├── platform │ ├── tts_file_io.cpp │ └── tts_logger.cpp │ ├── tn │ ├── gflags │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── AUTHORS.txt │ │ ├── COPYING.txt │ │ ├── ChangeLog.txt │ │ └── src │ │ │ ├── config.h │ │ │ ├── defines.h.in │ │ │ ├── gflags.cc │ │ │ ├── gflags.h.in │ │ │ ├── gflags_completions.cc │ │ │ ├── gflags_completions.h.in │ │ │ ├── gflags_completions.sh │ │ │ ├── gflags_declare.h.in │ │ │ ├── gflags_ns.h.in │ │ │ ├── gflags_reporting.cc │ │ │ ├── mutex.h │ │ │ ├── util.h │ │ │ ├── windows_port.cc │ │ │ └── windows_port.h │ ├── glog │ │ ├── .bazelci │ │ │ └── presubmit.yml │ │ ├── .gitignore │ │ ├── .travis.ubuntu.sh │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ └── src │ │ │ ├── base │ │ │ ├── commandlineflags.h │ │ │ ├── googleinit.h │ │ │ └── mutex.h │ │ │ ├── config.h.cmake.in │ │ │ ├── config_for_unittests.h │ │ │ ├── demangle.cc │ │ │ ├── demangle.h │ │ │ ├── demangle_unittest.cc │ │ │ ├── demangle_unittest.sh │ │ │ ├── demangle_unittest.txt │ │ │ ├── glog │ │ │ ├── log_severity.h │ │ │ ├── logging.h.in │ │ │ ├── raw_logging.h.in │ │ │ ├── stl_logging.h.in │ │ │ └── vlog_is_on.h.in │ │ │ ├── googletest.h │ │ │ ├── logging.cc │ │ │ ├── logging_striplog_test.sh │ │ │ ├── logging_striptest10.cc │ │ │ ├── logging_striptest2.cc │ │ │ ├── logging_striptest_main.cc │ │ │ ├── logging_unittest.cc │ │ │ ├── logging_unittest.err │ │ │ ├── mock-log.h │ │ │ ├── mock-log_test.cc │ │ │ ├── raw_logging.cc │ │ │ ├── signalhandler.cc │ │ │ ├── signalhandler_unittest.cc │ │ │ ├── signalhandler_unittest.sh │ │ │ ├── stacktrace.h │ │ │ ├── stacktrace_generic-inl.h │ │ │ ├── stacktrace_libunwind-inl.h │ │ │ ├── stacktrace_powerpc-inl.h │ │ │ ├── stacktrace_unittest.cc │ │ │ ├── stacktrace_windows-inl.h │ │ │ ├── stacktrace_x86-inl.h │ │ │ ├── stacktrace_x86_64-inl.h │ │ │ ├── stl_logging_unittest.cc │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_unittest.cc │ │ │ ├── utilities.cc │ │ │ ├── utilities.h │ │ │ ├── utilities_unittest.cc │ │ │ ├── vlog_is_on.cc │ │ │ └── windows │ │ │ ├── glog │ │ │ ├── log_severity.h │ │ │ ├── logging.h │ │ │ ├── raw_logging.h │ │ │ ├── stl_logging.h │ │ │ └── vlog_is_on.h │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ └── preprocess.sh │ ├── header │ │ ├── fst │ │ │ ├── accumulator.h │ │ │ ├── add-on.h │ │ │ ├── arc-arena.h │ │ │ ├── arc-map.h │ │ │ ├── arc.h │ │ │ ├── arcfilter.h │ │ │ ├── arcsort.h │ │ │ ├── bi-table.h │ │ │ ├── cache.h │ │ │ ├── closure.h │ │ │ ├── compact-fst.h │ │ │ ├── compat.h │ │ │ ├── complement.h │ │ │ ├── compose-filter.h │ │ │ ├── compose.h │ │ │ ├── concat.h │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── connect.h │ │ │ ├── const-fst.h │ │ │ ├── determinize.h │ │ │ ├── dfs-visit.h │ │ │ ├── difference.h │ │ │ ├── disambiguate.h │ │ │ ├── edit-fst.h │ │ │ ├── encode.h │ │ │ ├── epsnormalize.h │ │ │ ├── equal.h │ │ │ ├── equivalent.h │ │ │ ├── expanded-fst.h │ │ │ ├── expectation-weight.h │ │ │ ├── extensions │ │ │ │ ├── compress │ │ │ │ │ ├── compress-script.h │ │ │ │ │ ├── compress.h │ │ │ │ │ ├── elias.h │ │ │ │ │ ├── gzfile.h │ │ │ │ │ └── randmod.h │ │ │ │ ├── far │ │ │ │ │ ├── compile-strings.h │ │ │ │ │ ├── create.h │ │ │ │ │ ├── equal.h │ │ │ │ │ ├── extract.h │ │ │ │ │ ├── far-class.h │ │ │ │ │ ├── far.h │ │ │ │ │ ├── farlib.h │ │ │ │ │ ├── farscript.h │ │ │ │ │ ├── getters.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── isomorphic.h │ │ │ │ │ ├── print-strings.h │ │ │ │ │ ├── script-impl.h │ │ │ │ │ ├── stlist.h │ │ │ │ │ └── sttable.h │ │ │ │ ├── linear │ │ │ │ │ ├── linear-fst-data-builder.h │ │ │ │ │ ├── linear-fst-data.h │ │ │ │ │ ├── linear-fst.h │ │ │ │ │ ├── linearscript.h │ │ │ │ │ ├── loglinear-apply.h │ │ │ │ │ └── trie.h │ │ │ │ ├── mpdt │ │ │ │ │ ├── compose.h │ │ │ │ │ ├── expand.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── mpdt.h │ │ │ │ │ ├── mpdtlib.h │ │ │ │ │ ├── mpdtscript.h │ │ │ │ │ ├── read_write_utils.h │ │ │ │ │ └── reverse.h │ │ │ │ ├── ngram │ │ │ │ │ ├── bitmap-index.h │ │ │ │ │ ├── ngram-fst.h │ │ │ │ │ └── nthbit.h │ │ │ │ ├── pdt │ │ │ │ │ ├── collection.h │ │ │ │ │ ├── compose.h │ │ │ │ │ ├── expand.h │ │ │ │ │ ├── getters.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── paren.h │ │ │ │ │ ├── pdt.h │ │ │ │ │ ├── pdtlib.h │ │ │ │ │ ├── pdtscript.h │ │ │ │ │ ├── replace.h │ │ │ │ │ ├── reverse.h │ │ │ │ │ └── shortest-path.h │ │ │ │ └── special │ │ │ │ │ ├── phi-fst.h │ │ │ │ │ ├── rho-fst.h │ │ │ │ │ └── sigma-fst.h │ │ │ ├── factor-weight.h │ │ │ ├── filter-state.h │ │ │ ├── flags.h │ │ │ ├── float-weight.h │ │ │ ├── fst-decl.h │ │ │ ├── fst.h │ │ │ ├── fstlib.h │ │ │ ├── generic-register.h │ │ │ ├── heap.h │ │ │ ├── icu.h │ │ │ ├── intersect.h │ │ │ ├── interval-set.h │ │ │ ├── invert.h │ │ │ ├── isomorphic.h │ │ │ ├── label-reachable.h │ │ │ ├── lexicographic-weight.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── lookahead-filter.h │ │ │ ├── lookahead-matcher.h │ │ │ ├── map.h │ │ │ ├── mapped-file.h │ │ │ ├── matcher-fst.h │ │ │ ├── matcher.h │ │ │ ├── memory.h │ │ │ ├── minimize.h │ │ │ ├── mutable-fst.h │ │ │ ├── pair-weight.h │ │ │ ├── partition.h │ │ │ ├── power-weight.h │ │ │ ├── product-weight.h │ │ │ ├── project.h │ │ │ ├── properties.h │ │ │ ├── prune.h │ │ │ ├── push.h │ │ │ ├── queue.h │ │ │ ├── randequivalent.h │ │ │ ├── randgen.h │ │ │ ├── rational.h │ │ │ ├── register.h │ │ │ ├── relabel.h │ │ │ ├── replace-util.h │ │ │ ├── replace.h │ │ │ ├── reverse.h │ │ │ ├── reweight.h │ │ │ ├── rmepsilon.h │ │ │ ├── rmfinalepsilon.h │ │ │ ├── script │ │ │ │ ├── arc-class.h │ │ │ │ ├── arciterator-class.h │ │ │ │ ├── arcsort.h │ │ │ │ ├── arg-packs.h │ │ │ │ ├── closure.h │ │ │ │ ├── compile-impl.h │ │ │ │ ├── compile.h │ │ │ │ ├── compose.h │ │ │ │ ├── concat.h │ │ │ │ ├── connect.h │ │ │ │ ├── convert.h │ │ │ │ ├── decode.h │ │ │ │ ├── determinize.h │ │ │ │ ├── difference.h │ │ │ │ ├── disambiguate.h │ │ │ │ ├── draw-impl.h │ │ │ │ ├── draw.h │ │ │ │ ├── encode.h │ │ │ │ ├── encodemapper-class.h │ │ │ │ ├── epsnormalize.h │ │ │ │ ├── equal.h │ │ │ │ ├── equivalent.h │ │ │ │ ├── fst-class.h │ │ │ │ ├── fstscript-decl.h │ │ │ │ ├── fstscript.h │ │ │ │ ├── getters.h │ │ │ │ ├── info-impl.h │ │ │ │ ├── info.h │ │ │ │ ├── intersect.h │ │ │ │ ├── invert.h │ │ │ │ ├── isomorphic.h │ │ │ │ ├── map.h │ │ │ │ ├── minimize.h │ │ │ │ ├── print-impl.h │ │ │ │ ├── print.h │ │ │ │ ├── project.h │ │ │ │ ├── prune.h │ │ │ │ ├── push.h │ │ │ │ ├── randequivalent.h │ │ │ │ ├── randgen.h │ │ │ │ ├── register.h │ │ │ │ ├── relabel.h │ │ │ │ ├── replace.h │ │ │ │ ├── reverse.h │ │ │ │ ├── reweight.h │ │ │ │ ├── rmepsilon.h │ │ │ │ ├── script-impl.h │ │ │ │ ├── shortest-distance.h │ │ │ │ ├── shortest-path.h │ │ │ │ ├── stateiterator-class.h │ │ │ │ ├── synchronize.h │ │ │ │ ├── text-io.h │ │ │ │ ├── topsort.h │ │ │ │ ├── union.h │ │ │ │ ├── verify.h │ │ │ │ └── weight-class.h │ │ │ ├── set-weight.h │ │ │ ├── shortest-distance.h │ │ │ ├── shortest-path.h │ │ │ ├── signed-log-weight.h │ │ │ ├── sparse-power-weight.h │ │ │ ├── sparse-tuple-weight.h │ │ │ ├── state-map.h │ │ │ ├── state-reachable.h │ │ │ ├── state-table.h │ │ │ ├── statesort.h │ │ │ ├── string-weight.h │ │ │ ├── string.h │ │ │ ├── symbol-table-ops.h │ │ │ ├── symbol-table.h │ │ │ ├── synchronize.h │ │ │ ├── test-properties.h │ │ │ ├── test │ │ │ │ ├── algo_test.h │ │ │ │ ├── fst_test.h │ │ │ │ ├── rand-fst.h │ │ │ │ └── weight-tester.h │ │ │ ├── topsort.h │ │ │ ├── tuple-weight.h │ │ │ ├── types.h │ │ │ ├── union-find.h │ │ │ ├── union-weight.h │ │ │ ├── union.h │ │ │ ├── util.h │ │ │ ├── vector-fst.h │ │ │ ├── verify.h │ │ │ ├── visit.h │ │ │ └── weight.h │ │ ├── gflags │ │ │ ├── defines.h │ │ │ ├── gflags.h │ │ │ ├── gflags_completions.h │ │ │ └── gflags_declare.h │ │ ├── glog │ │ │ ├── config.h │ │ │ ├── log_severity.h │ │ │ ├── logging.h │ │ │ ├── raw_logging.h │ │ │ ├── stl_logging.h │ │ │ └── vlog_is_on.h │ │ ├── processor │ │ │ ├── processor.h │ │ │ ├── token_parser.h │ │ │ └── utf8_string.h │ │ └── utils │ │ │ ├── flags.h │ │ │ ├── log.h │ │ │ └── utf8_string.h │ ├── openfst │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bin │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bin.vcxproj │ │ │ ├── fstarcsort-main.cc │ │ │ ├── fstarcsort.cc │ │ │ ├── fstclosure-main.cc │ │ │ ├── fstclosure.cc │ │ │ ├── fstcompile-main.cc │ │ │ ├── fstcompile.cc │ │ │ ├── fstcompose-main.cc │ │ │ ├── fstcompose.cc │ │ │ ├── fstconcat-main.cc │ │ │ ├── fstconcat.cc │ │ │ ├── fstconnect-main.cc │ │ │ ├── fstconnect.cc │ │ │ ├── fstconvert-main.cc │ │ │ ├── fstconvert.cc │ │ │ ├── fstdeterminize-main.cc │ │ │ ├── fstdeterminize.cc │ │ │ ├── fstdifference-main.cc │ │ │ ├── fstdifference.cc │ │ │ ├── fstdisambiguate-main.cc │ │ │ ├── fstdisambiguate.cc │ │ │ ├── fstdraw-main.cc │ │ │ ├── fstdraw.cc │ │ │ ├── fstencode-main.cc │ │ │ ├── fstencode.cc │ │ │ ├── fstepsnormalize-main.cc │ │ │ ├── fstepsnormalize.cc │ │ │ ├── fstequal-main.cc │ │ │ ├── fstequal.cc │ │ │ ├── fstequivalent-main.cc │ │ │ ├── fstequivalent.cc │ │ │ ├── fstinfo-main.cc │ │ │ ├── fstinfo.cc │ │ │ ├── fstintersect-main.cc │ │ │ ├── fstintersect.cc │ │ │ ├── fstinvert-main.cc │ │ │ ├── fstinvert.cc │ │ │ ├── fstisomorphic-main.cc │ │ │ ├── fstisomorphic.cc │ │ │ ├── fstmap-main.cc │ │ │ ├── fstmap.cc │ │ │ ├── fstminimize-main.cc │ │ │ ├── fstminimize.cc │ │ │ ├── fstprint-main.cc │ │ │ ├── fstprint.cc │ │ │ ├── fstproject-main.cc │ │ │ ├── fstproject.cc │ │ │ ├── fstprune-main.cc │ │ │ ├── fstprune.cc │ │ │ ├── fstpush-main.cc │ │ │ ├── fstpush.cc │ │ │ ├── fstrandgen-main.cc │ │ │ ├── fstrandgen.cc │ │ │ ├── fstrelabel-main.cc │ │ │ ├── fstrelabel.cc │ │ │ ├── fstreplace-main.cc │ │ │ ├── fstreplace.cc │ │ │ ├── fstreverse-main.cc │ │ │ ├── fstreverse.cc │ │ │ ├── fstreweight-main.cc │ │ │ ├── fstreweight.cc │ │ │ ├── fstrmepsilon-main.cc │ │ │ ├── fstrmepsilon.cc │ │ │ ├── fstshortestdistance-main.cc │ │ │ ├── fstshortestdistance.cc │ │ │ ├── fstshortestpath-main.cc │ │ │ ├── fstshortestpath.cc │ │ │ ├── fstsymbols-main.cc │ │ │ ├── fstsymbols.cc │ │ │ ├── fstsynchronize-main.cc │ │ │ ├── fstsynchronize.cc │ │ │ ├── fsttopsort-main.cc │ │ │ ├── fsttopsort.cc │ │ │ ├── fstunion-main.cc │ │ │ └── fstunion.cc │ │ │ ├── extensions │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── compact │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── compact16_acceptor-fst.cc │ │ │ │ ├── compact16_string-fst.cc │ │ │ │ ├── compact16_unweighted-fst.cc │ │ │ │ ├── compact16_unweighted_acceptor-fst.cc │ │ │ │ ├── compact16_weighted_string-fst.cc │ │ │ │ ├── compact64_acceptor-fst.cc │ │ │ │ ├── compact64_string-fst.cc │ │ │ │ ├── compact64_unweighted-fst.cc │ │ │ │ ├── compact64_unweighted_acceptor-fst.cc │ │ │ │ ├── compact64_weighted_string-fst.cc │ │ │ │ ├── compact8_acceptor-fst.cc │ │ │ │ ├── compact8_string-fst.cc │ │ │ │ ├── compact8_unweighted-fst.cc │ │ │ │ ├── compact8_unweighted_acceptor-fst.cc │ │ │ │ └── compact8_weighted_string-fst.cc │ │ │ ├── compress │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── compress-script.cc │ │ │ │ ├── fstcompress.cc │ │ │ │ └── fstrandmod.cc │ │ │ ├── const │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── const16-fst.cc │ │ │ │ ├── const64-fst.cc │ │ │ │ └── const8-fst.cc │ │ │ ├── far │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── far-class.cc │ │ │ │ ├── farcompilestrings.cc │ │ │ │ ├── farcreate.cc │ │ │ │ ├── farequal.cc │ │ │ │ ├── farextract.cc │ │ │ │ ├── farinfo.cc │ │ │ │ ├── farisomorphic.cc │ │ │ │ ├── farprintstrings.cc │ │ │ │ ├── farscript.cc │ │ │ │ ├── getters.cc │ │ │ │ ├── script-impl.cc │ │ │ │ ├── stlist.cc │ │ │ │ ├── strings.cc │ │ │ │ └── sttable.cc │ │ │ ├── linear │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fstlinear.cc │ │ │ │ ├── fstloglinearapply.cc │ │ │ │ ├── linear-classifier-fst.cc │ │ │ │ ├── linear-tagger-fst.cc │ │ │ │ └── linearscript.cc │ │ │ ├── lookahead │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── arc_lookahead-fst.cc │ │ │ │ ├── ilabel_lookahead-fst.cc │ │ │ │ └── olabel_lookahead-fst.cc │ │ │ ├── mpdt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── mpdtcompose.cc │ │ │ │ ├── mpdtexpand.cc │ │ │ │ ├── mpdtinfo.cc │ │ │ │ ├── mpdtreverse.cc │ │ │ │ └── mpdtscript.cc │ │ │ ├── ngram │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bitmap-index.cc │ │ │ │ ├── ngram-fst.cc │ │ │ │ └── nthbit.cc │ │ │ ├── pdt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── getters.cc │ │ │ │ ├── pdtcompose.cc │ │ │ │ ├── pdtexpand.cc │ │ │ │ ├── pdtinfo.cc │ │ │ │ ├── pdtreplace.cc │ │ │ │ ├── pdtreverse.cc │ │ │ │ ├── pdtscript.cc │ │ │ │ └── pdtshortestpath.cc │ │ │ ├── python │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── basictypes.pxd │ │ │ │ ├── fst.pxd │ │ │ │ ├── ios.pxd │ │ │ │ ├── memory.pxd │ │ │ │ ├── pywrapfst.cc │ │ │ │ ├── pywrapfst.pxd │ │ │ │ └── pywrapfst.pyx │ │ │ └── special │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fstspecial.cc │ │ │ │ ├── phi-fst.cc │ │ │ │ ├── rho-fst.cc │ │ │ │ └── sigma-fst.cc │ │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── fst │ │ │ │ ├── accumulator.h │ │ │ │ ├── add-on.h │ │ │ │ ├── arc-arena.h │ │ │ │ ├── arc-map.h │ │ │ │ ├── arc.h │ │ │ │ ├── arcfilter.h │ │ │ │ ├── arcsort.h │ │ │ │ ├── bi-table.h │ │ │ │ ├── cache.h │ │ │ │ ├── closure.h │ │ │ │ ├── compact-fst.h │ │ │ │ ├── compat.h │ │ │ │ ├── complement.h │ │ │ │ ├── compose-filter.h │ │ │ │ ├── compose.h │ │ │ │ ├── concat.h │ │ │ │ ├── config.h │ │ │ │ ├── config.h.in │ │ │ │ ├── connect.h │ │ │ │ ├── const-fst.h │ │ │ │ ├── determinize.h │ │ │ │ ├── dfs-visit.h │ │ │ │ ├── difference.h │ │ │ │ ├── disambiguate.h │ │ │ │ ├── edit-fst.h │ │ │ │ ├── encode.h │ │ │ │ ├── epsnormalize.h │ │ │ │ ├── equal.h │ │ │ │ ├── equivalent.h │ │ │ │ ├── expanded-fst.h │ │ │ │ ├── expectation-weight.h │ │ │ │ ├── extensions │ │ │ │ ├── compress │ │ │ │ │ ├── compress-script.h │ │ │ │ │ ├── compress.h │ │ │ │ │ ├── elias.h │ │ │ │ │ ├── gzfile.h │ │ │ │ │ └── randmod.h │ │ │ │ ├── far │ │ │ │ │ ├── compile-strings.h │ │ │ │ │ ├── create.h │ │ │ │ │ ├── equal.h │ │ │ │ │ ├── extract.h │ │ │ │ │ ├── far-class.h │ │ │ │ │ ├── far.h │ │ │ │ │ ├── farlib.h │ │ │ │ │ ├── farscript.h │ │ │ │ │ ├── getters.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── isomorphic.h │ │ │ │ │ ├── print-strings.h │ │ │ │ │ ├── script-impl.h │ │ │ │ │ ├── stlist.h │ │ │ │ │ └── sttable.h │ │ │ │ ├── linear │ │ │ │ │ ├── linear-fst-data-builder.h │ │ │ │ │ ├── linear-fst-data.h │ │ │ │ │ ├── linear-fst.h │ │ │ │ │ ├── linearscript.h │ │ │ │ │ ├── loglinear-apply.h │ │ │ │ │ └── trie.h │ │ │ │ ├── mpdt │ │ │ │ │ ├── compose.h │ │ │ │ │ ├── expand.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── mpdt.h │ │ │ │ │ ├── mpdtlib.h │ │ │ │ │ ├── mpdtscript.h │ │ │ │ │ ├── read_write_utils.h │ │ │ │ │ └── reverse.h │ │ │ │ ├── ngram │ │ │ │ │ ├── bitmap-index.h │ │ │ │ │ ├── ngram-fst.h │ │ │ │ │ └── nthbit.h │ │ │ │ ├── pdt │ │ │ │ │ ├── collection.h │ │ │ │ │ ├── compose.h │ │ │ │ │ ├── expand.h │ │ │ │ │ ├── getters.h │ │ │ │ │ ├── info.h │ │ │ │ │ ├── paren.h │ │ │ │ │ ├── pdt.h │ │ │ │ │ ├── pdtlib.h │ │ │ │ │ ├── pdtscript.h │ │ │ │ │ ├── replace.h │ │ │ │ │ ├── reverse.h │ │ │ │ │ └── shortest-path.h │ │ │ │ └── special │ │ │ │ │ ├── phi-fst.h │ │ │ │ │ ├── rho-fst.h │ │ │ │ │ └── sigma-fst.h │ │ │ │ ├── factor-weight.h │ │ │ │ ├── filter-state.h │ │ │ │ ├── flags.h │ │ │ │ ├── float-weight.h │ │ │ │ ├── fst-decl.h │ │ │ │ ├── fst.h │ │ │ │ ├── fstlib.h │ │ │ │ ├── generic-register.h │ │ │ │ ├── heap.h │ │ │ │ ├── icu.h │ │ │ │ ├── intersect.h │ │ │ │ ├── interval-set.h │ │ │ │ ├── invert.h │ │ │ │ ├── isomorphic.h │ │ │ │ ├── label-reachable.h │ │ │ │ ├── lexicographic-weight.h │ │ │ │ ├── lock.h │ │ │ │ ├── log.h │ │ │ │ ├── lookahead-filter.h │ │ │ │ ├── lookahead-matcher.h │ │ │ │ ├── map.h │ │ │ │ ├── mapped-file.h │ │ │ │ ├── matcher-fst.h │ │ │ │ ├── matcher.h │ │ │ │ ├── memory.h │ │ │ │ ├── minimize.h │ │ │ │ ├── mutable-fst.h │ │ │ │ ├── pair-weight.h │ │ │ │ ├── partition.h │ │ │ │ ├── power-weight.h │ │ │ │ ├── product-weight.h │ │ │ │ ├── project.h │ │ │ │ ├── properties.h │ │ │ │ ├── prune.h │ │ │ │ ├── push.h │ │ │ │ ├── queue.h │ │ │ │ ├── randequivalent.h │ │ │ │ ├── randgen.h │ │ │ │ ├── rational.h │ │ │ │ ├── register.h │ │ │ │ ├── relabel.h │ │ │ │ ├── replace-util.h │ │ │ │ ├── replace.h │ │ │ │ ├── reverse.h │ │ │ │ ├── reweight.h │ │ │ │ ├── rmepsilon.h │ │ │ │ ├── rmfinalepsilon.h │ │ │ │ ├── script │ │ │ │ ├── arc-class.h │ │ │ │ ├── arciterator-class.h │ │ │ │ ├── arcsort.h │ │ │ │ ├── arg-packs.h │ │ │ │ ├── closure.h │ │ │ │ ├── compile-impl.h │ │ │ │ ├── compile.h │ │ │ │ ├── compose.h │ │ │ │ ├── concat.h │ │ │ │ ├── connect.h │ │ │ │ ├── convert.h │ │ │ │ ├── decode.h │ │ │ │ ├── determinize.h │ │ │ │ ├── difference.h │ │ │ │ ├── disambiguate.h │ │ │ │ ├── draw-impl.h │ │ │ │ ├── draw.h │ │ │ │ ├── encode.h │ │ │ │ ├── encodemapper-class.h │ │ │ │ ├── epsnormalize.h │ │ │ │ ├── equal.h │ │ │ │ ├── equivalent.h │ │ │ │ ├── fst-class.h │ │ │ │ ├── fstscript-decl.h │ │ │ │ ├── fstscript.h │ │ │ │ ├── getters.h │ │ │ │ ├── info-impl.h │ │ │ │ ├── info.h │ │ │ │ ├── intersect.h │ │ │ │ ├── invert.h │ │ │ │ ├── isomorphic.h │ │ │ │ ├── map.h │ │ │ │ ├── minimize.h │ │ │ │ ├── print-impl.h │ │ │ │ ├── print.h │ │ │ │ ├── project.h │ │ │ │ ├── prune.h │ │ │ │ ├── push.h │ │ │ │ ├── randequivalent.h │ │ │ │ ├── randgen.h │ │ │ │ ├── register.h │ │ │ │ ├── relabel.h │ │ │ │ ├── replace.h │ │ │ │ ├── reverse.h │ │ │ │ ├── reweight.h │ │ │ │ ├── rmepsilon.h │ │ │ │ ├── script-impl.h │ │ │ │ ├── shortest-distance.h │ │ │ │ ├── shortest-path.h │ │ │ │ ├── stateiterator-class.h │ │ │ │ ├── synchronize.h │ │ │ │ ├── text-io.h │ │ │ │ ├── topsort.h │ │ │ │ ├── union.h │ │ │ │ ├── verify.h │ │ │ │ └── weight-class.h │ │ │ │ ├── set-weight.h │ │ │ │ ├── shortest-distance.h │ │ │ │ ├── shortest-path.h │ │ │ │ ├── signed-log-weight.h │ │ │ │ ├── sparse-power-weight.h │ │ │ │ ├── sparse-tuple-weight.h │ │ │ │ ├── state-map.h │ │ │ │ ├── state-reachable.h │ │ │ │ ├── state-table.h │ │ │ │ ├── statesort.h │ │ │ │ ├── string-weight.h │ │ │ │ ├── string.h │ │ │ │ ├── symbol-table-ops.h │ │ │ │ ├── symbol-table.h │ │ │ │ ├── synchronize.h │ │ │ │ ├── test-properties.h │ │ │ │ ├── test │ │ │ │ ├── algo_test.h │ │ │ │ ├── fst_test.h │ │ │ │ ├── rand-fst.h │ │ │ │ └── weight-tester.h │ │ │ │ ├── topsort.h │ │ │ │ ├── tuple-weight.h │ │ │ │ ├── types.h │ │ │ │ ├── union-find.h │ │ │ │ ├── union-weight.h │ │ │ │ ├── union.h │ │ │ │ ├── util.h │ │ │ │ ├── vector-fst.h │ │ │ │ ├── verify.h │ │ │ │ ├── visit.h │ │ │ │ └── weight.h │ │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── compat.cc │ │ │ ├── flags.cc │ │ │ ├── fst-types.cc │ │ │ ├── fst.cc │ │ │ ├── libfst.vcxproj │ │ │ ├── libfst.vcxproj.filters │ │ │ ├── mapped-file.cc │ │ │ ├── properties.cc │ │ │ ├── symbol-table-ops.cc │ │ │ ├── symbol-table.cc │ │ │ ├── util.cc │ │ │ └── weight.cc │ │ │ ├── openfst-multibin.targets │ │ │ ├── openfst.props │ │ │ ├── openfst.targets │ │ │ ├── openfst.user.props │ │ │ ├── script │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── arciterator-class.cc │ │ │ ├── arcsort.cc │ │ │ ├── closure.cc │ │ │ ├── compile.cc │ │ │ ├── compose.cc │ │ │ ├── concat.cc │ │ │ ├── connect.cc │ │ │ ├── convert.cc │ │ │ ├── decode.cc │ │ │ ├── determinize.cc │ │ │ ├── difference.cc │ │ │ ├── disambiguate.cc │ │ │ ├── draw.cc │ │ │ ├── encode.cc │ │ │ ├── encodemapper-class.cc │ │ │ ├── epsnormalize.cc │ │ │ ├── equal.cc │ │ │ ├── equivalent.cc │ │ │ ├── fst-class.cc │ │ │ ├── getters.cc │ │ │ ├── info-impl.cc │ │ │ ├── info.cc │ │ │ ├── intersect.cc │ │ │ ├── invert.cc │ │ │ ├── isomorphic.cc │ │ │ ├── libfstscript.vcxproj │ │ │ ├── libfstscript.vcxproj.filters │ │ │ ├── map.cc │ │ │ ├── minimize.cc │ │ │ ├── print.cc │ │ │ ├── project.cc │ │ │ ├── prune.cc │ │ │ ├── push.cc │ │ │ ├── randequivalent.cc │ │ │ ├── randgen.cc │ │ │ ├── relabel.cc │ │ │ ├── replace.cc │ │ │ ├── reverse.cc │ │ │ ├── reweight.cc │ │ │ ├── rmepsilon.cc │ │ │ ├── shortest-distance.cc │ │ │ ├── shortest-path.cc │ │ │ ├── stateiterator-class.cc │ │ │ ├── synchronize.cc │ │ │ ├── text-io.cc │ │ │ ├── topsort.cc │ │ │ ├── union.cc │ │ │ ├── verify.cc │ │ │ └── weight-class.cc │ │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── algo_test.cc │ │ │ ├── fst_test.cc │ │ │ └── weight_test.cc │ ├── processor.cc │ ├── processor_main.cc │ ├── token_parser.cc │ └── utf8_string.cc │ └── utils │ └── utils.cpp ├── main_vad ├── Kconfig ├── SConstruct ├── mode_silero-vad.json └── src │ └── main.cpp ├── main_vlm ├── Kconfig ├── SConstruct ├── models │ ├── mode_internvl2-1B-ax630c.json │ ├── mode_internvl2.5-1B-364-ax630c.json │ ├── mode_internvl2.5-1B-ax630c.json │ ├── mode_smolvlm-256M-ax630c.json │ └── mode_smolvlm-500M-ax630c.json ├── scripts │ ├── tokenizer_internvl2-1B-ax630c.py │ ├── tokenizer_internvl2.5-1B-364-ax630c.py │ ├── tokenizer_internvl2.5-1B-ax630c.py │ ├── tokenizer_smolvlm-256M-ax630c.py │ └── tokenizer_smolvlm-500M-ax630c.py └── src │ ├── main.cpp │ └── runner │ ├── LLM.hpp │ ├── LLMEmbedSelector.hpp │ ├── LLMPostprocess.hpp │ ├── Tokenizer │ ├── QwenTokenizer.cpp │ ├── QwenTokenizer.hpp │ ├── Tokenizer.cpp │ ├── Tokenizer.hpp │ ├── base64.h │ ├── tiktoken.h │ └── unordered_dense.h │ ├── ax_model_runner │ ├── ax_model_runner.hpp │ ├── ax_model_runner_ax650.cpp │ └── ax_model_runner_ax650.hpp │ └── utils │ ├── ax_cmm_utils.hpp │ ├── bfloat16.hpp │ ├── cqdm.cpp │ ├── cqdm.h │ ├── httplib.h │ ├── json.hpp │ ├── memory_utils.cpp │ ├── memory_utils.hpp │ ├── sample_log.h │ ├── string_utility.hpp │ └── timer.hpp ├── main_whisper ├── Kconfig ├── SConstruct ├── mode_whisper-base.json ├── mode_whisper-small.json ├── mode_whisper-tiny.json └── src │ ├── main.cpp │ └── runner │ ├── AudioFile.h │ ├── DecoderLoop.hpp │ ├── DecoderMain.hpp │ ├── Encoder.hpp │ ├── EngineWrapper.cpp │ ├── EngineWrapper.hpp │ ├── base64.cpp │ ├── base64.h │ ├── cmdline.hpp │ ├── librosa │ ├── eigen3 │ │ ├── Eigen │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── 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 │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.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 │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── Default │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ └── Settings.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.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 │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── StaticAssert.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 │ │ │ │ ├── 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 │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ └── unsupported │ │ │ └── Eigen │ │ │ ├── AdolcForward │ │ │ ├── AlignedVector3 │ │ │ ├── ArpackSupport │ │ │ ├── AutoDiff │ │ │ ├── BVH │ │ │ ├── CMakeLists.txt │ │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.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 │ │ │ │ ├── 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 │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorSycl.h │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ ├── TensorSyclRun.h │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ │ ├── EulerAngles │ │ │ ├── FFT │ │ │ ├── IterativeSolvers │ │ │ ├── KroneckerProduct │ │ │ ├── LevenbergMarquardt │ │ │ ├── MPRealSupport │ │ │ ├── MatrixFunctions │ │ │ ├── MoreVectorization │ │ │ ├── NonLinearOptimization │ │ │ ├── NumericalDiff │ │ │ ├── OpenGLSupport │ │ │ ├── Polynomials │ │ │ ├── Skyline │ │ │ ├── SparseExtra │ │ │ ├── SpecialFunctions │ │ │ ├── Splines │ │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── 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 │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── 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 │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── CUDA │ │ │ │ └── CudaSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ └── librosa.h │ ├── opencc │ ├── include │ │ └── opencc │ │ │ ├── Common.hpp │ │ │ ├── Config.hpp │ │ │ ├── Conversion.hpp │ │ │ ├── ConversionChain.hpp │ │ │ ├── Converter.hpp │ │ │ ├── Dict.hpp │ │ │ ├── DictConverter.hpp │ │ │ ├── DictEntry.hpp │ │ │ ├── DictGroup.hpp │ │ │ ├── Exception.hpp │ │ │ ├── Export.hpp │ │ │ ├── Lexicon.hpp │ │ │ ├── MarisaDict.hpp │ │ │ ├── MaxMatchSegmentation.hpp │ │ │ ├── Optional.hpp │ │ │ ├── PhraseExtract.hpp │ │ │ ├── Segmentation.hpp │ │ │ ├── Segments.hpp │ │ │ ├── SerializableDict.hpp │ │ │ ├── SerializedValues.hpp │ │ │ ├── SimpleConverter.hpp │ │ │ ├── TextDict.hpp │ │ │ ├── UTF8StringSlice.hpp │ │ │ ├── UTF8Util.hpp │ │ │ ├── opencc.h │ │ │ └── opencc_config.h │ └── share │ │ └── opencc │ │ ├── HKVariants.ocd2 │ │ ├── HKVariantsRev.ocd2 │ │ ├── HKVariantsRevPhrases.ocd2 │ │ ├── JPShinjitaiCharacters.ocd2 │ │ ├── JPShinjitaiPhrases.ocd2 │ │ ├── JPVariants.ocd2 │ │ ├── JPVariantsRev.ocd2 │ │ ├── STCharacters.ocd2 │ │ ├── STPhrases.ocd2 │ │ ├── TSCharacters.ocd2 │ │ ├── TSPhrases.ocd2 │ │ ├── TWPhrases.ocd2 │ │ ├── TWPhrasesRev.ocd2 │ │ ├── TWVariants.ocd2 │ │ ├── TWVariantsRev.ocd2 │ │ ├── TWVariantsRevPhrases.ocd2 │ │ ├── hk2s.json │ │ ├── hk2t.json │ │ ├── jp2t.json │ │ ├── s2hk.json │ │ ├── s2t.json │ │ ├── s2tw.json │ │ ├── s2twp.json │ │ ├── t2hk.json │ │ ├── t2jp.json │ │ ├── t2s.json │ │ ├── t2tw.json │ │ ├── tw2s.json │ │ ├── tw2sp.json │ │ └── tw2t.json │ ├── utilities │ ├── file.hpp │ ├── file_mapper.hpp │ ├── log.hpp │ ├── scalar_guard.hpp │ ├── timer.hpp │ └── vector_guard.hpp │ └── utils │ ├── checker.h │ ├── io.hpp │ └── logger.h ├── main_yolo ├── Kconfig ├── SConstruct ├── mode_yolo11n-hand-pose.json ├── mode_yolo11n-pose.json ├── mode_yolo11n-seg.json ├── mode_yolo11n.json └── src │ ├── EngineWrapper.cpp │ ├── EngineWrapper.hpp │ └── main.cpp ├── setup.ini └── tools ├── llm_pack.py ├── test_tools ├── test-melo.py ├── test-tts.py └── test.py └── update_static_lib.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/README_zh.md -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/RESULTS.md -------------------------------------------------------------------------------- /benchmark/benchmodulellm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/benchmodulellm.py -------------------------------------------------------------------------------- /benchmark/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/default.yaml -------------------------------------------------------------------------------- /benchmark/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/utils/__init__.py -------------------------------------------------------------------------------- /benchmark/utils/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/utils/llm.py -------------------------------------------------------------------------------- /benchmark/utils/token_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/benchmark/utils/token_calc.py -------------------------------------------------------------------------------- /doc/assets/StackFlow_unit.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/assets/StackFlow_unit.dot -------------------------------------------------------------------------------- /doc/assets/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/assets/network.png -------------------------------------------------------------------------------- /doc/component_doc/StackFlow_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/component_doc/StackFlow_en.md -------------------------------------------------------------------------------- /doc/component_doc/StackFlow_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/component_doc/StackFlow_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_asr_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_asr_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_asr_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_asr_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_audio_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_audio_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_audio_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_audio_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_camera_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_camera_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_camera_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_camera_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_depth_anything_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_depth_anything_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_depth_anything_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_depth_anything_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_kws_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_kws_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_kws_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_kws_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_llm_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_llm_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_llm_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_llm_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_melotts_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_melotts_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_melotts_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_melotts_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_sys_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_sys_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_sys_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_sys_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_tts_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_tts_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_tts_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_tts_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_vad_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_vad_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_vad_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_vad_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_vlm_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_vlm_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_vlm_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_vlm_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_whisper_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_whisper_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_whisper_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_whisper_zh.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_yolo_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_yolo_en.md -------------------------------------------------------------------------------- /doc/projects_llm_framework_doc/llm_yolo_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/doc/projects_llm_framework_doc/llm_yolo_zh.md -------------------------------------------------------------------------------- /ext_components/StackFlow/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/Kconfig -------------------------------------------------------------------------------- /ext_components/StackFlow/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/SConstruct -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/StackFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/StackFlow.cpp -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/StackFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/StackFlow.h -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/StackFlowUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/StackFlowUtil.cpp -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/StackFlowUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/StackFlowUtil.h -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/libzmq/zmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/libzmq/zmq.h -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/libzmq/zmq_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/libzmq/zmq_utils.h -------------------------------------------------------------------------------- /ext_components/StackFlow/stackflow/pzmq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/StackFlow/stackflow/pzmq.hpp -------------------------------------------------------------------------------- /ext_components/ax-samples/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/ax-samples/Kconfig -------------------------------------------------------------------------------- /ext_components/ax-samples/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/ax-samples/SConstruct -------------------------------------------------------------------------------- /ext_components/ax_msp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/ax_msp/Kconfig -------------------------------------------------------------------------------- /ext_components/ax_msp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/ext_components/ax_msp/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/.gitignore -------------------------------------------------------------------------------- /projects/llm_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/README.md -------------------------------------------------------------------------------- /projects/llm_framework/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/config_defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/config_defaults.mk -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/algorithm/container.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/attributes.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/call_once.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/casts.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/config.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/const_init.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/internal/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/internal/endian.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/internal/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/internal/invoke.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/internal/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/internal/sysinfo.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/log_severity.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/macros.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/no_destructor.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/nullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/nullability.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/optimization.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/options.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/policy_checks.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/port.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/base/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/base/prefetch.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/cleanup/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/cleanup/cleanup.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/container/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/container/btree_map.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/container/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/container/btree_set.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/container/btree_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/container/btree_test.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/container/fixed_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/container/fixed_array.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/crc/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/crc/crc32c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/crc/internal/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/crc/internal/crc.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/crc/internal/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/crc/internal/crc32c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/debugging/leak_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/debugging/leak_check.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/debugging/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/debugging/stacktrace.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/debugging/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/debugging/symbolize.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/commandlineflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/commandlineflag.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/config.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/declare.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/flag.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/internal/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/internal/flag.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/internal/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/internal/parse.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/internal/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/internal/usage.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/marshalling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/marshalling.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/parse.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/reflection.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/usage.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/flags/usage_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/flags/usage_config.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/functional/bind_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/functional/bind_front.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/functional/overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/functional/overload.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/hash/hash.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/hash/internal/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/hash/internal/city.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/hash/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/hash/internal/hash.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/absl_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/absl_check.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/absl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/absl_log.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/absl_vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/absl_vlog_is_on.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/check.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/die_if_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/die_if_null.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/flags.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/globals.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/initialize.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/internal/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/internal/flags.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/internal/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/internal/proto.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/internal/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/internal/strip.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/log.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/log_entry.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/log_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/log_sink.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/log_streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/log_streamer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/structured.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/structured.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/log/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/log/vlog_is_on.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/memory/memory.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/meta/type_traits.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/numeric/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/numeric/bits.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/numeric/int128.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/random/bit_gen_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/random/bit_gen_ref.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/random/random.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/status/status.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/status/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/status/statusor.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/ascii.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/charconv.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/charset.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/cord.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/escaping.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/match.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/numbers.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/str_cat.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/str_format.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/str_join.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/str_split.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/strip.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/strings/substitute.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/time/civil_time.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/time/clock.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/time/time.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/any.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/compare.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/optional.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/span.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/types/variant.h -------------------------------------------------------------------------------- /projects/llm_framework/include/abseil-cpp/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/abseil-cpp/absl/utility/utility.h -------------------------------------------------------------------------------- /projects/llm_framework/include/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/archive.h -------------------------------------------------------------------------------- /projects/llm_framework/include/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/archive_entry.h -------------------------------------------------------------------------------- /projects/llm_framework/include/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/dwarf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/elf-knowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/elf-knowledge.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/known-dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/known-dwarf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/libdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/libdw.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/libdwelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/libdwelf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/libdwfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/libdwfl.h -------------------------------------------------------------------------------- /projects/llm_framework/include/elfutils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/elfutils/version.h -------------------------------------------------------------------------------- /projects/llm_framework/include/gelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/gelf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/libdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/libdw.h -------------------------------------------------------------------------------- /projects/llm_framework/include/libelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/libelf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/common.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/denormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/denormal.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/exceptions.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/gsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/gsl.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/narrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/narrow.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/optional.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/span_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/span_utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/spin_pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/spin_pause.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/common/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/common/status.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/framework/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/framework/endian.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/framework/float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/framework/float16.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/framework/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/framework/tensor.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/basic_types.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/constants.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/function.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/graph.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/graph_nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/graph_nodes.h -------------------------------------------------------------------------------- /projects/llm_framework/include/onnxruntime/core/graph/node_arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/onnxruntime/core/graph/node_arg.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/async.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/base.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/check.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/core.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/core_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/quaternion.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/types.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/types_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/utils/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/utils/tls.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/version.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/cvconfig.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/highgui.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgcodecs/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgcodecs/macosx.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc/bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc/bindings.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/opencv.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/videoio.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/videoio/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/videoio/registry.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/opencv4/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/opencv4/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /projects/llm_framework/include/protobuf-lite/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/protobuf-lite/google/protobuf/any.h -------------------------------------------------------------------------------- /projects/llm_framework/include/protobuf-lite/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/protobuf-lite/google/protobuf/map.h -------------------------------------------------------------------------------- /projects/llm_framework/include/protobuf-lite/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/protobuf-lite/google/protobuf/port.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/bitmap256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/bitmap256.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/filtered_re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/filtered_re2.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/pod_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/pod_array.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/prefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/prefilter.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/prefilter_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/prefilter_tree.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/prog.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/re2.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/regexp.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/set.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/sparse_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/sparse_array.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/sparse_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/sparse_set.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/stringpiece.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/testing/exhaustive_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/testing/exhaustive_tester.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/testing/regexp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/testing/regexp_generator.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/testing/string_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/testing/string_generator.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/testing/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/testing/tester.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/unicode_casefold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/unicode_casefold.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/unicode_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/unicode_groups.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/re2/walker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/re2/walker-inl.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/util/logging.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/util/malloc_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/util/malloc_counter.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/util/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/util/pcre.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/util/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/util/strutil.h -------------------------------------------------------------------------------- /projects/llm_framework/include/re2/util/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/re2/util/utf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/bpe_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/bpe_model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/bpe_model_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/bpe_model_trainer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/builder.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/char_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/char_model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/char_model_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/char_model_trainer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/common.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/filesystem.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/freelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/freelist.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/init.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/model_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/model_factory.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/model_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/model_interface.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/normalization_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/normalization_rule.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/normalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/normalizer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/spec_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/spec_parser.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/testharness.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/trainer_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/trainer_factory.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/trainer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/trainer_interface.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/unicode_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/unicode_script.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/unicode_script_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/unicode_script_map.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/unigram_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/unigram_model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/util.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/word_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/word_model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sentencepiece/word_model_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sentencepiece/word_model_trainer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/allocator.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/benchmark.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/blob.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/c_api.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/command.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/cpu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/alsa.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/decoder.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/display.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/endpoint.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/features.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/hypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/hypothesis.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/lstm-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/lstm-model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/math.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/meta-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/meta-data.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/microphone.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/recognizer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/resample.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/stack.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/csrc/stream.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/datareader.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/gpu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/absval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/absval.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/argmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/argmax.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/batchnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/batchnorm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/bias.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/binaryop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/binaryop.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/bnll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/bnll.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/cast.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/celu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/celu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/clip.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/concat.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/copyto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/copyto.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/crop.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/deepcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/deepcopy.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/diag.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/dropout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/dropout.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/einsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/einsum.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/eltwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/eltwise.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/elu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/embed.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/erf.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/exp.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/flatten.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/fold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/fold.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gelu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gemm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/glu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/groupnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/groupnorm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/gru.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/hardswish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/hardswish.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/input.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/interp.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/layernorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/layernorm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/log.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/lrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/lrn.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/lstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/lstm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/matmul.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/mish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/mish.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/mvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/mvn.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/noop.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/normalize.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/packing.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/padding.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/permute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/permute.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling1d.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/pooling3d.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/power.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/prelu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/priorbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/priorbox.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/proposal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/proposal.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/quantize.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reduction.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/relu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reorg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reorg.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/reshape.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/rnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/rnn.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/roialign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/roialign.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/scale.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/selu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/selu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/shrink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/shrink.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/sigmoid.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/slice.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/softmax.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/softplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/softplus.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/split.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/spp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/spp.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/squeeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/squeeze.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/swish.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/tanh.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/threshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/threshold.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/tile.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/unaryop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/unaryop.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer/unfold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer/unfold.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer_registry.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer_type.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/layer_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/layer_type_enum.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/mat.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/modelbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/modelbin.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/ncnn_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/ncnn_export.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/net.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/option.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/paramdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/paramdict.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/pipeline.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/pipelinecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/pipelinecache.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/platform.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/ruapu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/ruapu.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/simplemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/simplemath.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/simpleocv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/simpleocv.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/simpleomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/simpleomp.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/simplestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/simplestl.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/simplevk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/simplevk.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/stb_image.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-ncnn/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-ncnn/stb_image_write.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/alsa-play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/alsa-play.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/alsa.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/cat.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/display.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/endpoint.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/features.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/file-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/file-utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/fst-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/fst-utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/hypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/hypothesis.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/lexicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/lexicon.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/log.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/macros.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/math.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/microphone.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/offline-lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/offline-lm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/online-lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/online-lm.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/onnx-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/onnx-utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/provider.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/resample.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/session.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/slice.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/stack.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/tee-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/tee-stream.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/text-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/text-utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/transpose.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/unbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/unbind.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/utils.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/csrc/vad-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/sherpa/sherpa-onnx/csrc/vad-model.h -------------------------------------------------------------------------------- /projects/llm_framework/include/sherpa/sherpa-onnx/openfst-src/fst/config.h: -------------------------------------------------------------------------------- 1 | // Windows-specific OpenFst config file 2 | // No dynamic registration. 3 | #define FST_NO_DYNAMIC_LINKING 1 4 | -------------------------------------------------------------------------------- /projects/llm_framework/include/utils/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/utils/checker.h -------------------------------------------------------------------------------- /projects/llm_framework/include/utils/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/utils/io.hpp -------------------------------------------------------------------------------- /projects/llm_framework/include/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/include/utils/logger.h -------------------------------------------------------------------------------- /projects/llm_framework/main/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_asr/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_asr/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_asr/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_asr/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_asr/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_audio/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_audio/audio.json -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_audio/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/src/sample_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_audio/src/sample_audio.c -------------------------------------------------------------------------------- /projects/llm_framework/main_audio/src/sample_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_audio/src/sample_audio.h -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/camera.json -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/src/axera_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/src/axera_camera.c -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/src/axera_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/src/axera_camera.h -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/src/camera.h -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_camera/src/v4l2_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_camera/src/v4l2_camera.c -------------------------------------------------------------------------------- /projects/llm_framework/main_depth_anything/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_depth_anything/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_depth_anything/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_depth_anything/src/EngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_depth_anything/src/EngineWrapper.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_depth_anything/src/EngineWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_depth_anything/src/EngineWrapper.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_depth_anything/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_depth_anything/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_kws/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_kws/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_kws/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_kws/llm-kws_text2token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_kws/llm-kws_text2token.py -------------------------------------------------------------------------------- /projects/llm_framework/main_kws/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_kws/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_kws/text2token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_kws/text2token.txt -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/models/mode_qwen3-0.6B-ax630c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/models/mode_qwen3-0.6B-ax630c.json -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/scripts/llm-llm_tokenizer_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/scripts/llm-llm_tokenizer_auto.py -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/LLM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/LLM.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/LLMEmbedSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/LLMEmbedSelector.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/LLMPostprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/LLMPostprocess.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/Tokenizer/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/Tokenizer/Tokenizer.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/Tokenizer/Tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/Tokenizer/Tokenizer.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/Tokenizer/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/Tokenizer/base64.h -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/Tokenizer/tiktoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/Tokenizer/tiktoken.h -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/ax_cmm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/ax_cmm_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/bfloat16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/bfloat16.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/cqdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/cqdm.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/cqdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/cqdm.h -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/httplib.h -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/json.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/memory_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/memory_utils.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/memory_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/memory_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/sample_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/sample_log.h -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/string_utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/string_utility.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_llm/src/runner/utils/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_llm/src/runner/utils/timer.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/mode_melotts-en-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/mode_melotts-en-default.json -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/mode_melotts-en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/mode_melotts-en-us.json -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/mode_melotts-ja-jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/mode_melotts-ja-jp.json -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/mode_melotts-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/mode_melotts-zh-cn.json -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/AudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/AudioFile.h -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/EngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/EngineWrapper.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/EngineWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/EngineWrapper.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/Lexicon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/Lexicon.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/OnnxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/OnnxWrapper.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/OnnxWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/OnnxWrapper.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/base64.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/base64.h -------------------------------------------------------------------------------- /projects/llm_framework/main_melotts/src/runner/cmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_melotts/src/runner/cmdline.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_openai_api/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_openai_api/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_openai_api/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_openai_api/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_openai_api/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/main.c -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/main.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/main.cpp.bak -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/YuvHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/YuvHandler.c -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/YuvHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/YuvHandler.h -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/attrParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/attrParser.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/attrParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/attrParser.h -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/common_vdec_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/common_vdec_utils.c -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/frameMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/frameMgr.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/frameMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/frameMgr.h -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/picojson.h -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/sample_skel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/sample_skel.c -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/skel_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/skel_log.h -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/statMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/statMgr.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_skel/src/runner/statMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_skel/src/runner/statMgr.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/all.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/event_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/event_loop.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/remote_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/remote_action.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/remote_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/remote_server.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/serial.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/include/zmq_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/include/zmq_bus.h -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/config.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/event_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/event_loop.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/remote_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/remote_action.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/remote_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/remote_server.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/serial_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/serial_com.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/tcp_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/tcp_com.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/src/zmq_bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_sys/src/zmq_bus.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_sys/sys_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "config_enable_tcp": 1 3 | } -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/mode_single-speaker-fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/mode_single-speaker-fast.json -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/.gitignore -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/.hgeol -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.BSD -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.GPL -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.LGPL -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/COPYING.MPL2 -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Core -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Dense -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Eigen -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Jacobi -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/LU -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/QR -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/SVD -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/Eigen/Sparse -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/INSTALL -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/README.md -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/ci/README.md -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/eigen3.pc.in -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/io.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/lu.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/main.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/qr.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/eigen-3.4.0/test/ref.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/include/SynthesizerTrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/include/SynthesizerTrn.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/include/tts_file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/include/tts_file_io.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/include/tts_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/include/tts_logger.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/include/utils.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/engipa/alphabet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/engipa/alphabet.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/engipa/ipa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/engipa/ipa.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/ConvFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/ConvFlow.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/DDSConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/DDSConv.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/Hanz2Piny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/Hanz2Piny.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/ResBlock1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/ResBlock1.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/TextEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/TextEncoder.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/WN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/WN.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/ffn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/ffn.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/iStft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/iStft.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_conv1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_conv1d.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_cumsum.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_flip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_flip.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_gelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_gelu.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_relu.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_sigmoid.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_softmax.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_softplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_softplus.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/nn_tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/nn_tanh.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/pinyinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/pinyinmap.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/pqmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/pqmf.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/header/random_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/header/random_gen.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/hz2py/Hanz2Piny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/hz2py/Hanz2Piny.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/hz2py/pinyinmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/hz2py/pinyinmap.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/hz2py/utf8/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/hz2py/utf8/utf8.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/ConvFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/ConvFlow.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/DDSConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/DDSConv.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/WN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/WN.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/ffn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/ffn.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/hann.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/hann.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/iStft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/iStft.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/modules/pqmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/modules/pqmf.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_conv1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_conv1d.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_cumsum.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_flip.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_gelu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_gelu.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_relu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_relu.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_sigmoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_sigmoid.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_softmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_softmax.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/nn_op/nn_tanh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/nn_op/nn_tanh.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/gflags/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/gflags/.gitignore -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/gflags/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/gflags/src/util.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/.gitignore -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/.travis.yml -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/AUTHORS -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/CONTRIBUTORS -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/COPYING -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/glog/ChangeLog -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/arc.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/config.h: -------------------------------------------------------------------------------- 1 | // Windows-specific OpenFst config file 2 | // No dynamic registration. 3 | #define FST_NO_DYNAMIC_LINKING 1 4 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/fst.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/heap.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/icu.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/lock.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/log.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/map.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/push.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/header/fst/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/header/fst/util.h -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/openfst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/openfst/README.md -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/openfst/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include lib script bin test extensions 2 | -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/processor.cc -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/processor_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/processor_main.cc -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/token_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/token_parser.cc -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/tn/utf8_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/tn/utf8_string.cc -------------------------------------------------------------------------------- /projects/llm_framework/main_tts/src/runner/src/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_tts/src/runner/src/utils/utils.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vad/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_vad/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vad/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_vad/mode_silero-vad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vad/mode_silero-vad.json -------------------------------------------------------------------------------- /projects/llm_framework/main_vad/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vad/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/LLM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/LLM.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/LLMEmbedSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/LLMEmbedSelector.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/LLMPostprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/LLMPostprocess.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/Tokenizer/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/Tokenizer/Tokenizer.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/Tokenizer/Tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/Tokenizer/Tokenizer.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/Tokenizer/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/Tokenizer/base64.h -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/Tokenizer/tiktoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/Tokenizer/tiktoken.h -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/ax_cmm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/ax_cmm_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/bfloat16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/bfloat16.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/cqdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/cqdm.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/cqdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/cqdm.h -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/httplib.h -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/json.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/memory_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/memory_utils.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/memory_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/memory_utils.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/sample_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/sample_log.h -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/string_utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/string_utility.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_vlm/src/runner/utils/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_vlm/src/runner/utils/timer.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/mode_whisper-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/mode_whisper-base.json -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/mode_whisper-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/mode_whisper-small.json -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/mode_whisper-tiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/mode_whisper-tiny.json -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/AudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/AudioFile.h -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/DecoderLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/DecoderLoop.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/DecoderMain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/DecoderMain.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/Encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/Encoder.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/EngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/EngineWrapper.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/EngineWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/EngineWrapper.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/base64.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/base64.h -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/cmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/cmdline.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/librosa/librosa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/librosa/librosa.h -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utilities/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utilities/file.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utilities/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utilities/log.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utilities/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utilities/timer.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utils/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utils/checker.h -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utils/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utils/io.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_whisper/src/runner/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_whisper/src/runner/utils/logger.h -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/SConstruct -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/mode_yolo11n-hand-pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/mode_yolo11n-hand-pose.json -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/mode_yolo11n-pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/mode_yolo11n-pose.json -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/mode_yolo11n-seg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/mode_yolo11n-seg.json -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/mode_yolo11n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/mode_yolo11n.json -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/src/EngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/src/EngineWrapper.cpp -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/src/EngineWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/src/EngineWrapper.hpp -------------------------------------------------------------------------------- /projects/llm_framework/main_yolo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/main_yolo/src/main.cpp -------------------------------------------------------------------------------- /projects/llm_framework/setup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/setup.ini -------------------------------------------------------------------------------- /projects/llm_framework/tools/llm_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/tools/llm_pack.py -------------------------------------------------------------------------------- /projects/llm_framework/tools/test_tools/test-melo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/tools/test_tools/test-melo.py -------------------------------------------------------------------------------- /projects/llm_framework/tools/test_tools/test-tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/tools/test_tools/test-tts.py -------------------------------------------------------------------------------- /projects/llm_framework/tools/test_tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/tools/test_tools/test.py -------------------------------------------------------------------------------- /projects/llm_framework/tools/update_static_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/StackFlow/HEAD/projects/llm_framework/tools/update_static_lib.sh --------------------------------------------------------------------------------