Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pool sharing with copy on write #56

Merged
merged 39 commits into from
Mar 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
96e5d3a
add pool sharing to PooledArrays
bkamins Feb 20, 2021
dd77169
further code review
bkamins Feb 20, 2021
7932121
use Atomic{Int} and implement copyto!
bkamins Feb 20, 2021
8dbee32
fix copy
bkamins Feb 20, 2021
92850e5
fix typo
bkamins Feb 20, 2021
995b3cd
fix leftover code
bkamins Feb 20, 2021
4c407f3
add missing )
bkamins Feb 20, 2021
00af820
fix small issues
bkamins Feb 20, 2021
45a33a9
add missing method
bkamins Feb 20, 2021
da13879
another missing method
bkamins Feb 20, 2021
665bf9a
fix various lurking problems (and bugs) in old code
bkamins Feb 20, 2021
cb1308c
Apply suggestions from code review
bkamins Feb 21, 2021
be31412
apply comments from the review
bkamins Feb 21, 2021
b41e9a1
improve getindex
bkamins Feb 21, 2021
07e7b9c
add view
bkamins Feb 21, 2021
1419283
Apply suggestions from code review
bkamins Feb 21, 2021
a1df0a0
Merge remote-tracking branch 'origin/main' into bk/pool_sharing
bkamins Feb 21, 2021
0cb0021
add SubArray handling
bkamins Feb 21, 2021
be09d78
Apply suggestions from code review
bkamins Feb 23, 2021
7f5f7e2
Update src/PooledArrays.jl
bkamins Feb 23, 2021
61bcbdc
add PooledArrOrSub
bkamins Feb 24, 2021
8ec3854
start adding tests
bkamins Feb 24, 2021
cd20319
Apply suggestions from code review
bkamins Feb 24, 2021
ee6100b
Merge remote-tracking branch 'origin/bk/pool_sharing' into bk/pool_sh…
bkamins Feb 24, 2021
02b002b
merge methods (currently fails but I first need to understand if it i…
bkamins Feb 24, 2021
21b3354
enough to remove where
bkamins Feb 24, 2021
ec0f710
simplify definition
bkamins Feb 24, 2021
35430e0
update getindex
bkamins Feb 24, 2021
d3fb0a3
continue adding tests
bkamins Feb 24, 2021
b6e6c85
fix current tests
bkamins Feb 24, 2021
2af32ca
finalize tests
bkamins Feb 24, 2021
c0333af
hopefully final fixes
bkamins Feb 24, 2021
46d971c
add Julia 1.0.5 support
bkamins Feb 24, 2021
c55b8e9
Update src/PooledArrays.jl
bkamins Feb 25, 2021
03a3221
fixes after code review
bkamins Feb 27, 2021
0b8ba4d
Merge remote-tracking branch 'origin/bk/pool_sharing' into bk/pool_sh…
bkamins Feb 27, 2021
3a92892
Update src/PooledArrays.jl
bkamins Feb 27, 2021
49afb14
Merge remote-tracking branch 'origin/bk/pool_sharing' into bk/pool_sh…
bkamins Feb 27, 2021
3eb65e7
Update src/PooledArrays.jl
bkamins Feb 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
JULIA_NUM_THREADS: 4
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name = "PooledArrays"
uuid = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
version = "1.1.0"
version = "1.2.0"

[deps]
DataAPI = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
Future = "9fa8497b-333b-5362-9e8d-4d0656e87820"

[compat]
DataAPI = "1.5"
Expand Down
Loading