Skip to content
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

ci/Check dependencies #895

Merged
merged 17 commits into from
Nov 19, 2023
Prev Previous commit
Next Next commit
Update burn-wgpu
  • Loading branch information
Luni-4 committed Nov 16, 2023
commit 246bab490b4b39867fe4f6efe43b3bf149ce9b30
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ wasm-logger = "0.2.0"
futures-intrusive = "0.5"
pollster = "0.3"
text_placeholder = { version = "0.5.0", features = ["struct_context"] }
wgpu = "0.17.1"
wgpu = "0.18.0"

#
# The following packages disable the "std" feature for no_std compatibility
Expand Down
5 changes: 4 additions & 1 deletion burn-wgpu/src/compute/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@ where

let mut compute = self
.encoder
.begin_compute_pass(&wgpu::ComputePassDescriptor { label: None });
.begin_compute_pass(&wgpu::ComputePassDescriptor {
label: None,
timestamp_writes: None,
});

for task in self.tasks.iter() {
compute.set_pipeline(&task.pipeline);
Expand Down