mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
ac9e789951
Major changes: - Public headers inside `wasi-nn/include` - Put cmake files in `cmake` folder - Make linux iwasm link with `${WASI_NN_LIBS}` so iwasm can enable wasi-nn
16 lines
364 B
Bash
Executable File
16 lines
364 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.12.0
|
|
|
|
# NOTE: fixes this https://github.com/tensorflow/tensorflow/issues/59631
|
|
cd tensorflow-src
|
|
git cherry-pick 5115fa96d7c5b41451674892317be43e30b7c389
|
|
|
|
exit 0
|