sagudev

Results 148 issues of sagudev

I though I catch all `[FAIL/PASS, TIMEOUT, NOTRUN]`, but apparently not. To prevent them from happening it would be bast to have variants for flaky tests. See: https://github.com/gpuweb/cts/issues/3233

A-content/webgpu

I've seen this error quite few times on CI (ex: https://github.com/servo/servo/actions/runs/6691909633/job/18180057797#step:8:17). Backtrace: ``` mozilla::detail::MutexImpl::mutexLock: pthread_mutex_lock failed: Invalid argument Caught signal 11 0: ::fmt 1: core::fmt::write at /rustc/dc1d9d50fba2f6a1ccab8748a0050cde38253f60/library/core/src/fmt/mod.rs:1232:17 2: std::io::Write::write_fmt 3:...

See https://github.com/servo/servo/actions/runs/7400586694/job/20134531339 > Run python3 ./mach package --release hdiutil: create failed - Resource busy Creating Servo.app Copying files Swapping prefs Finding dylibs and relinking Adding version to Credits.rtf Creating dmg...

Try run: https://github.com/sagudev/servo/actions/runs/6289052004 --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #___...

This makes wgpu examples work. ~~Depends on https://github.com/servo/servo/pull/30406~~. DONE ### Current state of webgpu examples Works on reload: - [x] https://mdn.github.io/dom-examples/webgpu-compute-demo/ - [x] https://mdn.github.io/dom-examples/webgpu-render-demo/ (works partially: only blue background; same...

A-content/webgpu

``` Running WPT tests with /home/user/Desktop/servo/target/release/servo Running 1 tests in web-platform-tests This GDB supports auto-downloading debuginfo from the following URLs: Enable debuginfod for this session? (y or [n]) [answered N;...

I-crash
A-content/script

With `RUST_LOG=trace` I get error for every https request in log: ``` │ [2024-02-21T14:15:09Z INFO net::http_loader] got 200 response for "https://web-platform.test:8443/_webgpu/w... (d693edaf679d9bb8)" │ [2024-02-21T14:15:09Z WARN net::http_loader] Error streaming response body:...

I am currently patching `--rr-chaos` with: ```patch diff --git a/python/wpt/run.py b/python/wpt/run.py index e994413107..5761acbe59 100644 --- a/python/wpt/run.py +++ b/python/wpt/run.py @@ -77,10 +77,8 @@ def run_tests(default_binary_path: str, **kwargs): set_if_none(kwargs, "webdriver_binary", default_binary_path) if...

**Is your feature request related to a problem? Please describe.** [`buffer_get_mapped_range`](https://docs.rs/wgpu-core/latest/wgpu_core/global/struct.Global.html#method.buffer_get_mapped_range) has offset and size while [`buffer_map_async`](https://docs.rs/wgpu-core/latest/wgpu_core/global/struct.Global.html#method.buffer_map_async) uses rust's range. **Describe the solution you'd like** To make things more concise...

type: enhancement
help wanted
good first issue
area: api

Sccache is a must tool in a CI (and locally) for big projects for faster compilation. It is used by Rust, Servo, Firefox, ... It is also part of [rust-unofficial/awesome-rust...