mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 23:42:05 +00:00
e53ab91439
Initial integration of WASI-NN based on #1225: - Implement the library core/iwasm/libraries/wasi-nn - Support TensorFlow, CPU, F32 at the first stage - Add cmake variable `-DWAMR_BUILD_WASI_NN` - Add test case based on Docker image and update document Refer to #1573
12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DEPS_ROOT=$(cd "$(dirname "$0")/" && pwd)
|
|
cd ${DEPS_ROOT}
|
|
|
|
echo "Downloading tensorflow in ${PWD}..."
|
|
|
|
git clone https://github.com/tensorflow/tensorflow.git tensorflow-src \
|
|
--branch v2.9.2
|
|
|
|
exit 0
|