Skip to content

Commit

Permalink
Merge branch 'master' into simplemath
Browse files Browse the repository at this point in the history
delete #include<math.h>
  • Loading branch information
HonestDeng committed Oct 20, 2023
2 parents 40ab383 + 3f437d3 commit c1b4364
Show file tree
Hide file tree
Showing 60 changed files with 19,966 additions and 3,849 deletions.
4 changes: 4 additions & 0 deletions .ci/pnnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
torchvision-version: 0.15.1
torchvision-cache-key: '0_15_1'

- torch-version: 2.1.0
torchvision-version: 0.16.0
torchvision-cache-key: '0_16_0'

runs-on:
pool-name: docker
container:
Expand Down
24 changes: 24 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
cmake:
- cmake/**
- toolchains/**

doc: docs/**

python: python/**

example: examples/**

test: tests/**

tool: tools/**
pnnx: tools/pnnx/**

core: src/*
layer: src/layer/*

arm: src/layer/arm/**
loongarch: src/layer/loongarch/**
mips: src/layer/mips/**
riscv: src/layer/riscv/**
vulkan: src/layer/vulkan/**
x86: src/layer/x86/**
2 changes: 1 addition & 1 deletion .github/workflows/code-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
rm -rf $GITHUB_WORKSPACE/clang-format-install
export PATH=~/bin:$PATH
sh codeformat.sh
- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: apply code-format changes

Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: labeler
on: [pull_request_target]

permissions:
contents: read
pull-requests: write

jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
4 changes: 2 additions & 2 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
brew uninstall --ignore-dependencies libomp
- name: Build wheels
uses: pypa/cibuildwheel@v2.15.0
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.15.0
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand Down
390 changes: 390 additions & 0 deletions benchmark/README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/developer-guide/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,7 @@ This function is often used in conjunction with affine_grid() to build Spatial T
| 0 | sample_type | int | 1 | |
| 1 | padding_mode | int | 1 | |
| 2 | align_corner | int | 0 | |
| 3 | permute_fusion| int | 0 | fuse with permute |


Sample type:
Expand Down
Loading

0 comments on commit c1b4364

Please sign in to comment.