Dev/asolovev dbscan ext#3623
Draft
Alexandr-Solovev wants to merge 38 commits into
Draft
Conversation
…GPU tests - Split monolithic single_task extract_clusters into 5 GPU kernels: K1 (single_task): Kruskal dendrogram via union-find K2 (parallel_for): Init node arrays from dendrogram K3 (single_task): Condensed tree + EOM stability selection K4 (parallel_for): Build dendro_parent from edges K5 (parallel_for): Label each point independently - Add Method template parameter to DAAL kernel (follows standard pattern) - Add hdbscan_types.h with Method enum (defaultDense) - Add CPU vs GPU comparison tests (permutation-invariant partition check) - Remove unused engines dependency from DAAL BUILD - Add scripts/ to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add push trigger and remove repository == 'uxlfoundation/oneDAL' guards from both Linux and Windows jobs so the workflow runs on every commit in fork branches. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Rename defaultDense to bruteForceDense in DAAL Method enum (keep alias) - Simplify hdbscan_cluster_utils.h: extract subfunctions from 500-line method (sortMstEdges, buildKruskalDendrogram, buildCondensedTree, selectClusters, labelPoints) - Move convert_metric to shared compute_kernel_common.hpp header - Replace row_accessor with BlockDescriptor in CPU kernels where data is already DAAL table - Remove _on_host postfix from CPU-only functions, replace std::vector with dal::array - Split GPU build_condensed_tree_eom_kernel into two kernels for clarity Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
|
/intelci: run |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Checklist:
Completeness and readability
Testing
Performance