Add support for Venus GPU mode - #3167
Open
valentineburley wants to merge 5 commits into
Open
valentineburley wants to merge 5 commits into
valentineburley wants to merge 5 commits into
Conversation
jmacnak
reviewed
Sep 10, 2026
jmacnak
reviewed
Sep 10, 2026
jmacnak
left a comment
Member
There was a problem hiding this comment.
(note for internal build: cl/979356492)
valentineburley
force-pushed
the
venus
branch
from
September 11, 2026 15:21
1c7c8fa to
510f3b9
Compare
jmacnak
reviewed
Sep 11, 2026
jmacnak
left a comment
Member
There was a problem hiding this comment.
Overall looks good. 2 minor questions
valentineburley
force-pushed
the
venus
branch
2 times, most recently
from
September 15, 2026 16:53
3256897 to
a51bc3f
Compare
Member
|
(conflicts need to be resolved before we can approve presubmit workflows) |
valentineburley
force-pushed
the
venus
branch
from
September 18, 2026 16:21
a51bc3f to
a700fa3
Compare
Author
|
Rebased, thanks! |
Previously, graphics_detector only categorized discrete GPUs as TYPE_DISCRETE_GPU and tagged all other devices (including integrated GPUs) as TYPE_OTHER. As a result, kHostVulkanIsNonSoftwareRenderer incorrectly rejected hosts with integrated GPUs as having no non-software Vulkan driver. Bug: b/549217582
These dependencies will be used by the upcoming Venus GPU mode. Bug: b/549217582
This dependency will be used by the upcoming Venus GPU mode. Bug: b/549217582
These dependencies are required by the upcoming Venus GPU mode. Bug: b/549217582
Based on the original implementation for Mesa CI by @ao2. This adds a new GPU mode using the Venus Vulkan driver, ANGLE, SkiaVK, and drm_hwcomposer. It supports Intel (both i915 and xe) and Qualcomm (msm) platforms, using ANV and Turnip as the host Vulkan drivers. Bug: b/549217582 Test: cvd create --gpu_mode=venus
Member
|
(rebased to pull in some changes that I believe are needed to make kokoro happy >_>) |
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.
Based on the original implementation for Mesa CI by @ao2.
This adds a new GPU mode using the Venus Vulkan driver, ANGLE, SkiaVK,
and drm_hwcomposer, utilizing the cross-domain context type.
It supports Intel (both i915 and xe) and Qualcomm (msm) platforms, using
ANV and Turnip as the host Vulkan drivers.
Bug: b/549217582
Test: cvd create --gpu_mode=venus
The first commit fixes kHostVulkanIsNonSoftwareRenderer on integrated GPUs.
The following three patches add the virglrenderer, venus_protocol, and minigbm dependencies.
The final commit introduces the new GPU mode.