-
Notifications
You must be signed in to change notification settings - Fork 110
feat: remove unnecessary parallelize usage in sepal #1120
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
Open
selmanozleyen
wants to merge
39
commits into
scverse:main
Choose a base branch
from
selmanozleyen:feat/remove-parallelize-minimal
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+124
−62
Open
Changes from 4 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
a6e1438
remove parallelize from sepal
selmanozleyen e011ddc
preallocated buffers
selmanozleyen 4aad2c0
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen d9e3438
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 357966a
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen 8c6df25
add sparse batch support
selmanozleyen 023461d
Merge branch 'feat/remove-parallelize-minimal' of https://github.com/…
selmanozleyen b0d0792
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] b9605dd
better default
selmanozleyen 2df55b2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] c90f80b
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen e856524
lazy densify
selmanozleyen d81b098
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 542df63
ignore comment for fau
selmanozleyen 2f48ba2
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen e7e5579
update
selmanozleyen f24c1ae
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 2d8a143
update docstrings
selmanozleyen b283de7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 46558fd
init
selmanozleyen b64ebc9
rng can't be none inside test
selmanozleyen deb31f3
Merge branch 'feat/ligrec-rng-threading' into feat/remove-parallelize…
selmanozleyen 5bc7caa
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen ecf7147
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen 1c34afa
checkout main
selmanozleyen 9ee9462
remove refrence file
selmanozleyen b7ca301
add progress bar option and deprecate warning for backend
selmanozleyen 9c1d97a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] c384f9b
add deprecated params import
selmanozleyen 3adf5ce
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 103e0b5
revert log message
selmanozleyen 10a6913
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen 65160ad
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 417d3b7
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen 7f8bbac
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen 94e9804
update conf
selmanozleyen f4ffe34
now use threadpool util
selmanozleyen 6749135
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] a7a5d95
Merge branch 'main' into feat/remove-parallelize-minimal
selmanozleyen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if there isn’t a way to tell numba to do the pre-allocation instead of doing it manually.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am also wondering the same but I couldn't find a way to do it without calling
get_num_threads()There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Intron7 do you know anything about this?