├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── MarsCodeWorkspaceAppSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── README_zh-CN.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnnserver │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── model_list.json │ ├── java │ │ └── io │ │ │ └── kindbrave │ │ │ └── mnnserver │ │ │ ├── MNNServerApplication.kt │ │ │ ├── MainActivity.kt │ │ │ └── tts │ │ │ └── TTSService.kt │ └── res │ │ ├── drawable │ │ ├── about.xml │ │ ├── baichuan_icon.png │ │ ├── chatglm_icon.png │ │ ├── config.xml │ │ ├── deepseek_icon.png │ │ ├── delete.xml │ │ ├── done.xml │ │ ├── download.xml │ │ ├── export.xml │ │ ├── filter.xml │ │ ├── gemma_icon.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_notification.xml │ │ ├── internlm_icon.png │ │ ├── jina_icon.png │ │ ├── list.xml │ │ ├── llama_icon.png │ │ ├── local.xml │ │ ├── log.xml │ │ ├── pause.xml │ │ ├── phi_icon.png │ │ ├── qwen_icon.png │ │ ├── smolm_icon.png │ │ ├── start.xml │ │ ├── stop.xml │ │ ├── unknown.xml │ │ ├── web.xml │ │ └── yi_icon.png │ │ ├── mipmap-anydpi │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ └── tts_engine.xml │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnnserver │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img ├── img1.jpg ├── img2.jpg └── img3.jpg ├── mnn-base ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnnserver │ │ └── mnn_base │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ ├── com │ │ └── alibaba │ │ │ ├── mls │ │ │ └── api │ │ │ │ ├── ApplicationProvider.kt │ │ │ │ ├── FileDownloadException.kt │ │ │ │ ├── ModelItem.kt │ │ │ │ ├── download │ │ │ │ ├── DownloadExecutor.kt │ │ │ │ ├── DownloadFileUtils.kt │ │ │ │ ├── DownloadForegroundService.kt │ │ │ │ ├── DownloadInfo.kt │ │ │ │ ├── DownloadListener.kt │ │ │ │ ├── DownloadPausedException.kt │ │ │ │ ├── DownloadPersistentData.kt │ │ │ │ ├── FileDownloadTask.kt │ │ │ │ ├── ModelDownloadManager.kt │ │ │ │ ├── ModelFileDownloader.kt │ │ │ │ ├── ModelRepoDownloader.kt │ │ │ │ ├── hf │ │ │ │ │ ├── HfFileMetadataUtils.kt │ │ │ │ │ ├── HfModelDownloader.kt │ │ │ │ │ └── HfShaVerifier.kt │ │ │ │ ├── ml │ │ │ │ │ └── MLModelDownloader.kt │ │ │ │ └── ms │ │ │ │ │ └── MsModelDownloader.kt │ │ │ │ ├── hf │ │ │ │ ├── HfApiClient.kt │ │ │ │ ├── HfApiService.kt │ │ │ │ ├── HfFileMetadata.kt │ │ │ │ └── HfRepoInfo.kt │ │ │ │ ├── ml │ │ │ │ ├── MlApiClient.kt │ │ │ │ └── MlRepoInfo.kt │ │ │ │ ├── ms │ │ │ │ ├── MsApiClient.kt │ │ │ │ ├── MsApiService.java │ │ │ │ └── MsRepoInfo.java │ │ │ │ └── source │ │ │ │ ├── ModelSourceConfig.kt │ │ │ │ ├── ModelSources.kt │ │ │ │ └── RepoConfig.kt │ │ │ └── mnnllm │ │ │ └── android │ │ │ ├── mainsettings │ │ │ └── MainSettings.kt │ │ │ ├── model │ │ │ ├── ModelUtils.kt │ │ │ └── ModelVendors.kt │ │ │ └── utils │ │ │ ├── DeviceUtils.kt │ │ │ └── FileUtils.kt │ │ └── io │ │ └── kindbrave │ │ └── mnn │ │ └── base │ │ ├── modelapi │ │ ├── download │ │ │ ├── KindBraveModelDownloadManager.kt │ │ │ └── ms │ │ │ │ └── KindBraveMsModelDownloader.kt │ │ ├── hf │ │ │ └── KindBraveHfApiClient.kt │ │ └── source │ │ │ ├── ModelSourceConfig.kt │ │ │ ├── ModelSources.kt │ │ │ └── RepoConfig.kt │ │ └── utils │ │ └── ModelConfig.kt │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnnserver │ └── mnn_base │ └── ExampleUnitTest.kt ├── mnnui ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnnserver │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── kindbrave │ │ │ └── mnn │ │ │ └── mnnui │ │ │ ├── annotation │ │ │ ├── LogAfterInterceptCut.kt │ │ │ ├── LogAnnotation.kt │ │ │ └── LogBeforeInterceptCut.kt │ │ │ ├── data │ │ │ ├── LogRepository.kt │ │ │ └── ServerPreferences.kt │ │ │ ├── di │ │ │ ├── CoroutinesModule.kt │ │ │ └── KtorServerModule.kt │ │ │ ├── model │ │ │ ├── ChatDataItem.kt │ │ │ └── PortConfig.kt │ │ │ ├── navigation │ │ │ └── Navigation.kt │ │ │ ├── repository │ │ │ ├── ConfigRepository.kt │ │ │ ├── DataStoreManager.kt │ │ │ └── SettingsRepository.kt │ │ │ ├── service │ │ │ └── WebServerService.kt │ │ │ ├── ui │ │ │ ├── components │ │ │ │ ├── LoadingDialog.kt │ │ │ │ ├── ModelNameDialog.kt │ │ │ │ └── PortSettingsDialog.kt │ │ │ ├── screens │ │ │ │ ├── list │ │ │ │ │ ├── DownloadModelItem.kt │ │ │ │ │ ├── ModelConfig.kt │ │ │ │ │ ├── ModelConfigViewModel.kt │ │ │ │ │ ├── ModelListScreen.kt │ │ │ │ │ ├── ModelListViewModel.kt │ │ │ │ │ ├── TagChip.kt │ │ │ │ │ └── UserUploadModelItem.kt │ │ │ │ ├── log │ │ │ │ │ ├── LogsScreen.kt │ │ │ │ │ └── LogsViewModel.kt │ │ │ │ ├── main │ │ │ │ │ ├── DeviceInfo.kt │ │ │ │ │ ├── IgnoreBatteryOptimizationDialog.kt │ │ │ │ │ ├── MainScreen.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ ├── RunningModel.kt │ │ │ │ │ └── ServerStatus.kt │ │ │ │ └── settings │ │ │ │ │ ├── AboutDialog.kt │ │ │ │ │ ├── SettingsScreen.kt │ │ │ │ │ └── SettingsViewModel.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── utils │ │ │ ├── CustomModelUtils.kt │ │ │ ├── DiffusionMemoryMode.kt │ │ │ ├── FileUtils.kt │ │ │ ├── ModelIconUtils.kt │ │ │ ├── ModelNameUtils.kt │ │ │ ├── ModelPreferences.kt │ │ │ ├── ModelUtils.kt │ │ │ └── ServiceUtils.kt │ └── res │ │ ├── drawable │ │ ├── about.xml │ │ ├── baichuan_icon.png │ │ ├── chatglm_icon.png │ │ ├── config.xml │ │ ├── deepseek_icon.png │ │ ├── delete.xml │ │ ├── done.xml │ │ ├── download.xml │ │ ├── export.xml │ │ ├── filter.xml │ │ ├── gemma_icon.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_notification.xml │ │ ├── internlm_icon.png │ │ ├── jina_icon.png │ │ ├── list.xml │ │ ├── llama_icon.png │ │ ├── local.xml │ │ ├── log.xml │ │ ├── pause.xml │ │ ├── phi_icon.png │ │ ├── qwen_icon.png │ │ ├── smolm_icon.png │ │ ├── start.xml │ │ ├── stop.xml │ │ ├── tts.xml │ │ ├── unknown.xml │ │ ├── web.xml │ │ └── yi_icon.png │ │ ├── mipmap-anydpi │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnnserver │ └── ExampleUnitTest.kt ├── server ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnn │ │ └── base │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── asr.cpp │ │ ├── asr_mnn_jni.cpp │ │ ├── crash_util.cpp │ │ ├── diffusion_jni.cpp │ │ ├── diffusion_session.cpp │ │ ├── diffusion_session.h │ │ ├── embedding_mnn_jni.cpp │ │ ├── embedding_session.cpp │ │ ├── embedding_session.h │ │ ├── include │ │ │ ├── asr │ │ │ │ ├── asr.hpp │ │ │ │ ├── asrconfig.hpp │ │ │ │ └── tokenizer.hpp │ │ │ └── audio │ │ │ │ └── audio.hpp │ │ ├── llm_mnn_jni.cpp │ │ ├── llm_session.cpp │ │ ├── llm_session.h │ │ ├── llm_stream_buffer.hpp │ │ ├── mls_config.h │ │ ├── mls_log.h │ │ ├── nlohmann │ │ │ └── json.hpp │ │ ├── tokenizer.cpp │ │ └── utf8_stream_processor.hpp │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnn │ │ └── server │ │ ├── MNN.kt │ │ ├── annotation │ │ ├── LogAfterInterceptCut.kt │ │ ├── LogAnnotation.kt │ │ └── LogBeforeInterceptCut.kt │ │ ├── engine │ │ ├── AsrSession.kt │ │ ├── ChatSession.kt │ │ ├── EmbeddingSession.kt │ │ ├── MNNAsr.kt │ │ ├── MNNEmbedding.kt │ │ ├── MNNLlm.kt │ │ ├── Session.kt │ │ └── TTSSession.kt │ │ ├── service │ │ └── LLMService.kt │ │ └── utils │ │ ├── FileUtils.kt │ │ ├── ModelUtils.kt │ │ ├── TTSArrayUtils.kt │ │ └── TTSModelConfig.kt │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnn │ └── base │ └── ExampleUnitTest.kt ├── settings.gradle.kts ├── sherpa ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnn │ │ └── sherpa │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ ├── com │ │ └── k2fsa │ │ │ └── sherpa │ │ │ └── mnn │ │ │ ├── AudioTagging.kt │ │ │ ├── FeatureConfig.kt │ │ │ ├── KeywordSpotter.kt │ │ │ ├── OfflinePunctuation.kt │ │ │ ├── OfflineRecognizer.kt │ │ │ ├── OfflineSpeakerDiarization.kt │ │ │ ├── OfflineStream.kt │ │ │ ├── OnlinePunctuation.kt │ │ │ ├── OnlineRecognizer.kt │ │ │ ├── OnlineStream.kt │ │ │ ├── Speaker.kt │ │ │ ├── SpeakerEmbeddingExtractorConfig.kt │ │ │ ├── SpokenLanguageIdentification.kt │ │ │ ├── Tts.kt │ │ │ ├── Vad.kt │ │ │ └── WaveReader.kt │ │ └── io │ │ └── kindbrave │ │ └── mnn │ │ └── sherpa │ │ └── SherpaTts.kt │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnn │ └── sherpa │ └── ExampleUnitTest.kt ├── tts ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── kindbrave │ │ └── mnnserver │ │ └── tts │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── cpp │ │ ├── 3rd_party │ │ │ ├── glm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CTestConfig.cmake │ │ │ │ ├── cmake │ │ │ │ │ └── GNUInstallDirs.cmake │ │ │ │ ├── copying.txt │ │ │ │ ├── glm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── _features.hpp │ │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ │ ├── func_common.inl │ │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ │ ├── glm.cpp │ │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ │ ├── setup.hpp │ │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ │ ├── type_half.inl │ │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ │ ├── exponential.hpp │ │ │ │ │ ├── ext.hpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ │ ├── matrix_int2x2.hpp │ │ │ │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ │ │ │ ├── matrix_int2x3.hpp │ │ │ │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ │ │ │ ├── matrix_int2x4.hpp │ │ │ │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ │ │ │ ├── matrix_int3x2.hpp │ │ │ │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ │ │ │ ├── matrix_int3x3.hpp │ │ │ │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ │ │ │ ├── matrix_int3x4.hpp │ │ │ │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ │ │ │ ├── matrix_int4x2.hpp │ │ │ │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ │ │ │ ├── matrix_int4x3.hpp │ │ │ │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ │ │ │ ├── matrix_int4x4.hpp │ │ │ │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_integer.inl │ │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── matrix_uint2x2.hpp │ │ │ │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x3.hpp │ │ │ │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x4.hpp │ │ │ │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x2.hpp │ │ │ │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x3.hpp │ │ │ │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x4.hpp │ │ │ │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x2.hpp │ │ │ │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x3.hpp │ │ │ │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x4.hpp │ │ │ │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ │ ├── scalar_integer.hpp │ │ │ │ │ │ ├── scalar_integer.inl │ │ │ │ │ │ ├── scalar_packing.hpp │ │ │ │ │ │ ├── scalar_packing.inl │ │ │ │ │ │ ├── scalar_reciprocal.hpp │ │ │ │ │ │ ├── scalar_reciprocal.inl │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ │ ├── vector_int1_sized.hpp │ │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ │ ├── vector_int2_sized.hpp │ │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ │ ├── vector_int3_sized.hpp │ │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ │ ├── vector_int4_sized.hpp │ │ │ │ │ │ ├── vector_integer.hpp │ │ │ │ │ │ ├── vector_integer.inl │ │ │ │ │ │ ├── vector_packing.hpp │ │ │ │ │ │ ├── vector_packing.inl │ │ │ │ │ │ ├── vector_reciprocal.hpp │ │ │ │ │ │ ├── vector_reciprocal.inl │ │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ │ ├── vector_uint1_sized.hpp │ │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ │ ├── vector_uint2_sized.hpp │ │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ │ ├── vector_uint3_sized.hpp │ │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ │ ├── vector_uint4_sized.hpp │ │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ │ └── vector_ulp.inl │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── geometric.hpp │ │ │ │ │ ├── glm.hpp │ │ │ │ │ ├── gtc │ │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── constants.hpp │ │ │ │ │ │ ├── constants.inl │ │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── noise.hpp │ │ │ │ │ │ ├── noise.inl │ │ │ │ │ │ ├── packing.hpp │ │ │ │ │ │ ├── packing.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ │ ├── random.hpp │ │ │ │ │ │ ├── random.inl │ │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ │ ├── round.hpp │ │ │ │ │ │ ├── round.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ │ ├── ulp.inl │ │ │ │ │ │ └── vec1.hpp │ │ │ │ │ ├── gtx │ │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ │ ├── bit.hpp │ │ │ │ │ │ ├── bit.inl │ │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── common.inl │ │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ │ ├── easing.hpp │ │ │ │ │ │ ├── easing.inl │ │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ │ ├── extend.hpp │ │ │ │ │ │ ├── extend.inl │ │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ │ ├── functions.hpp │ │ │ │ │ │ ├── functions.inl │ │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ ├── hash.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ │ ├── intersect.inl │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── io.inl │ │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ │ ├── log_base.inl │ │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ │ ├── norm.hpp │ │ │ │ │ │ ├── norm.inl │ │ │ │ │ │ ├── normal.hpp │ │ │ │ │ │ ├── normal.inl │ │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ │ ├── projection.hpp │ │ │ │ │ │ ├── projection.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── spline.hpp │ │ │ │ │ │ ├── spline.inl │ │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ │ ├── texture.hpp │ │ │ │ │ │ ├── texture.inl │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ ├── transform.inl │ │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ │ ├── transform2.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ │ └── wrap.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── mat2x2.hpp │ │ │ │ │ ├── mat2x3.hpp │ │ │ │ │ ├── mat2x4.hpp │ │ │ │ │ ├── mat3x2.hpp │ │ │ │ │ ├── mat3x3.hpp │ │ │ │ │ ├── mat3x4.hpp │ │ │ │ │ ├── mat4x2.hpp │ │ │ │ │ ├── mat4x3.hpp │ │ │ │ │ ├── mat4x4.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── simd │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── exponential.h │ │ │ │ │ │ ├── geometric.h │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ ├── neon.h │ │ │ │ │ │ ├── packing.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ │ └── vector_relational.h │ │ │ │ │ ├── trigonometric.hpp │ │ │ │ │ ├── vec2.hpp │ │ │ │ │ ├── vec3.hpp │ │ │ │ │ ├── vec4.hpp │ │ │ │ │ └── vector_relational.hpp │ │ │ │ ├── readme.txt │ │ │ │ └── util │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindGLM.cmake │ │ │ │ │ ├── autoexp.txt │ │ │ │ │ └── glm.natvis │ │ │ ├── miniaudio │ │ │ │ └── miniaudio.h │ │ │ └── nlohmann │ │ │ │ └── json.hpp │ │ ├── common │ │ │ ├── Camera.hpp │ │ │ ├── Common.hpp │ │ │ ├── file_loader.cpp │ │ │ ├── file_loader.hpp │ │ │ ├── file_utils.cpp │ │ │ ├── file_utils.hpp │ │ │ ├── mh_config.hpp │ │ │ └── mh_log.hpp │ │ ├── llm_droid │ │ │ └── llm_mnn_jni.cpp │ │ ├── tts │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── bertvits2 │ │ │ │ │ ├── an_to_cn.hpp │ │ │ │ │ ├── chinese_bert.hpp │ │ │ │ │ ├── chinese_g2p.hpp │ │ │ │ │ ├── english_bert.hpp │ │ │ │ │ ├── english_g2p.hpp │ │ │ │ │ ├── mnn_bertvits2_tts_impl.hpp │ │ │ │ │ ├── pinyin.hpp │ │ │ │ │ ├── text_preprocessor.hpp │ │ │ │ │ ├── tone_adjuster.hpp │ │ │ │ │ ├── tts_generator.hpp │ │ │ │ │ ├── utils.hpp │ │ │ │ │ └── word_spliter.hpp │ │ │ │ ├── mnn_tts_config.hpp │ │ │ │ ├── mnn_tts_impl_base.hpp │ │ │ │ ├── mnn_tts_logger.hpp │ │ │ │ ├── mnn_tts_sdk.hpp │ │ │ │ ├── piper │ │ │ │ │ ├── audio_generator.hpp │ │ │ │ │ ├── espeak_ng_wrapper.hpp │ │ │ │ │ ├── mnn_piper_tts_impl.hpp │ │ │ │ │ ├── phoneme_ids.hpp │ │ │ │ │ ├── uni_algo.hpp │ │ │ │ │ ├── utf8.h │ │ │ │ │ └── utf8 │ │ │ │ │ │ ├── checked.h │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── cpp11.h │ │ │ │ │ │ ├── cpp17.h │ │ │ │ │ │ └── unchecked.h │ │ │ │ └── wavfile.hpp │ │ │ └── src │ │ │ │ ├── bertvits2 │ │ │ │ ├── an_to_cn.cpp │ │ │ │ ├── chinese_bert.cpp │ │ │ │ ├── chinese_g2p.cpp │ │ │ │ ├── english_bert.cpp │ │ │ │ ├── english_g2p.cpp │ │ │ │ ├── mnn_bertvits2_tts_impl.cpp │ │ │ │ ├── pinyin.cpp │ │ │ │ ├── text_preprocessor.cpp │ │ │ │ ├── tone_adjuster.cpp │ │ │ │ ├── tts_generator.cpp │ │ │ │ ├── utils.cpp │ │ │ │ └── word_spliter.cpp │ │ │ │ ├── mnn_tts_config.cpp │ │ │ │ ├── mnn_tts_logger.cpp │ │ │ │ ├── mnn_tts_sdk.cpp │ │ │ │ └── piper │ │ │ │ ├── audio_generator.cpp │ │ │ │ ├── mnn_piper_tts_impl.cpp │ │ │ │ └── phoneme_ids.cpp │ │ └── tts_droid │ │ │ ├── tts_service.cpp │ │ │ ├── tts_service.hpp │ │ │ └── tts_service_jni.cpp │ └── java │ │ └── com │ │ └── taobao │ │ └── meta │ │ └── avatar │ │ ├── tts │ │ └── TtsService.kt │ │ └── utils │ │ └── AppUtils.kt │ └── test │ └── java │ └── io │ └── kindbrave │ └── mnnserver │ └── tts │ └── ExampleUnitTest.kt └── webserver ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src ├── androidTest └── java │ └── io │ └── kindbrave │ └── mnn │ └── webserver │ └── ExampleInstrumentedTest.kt ├── main ├── AndroidManifest.xml └── java │ └── io │ └── kindbrave │ └── mnn │ └── webserver │ ├── WebServer.kt │ ├── annotation │ ├── LogAfterInterceptCut.kt │ ├── LogAnnotation.kt │ └── LogBeforeInterceptCut.kt │ ├── repository │ ├── KindBraveMNNModelDownloadRepository.kt │ ├── MNNModelDownloadRepository.kt │ ├── MNNModelRepository.kt │ └── UserUploadModelRepository.kt │ └── webserver │ ├── KtorServer.kt │ ├── MNNHandler.kt │ ├── MNNTTSHandler.kt │ ├── config │ ├── Authentication.kt │ ├── CORS.kt │ ├── Logging.kt │ ├── Routing.kt │ ├── Serialization.kt │ ├── StatusPage.kt │ └── WebSockets.kt │ ├── request │ ├── ChatGenerate.kt │ └── TTSTextRequest.kt │ ├── response │ ├── ChatCompletionResponse.kt │ └── Model.kt │ ├── route │ ├── AudioRoutes.kt │ ├── CompletionsRoutes.kt │ ├── EmbeddingsRoutes.kt │ ├── ModelsRoutes.kt │ └── TTSRoutes.kt │ └── utils │ ├── FunctionCallUtils.kt │ ├── MNNHandlerUtils.kt │ └── TTSUtils.kt └── test └── java └── io └── kindbrave └── mnn └── webserver └── ExampleUnitTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | MNN Server -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/MarsCodeWorkspaceAppSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/MarsCodeWorkspaceAppSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/model_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/assets/model_list.json -------------------------------------------------------------------------------- /app/src/main/java/io/kindbrave/mnnserver/MNNServerApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/java/io/kindbrave/mnnserver/MNNServerApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/io/kindbrave/mnnserver/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/java/io/kindbrave/mnnserver/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/kindbrave/mnnserver/tts/TTSService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/java/io/kindbrave/mnnserver/tts/TTSService.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/about.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baichuan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/baichuan_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/chatglm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/chatglm_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/config.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/deepseek_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/deepseek_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/done.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/export.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/filter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/gemma_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/gemma_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/ic_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/internlm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/internlm_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/jina_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/jina_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/llama_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/llama_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/local.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/log.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/phi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/phi_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/qwen_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/qwen_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/smolm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/smolm_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/start.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/stop.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/unknown.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/web.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/yi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/drawable/yi_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/tts_engine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/main/res/xml/tts_engine.xml -------------------------------------------------------------------------------- /app/src/test/java/io/kindbrave/mnnserver/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/app/src/test/java/io/kindbrave/mnnserver/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/img/img1.jpg -------------------------------------------------------------------------------- /img/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/img/img2.jpg -------------------------------------------------------------------------------- /img/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/img/img3.jpg -------------------------------------------------------------------------------- /mnn-base/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /mnn-base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/build.gradle.kts -------------------------------------------------------------------------------- /mnn-base/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/consumer-rules.pro -------------------------------------------------------------------------------- /mnn-base/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/proguard-rules.pro -------------------------------------------------------------------------------- /mnn-base/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ApplicationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ApplicationProvider.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/FileDownloadException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/FileDownloadException.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ModelItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ModelItem.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/download/DownloadInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/download/DownloadInfo.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/hf/HfApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/hf/HfApiClient.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/hf/HfApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/hf/HfApiService.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/hf/HfFileMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/hf/HfFileMetadata.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/hf/HfRepoInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/hf/HfRepoInfo.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ml/MlApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ml/MlApiClient.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ml/MlRepoInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ml/MlRepoInfo.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ms/MsApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ms/MsApiClient.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ms/MsApiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ms/MsApiService.java -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/ms/MsRepoInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/ms/MsRepoInfo.java -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/source/ModelSourceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/source/ModelSourceConfig.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/source/ModelSources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/source/ModelSources.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mls/api/source/RepoConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mls/api/source/RepoConfig.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mnnllm/android/model/ModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mnnllm/android/model/ModelUtils.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mnnllm/android/utils/DeviceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mnnllm/android/utils/DeviceUtils.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/com/alibaba/mnnllm/android/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/com/alibaba/mnnllm/android/utils/FileUtils.kt -------------------------------------------------------------------------------- /mnn-base/src/main/java/io/kindbrave/mnn/base/utils/ModelConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnn-base/src/main/java/io/kindbrave/mnn/base/utils/ModelConfig.kt -------------------------------------------------------------------------------- /mnnui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /mnnui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/build.gradle.kts -------------------------------------------------------------------------------- /mnnui/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/consumer-rules.pro -------------------------------------------------------------------------------- /mnnui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/proguard-rules.pro -------------------------------------------------------------------------------- /mnnui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/annotation/LogAnnotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/annotation/LogAnnotation.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/data/LogRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/data/LogRepository.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/data/ServerPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/data/ServerPreferences.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/di/CoroutinesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/di/CoroutinesModule.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/di/KtorServerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/di/KtorServerModule.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/model/ChatDataItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/model/ChatDataItem.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/model/PortConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/model/PortConfig.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/navigation/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/navigation/Navigation.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/service/WebServerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/service/WebServerService.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/screens/list/TagChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/screens/list/TagChip.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Color.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Theme.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/ui/theme/Type.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/CustomModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/CustomModelUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/FileUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelIconUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelIconUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelNameUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelNameUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelPreferences.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ModelUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ServiceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/java/io/kindbrave/mnn/mnnui/utils/ServiceUtils.kt -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/about.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/baichuan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/baichuan_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/chatglm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/chatglm_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/config.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/deepseek_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/deepseek_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/delete.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/done.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/download.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/export.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/filter.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/gemma_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/gemma_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/ic_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/ic_notification.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/internlm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/internlm_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/jina_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/jina_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/list.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/llama_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/llama_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/local.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/log.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/pause.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/phi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/phi_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/qwen_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/qwen_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/smolm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/smolm_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/start.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/stop.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/tts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/tts.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/unknown.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/web.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/drawable/yi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/drawable/yi_icon.png -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /mnnui/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /mnnui/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /mnnui/src/test/java/io/kindbrave/mnnserver/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/mnnui/src/test/java/io/kindbrave/mnnserver/ExampleUnitTest.kt -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/build.gradle.kts -------------------------------------------------------------------------------- /server/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/consumer-rules.pro -------------------------------------------------------------------------------- /server/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/proguard-rules.pro -------------------------------------------------------------------------------- /server/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /server/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /server/src/main/cpp/asr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/asr.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/asr_mnn_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/asr_mnn_jni.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/crash_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/crash_util.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/diffusion_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/diffusion_jni.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/diffusion_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/diffusion_session.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/diffusion_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/diffusion_session.h -------------------------------------------------------------------------------- /server/src/main/cpp/embedding_mnn_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/embedding_mnn_jni.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/embedding_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/embedding_session.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/embedding_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/embedding_session.h -------------------------------------------------------------------------------- /server/src/main/cpp/include/asr/asr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/include/asr/asr.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/include/asr/asrconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/include/asr/asrconfig.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/include/asr/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/include/asr/tokenizer.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/include/audio/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/include/audio/audio.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/llm_mnn_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/llm_mnn_jni.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/llm_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/llm_session.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/llm_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/llm_session.h -------------------------------------------------------------------------------- /server/src/main/cpp/llm_stream_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/llm_stream_buffer.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/mls_config.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by ruoyi.sjd on 2024/12/25. 3 | // 4 | 5 | #pragma once 6 | #define DEBUG_SAVE_WAV 0 -------------------------------------------------------------------------------- /server/src/main/cpp/mls_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/mls_log.h -------------------------------------------------------------------------------- /server/src/main/cpp/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/nlohmann/json.hpp -------------------------------------------------------------------------------- /server/src/main/cpp/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/tokenizer.cpp -------------------------------------------------------------------------------- /server/src/main/cpp/utf8_stream_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/cpp/utf8_stream_processor.hpp -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/MNN.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/MNN.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/AsrSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/AsrSession.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/ChatSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/ChatSession.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/MNNAsr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/MNNAsr.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/MNNEmbedding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/MNNEmbedding.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/MNNLlm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/MNNLlm.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/Session.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/Session.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/engine/TTSSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/engine/TTSSession.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/service/LLMService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/service/LLMService.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/utils/FileUtils.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/utils/ModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/utils/ModelUtils.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/utils/TTSArrayUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/utils/TTSArrayUtils.kt -------------------------------------------------------------------------------- /server/src/main/java/io/kindbrave/mnn/server/utils/TTSModelConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/main/java/io/kindbrave/mnn/server/utils/TTSModelConfig.kt -------------------------------------------------------------------------------- /server/src/test/java/io/kindbrave/mnn/base/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/server/src/test/java/io/kindbrave/mnn/base/ExampleUnitTest.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /sherpa/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /sherpa/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/build.gradle.kts -------------------------------------------------------------------------------- /sherpa/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/consumer-rules.pro -------------------------------------------------------------------------------- /sherpa/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/proguard-rules.pro -------------------------------------------------------------------------------- /sherpa/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/AudioTagging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/AudioTagging.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/FeatureConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/FeatureConfig.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/KeywordSpotter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/KeywordSpotter.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflinePunctuation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflinePunctuation.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineRecognizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineRecognizer.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineSpeakerDiarization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineSpeakerDiarization.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OfflineStream.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlinePunctuation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlinePunctuation.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlineRecognizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlineRecognizer.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlineStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/OnlineStream.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/Speaker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/Speaker.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/Tts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/Tts.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/Vad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/Vad.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/com/k2fsa/sherpa/mnn/WaveReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/com/k2fsa/sherpa/mnn/WaveReader.kt -------------------------------------------------------------------------------- /sherpa/src/main/java/io/kindbrave/mnn/sherpa/SherpaTts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/main/java/io/kindbrave/mnn/sherpa/SherpaTts.kt -------------------------------------------------------------------------------- /sherpa/src/test/java/io/kindbrave/mnn/sherpa/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/sherpa/src/test/java/io/kindbrave/mnn/sherpa/ExampleUnitTest.kt -------------------------------------------------------------------------------- /tts/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /tts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/build.gradle.kts -------------------------------------------------------------------------------- /tts/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/consumer-rules.pro -------------------------------------------------------------------------------- /tts/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/proguard-rules.pro -------------------------------------------------------------------------------- /tts/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tts/src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/CMakeLists.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/CTestConfig.cmake -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/cmake/GNUInstallDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/cmake/GNUInstallDirs.cmake -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/copying.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/glm.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/integer.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/packing.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/common.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/readme.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/util/CMakeLists.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/util/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/util/FindGLM.cmake -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/util/autoexp.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/glm/util/glm.natvis -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/miniaudio/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/miniaudio/miniaudio.h -------------------------------------------------------------------------------- /tts/src/main/cpp/3rd_party/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/3rd_party/nlohmann/json.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/Camera.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/Common.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/file_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/file_loader.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/file_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/file_loader.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/file_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/file_utils.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/file_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/file_utils.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/mh_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/mh_config.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/common/mh_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/common/mh_log.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/llm_droid/llm_mnn_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/llm_droid/llm_mnn_jni.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/CMakeLists.txt -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/an_to_cn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/an_to_cn.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/chinese_bert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/chinese_bert.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/chinese_g2p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/chinese_g2p.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/english_bert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/english_bert.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/english_g2p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/english_g2p.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/mnn_bertvits2_tts_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/mnn_bertvits2_tts_impl.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/pinyin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/pinyin.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/text_preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/text_preprocessor.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/tone_adjuster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/tone_adjuster.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/tts_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/tts_generator.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/utils.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/bertvits2/word_spliter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/bertvits2/word_spliter.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/mnn_tts_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/mnn_tts_config.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/mnn_tts_impl_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/mnn_tts_impl_base.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/mnn_tts_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/mnn_tts_logger.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/mnn_tts_sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/mnn_tts_sdk.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/audio_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/audio_generator.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/espeak_ng_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/espeak_ng_wrapper.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/mnn_piper_tts_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/mnn_piper_tts_impl.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/phoneme_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/phoneme_ids.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/uni_algo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/uni_algo.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8/checked.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8/core.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8/cpp11.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8/cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8/cpp17.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/piper/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/piper/utf8/unchecked.h -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/include/wavfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/include/wavfile.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/an_to_cn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/an_to_cn.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/chinese_bert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/chinese_bert.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/chinese_g2p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/chinese_g2p.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/english_bert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/english_bert.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/english_g2p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/english_g2p.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/mnn_bertvits2_tts_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/mnn_bertvits2_tts_impl.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/pinyin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/pinyin.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/text_preprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/text_preprocessor.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/tone_adjuster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/tone_adjuster.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/tts_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/tts_generator.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/utils.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/bertvits2/word_spliter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/bertvits2/word_spliter.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/mnn_tts_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/mnn_tts_config.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/mnn_tts_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/mnn_tts_logger.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/mnn_tts_sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/mnn_tts_sdk.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/piper/audio_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/piper/audio_generator.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/piper/mnn_piper_tts_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/piper/mnn_piper_tts_impl.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts/src/piper/phoneme_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts/src/piper/phoneme_ids.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts_droid/tts_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts_droid/tts_service.cpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts_droid/tts_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts_droid/tts_service.hpp -------------------------------------------------------------------------------- /tts/src/main/cpp/tts_droid/tts_service_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/cpp/tts_droid/tts_service_jni.cpp -------------------------------------------------------------------------------- /tts/src/main/java/com/taobao/meta/avatar/tts/TtsService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/java/com/taobao/meta/avatar/tts/TtsService.kt -------------------------------------------------------------------------------- /tts/src/main/java/com/taobao/meta/avatar/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/main/java/com/taobao/meta/avatar/utils/AppUtils.kt -------------------------------------------------------------------------------- /tts/src/test/java/io/kindbrave/mnnserver/tts/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/tts/src/test/java/io/kindbrave/mnnserver/tts/ExampleUnitTest.kt -------------------------------------------------------------------------------- /webserver/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /webserver/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/webserver/build.gradle.kts -------------------------------------------------------------------------------- /webserver/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/webserver/consumer-rules.pro -------------------------------------------------------------------------------- /webserver/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/webserver/proguard-rules.pro -------------------------------------------------------------------------------- /webserver/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/webserver/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /webserver/src/main/java/io/kindbrave/mnn/webserver/WebServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshine0523/MNNServer/HEAD/webserver/src/main/java/io/kindbrave/mnn/webserver/WebServer.kt --------------------------------------------------------------------------------