Update sample workload wasm-av1 and add workload XNNPACK (#443)

This commit is contained in:
Wenyong Huang
2020-11-13 17:53:23 +08:00
committed by GitHub
parent a2641e174a
commit 892af84161
17 changed files with 1474 additions and 19 deletions

View File

@ -0,0 +1,30 @@
# Copyright (C) 2019 Intel Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
package(default_visibility = ['//visibility:public'])
load(":emscripten_toolchain_config.bzl", "emsdk_toolchain_config")
cc_toolchain_suite(
name = "emscripten",
toolchains = {
"wasm": ":emsdk_toolchain",
},
)
filegroup(name = "empty")
emsdk_toolchain_config(name = "emsdk_toolchain_config")
cc_toolchain(
name = "emsdk_toolchain",
toolchain_identifier = "emsdk-toolchain",
toolchain_config = ":emsdk_toolchain_config",
all_files = ":empty",
compiler_files = ":empty",
dwp_files = ":empty",
linker_files = ":empty",
objcopy_files = ":empty",
strip_files = ":empty",
supports_param_files = 0,
)