-
Notifications
You must be signed in to change notification settings - Fork 12
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
Browser WebGPU? #46
Comments
Hi Mighdoll. At this moment WebGPU is not being considered for support. |
To clarify, we are currently not seeking official support. However, if WebGPU translates down to either DX12 or Vulkan (apologies, I am not too familiar), then GPU Reshape is able to hook into it. |
Yep, I think there'd be hope that GPU-Reshape could hook in when running a browser on the the right platform. In WebGPU land, we're eager for GPU tool support! Here's a bit about chrome: https://chromium.googlesource.com/chromium/src/+/main/docs/security/research/graphics/webgpu_technical_report.md |
I took a quick look, and I am able to "attach" if I launch from Reshape, though no other chrome instances may be running before. Specifically, I launch from Reshape with (provided by an AMD fellow!): However, something is broken in the rendering. I don't think it's actually presenting, particularly also because during presents some data is sent back to the app, and I get nothing. |
One thing about Chrome is that sub-processes are spawned with process mitigation policies. Which I check against here. Chrome's sandboxing enables it. If a process enables either mitigation policy, I cannot inject my bootstrapper. I wonder how PIX (I heard it can do it?) handles it, I could tamper with the creation parameters, but I'm not sure if that's the right way forward, and could be seen as malicious, maybe. Chrome does have a --no-sandbox parameter which avoids it, but then Reshape fails to discover any device on newly spawned tabs (new processes). Strange lands. |
As a repro case, this is what I'm doing. Reshape launch parameters: It does launch, and connect to a device, but something breaks somewhere. This'll be an interesting one to debug! |
From a brief investigation it appears that a command list is failing to close, likely indicating a validation error somewhere. It'd be nice if it's a quick fix. |
I posted a ref to this bug over on: https://matrix.to/#/#webgpu-dawn:matrix.org. I recommend dropping in over there if you have questions about Chrome/Dawn! |
I joined the room 🙂 Managed to get this validation error out of Dawn with Reshape, probably what's causing the command list to fault. |
GPU work in chrome is all done in a single GPU subprocess. That process definitely needs sandboxing disabled to debug it. That's likely the best option but if any problems are caused by launching multiple processes, there are other options:
Another option to incrementally investigate this would be to try debugging Dawn samples, though unfortunately you would have to build them from Dawn. If that error is coming from the D3D12 debug layer - both Chrome and Dawn should run cleanly against it, but Chrome has a lot more going on, so running just Dawn would narrow down where it's coming from. There are also ways to enable the D3D12 debug layer for Dawn (I think the flags are: when launching chrome, |
…ct it - Does not account for maintaining behaviour of before / after access states yet - Added render pass stream states - Added BeginRenderPass / EndRenderPass hooks - Added additional logging to bootstrapper #46
As of d46430d it seems to render properly, however, does not send any data back yet. Please note that the change is incomplete as I need to carefully manage the before / after access states of each render target and depth stencil, something I need a little more time to think about. Currently it just blindly reconstructs the render pass, which is incorrect. |
@kainino0x Absolute pleasure to have a direct contributor here, thanks for the wealth of information! Regarding D3D11On12, would you know how (Chrome) WebGPU utilizes it? Reshape does support hooking D3D11On12, however, it currently doesn't do much with it. Is it somehow involved with presentation? Particularly on presentation, Reshape doesn't seem to hit hit any hooks, so I'm very much curious how that happens. |
The issue is definitely regarding presentation. Currently Reshape sends data back during presentation, as I'm not hitting that hook nothing ever gets sent. If I add a dummy thread to pump out data manually, I can get Reshape communicating. This is a change I've been meaning to do anyway, so I'll track it here. Instrumentation seems to do its job as well. Though I am having troubles getting debug sources working. 🤔 |
I am pretty sure we are not using 11on12, but instead doing interop between native D3D11 (Chrome) and D3D12 (Dawn) but I don't know how that interop works. If that's a problem, then I can check if the Dawn-D3D12 backend for Chrome compositing is working and how to switch it on. Then I think everything is supposed to go through D3D12. |
Detecting frame boundaries has historically always been a problem with using Chrome with graphics debuggers, because Chrome's presentation is so complex. There might also be some option that injects a fake "swap" to tell debuggers where the frame boundaries are. |
I see, while supporting D3D11 is not on the roadmap, I would consider hooking "just enough" to be able to detect frame boundaries. Useful for a many reasons. If there's a switch to turn on native compositing, that would be a great way forward for the short term. 🙂 |
Chrome has a flag If you have a chance let me know if that works, or maybe I can find a chance to try it myself and play with the flags.
Turns out this is "very experimental" right now. I tried it and WebGL and WebGPU content didn't work at all. So not yet. |
I've been testing on Chrome release, I'll see if I can't use Canary instead.
Gotcha. I'll see if I can't hook the presentation method somehow. |
Pretty happy with local performance. I've got one local change I need to think about, it's regarding how data is sent back to the app, just need to make sure I'm not introducing problems later on. WGPU.mp4 |
Hi, quite a few changes have landed in development, and a couple more after GDC. Things should work much more smoothly now. This includes lots of crash fixes and cases where Reshape was not preserving the original behaviour. And, most importantly, the pooling mechanism, which now happens on a controlled interval instead of during presentation. There's a number of benefits to this, but for chrome usage it removes the need to track presentation at all. Another nice thing is that Reshape now supports hooking sub-processes and multiple devices, I find this super useful for chrome development. You can launch new tabs, reload examples, etc. and it "should just work". Just check the two checkboxes below. Whenever the app / chrome creates a device, it'll appear in the list. To open its associated workspace, double click any of them. Currently they don't auto delete, so the list might expand considerably as chrome's creating devices. Something to think about. It'd be great if someone has a second to try it out, and see if they spot any issues with the current setup. |
Very nice! I will ask the WebGPU matrix chat room if anyone wants to try this out. |
Here are the Chromium flags again, for reference: |
Awesome! I'll rebuild my windows machine to try gpu-reshape! Hmm.. Need I buy an AMD card right away, or is my old 1080 nvidia card ok for now with GPU-reshape? |
Hey @mighdoll! Reshape supports NVIDIA just fine, earliest model I tested was a GTX 970. That said, if you find anything let's fix it. 🙂 Also, just to reiterate, the relevant branch is now https://github.com/GPUOpen-Tools/GPU-Reshape/tree/development |
Okay! I built the development branch and ran Reshape successfully on chrome canary with an nvidia 1080 card. It's neato to see the generated hlsl and dxil for the shaders, and one of my old wgsl experiments generated three warnings (uninitialized resource read - twice, and texture read out of bounds) so I can see Reshape will quickly be useful. A few things I noticed:
Awesome work @miguel-petersen! Let me know if you want me to collect any logging as I experiment. |
Hey! Glad to hear things ran on your end. 🙂 On the switching of pages / reloading, chances are that the underlying device is destroyed at that point. It's up to chrome when devices are recreated, I guess it sometimes shares it, and sometimes not? Currently the lifetime of all the internal data, and an internal server, is tied to the underlying device. There's an interesting question here, if it should persist beyond that, maybe if Reshape (app side) is connected. With "Attach All Devices" the new device should appear automatically in the workspace tree, already hooked. If you come across any false positives, or general issues, feel free drop them here! Happy to fix them. |
I don't think this should happen - Dawn is supposed to make sure all resources are initialized before they can be read, for security reasons. If those look like true-positives could you please file a Dawn bug (https://crbug.com/dawn) about them? |
Would it be possible to know how Dawn initializes resources @kainino0x ? It's likely I'm just missing to hook a path. |
@austinEng would know better |
There are a few paths:
|
Thanks Austin. All of those paths should be hooked, so I wonder what's happening. Given that Dawn initializes all resources by default, I'll see if I can reproduce it in a public sample. |
Got some time to see what was happening. After a little investigation it seems that most samples go through a custom render pass which manually copies the texels, optionally with some color transformation. What took me some time to understand is why Reshape didn't catch the initialization event of the source resources, until I saw that you are using OpenSharedHandle for some objects @austinEng. Tracking initialization events across, potentially, processes, is beyond the scope of Reshape. With that, I opted to mark all resources created from external handles as initialized from creation. It'll get submitted to a branch that's not ready quite yet, but likely later in May. The initialization feature is getting reworked to track initialization states on a per-texel basis, instead of the whole resource. Same for concurrency. |
Is support for WebGPU development on your radar?
The text was updated successfully, but these errors were encountered: