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
_partial_sort_negative! is O(m·k) insertion sort, currently CPU-only.
oracles affected: Knapsack, MaskedKnapsack. blocks GPU support for
budget-constrained problems.
options: bitonic top-k via KernelAbstractions.jl, thrust::partial_sort
(CUDA), MPS sort (Metal)
only worth it when k is large; small k stays on CPU
sparse vertex protocol must still return nzind / nzval
cross-vendor parity: pick a path that works across backends.
_partial_sort_negative!is O(m·k) insertion sort, currently CPU-only.oracles affected:
Knapsack,MaskedKnapsack. blocks GPU support forbudget-constrained problems.
KernelAbstractions.jl, thrust::partial_sort(CUDA), MPS sort (Metal)
cross-vendor parity: pick a path that works across backends.