1 Star 0 Fork 373

王超/op-plugin

forked from Ascend/op-plugin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gencode.sh 2.30 KB
一键复制 编辑 原始数据 按行查看 历史
dilililiwhy 提交于 2024-10-22 07:44 . !1886 Checkout v2r6
#!/bin/bash
# Copyright (c) 2023 Huawei Technologies Co., Ltd
# Copyright (c) 2019, Facebook CORPORATION.
# All rights reserved.
#
# Licensed under the BSD 3-Clause License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://opensource.org/licenses/BSD-3-Clause
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
CDIR="$(cd "$(dirname "$0")" ; pwd -P)"
cd $CDIR/
# Following updates only add incompatible ops files in corresponding branch folder.
newest_minor_version=6
for minor_version in $(seq 1 ${newest_minor_version}); do
# Merge base info and version related info (unsupported ops)
sed -i "1r test/unsupported_ops_info_base.yaml" test/test_v2r${minor_version}_ops/unsupported_ops_info.yaml
done
PYTORCH_VERSION="$1"
IFS='.' read -ra version_parts <<< "$PYTORCH_VERSION"
PYTORCH_VERSION_DIR="v${version_parts[0]}r${version_parts[1]}"
python_execute="$2"
export PYTORCH_VERSION="$PYTORCH_VERSION"
OUTPUT_DIR="$CDIR/op_plugin/config/$PYTORCH_VERSION_DIR"
if [ ! -d "$OUTPUT_DIR" ]; then
mkdir "$OUTPUT_DIR"
fi
if [ "$PYTORCH_VERSION_DIR" == "v1r11" ]; then
cp $CDIR/op_plugin/config/aclnn_derivatives.yaml $OUTPUT_DIR
fi
${python_execute} -m codegen.gen_op_plugin_functions \
--version="$PYTORCH_VERSION" \
--output_dir="$OUTPUT_DIR/" \
--source_yaml="$CDIR/op_plugin/config/op_plugin_functions.yaml"
${python_execute} -m codegen.gen_derivatives \
--version="$PYTORCH_VERSION" \
--output_dir="$OUTPUT_DIR/" \
--source_yaml="$CDIR/op_plugin/config/derivatives.yaml"
${python_execute} -m codegen.gen_backend_stubs \
--version="$PYTORCH_VERSION" \
--output_dir="$CDIR/op_plugin/" \
--source_yaml="$OUTPUT_DIR/op_plugin_functions.yaml" \
--impl_path="$CDIR/torch_npu/csrc/aten" # Used to double-check the yaml file definitions.
${python_execute} -m codegen.struct.gen_struct_opapi \
--output_dir="$CDIR/op_plugin/ops/opapi/" \
--native_yaml="$OUTPUT_DIR/op_plugin_functions.yaml" \
--struct_yaml="$CDIR/op_plugin/config/op_plugin_functions.yaml"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangchao147/op-plugin.git
git@gitee.com:wangchao147/op-plugin.git
wangchao147
op-plugin
op-plugin
master

搜索帮助