Update sample workload tensorflow (#2101)
Auto download emsdk under core/deps and hack it, and fix multi-thread issues.
This commit is contained in:
@ -1,29 +1,19 @@
|
||||
"tensorflow" sample introduction
|
||||
==============
|
||||
|
||||
This sample demonstrates how to build [tensorflow](https://github.com/tensorflow/tensorflow) into WebAssembly with emsdk toolchain and run it with iwasm. Please first install [emsdk](https://github.com/emscripten-core/emsdk):
|
||||
```bash
|
||||
git clone https://github.com/emscripten-core/emsdk.git
|
||||
cd emsdk
|
||||
./emsdk install 2.0.26
|
||||
./emsdk activate 2.0.26
|
||||
```
|
||||
And set up ensdk environment:
|
||||
```bash
|
||||
source emsdk_env.sh
|
||||
```
|
||||
Then run
|
||||
This sample demonstrates how to build [tensorflow](https://github.com/tensorflow/tensorflow) into WebAssembly with emsdk toolchain and run it with iwasm.:
|
||||
```bash
|
||||
./build.sh
|
||||
# for linux platform, or
|
||||
./build.sh --sgx
|
||||
# for linux-sgx platform or
|
||||
./build.sh --threads
|
||||
# for multi-thread execution (on linux platform)
|
||||
# for multi-threading on linux platform
|
||||
./build.sh --sgx
|
||||
# for linux-sgx platform
|
||||
```
|
||||
to build tensorflow and run it with iwasm, which basically contains the following steps:
|
||||
- clone emsdk under `<wamr_dir>/core/deps`, install and activate 2.0.26
|
||||
- hack emcc to delete some objects in libc.a
|
||||
- build tf-lite with emcc compiler
|
||||
- build iwasm with pthread enable and include libiary under libc-emcc
|
||||
- build iwasm with lib-pthread and libc-emcc enabled
|
||||
- run benchmark model with iwasm:
|
||||
--max-secs 300: means the max training time cost is 5 minutes, you can adjust it by yourself
|
||||
|
||||
Reference in New Issue
Block a user