From dbeb976bda0bcee45347e06dede9ee766bf3bb5a Mon Sep 17 00:00:00 2001 From: Xu Shaohua Date: Thu, 14 Mar 2024 10:49:15 +0800 Subject: [PATCH] Add wasm and portable simd --- src/SUMMARY.md | 16 +++++++--------- src/concurrency/concurrent-programming-model.md | 1 + src/unsafe/portable-simd.md | 1 + src/{web/wasm.md => wasm/index.md} | 0 4 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 src/concurrency/concurrent-programming-model.md create mode 100644 src/unsafe/portable-simd.md rename src/{web/wasm.md => wasm/index.md} (100%) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index a014ead..3f83a7f 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -144,9 +144,14 @@ - [自定义内存分配器](mem/customize-allocator.md) - [工具](mem/tools.md) - [并发](concurrency/index.md) + - [并发编程模型](concurrency/concurrent-programming-model.md) - [多线程](concurrency/multi-threads.md) + - [线程池 rayon](concurrency/rayon.md) - [共享内存](concurrency/memory-sharing.md) + - [Channel](concurrency/channel.md) - [消息传递 Message Passing](concurrency/message-passing.md) + - [Actor Model](concurrency/actor-model.md) + - [多进程](concurrency/multi-processing.md) - [Send and Sync](concurrency/send-and-sync.md) - [Arc 与 Weak](concurrency/arc.md) - [Mutex 与 MutexGuard](concurrency/mutex.md) @@ -159,10 +164,6 @@ - [Memory Order](concurrency/memory-order.md) - [原子操作 Atomic](concurrency/atomic.md) - [Thread Local Storage](concurrency/thread-local-storage.md) - - [Channel](concurrency/channel.md) - - [线程池 rayon](concurrency/rayon.md) - - [Actor Model](concurrency/actor-model.md) - - [多进程](concurrency/multi-processing.md) - [参考资料](concurrency/references.md) - [异步 async](async/index.md) - [标准库中的 future 模块](async/future-module.md) @@ -187,6 +188,7 @@ - [使用外部库中的函数](ffi/function-from-libraries.md) - [使用 CC 编译C代码并链接到内部](ffi/cc.md) - [自动生成语言绑定](ffi/binding.md) +- [wasm](wasm/index.md) - [标准库](std/index.md) - [格式化输出 format](std/format.md) - [IO](std/io.md) @@ -222,15 +224,11 @@ - [数据结构与算法](algs.md) - [性能优化](perf/index.md) - [网络 web programming](web/index.md) - - [wasm](web/wasm.md) - [Yew](web/yew/index.md) - - [Prepare](web/yew/01.prepare.md) - - [Intro](web/yew/02.intro.md) - - [HTML](web/yew/03.html.md) - - [External Crates](web/yew/04.crates.md) - [webgl2](web/webgl2.md) - [tls](web/tls.md) - [新特性 unstable features](unstable/index.md) + - [portable simd](unsafe/portable-simd.md) - [第三方库 crates.io](crate.io/index.md) - [时间 Time](crate.io/time.md) - [参考资料](ref.md) diff --git a/src/concurrency/concurrent-programming-model.md b/src/concurrency/concurrent-programming-model.md new file mode 100644 index 0000000..43cc99e --- /dev/null +++ b/src/concurrency/concurrent-programming-model.md @@ -0,0 +1 @@ +# 并发编程模型 \ No newline at end of file diff --git a/src/unsafe/portable-simd.md b/src/unsafe/portable-simd.md new file mode 100644 index 0000000..c6dce0a --- /dev/null +++ b/src/unsafe/portable-simd.md @@ -0,0 +1 @@ +# Portable simd \ No newline at end of file diff --git a/src/web/wasm.md b/src/wasm/index.md similarity index 100% rename from src/web/wasm.md rename to src/wasm/index.md