id
int64
393k
2.82B
repo
stringclasses
68 values
title
stringlengths
1
936
body
stringlengths
0
256k
βŒ€
labels
stringlengths
2
508
priority
stringclasses
3 values
severity
stringclasses
3 values
480,317,387
flutter
Elide updates to backing stores when the contents of that layer don't change.
During custom composition (custom embedders & iOS only today), the backing stores of all layers and rendered into presented on each updates. This is in spite of the fact that some layers may not have need updated during that frame. These updates need to be elided. Once this optimization is in place, `FlutterLayer::did_...
platform-ios,engine,e: embedder,P2,team-ios,triaged-ios
low
Minor
480,318,949
flutter
windows.locales returns different value depending on how app is run
I was check the value of `window.locals` in different time of app running: > 1. App start. 2. `window.onLocaleChanged()` get called. 3. User interact. ## Steps to Reproduce 1. Create new flutter project. 2. Update `main.dart` file as bellow. 3. Running app with debugging will see result 1. 4. Kill the ...
framework,a: internationalization,d: api docs,P2,team-framework,triaged-framework
low
Critical
480,324,861
pytorch
TensorIterator "builder" options should be documented.
We got rid of the TensorIterator builder for efficiency reasons, but the current documentation is now pretty confusing. For example, all of the options aren't clear (maybe they should start with a common prefix?) and none of them actually contain documentation, for example: https://github.com/pytorch/pytorch/blob/bd0...
module: internals,triaged
low
Minor
480,330,889
flutter
Document the structs in the embedder API that are sealed.
This can be done via comments in the header. Most structs are safe to modify by appending members at the end of the struct. However, some are not (these are the ones without `struct_size` or the ones that are non-pointer union members in other structs.)
engine,d: api docs,e: embedder,P3,team-engine,triaged-engine
low
Minor
480,332,924
go
runtime: unexpected fault address runtime.memhash16
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> go version go1.12.5 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using ...
NeedsInvestigation,compiler/runtime
low
Critical
480,353,224
bitcoin
ASN-based bucketing of the network nodes
Currently we bucket peers (or potential peers) based on /16 network groups which directly correlate to the IP-addresses. This is done to diversify connections every node maintains, for example to avoid connecting to the nodes all belonging to the same region/provider. Currently peers.dat (serialized version of add...
P2P
medium
Critical
480,367,195
pytorch
Check PyTorch version when initializing process groups
@VitalyFedyunin asked whether `c10d` checks PyTorch versions during initialization. IIUC, we don't check that currently, and it will work in the best-effort manner, which might lead to weird errors (e.g., when pickling format changes). @pietern @zhaojuanmao @pritamdamania87 Please do correct me if I misunderstand t...
oncall: distributed,module: bootcamp,triaged,enhancement
low
Critical
480,389,102
puppeteer
page.addScriptTag({content: 'window.__foobar'}) should throw when CSP prevents operation
With https://crrev.com/683391, chrome no longer throws exceptions when not executing inline script tags due to CSP. We can fix this with probing runtime first - checking if inline scripts have any power. Alternatively, we might want to check current page CSP policy.
bug,confirmed,P3
low
Minor
480,417,863
rust
Desugaring of struct update syntax is unnecessarily restrictive for private fields
Take the following example struct: ```rust mod module { #[derive(Default)] pub struct Foo { pub a: i32, b: u32 } } ``` Let's say you don't have access to `b`, and you want to create an instance of `Foo` with a non-default value for `a`. The idiomatic way to do that is with the ...
T-lang,C-feature-request
low
Critical
480,435,637
vscode
Bring the "track changes" feature to VS Code
Anyone who has worked with Visual Studio is likely familiar with the "track changes" feature, which adds green/yellow bars to the side of the editor, as seen in the attached image. ![TrackChangesIndicators](https://user-images.githubusercontent.com/36111895/62987162-7bf43e00-be0c-11e9-8fdd-f9ca3d2a9060.png) Green b...
feature-request,editor-contrib
medium
Major
480,443,545
scrcpy
Auto reconnect mode
It would be nice if the app would wait for the same device to reconnect to it automatically (in case of a restart etc)
feature request
medium
Major
480,443,817
scrcpy
Better support for wireless adb
I would love to have a dedicated input for wifi ip or maybe scanning currently i'm using: ```batch @echo off set ip=192.168.2.50:5555 title SCRCPY - Wireless (IP: %ip%) adb devices :START adb connect %ip% scrcpy --bit-rate 2M --max-size 700 --show-touches --turn-screen-off REM timeout /t 3 GOTO START ```
feature request
low
Minor
480,448,439
pytorch
Port `masked_fill` operator from the TH code to Aten
`masked_fill` is the point-wise operator so porting if from the TH code to Aten (and TensorIterator) expected to be easy. Such migration will help to clean up the code, simplify dispatch as well as provide immediate 2-3x operator performance gain. Porting guide: https://github.com/pytorch/pytorch/wiki/TH-to-ATen-por...
module: cuda,module: cpu,triaged,module: porting,better-engineering
low
Major
480,465,751
flutter
TextField doesn't appear within a direction:Axis.vertical Wrap
code: ![image](https://user-images.githubusercontent.com/8746914/62993013-4bea8080-be88-11e9-84ea-93f3908b57bd.png) screenshot: <img src="https://user-images.githubusercontent.com/8746914/62993022-5442bb80-be88-11e9-9b76-9d620f7147fa.png" width ="300">
a: text input,framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Minor
480,488,591
go
cmd/compile: reflected methods have extra wrapping
### What version of Go are you using (`go version`)? 1.12.7 ### Does this issue reproduce with the latest release? Probably. ### What operating system and processor architecture are you using (`go env`)? amd64, or amd64p32. Reproduces on playground, probably not specific to it. ### What did you do? ...
NeedsInvestigation,compiler/runtime
low
Minor
480,494,643
flutter
Video_player plugin: Get the current played frame number
I was wondering if there is/will be any feature to get the current played frame of a video in progress. Right now, when I use the plugin, I can easily attach a listener callback to the videoController and In can easily do stuff like this: ``` videoPlayerController.addListener(() { print("VIDEO POSITION IS $...
c: new feature,p: video_player,package,team-ecosystem,P3,triaged-ecosystem
low
Minor
480,525,938
pytorch
Value_select to perform region-wise selection
## πŸš€ Feature ```python import torch a = torch.tensor([[0,0,1,1,1],[0,0,1,1,2],[3,3,3,3,2]]) c = 2 feat = torch.randn(c, *a.size()) num_sp = a.max().long() + 1 # For now, I have to use torch.masked_select for many times output = [] for i in range(num_sp): # (c*1), mean of each SP. output.append(t...
triaged,function request
low
Minor
480,589,306
vscode
macOS Text Selection: shift+left should expand selection
- VSCode Version: 1.37.0 - OS Version: macOS Mojave 10.14.6 On macOS, the standard text selection behaviour is to expand the current selection when shift + the left arrow key is pressed: > Here is the **example** text with 'example' selected (e.g. by double-clicking the text) > Here is th**e example** text on m...
feature-request,macos,editor-commands
low
Major
480,590,273
TypeScript
Documentation: usage of types/interfaces defined in modules on global
## Search Terms - export from module to global - global namespace - declare as global - assign to global - globalThis ## Suggestion Documentation says that > It can be surprisingly difficult to access or declare values in the global scope, perhaps because we’re writing our code in modules... (https://...
Docs
low
Minor
480,602,481
electron
feat: implement prevent shutdown / sign out procedure
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]-...
enhancement :sparkles:
low
Minor
480,618,392
electron
globalShortcuts don't work for alternate keyboards on Mac 10.14.6
* **Electron Version:** * 6.0.2 * **Operating System:** * mac 10.14.6 ### Expected Behavior globalShortcuts work regardless of the chosen keyboard layout ### Actual Behavior On Mac, globalShortcuts seem to default to either qwerty or the keyboards layout (I think? I don't have a dvorak keyboard) rather t...
platform/macOS,bug :beetle:,status/confirmed,5-0-x,7-0-x,8-x-y,6-1-x,7-1-x,9-x-y,10-x-y,11-x-y
medium
Critical
480,642,594
rust
How to install a single target from source without building the whole compiler?
I'm using Arch Linux and my distribution provides a (usually) up-to-date version of rustc & cargo. In particular, I have a system-wide copy of the `x86_64-unknown-linux-gnu`, placed in `/usr/lib/rustlib`. Please note that rustup is not used here at all. Sometimes I need to cross-compile to other targets, such as `...
A-cross,T-compiler,C-feature-request
low
Minor
480,669,087
TypeScript
"Move to new file" breaks imports when using re-exports
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug,Domain: Refactorings
low
Critical
480,688,273
rust
warning lint on chained assignment
(This is a first impl on https://users.rust-lang.org/t/warn-about-using-the-value-of-an-assignment-expression/31324, thanks to @sourcefrog ) Code like `a = b = 3` is a "common" pattern in C, python and other languages. People who are coming to Rust may be surprised to see, that it doesn't work the intended way. Ther...
C-enhancement,A-lints,A-diagnostics,T-lang,T-compiler,A-suggestion-diagnostics
low
Major
480,704,065
opencv
Documentation deprecated
Hi, OpenCV version > 4.1.1 Please update the docs to remove features that disappeared... https://docs.opencv.org/4.1.1/d9/d80/classcv_1_1cuda_1_1CascadeClassifier.html https://answers.opencv.org/question/205087/how-to-use-cascadeclassifiercreate-in-opencv-40/ Or add a big "no longer working, go back to 3.4.XX....
category: documentation,category: gpu/cuda (contrib),Hackathon
low
Minor
480,769,119
kubernetes
JSONPatch accepts invalid paths with a spurious leading segment
**What happened**: ```sh kubectl patch namespaces/default -o json --type json -p '[{"op":"replace", "path":"bogus/metadata/annotations","value":{"k":"v"}}]' ``` The patch was applied and metadata.annotations modified **What you expected to happen**: The invalid path (no leading `/`) would be rejected *...
kind/bug,sig/api-machinery,priority/important-longterm,lifecycle/frozen
low
Minor
480,784,808
storybook
Addon-docs: Automatically display component import paths
<img width="468" alt="Screen Shot 2019-08-14 at 1 12 23 PM" src="https://user-images.githubusercontent.com/52427513/63041165-2e6fe380-be95-11e9-893d-c85404ee2dc2.png"> Above screenshot is from React Styleguidist, which automatically displays a copy / paste link of the import path for end user convenience. I think th...
feature request,addon: docs
medium
Critical
480,785,414
pytorch
Auto tuner takes too much time in serialized model
## πŸ› Bug Serialized models have a huge overhead on a first run. With the model I'm using, it takes at least more than 3-4 minutes (than I'm just shutting it down, though it doesn't respond to `SiGSTOP` or `SIGINT`). I am providing the slightly trimmed version of the final model, but still you can see the huge overh...
oncall: jit,triaged
low
Critical
480,787,107
material-ui
[Select] getting slow when loading 2000 options
## Current Behavior 😯 - When Select Component rendered with 2000 options, getting delay to show the drop-down and select the value <!-- Describe what happens instead of the expected behavior. --> ## Expected Behavior πŸ€” Need to be fast on showing the drop-down and selecting the value <!-- Describe what ...
performance,component: select
medium
Critical
480,787,110
pytorch
Consider changing the behavior of Tensor.__contains__(Tensor) to make more sense
## πŸ› Bug ``` import torch x = torch.tensor([1, 2, 3]) y = torch.tensor([5, 6, 3]) y in x # True ``` ## Expected behavior This particular case should be False. Related: https://github.com/pytorch/pytorch/pull/17733 https://github.com/pytorch/pytorch/pull/24156 The incorrect semantics was introduced in ...
triaged,module: numpy,module: ux
low
Critical
480,789,384
rust
Confusing error deriving PartialEq when child type impls PartialEq<OtherType>
Compiling the following code ```rust struct TypeA; struct TypeB; #[derive(PartialEq)] struct TypeC(TypeA); impl std::cmp::PartialEq<TypeA> for TypeB { fn eq(&self, other: &TypeA) -> bool { true } } impl std::cmp::PartialEq<TypeB> for TypeA { fn eq(&self, other: &TypeB) -> bool { true } } ...
A-type-system,C-enhancement,A-diagnostics,A-macros,T-compiler,T-types
low
Critical
480,812,250
rust
Tracking issue for `#![feature(maybe_uninit_slice)]`
This is a tracking issue for the RFC "Deprecate `uninitialized` in favor of a new `MaybeUninit` type" (rust-lang/rfcs#1892). Most of this has been stabilized, this issue now only tracks the below unstable methods. ### Public API ```rust impl<T> [MaybeUninit<T>] { pub unsafe fn assume_init_drop(&mut self); pu...
T-libs-api,B-unstable,C-tracking-issue,requires-nightly,A-slice,Libs-Tracked,A-raw-pointers
medium
Critical
480,816,615
pytorch
Unified representation for enum types
Right now we have several enums in PyTorch: * dtype https://github.com/pytorch/pytorch/blob/master/torch/csrc/Dtype.cpp * device (actually a tuple) https://github.com/pytorch/pytorch/blob/master/torch/csrc/Device.cpp * qscheme https://github.com/pytorch/pytorch/blob/master/torch/csrc/QScheme.cpp (and I'm sure t...
oncall: jit,triaged
low
Minor
480,846,500
vscode
[css] Add support for CSS @supports selector() function
The **CSSΒ Conditional Rules Module LevelΒ 4** adds [theΒ `selector()` function toΒ theΒ `@supports` at&#x2011;rule](https://drafts.csswg.org/css-conditional-4/#at-supports-ext), whichΒ isΒ used toΒ test whether theΒ user agent [supports aΒ newΒ **CSSΒ Selectors** feature](https://drafts.csswg.org/css-conditional-4/#support-defini...
feature-request,css-less-scss,grammar
low
Minor
480,848,330
TypeScript
Disallow values of type 'symbol' from being passed to 'Number' function/constructor or 'String' constructor
## Suggestion Change the `NumberConstructor` and `StringConstructor` interfaces to disallow passing values of type `Symbol`. Currently it accepts values of type `any`. Attempting to call `Number(Symbol())`, `new Number(Symbol())`, or `new String(Symbol())` all throw `TypeError`s at runtime. **Note**: `String(S...
Suggestion,Awaiting More Feedback
low
Critical
480,851,583
pytorch
Visual Studio Code not providing autosuggestions for submodules
Visual Studio Code is not providing autocomplete suggestions for (at least) the `nn` and `optim` submodules as of PyTorch 1.2, despite the type stubs for them being valid (as shown by mypy making correct use of them). This seems to be an upstream bug with Microsoft's Python language server implementation, https://gi...
triaged
low
Critical
480,855,019
pytorch
Default warning handler in C++ doesn't seem to unique warnings
This default warning handler just prints the warning to cerr: https://github.com/pytorch/pytorch/blob/4bfd33ed36f853bd6a5c3d410eeebbcee1d1653c/c10/util/Exception.cpp#L77 However, this causes issues if TORCH_WARN is used, for example, in an operator implementation. We could possibly unique the warnings here based ...
module: error checking,triaged
low
Minor
480,872,810
rust
Bad compiler warning when code resolves to multiple experimental APIs
With Rust 1.36.0, `Range` has two implementations of `is_empty`, one in an inherent impl, the other in an impl for the `std::iter::ExactSizeIterator` trait. Both of these methods are experimental in this version of Rust. Given the following code: ```rust fn main() { let r = 1u16..10; println!("{:?}", r...
C-enhancement,A-diagnostics,T-lang,T-libs-api,T-compiler
low
Critical
480,875,481
flutter
Allow programatically maximizing windows in GLFW embedding
That could be useful to be able to set window icon, state (for example, start app maximized) and window start position. As far as I found, currently only window width, height and title can be changed. Or I'm wrong?
engine,a: desktop,e: glfw,P3,team-linux,triaged-linux
low
Minor
480,925,365
opencv
JS: TypeScript type definitions
I didn't found any opencv typings in DefinitelyTyped and before I start writing some basic types I would like to know if there are any initiative towards this or what are the plans so we have typechecking for OpenCV.js project. Thanks
feature,category: javascript (js),effort: ∞
medium
Major
480,985,707
TypeScript
[Feature Request] Non-Union Generic Type Params
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms + non-union + generic + type param + one of ## Suggestion ...
Suggestion,Awaiting More Feedback
low
Critical
481,005,922
flutter
Flutter.gradle uses implementation instead of api, which may cause problems in some contexts
See https://github.com/flutter/flutter/pull/27237 - which was closed because it fell out of date and lacked tests. From that PR: >1. Use `flutter create -t module flutter_module` and `flutter make-host-app-editable` to create a project. >2. Add a flutter plugin dependency to pubspec.yaml. >For a simple plu...
platform-android,tool,t: gradle,P2,team-android,triaged-android
low
Minor
481,025,299
java-design-patterns
Store and Process pattern
**Description:** The Store and Process design pattern focuses on decoupling data storage from data processing to allow for flexible and scalable data stream handling. This pattern is particularly useful in scenarios where data needs to be ingested, stored, and then processed asynchronously. The main elements of this pa...
epic: pattern,type: feature
medium
Major
481,053,038
pytorch
SyncBatchNorm error when using model.eval() with DistributedDataParallel
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> ``` Traceback (most recent call last): File "train.py", line 977, in <module> main() File "train.py", line 97, in main main_worker(ngpus_per_node, args, options) File "train.py", line 742, in main_worker total_loss.backw...
needs reproduction,oncall: distributed,module: autograd,triaged
low
Critical
481,053,117
pytorch
Significantly slower in latest version than in 0.4.0
Hi, if I run the following script to train a model, one can aware significantly performance drawbacks in 1.2.0 than in 0.4.0. ``` import torch import torch.nn as nn import torch.optim as optim from torch.optim.lr_scheduler import MultiStepLR import time class DummyModel(nn.Module): def __init__(sel...
needs reproduction,module: performance,module: cuda,triaged
low
Major
481,078,817
go
cmd/go: checksum mismatch lacks resolution information
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +5f45a3337e Wed Aug 14 19:49:15 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What op...
NeedsInvestigation,modules
low
Critical
481,098,609
pytorch
When running model forward with large batch size, it reports the error: THCudaTensor sizes too large for THCDeviceTensor conversion
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> <!-- If you have a code sample, error messages, stack traces, please provide it here as well --> ## Expected behavior When running forward for a language model with a large batch (700 instances per gpu), a tensor storing prediction score...
module: cuda,triaged
low
Critical
481,155,399
TypeScript
feature: ability to extract union of valid index numbers for tuple
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,Awaiting More Feedback
low
Critical
481,220,374
create-react-app
node_modules Mocks are not picked up by jest with latest react-scripts
<!-- Please note that your issue will be fixed much faster if you spend about half an hour preparing it, including the exact reproduction steps and a demo. If you're in a hurry or don't feel confident, it's fine to report bugs with less details, but this makes it less likely they'll get fixed soon...
issue: bug,contributions: up for grabs!
medium
Critical
481,228,343
go
cmd/go: fetching dependencies can be very aggressive when going via an HTTP proxy
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.8 windows/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture...
NeedsInvestigation,modules
low
Critical
481,228,846
go
proposal: identify large changes & add more process
The proposal process was designed in 2015, when the language was effectively frozen and we were not making large changes. Even now, the vast majority of proposed changes are small. But some are large. The lightweight process we have works well for small changes, and we wouldn't want to add unnecessary process to thos...
Proposal
low
Major
481,232,197
godot
Provide an error message for each function that currently returns an Error enum
Following on from https://github.com/godotengine/godot/issues/31393, I noticed that I get the following error: ``` E 0:00:04:0301 Condition ' err ' is true. returned: ERR_CANT_OPEN <C Source> scene/resources/resource_format_text.cpp:1488 @ save() <Stack Trace> Game.gd:56 @ save() Save...
enhancement,discussion,topic:core
low
Critical
481,247,424
youtube-dl
Unsupported URL: mytaratata.com
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist - [x ] I'm reporting a new site support request ...
site-support-request
low
Critical
481,256,501
rust
pgo: -Cprofile-use can't find file
````bash git clone https://github.com/matthiaskrgr/cargo-cache cd cargo-cache RUSTFLAGS="-Cprofile-generate=target/pgodata" cargo build --release ./target/release/cargo-cache ./target/release/cargo-cache ./target/release/cargo-cache q hello ./target/release/cargo-cache r ./target/release/cargo-cache --top-cache...
A-frontend,C-enhancement,A-diagnostics,T-compiler,T-cargo,A-PGO
low
Critical
481,265,595
flutter
Add FlutterView systemGestureInsets tests in the Flutter engine
Currently, JUnit tests are blocked for tests requiring Android SDK 29 (Q) because of issues with Robolectric, our Android testing framework. To make progress on high priority tickets, we will land PRs now and land tests as a follow-up. This issue is created to track where such tests need to be added once the issues wit...
a: tests,c: new feature,platform-android,engine,P3,team-android,triaged-android
low
Major
481,266,326
pytorch
1.0rc0-6216 installs empty directories under include and duplicates under /
The FreeBSD ports framework complains: ``` @dir include/c10/cuda/test/impl @dir include/c10/hip @dir include/c10/test/core/impl @dir include/c10/test/util @dir include/caffe2/contrib/aten/docs @dir include/caffe2/contrib/docker-ubuntu-14.04 @dir include/caffe2/contrib/ideep @dir include/caffe2/contrib/nnpack ...
module: build,triaged
low
Minor
481,268,256
terminal
Terminal cannot use SVG files in backgroundImage, icon (xaml limitation?)
Over at UsingJsonSettings.md, in [the section about adding a background image](https://github.com/microsoft/terminal/blob/master/doc/user-docs/UsingJsonSettings.md#add-a-custom-background-to-the-wsl-debian-terminal-profile) it directs me to download the .SVG image in Step 1 Step 4 then says to use the .JPG: ( `"back...
Issue-Bug,Area-Settings,Product-Terminal,Tracking-External,External-Blocked-WinUI3
low
Major
481,274,057
pytorch
Building Python bits separate from C++ bits and making one play well with the other
I am in the process of creating of the FreeBSD port for PyTorch. So far I am able to build the C++ part (with ```BUILD_PYTHON=OFF```), and am intending to create a port/package named ```science/pytorch```. Since there are C++ examples available I concluded that the C++ part is usable in itself. Obviously, the next ...
module: build,triaged,enhancement
low
Minor
481,277,499
pytorch
Label tracking meta-issue (edit me to get automatically CC'ed on issues! cc bot)
This issue is used by [pytorch-probot](https://github.com/pytorch/test-infra/torchci) to manage subscriptions to labels. To subscribe yourself to a label, add a line `* label @yourusername`, or add your username to an existing line (space separated) in the body of this issue. **DO NOT COMMENT, COMMENTS ARE NOT RESPECT...
triaged
high
Critical
481,282,758
opencv
JS: npm package
I see there's no package for opencv.js so JavaScript users can install it using `npm install` as is accustomed by JS users. The benefits of this would be also that is better integrated with web bundlers like webpack, parcel, browserify which simplify development workflow used in generally for web development. I...
category: javascript (js)
medium
Critical
481,307,204
flutter
`flutter upgrade` crashes with ProcessException trying to run git on windows
*@lanaspectrum commented on Aug 14, 2019, 12:01 PM UTC:* ## What happened I got the exception when I tried to run Flutter upgrade following a prompt that a new version is now available ## Version information Android Studio `3.4.2` β€’ Flutter plugin `io.flutter 38.2.1` β€’ Dart plugin `183.6270` Error getting Flutter ...
c: crash,tool,P2,team-tool,triaged-tool
low
Critical
481,315,851
pytorch
Use a ScriptModule on GPU that was saved from CPU
## πŸ› Bug When a ``nn.Module`` that have been instantiated on CPU is traced and saved, it expects a `CPUFloatType` tensor even if the `ScriptModule` is mapped onto GPU. ## To Reproduce Steps to reproduce the behavior: 1.Build a `nn.Module` on CPU 1.Trace and save the `ScriptModule` in a file 1.Load the fi...
oncall: jit,module: serialization,triaged
low
Critical
481,340,496
flutter
InkWell from UserAccountsDrawerHeader not showing
The `UserAccountsDrawerHeader` is supposed to have a `InkWell` in its `_AccountDetailsState`, but this isn't visible at all when using it. This can be confirmed by downloading the Flutter Gallery App and taping at the user details in the Drawer Navigation example.
framework,f: material design,has reproducible steps,P2,found in release: 3.0,found in release: 3.1,team-design,triaged-design
low
Minor
481,348,832
godot
Godot ignores Viewports with size 0 even though their size is determined by OpenVR
**Godot version:** 3.1.1 **OS/device including version:** Ubuntu 19.10 Nvidia GTX 1080 Nvidia Driver: 430.34 Headset: HTC Vive SteamVR Version: 1.7.4 **Issue description:** Attempting to use arvr with a secondary viewport results in a blank screen on the headset **Steps to reproduce:** Add godot-op...
bug,topic:core,usability,topic:xr
low
Critical
481,364,947
rust
object lifetime bound defaults in trait bindings are incompletely implemented
In https://github.com/rust-lang/rust/pull/63376, we fixed the behavior of default object lifetime bounds in "binding arguments", as described in [this gist](https://gist.github.com/nikomatsakis/e0ac0276744d10b952cf4ea3d3d8a814). For example the following type; ```rust dyn Foo<Bar = dyn Baz> ``` will now default...
A-type-system,A-lifetimes,A-trait-system,T-lang,T-compiler,T-types,A-trait-objects
low
Critical
481,386,694
TypeScript
Quick fix for using bracket accessor instead of get/set on Map
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Suggestion,Domain: Quick Fixes,Experience Enhancement
low
Critical
481,431,511
pytorch
Build PyTorch 1.2.0 occur `recipe for target bin/test_parallel' failed
## πŸ› Bug When building PyTorch 1.2.0, occur `recipe for target 'bin/test_parallel' failed` error. ## To Reproduce Steps to reproduce the behavior: 1. `git clone https://github.com/pytorch/pytorch.git` 2. `git git checkout tags/v1.2.0 -b build-v1.2.0` 3. `python setup.py install` ## Environment ``` ...
module: build,triaged
low
Critical
481,439,013
TypeScript
union types not type guarded
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug,Fix Available,Rescheduled
low
Critical
481,441,358
neovim
Vim script syntax highlighting messed up after fold marker
- `nvim --version`: v0.3.8 - `vim -u DEFAULTS` (version: ) behaves differently? no - Operating system/version: linux - Terminal name/version: kitty - `$TERM`: xterm-kitty ### Steps to reproduce using `nvim -u NORC` Open a .vim file. Run `:set foldenable | set foldmethod=marker`. Declare a variable `let g...
runtime,bug-vim,syntax,needs:vim-patch
low
Minor
481,465,055
youtube-dl
download from boomerang.com audio and video
- [x] I'm reporting a new site support request - [x] I've verified that I'm running youtube-dl version **2019.08.13** - [x] I've checked that all provided URLs are alive and playable in a browser - [x] I've checked that none of provided URLs violate any copyrights - [x] I've searched the bugtracker for similar ...
site-support-request
low
Critical
481,512,895
rust
rustc (>= 1.20.0) fails to optimize moves in trivial cases
The example code below generates extra stack copies of String (meta)data in function `got()` which is expected to produce identical *optimized* code with `expect()`. For quickly verifying the issue, compare `sub rsp, $FRAME_SIZE` instructions which initialize stack frames in the beginning of `got()` & `expect()` functi...
A-LLVM,I-slow,C-enhancement,T-compiler,C-optimization
low
Major
481,517,156
react
SSR: Cannot set property 'memoizedState' of null
<!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or report a *bug*?** A bug? **What is the current behavior?** > Cannot set property 'memoizedState' of null **If the current ...
Type: Bug
medium
Critical
481,525,587
create-react-app
Automatically convert manifest.json fields to corresponding iOS meta tags
### Is your proposal related to a problem? <!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." --> On iOS, Safari doesn't make use of the manifest.json icons, splash screen, and other settings. Instead, it expects some special meta tags in the H...
issue: proposal,needs triage
low
Minor
481,537,032
opencv
CUDA (opencv_contrib) LINK : fatal error LNK1181: Unable to open the input file "Files/NVIDIA.obj"
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest de...
priority: low,category: build/install,category: gpu/cuda (contrib)
low
Critical
481,557,432
flutter
Allow nested hero widgets
## Scenario In my application I have a Markdown editor with three screens: 1. Screen to look at markdown (Screen A) 2. Screen to edit markdown (Screen B) 3. Screen to enlarge pictures in markdown (Screen C) To make the transition more comfortable for the user, I would like to use two independent `Hero` transiti...
framework,a: animation,f: material design,f: routes,customer: crowd,c: proposal,P3,team-design,triaged-design
high
Critical
481,567,029
pytorch
Crashes on torch.cuda.memory_allocated(device)
## πŸ› Bug I have two Nvidia cards and after setting in the environment`CUDA_VISIBLE_DEVICES=1`, then running import torch device = torch.device("cuda:1") print(torch.cuda.memory_allocated(device)) I get Trac...
module: error checking,triaged
low
Critical
481,600,401
rust
Remove repr(simd) attribute and use a lang-item instead
After #63531, we should, at some point, expose a `#[lang = "packed_simd"] struct Simd<T, const N: usize>([T; N]);` from libcore that we handle specially in the compiler instead of using a `#[repr(simd)]` attribute for it.
C-cleanup,T-compiler,A-SIMD
low
Minor
481,615,712
godot
Android: copy/paste menu not available for LineEdit/TextEdit
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 3.1.1 stable flathub **OS/device including version:** <!-- Specify GPU model and drivers if graphics-r...
bug,platform:android,topic:porting,topic:gui
low
Critical
481,637,075
godot
Check texture dimension and warn when exporting for mobile/web platforms
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 3.x **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> iOS ...
enhancement,platform:web,platform:ios,platform:android,topic:editor,topic:export
low
Critical
481,661,729
pytorch
[Tensorboard] Write summaries to S3 or GCS bucket
## πŸš€ Feature When creating a SummaryWriter, specifying a path in an S3 or GCP bucket should directly write to the bucket instead of the local filesystem ## Motivation Both in tensorflow and tesorboardX you can specify s3:// or gs:// paths in your logdir, which greatly simplifies distributed training and monitor...
feature,triaged,module: tensorboard
medium
Major
481,669,099
storybook
More control over sidebar content
**Is your feature request related to a problem? Please describe.** One of my stories has a lot of text about the project and is broken up into several parts (very minimal on code). Because they are not Stories in the traditional sense, they are not indexed in the sidebar where it would be ideal. **Describe the sol...
feature request,addon: docs
low
Critical
481,671,102
pytorch
Benchmark cudnn version of grid sampler
As discussed in #23923 , we should benchmark the perf difference between cudnn version and native version of grid sampler. cudnn version has very limited support, we should remove it if the perf doesn't vary much. cc @csarofeen @ptrblck @VitalyFedyunin @ngimel
module: performance,module: cudnn,triaged
low
Minor
481,673,999
rust
rustdoc: Poor CPU usage on Windows during thousands of doctests
When running the doctests for the `core` crate on my 28-core system the system unfortunately never really gets above 40% cpu usage, yet the doctests being compiled are embarassingly parallel and should result in full usage of the cores available to execute. For now this can be reproduced with `./x.py test src/libcor...
O-windows,T-rustdoc,I-compiletime,C-bug,A-doctests
medium
Major
481,674,140
godot
Basis.get_euler() can return pitch outside of [-Ο€/2, Ο€/2] range
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** v3.2.dev.custom_build.188a10df8 de8ce3e **OS/device including version:** Linux Mint 19.2 x86_64 **Issue description:** Euler angles are suppo...
bug,discussion,topic:core,confirmed
low
Minor
481,704,441
godot
Warn user when saving Signal with unsavable binding
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 3.1 Feature request pretty much. When creating Signals in editor tools, plugins, and tool scripts, y...
enhancement,topic:editor
low
Minor
481,705,509
pytorch
Port CPU_tensor_apply functions to TensorIterator (umbrella issue)
- [x] Implement `cpu_serial_kernel` and `cpu_serial_kernel_vec` for TensorIterator #24472 - [ ] #24479 Migrate CPU_tensor_apply to TensorIterator in aten/src/ATen/native/Normalization.cpp:173 https://github.com/pytorch/pytorch/blob/eabfca3577ea85df2d68bdf747c62dd4a5fff5cf/aten/src/ATen/native/Normalization.cpp#L1...
triaged,better-engineering,module: CPU_tensor_apply
low
Minor
481,709,252
pytorch
Migrate CPU_tensor_apply to TensorIterator in aten/src/ATen/native/TensorCompare.cpp:30
Migrate CPU_tensor_apply to TensorIterator https://github.com/pytorch/pytorch/blob/eabfca3577ea85df2d68bdf747c62dd4a5fff5cf/aten/src/ATen/native/TensorCompare.cpp#L30 How to use TensorIterator: https://github.com/pytorch/pytorch/wiki/How-to-use-TensorIterator Additional Instructions:#24478 Blocked by:#24472
triaged,better-engineering,module: CPU_tensor_apply
low
Minor
481,710,764
pytorch
Failed to compile PyTorch on IBM Power 9 architecture with CUDA 10
I started to build `pytorch` and `libtorch` on a IBM Power 9 machine with RedHat 7.6 and cuda 10.0 installed. For both `pytorch` and `libtorch` I got an error during building NVCC. I appreciate any help or comment. For `pytorch`, I tried `python setup.py install` and it resulted an error during building caffe2: ...
module: build,triaged
low
Critical
481,712,299
flutter
Do macOS engine binaries need LTO?
For Android and iOS we build the release and profile engine binaries with LTO. This adds a significant amount of time to the build process, but results in smaller binaries. For the macOS desktop profile and release engines, the benefit of space saving might not be as pronounced. Additionally, we're a bit under capac...
engine,platform-mac,a: desktop,P3,team-macos,triaged-macos
low
Major
481,743,652
youtube-dl
unable to download video from duboku.net
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
481,748,074
go
cmd/cover: incorrect coverage for source file generated by x/tools/cmd/goyacc
# What version of Go are you using? go version go1.12.7 windows/amd64 ### What did you do? ~~~ go get github.com/rillig/go-yacc-examples cd $GOPATH/src/github.com/rillig/go-yacc-examples/json go generate go test -test.coverprofile coverage.out ~~~ ### What did you expect to see? The `coverage.out` f...
NeedsInvestigation
low
Critical
481,761,221
pytorch
[jit] Dict iterator invalidation doesn't match Python
This runs in TorchScript but throws an error in Python ```python @torch.jit.script def fn(): a_dict = {'a': 1, 'b': 2, 'c': 3} sum = 0 for key in a_dict: a_dict[str(a_dict[key])] = 1 sum += a_dict[key] return sum print(fn()) ``` It outputs ``` 6 ``` but should o...
oncall: jit,triaged,jit-backlog
low
Critical
481,772,419
rust
Audit sources of shared state across rustc
Infrastructure for parallel compilation has landed in rustc, but the shared state involved has not been fully documented (in terms of what state exists, invariants, atomicity, lock ordering, etc) or assessed for removal by refactoring. This issue tracks the PR history for parallelization infrastructure, which is bei...
T-compiler,WG-compiler-performance,A-parallel-queries
low
Minor
481,782,830
flutter
Re-evaluate findBundlePath() because it has been changed to simply return a constant.
Re-evaluate findBundlePath() because it has been changed to simply return a constant. There may still be add-to-app situations where a developer wants to provide their own app bundle path.
platform-android,engine,P2,team-android,triaged-android
low
Major
481,791,720
flutter
AppBarTheme not localized correctly
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
framework,f: material design,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
481,810,211
flutter
Expose canvas transform matrix
## Use case dart:ui canvas doesn't expose the current trasformation matrix. We can use canvas.translate(), scale(), rotate() to manipulate it but we can't get the resulting matrix after the transformations have been added. Skia exposes it (https://skia.org/user/api/SkCanvas_Reference#SkCanvas_getTotalMatrix), just F...
c: new feature,engine,P3,team-engine,triaged-engine
low
Major
481,812,278
rust
missing symbol issue in some environments (rustdoc bug?)
I have encountered an issue whereby I get a missing symbol error, specifically in Ubuntu Xenial and Bionic Beaver environments on travis, but not Trusty. I believe it is either a rustdoc bug, or an issue with differences in system libs/utilities it uses. It relates specifically only to a symbol guarded by a cargo fe...
A-linkage,O-linux,T-rustdoc,T-compiler,C-bug,E-needs-mcve
low
Critical
481,820,893
rust
inline attribute on async fn doesn't work properly
[Playground link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=3e8d2c145ac7edf44e6eb84ae65e1390) In the playground, an `async fn` is marked `#[inline(always)]`: ```rust #[inline(always)] pub async fn test() -> i32 { 12345 } ``` However, if you compile it in debug mode (where ...
I-slow,A-attributes,A-codegen,T-compiler,C-bug,A-async-await,AsyncAwait-Triaged,requires-nightly
low
Critical
481,825,955
pytorch
Installs empty directories under Python's sitelibdir
The FreeBSD ports framework complains: ``` Error: Orphaned: @dir %%PYTHON_SITELIBDIR%%/caffe2/CMakeFiles/caffe2_protos.dir Error: Orphaned: @dir %%PYTHON_SITELIBDIR%%/caffe2/CMakeFiles/caffe2_pybind11_state.dir/python Error: Orphaned: @dir %%PYTHON_SITELIBDIR%%/caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/di...
module: build,triaged
low
Critical
481,830,906
godot
Cannot load GDNative DLL from within the PCK file
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 3.1.1 **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> Li...
enhancement,platform:windows,confirmed,topic:gdextension
low
Critical