blob: c4c056408666391802b6aebfdf8ef1fa1a4698c7 [file] [log] [blame]
#!/bin/bash
# Copyright 2022 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# Builds the sample, running host tools, Emscripten, and CMake as needed.
#
# Prerequisites:
# * Environment must be configured for Emscripten
# * Host tools must be built (default at IREE_SOURCE_DIR/build-host/install).
# The build_tools/cmake/build_host_install.sh script can do this for you.
#
# Usage:
# build_sample.sh (optional install path) && serve_sample.sh
set -e
###############################################################################
# Setup and checking for dependencies #
###############################################################################
if ! command -v emcmake &> /dev/null
then
echo "'emcmake' not found, setup environment according to https://emscripten.org/docs/getting_started/downloads.html"
exit 1
fi
CMAKE_BIN=${CMAKE_BIN:-$(which cmake)}
ROOT_DIR=$(git rev-parse --show-toplevel)
SOURCE_DIR=${ROOT_DIR}/experimental/web/sample_static
BUILD_DIR=${ROOT_DIR?}/build-emscripten
mkdir -p ${BUILD_DIR}
BINARY_DIR=${BUILD_DIR}/experimental/web/sample_static/
mkdir -p ${BINARY_DIR}
INSTALL_ROOT="${1:-${ROOT_DIR}/build-host/install}"
###############################################################################
# Compile from .mlir input to static C source files using host tools #
###############################################################################
TRANSLATE_TOOL="${INSTALL_ROOT?}/bin/iree-translate"
EMBED_DATA_TOOL="${INSTALL_ROOT?}/bin/generate_embed_data"
INPUT_NAME="mnist"
INPUT_PATH="${ROOT_DIR?}/iree/samples/models/mnist.mlir"
echo "=== Translating MLIR to static library output (.vmfb, .h, .o) ==="
${TRANSLATE_TOOL?} ${INPUT_PATH} \
--iree-mlir-to-vm-bytecode-module \
--iree-input-type=mhlo \
--iree-hal-target-backends=llvm \
--iree-llvm-target-triple=wasm32-unknown-unknown \
--iree-llvm-target-cpu-features=+simd128 \
--iree-llvm-link-static \
--iree-llvm-static-library-output-path=${BINARY_DIR}/${INPUT_NAME}_static.o \
--o ${BINARY_DIR}/${INPUT_NAME}.vmfb
echo "=== Embedding bytecode module (.vmfb) into C source files (.h, .c) ==="
${EMBED_DATA_TOOL?} ${BINARY_DIR}/${INPUT_NAME}.vmfb \
--output_header=${BINARY_DIR}/${INPUT_NAME}_bytecode.h \
--output_impl=${BINARY_DIR}/${INPUT_NAME}_bytecode.c \
--identifier=iree_static_${INPUT_NAME} \
--flatten
###############################################################################
# Build the web artifacts using Emscripten #
###############################################################################
echo "=== Building web artifacts using Emscripten ==="
pushd ${BUILD_DIR}
# Configure using Emscripten's CMake wrapper, then build.
# Note: The sample creates a device directly, so no drivers are required.
emcmake "${CMAKE_BIN?}" -G Ninja .. \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DIREE_HOST_BINARY_ROOT=${INSTALL_ROOT} \
-DIREE_BUILD_EXPERIMENTAL_WEB_SAMPLES=ON \
-DIREE_HAL_DRIVER_DEFAULTS=OFF \
-DIREE_BUILD_COMPILER=OFF \
-DIREE_BUILD_TESTS=OFF
"${CMAKE_BIN?}" --build . --target \
iree_experimental_web_sample_static_sync \
iree_experimental_web_sample_static_multithreaded
popd
echo "=== Copying static files to the build directory ==="
cp ${SOURCE_DIR}/index.html ${BINARY_DIR}
cp ${SOURCE_DIR}/iree_api.js ${BINARY_DIR}
cp ${SOURCE_DIR}/iree_worker.js ${BINARY_DIR}
EASELJS_LIBRARY=${BINARY_DIR}/easeljs.min.js
test -f ${EASELJS_LIBRARY} || \
wget https://code.createjs.com/1.0.0/easeljs.min.js -O ${EASELJS_LIBRARY}