dumko2001
dumko2001
Instead of: ```typescript function handleSubmit(event: SubmitEvent) { event.preventDefault(); // ... rest of the handler } return ( handleSubmit(event)}> {/* ... */} );``` You would modify the Qwik component's template to...
Hi @bharathiselvan, I investigated this issue. Like @Georgedyatmsk1405, I wasn't able to reproduce the failure in a clean environment (async tools seemed to stream correctly for me). However, while digging...
Hi @e792a8 and @asksac, I've submitted a fix in PR #6509. The issue was that `ToolNode` wasn't unwrapping the generic type alias correctly when checking for injection candidates. The PR...
Thanks for the excellent report and reproduction case! I've confirmed the inconsistency: Inductor was incorrectly decomposing `index_select` into an indexing operation that allows negative indices (wrapping), which violates `index_select`'s strict...
@pytorchbot label "bug" "release notes: inductor"
@pytorchbot label "release notes: inductor" "topic: not user facing"
@malfet Thank you for the feedback. I agree that a custom Inductor lowering is the wrong approach and have updated the PR to rely on decomposition: 1. **Reverted the custom...
@malfet I have updated the PR based on the findings. 1. I pivoted to implementing the check in `torch/_refs/__init__.py`. I found that `index_select` is already defined there, so adding a...
Hi @inancsevinc, I've opened PR #6511 which fixes this issue. You were exactly right—the context manager was returning the internal `ExitStack` instead of the saver instance. I've patched `__enter__` and...