diff --git a/.github/ISSUE_TEMPLATE/english.md b/.github/ISSUE_TEMPLATE/english.md deleted file mode 100644 index 56cebfba0..000000000 --- a/.github/ISSUE_TEMPLATE/english.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: English -about: Report issue in English -title: '' -labels: '' -assignees: '' - ---- - -## Environment - -FastDeploy version: e.g 0.8.0 or the latest code in develop branch -OS Platform: e.g. Linux x64 / Windows x64 / Mac OSX 12.1(arm or intel) -Hardware: e.g. Nvidia GPU 3080Ti CUDA 11.2 CUDNN 8.3 -Program Language: e.g. Python 3.8 - -## Problem description -Please attach the log file if there's problem happend. diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md deleted file mode 100644 index 8b7f46622..000000000 --- a/.github/ISSUE_TEMPLATE/other.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Other -about: Other issues, e.g feature/model request -title: '' -labels: '' -assignees: '' - ---- - - diff --git a/.github/ISSUE_TEMPLATE/报告issue.md b/.github/ISSUE_TEMPLATE/报告issue.md deleted file mode 100755 index cafba1dbc..000000000 --- a/.github/ISSUE_TEMPLATE/报告issue.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: 报告issue -about: 反馈使用中遇到的问题 -title: '' -labels: '' -assignees: '' - ---- - -********************************************* -温馨提示:根据社区不完全统计,按照模板提问,可以加快回复和解决问题的速度 -********************************************* - -## 环境 - -- 【FastDeploy版本】: 说明具体的版本,如fastdeploy-linux-gpu-0.8.0 -- 【编译命令】如果您是自行编译的FastDeploy,请说明您的编译方式(参数命令) -- 【系统平台】: Linux x64(Ubuntu 18.04) / Windows x64(Windows10) / Mac OSX arm(12.0) / Mac OSX intel(12.0) -- 【硬件】: 说明具体硬件型号,如 Nvidia GPU 3080TI, CUDA 11.2 CUDNN 8.3 -- 【编译语言】: C++ / Python(3.7或3.8等) - -## 问题日志及出现问题的操作流程 -- 附上详细的问题日志有助于快速定位分析 -- 【模型跑不通】 -- - 先执行`examples`下的部署示例,包括使用examples提供的模型,确认是否可以正确执行 -- - 如若`examples`下的代码可以运行,但自己的模型,或自己的代码不能运行 -- - - 提供复现问题的 代码+模型+错误log,供工程师快速定位问题 -- 【模型精度问题】 -- - 先执行`examples`下的部署示例,包括使用examples提供的模型,确认是否可以正确执行 -- - 如若`examples`下的代码可以运行,但自己的模型,或自己的代码不能运行 -- - - 提供复现问题的 代码+模型+错误log,供工程师快速定位问题 -- 【性能问题】描述清楚对比的方式 -- - 注意性能测试,循环跑N次,取后80%的用时平均(模型启动时,刚开始受限于资源分配,速度会较慢) -- - FastDeploy的Predict包含模型本身之外的数据前后处理用时 -- - - 提供复现问题的 代码+模型+错误log,供工程师快速定位问题 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 1b4727fd3..000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,10 +0,0 @@ - - - -### PR types(PR类型) - - -### Description - - - diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index d1569f65a..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build -on: [pull_request] - -jobs: - macOS-latest-py: - runs-on: macos-latest - - steps: - - name: Clone - uses: actions/checkout@v1 - - - name: Get CMake - uses: lukka/get-cmake@latest - - - name: Get Python - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Build FastDeploy - working-directory: ./python - run: | - export ENABLE_ORT_BACKEND=ON - export ENABLE_PADDLE_BACKEND=OFF - export ENABLE_OPENVINO_BACKEND=OFF - export ENABLE_VISION=ON - export ENABLE_TEXT=ON - python -m pip install wheel - python setup.py build - python setup.py bdist_wheel - ls -l