Skip to content

Commit

Permalink
Add wasm and portable simd
Browse files Browse the repository at this point in the history
  • Loading branch information
XuShaohua committed Mar 14, 2024
1 parent b70985f commit dbeb976
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
1 change: 1 addition & 0 deletions src/concurrency/concurrent-programming-model.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 并发编程模型
1 change: 1 addition & 0 deletions src/unsafe/portable-simd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Portable simd
File renamed without changes.

0 comments on commit dbeb976

Please sign in to comment.