mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-22 17:41:26 +00:00

## Context Path to models use `/assets` for testing inside docker. While testing directly from the repo we are forced to use soft-links or modify the paths. ## Proposed Changes Use relative path and adjust docker volumes in docs.
22 lines
536 B
Bash
Executable File
22 lines
536 B
Bash
Executable File
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
# WASM application that uses WASI-NN
|
|
|
|
/opt/wasi-sdk/bin/clang \
|
|
-Wl,--allow-undefined \
|
|
-Wl,--strip-all,--no-entry \
|
|
--sysroot=/opt/wasi-sdk/share/wasi-sysroot \
|
|
-I../include -I../src/utils \
|
|
-o test_tensorflow.wasm \
|
|
test_tensorflow.c utils.c
|
|
|
|
# TFLite models to use in the tests
|
|
|
|
cd models
|
|
python3 average.py
|
|
python3 max.py
|
|
python3 mult_dimension.py
|
|
python3 mult_outputs.py
|
|
python3 sum.py
|