Sludge

Results 35 comments of Sludge

This reproduces it: ```rust use bevy::{app::App, log::LogPlugin}; fn main() { App::new().add_plugins(LogPlugin::default()); tracing::error!("via tracing"); log::error!("via log"); } ``` With these dependencies: ```toml [dependencies] bevy = { version = "0.13.0", default-features =...

Yes, bevy's `main` branch doesn't have the issue. But there is still seemingly a breaking change published in a non-breaking update of `tracing-subscriber`.

I've observed the same behavior in the past (on Wayland KDE, not sway). I think https://github.com/KhronosGroup/Vulkan-ValidationLayers/ would be the right place to report it (unless mesa has its own validation...

The deadlock appears to be caused by: - `command_encoder_end_compute_pass` acquires the buffer read lock before the bind group read lock here: https://github.com/gfx-rs/wgpu/blob/edf1a86148d1a62da857633fb224aa569f21ce4e/wgpu-core/src/command/compute_command.rs#L82-L83 - `command_encoder_end_render_pass` acquires the bind group read lock...

I'm hitting this bug basically instantly in one of my applications. Some instrumentation of the snatch lock has revealed this (on current trunk, but line numbers may be off by...

FWIW `tf2onnx` seems to add an `ai.onnx.ml` opset import no matter whether those operators are actually used by the network, I've had to manually patch the generated networks to remove...

@schell There is no good tooling for this (in fact there is no official tooling for manipulating ONNX files *at all* as far as I can tell), so I had...

Ah, that's unfortunate. In that case, wonnx could still upconvert these values to f32 when loading these models to make them work.

Same error happens on v0.5.0

Filed https://github.com/gfx-rs/naga/issues/2322 upstream