You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "checking out branch ${{ env.BRANCH_NAME }} of submodule external/LibAPR"
94
-
cd external/LibAPR
95
-
git checkout ${{ env.BRANCH_NAME }}
96
-
97
70
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
98
71
- uses: lukka/get-cmake@latest
99
72
# Restore both vcpkg and its artifacts from the GitHub cache service.
Copy file name to clipboardExpand all lines: .github/workflows/deploy-docs.yml
-14Lines changed: 0 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -39,20 +39,6 @@ jobs:
39
39
40
40
- name: Submodule recursive
41
41
run: git submodule update --init --recursive
42
-
43
-
- name: Get branch name
44
-
shell: bash
45
-
run: |
46
-
raw=$(git branch -r --contains ${{ github.ref }})
47
-
branch=${raw/origin\/}
48
-
echo "BRANCH_NAME=$(echo $branch)" >> $GITHUB_ENV
49
-
50
-
- name: Checkout master/develop branch of LibAPR
51
-
shell: bash
52
-
run: |
53
-
echo "checking out branch ${{ env.BRANCH_NAME }} of submodule external/LibAPR"
54
-
cd external/LibAPR
55
-
git checkout ${{ env.BRANCH_NAME }}
56
42
57
43
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
Copy file name to clipboardExpand all lines: .github/workflows/quick-test.yml
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -45,12 +45,6 @@ jobs:
45
45
- name: Submodule recursive
46
46
run: git submodule update --init --recursive
47
47
48
-
- name: Checkout develop branch of LibAPR
49
-
shell: bash
50
-
run: |
51
-
cd external/LibAPR
52
-
git checkout develop
53
-
54
48
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
55
49
- uses: lukka/get-cmake@latest
56
50
# Restore both vcpkg and its artifacts from the GitHub cache service.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ can be used directly in a wide range of processing tasks - even on the GPU!
21
21
22
22
For more detailed information about the APR and its use, see:
23
23
-[Adaptive particle representation of fluorescence microscopy images](https://www.nature.com/articles/s41467-018-07390-9) (nature communications)
24
-
-[Parallel Discrete Convolutions on Adaptive Particle Representations of Images](https://arxiv.org/abs/2112.03592) (arXiv preprint)
24
+
-[Parallel Discrete Convolutions on Adaptive Particle Representations of Images](https://ieeexplore.ieee.org/abstract/document/9796006) (IEEE Transactions on Image Processing)
25
25
26
26
**pyapr** is built on top of the C++ library [LibAPR] using [pybind11].
0 commit comments