mirror of https://github.com/alibaba/MNN.git
Compare commits
6 Commits
b7abe0bd95
...
252d7acead
Author | SHA1 | Date |
---|---|---|
|
252d7acead | |
|
8f0dc464b1 | |
|
0810e4725b | |
|
0e1e7b4b96 | |
|
fdce8372bf | |
|
d0d879384a |
11
README.md
11
README.md
|
@ -6,8 +6,17 @@
|
|||
[](README_JP.md)
|
||||
[](http://www.mnn.zone)
|
||||
|
||||
[](./apps/Android/MnnLlmChat/README.md)
|
||||
[](./apps/Android/Mnn3dAvatar/README.md)
|
||||
|
||||
|
||||
## News 🔥
|
||||
- [2025/05/30] app support DeepSeek-R1-0528-Qwen3,Qwen3-30B-A3B, SmoVLM and FastVLM [MNN Chat App](./apps/Android/MnnLlmChat/README.md#releases).
|
||||
- [2025/06/11] New App MNN TaoAvatar released, you can talk with 3DAvatar offline with LLM, ASR, TTS, A2BS and NNR models all run local on your device!! [MNN TaoAvatar](./apps/Android/Mnn3dAvatar/README.md)
|
||||
<p align="center">
|
||||
<img width="20%" alt="Icon" src="https://meta.alicdn.com/data/mnn/avatar/avatar_demo.gif" style="margin: 0 10px;">
|
||||
</p>
|
||||
|
||||
- [2025/05/30] MNN Chat app support DeepSeek-R1-0528-Qwen3,Qwen3-30B-A3B, SmoVLM and FastVLM [MNN Chat App](./apps/Android/MnnLlmChat/README.md#releases).
|
||||
- [2025/05/12] android app support qwen2.5 omni 3b and 7b [MNN Chat App](./apps/Android/MnnLlmChat/README.md#releases).
|
||||
<p align="center">
|
||||
<img width="20%" alt="Icon" src="./apps/Android/MnnLlmChat/assets/image_home_new.jpg" style="margin: 0 10px;">
|
||||
|
|
|
@ -14,7 +14,7 @@ Welcome to **MNN TaoAvatar App**, a full-featured mobile app about the [TaoAvata
|
|||
- LLM (Large Language Model)
|
||||
- ASR (Automatic Speech Recognition)
|
||||
- TTS (Text-to-Speech)
|
||||
- A2BS (Audio-to-Behavior Synthesis)
|
||||
- A2BS (Audio-to-BlendShape)
|
||||
- NNR (Neural Rendering)
|
||||
|
||||
> The iOS App will be coming later, stay tuned for updates!
|
||||
|
|
|
@ -23,6 +23,20 @@ static inline void MNN__mm_storeu_si64(void* add, __m128i value) {
|
|||
_mm_storeu_ps(temp, _mm_castsi128_ps(value));
|
||||
::memcpy(add, temp, sizeof(int64_t));
|
||||
}
|
||||
#if defined(_MSC_VER) && !defined(_mm256_extract_epi64)
|
||||
static inline uint64_t _mm256_extract_epi64(__m256i a, const int index)
|
||||
{
|
||||
typedef union {
|
||||
__m256i v;
|
||||
uint64_t i64[4];
|
||||
} extractor;
|
||||
|
||||
extractor u;
|
||||
u.v = a;
|
||||
|
||||
return u.i64[index];
|
||||
}
|
||||
#endif
|
||||
} // namespace
|
||||
|
||||
#define POSTTREAT(N) \
|
||||
|
|
Loading…
Reference in New Issue