mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-12 01:45:10 +00:00
![tonibofarull](/assets/img/avatar_default.png)
Remove restrictions:
- Only 1 WASM app at a time
- Only 1 model at a time
- `graph` and `graph-execution-context` are ignored
Refer to previous document:
e8d718096d/core/iwasm/libraries/wasi-nn/README.md
18 lines
495 B
CMake
18 lines
495 B
CMake
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
set (WASI_NN_DIR ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
include_directories (${WASI_NN_DIR})
|
|
include_directories (${WASI_NN_DIR}/src)
|
|
include_directories (${WASI_NN_DIR}/src/utils)
|
|
|
|
set (
|
|
LIBC_WASI_NN_SOURCE
|
|
${WASI_NN_DIR}/src/wasi_nn.c
|
|
${WASI_NN_DIR}/src/wasi_nn_tensorflowlite.cpp
|
|
${WASI_NN_DIR}/src/utils/wasi_nn_app_native.c
|
|
)
|
|
|
|
set (TENSORFLOW_LIB tensorflow-lite)
|