Skip to content

Conversation

kbenzie
Copy link
Contributor

@kbenzie kbenzie commented Aug 5, 2025

Automated changes by create-pull-request GitHub action

staniewzki and others added 3 commits August 5, 2025 00:45
This PR updates the allocation management algorithm to address cases
where it fails to find suitable allocations due to how it performs lower
bound searches.

Example:
```
Freelist {
    Allocation(align=64, size=128),
    Allocation(align=64, size=256),
    Allocation(align=4096, size=128),
    Allocation(align=4096, size=1024),
}
```

If we request `align=64`, `size=512`, the current code looks at
`Allocation(align=4096, size=128)` and skips the rest, even though
`Allocation(align=4096, size=1024)` would work.

This PR introduces grouping the allocations by queue and alignment.
…e call." (#19661)

Reverts intel/llvm#18764

Looks like the naive level zero implementation now results in a
performance regression, I think it's best to revert until l0 can better
match the new interface.
@kbenzie kbenzie requested a review from a team as a code owner August 5, 2025 00:45
Copy link
Contributor

github-actions bot commented Aug 5, 2025

Unified Runtime -> intel/llvm Repo Move Notice

Information

The source code of Unified Runtime has been moved to intel/llvm under the unified-runtime top-level directory,
all future development will now be carried out there. This was done in intel/llvm#17043.

The code will be mirrored to oneapi-src/unified-runtime and the specification will continue to be hosted at oneapi-src.github.io/unified-runtime.

The contribution guide will be updated with new instructions for contributing to Unified Runtime.

PR Migration

All open PRs including this one will be marked with the auto-close label and shall be automatically closed after 30 days.

Should you wish to continue with your PR you will need to migrate it to intel/llvm.
We have provided a script to help automate this process.

If your PR should remain open and not be closed automatically, you can remove the auto-close label.


This is an automated comment.

@aarongreig aarongreig merged commit 72f6e85 into main Aug 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants