-
Notifications
You must be signed in to change notification settings - Fork 178
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
[Enhancement] remove convert_to_supported function #2217
Open
icfaust
wants to merge
54
commits into
uxlfoundation:main
Choose a base branch
from
icfaust:dev/remove_convert_to_supported
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.
Open
Changes from 53 commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
2bb22f7
make the switch
icfaust 2a46dd0
further refinement
icfaust ce2dbc3
further refinement
icfaust 066c86a
extract convert_to_supported
icfaust 4b41760
move around to_table because of parameters
icfaust 2af260e
kMeans fix
icfaust f0360be
alias namespace
icfaust 70c32b2
change serialization for new setup
icfaust 1e08b6c
add default argument
icfaust 940cff9
add default argument
icfaust 0885e6f
surefire fix
icfaust 896f8ca
forgotten ;
icfaust 95d4946
comment out
icfaust cee12f2
fixes
icfaust ed6e39f
fixes2
icfaust fb4c70f
try again
icfaust d0f8655
transition for sparse support
icfaust f04f66d
fixes attempt 3
icfaust 1c8eda0
fixes attempt 4
icfaust 4d909a5
add header
icfaust 47f6f6e
change for pybind11 deprecation
icfaust acdfe23
misread suggestion
icfaust 1559938
fix dec_ref
icfaust 9e79bab
make constexpr
icfaust e3d9468
fix init
icfaust d30692a
hopefully will start working
icfaust 438b0b1
make explicit
icfaust 50a2ab8
try again
icfaust 3e697af
try again
icfaust 5c7c1ce
try again
icfaust f2e88b2
try again
icfaust 65ac9ad
fix dbscan
icfaust 22ea481
try to fix kmeans
icfaust e187d33
fix policy queue
icfaust 81df289
fix incrementalRidge
icfaust 3d4451a
add test
icfaust 8f89577
fix mistake in #2180
icfaust 610437a
fix neighbors
icfaust bfe7f35
move test to include warning check
icfaust eb5944d
move test to include warning check
icfaust 37be22a
final changes
icfaust b484751
Merge branch 'uxlfoundation:main' into dev/remove_convert_to_supported
icfaust 79b2eba
Update data_conversion.cpp
icfaust 8cf9156
work on memory leak possibility
icfaust 98680cf
remove from inconclusive values
icfaust 48bddb7
Update data_conversion.cpp
icfaust a8d48fe
Update data_conversion.cpp
icfaust 3679366
Update data_conversion.cpp
icfaust 1dc7d41
fix spmd
icfaust b6c31ea
missed one
icfaust cd04cc2
fixes for IncPCA
icfaust 0c08fa8
move DummySyclQueue
icfaust 764cd7a
remove unused import
icfaust d1bd343
Merge branch 'uxlfoundation:main' into dev/remove_convert_to_supported
icfaust 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 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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 see 2 variants of implementation in this PR:
X = to_table(X, queue=queue)
X_table = to_table(X, queue=queue)
Here 2) is used, but it seems
X
is not needed after the conversion anyway. Why not to use 1) everywhere possible?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.
True, although it looks like generally the name is just matching the name that was previously used after to_table was called before these changes