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 |
|---|---|---|---|---|---|---|
653,467,754 | flutter | Can't test navigation between Flutter Web pages using Flutter Driver | Flutter Driver has only very basic documentation for simple tests like finding a button and pressing the button. Anyone know if I can do other operations like navigate to a specific page from driver (e.g. using a # url fragment), test a link which leads to an external site, check visual setup of the page against an ima... | framework,t: flutter driver,f: routes,customer: webeap,P3,team-framework,triaged-framework | low | Minor |
653,468,291 | pytorch | Memory bug for backward on torch.sparse.mm? | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
> import torch
import numpy as np
print(f'GPU memory usage: {torch.cuda.memory_allocat... | module: sparse,module: autograd,triaged | low | Critical |
653,506,524 | pytorch | libtorch cmake should PUBLIC ally advertise it as requiring C++14 | In a bunch of our sample CMakeLists.txt, for example https://pytorch.org/tutorials/advanced/torch_script_custom_ops.html#building-with-cmake we explicitly force our end users to specify that the extension is C++14. Modern cmake lets us define a target that will automatically enforce c++14 on downstream users: https://s... | module: build,triaged | low | Minor |
653,551,810 | pytorch | Sum of two tuples becomes a list in torchscript | ## 🐛 Bug
Sum of two tuples becomes a list in torchscript
## To Reproduce
```python
import torch
from torch import Tensor
from torch.jit.annotations import Tuple
def foo4() -> Tuple[Tensor, Tensor, Tensor, Tensor]:
out1 = (torch.tensor(0), torch.tensor(0),)
out2 = (torch.tensor(0), torc... | oncall: jit | low | Critical |
653,552,663 | flutter | Show a warning when building APK/AAB with unsupported architecture | See https://github.com/flutter/flutter/issues/37566 and https://github.com/flutter/flutter/issues/59501.
It's possible for users to end up adding their own native libraries in their Flutter Android project's gradle. If the user ends up adding an x86 .so to their project, the APK will be installable on x86 physical ... | c: new feature,c: crash,platform-android,tool,t: gradle,P3,team-android,triaged-android | low | Critical |
653,574,290 | opencv | in opencv.js findTransformECC, argument inputMask is required (vs. documented optional) and does not seem to accept any input | ##### System information (version)
- OpenCV => 4.3.0 (opencv.js)
- Operating System / Platform => Windows 64 Bit
- Compiler => using Javascript
##### Detailed description
Using opencv.js (4.3.0 and tested todays build as well) findTransformECC has 2 optional parameter (inputMask and gaussFiltSize) but if you ... | category: javascript (js) | low | Critical |
653,585,930 | three.js | PropertyBinding: Unit test for custom interpolants | In https://github.com/mrdoob/three.js/issues/19239 we discussed wanting to have a test covering use of custom interpolants with the animation system, which GLTFLoader relies on. I haven't had the chance yet to do so, but don't want to lose track of that thread, so filing a new issue here. | Suggestion | low | Minor |
653,586,280 | pytorch | Support for More Loss Functions | ## 🚀 Feature
Supporting more loss functions like `FocalLoss` or `DICE` natively will be a nice addition, especially as their already implementations to them out there.
## Motivation
Native support for more loss functions will reduce boilerplate code.
## Pitch
Review and addition of loss functions found [H... | feature,module: loss,triaged | low | Major |
653,612,196 | go | x/pkgsite: in cmd/frontend's --proxy_url argument, exclude localhost from https requirement | ### What did you do?
I tried to start `pkgsite/cmd/frontend` using this command line:
```
./frontend --direct_proxy --proxy_url http://localhost:3000
```
I want to use `http://localhost:3000` with the `--proxy_url` argument, because I'm trying to create a small kubernetes deployment with the athens module prox... | NeedsInvestigation,pkgsite | low | Critical |
653,615,697 | PowerToys | [KBM] Add a hotkey key to turn it on/off | A way in which to easily toggle on and off the keyboard manager feature without having to leave fullscreen apps, specifically games.
A shortcut keybind that is resignable that would allow for the keyboard manager to be toggled on and off without the need to alt+tab out of games.
A resign-able shortcut key to togg... | Idea-Enhancement,Help Wanted,Product-Keyboard Shortcut Manager,Product-Settings | medium | Critical |
653,618,228 | pytorch | Source code for some /_modules/.../.../ not displaying on https://pytorch.org/docs/master/_modules/ | ## 📚 Documentation
From the module code overview page: https://pytorch.org/docs/master/_modules/ there are some modules whose source code documentation page isn't properly displaying and instead displays the "*Oops! You've reached a dead end*" page.
e.g.
* https://pytorch.org/docs/master/_modules/torch/__co... | module: docs,triaged | low | Minor |
653,619,638 | pytorch | eager mode quantization should remove qconfig in the (non-leaf module of) quantized model | After eager mode quantization, we find that qconfig are not removed for non-leaf modules, this will affect future function calls to numeric suite etc.
cc @jianyuh @raghuramank100 @jamesr66a @vkuzo @jgong5 @Xia-Weiwen @leslie-fang-intel @jerryzh168 @dzhulgakov | oncall: quantization,low priority,triaged | low | Minor |
653,621,540 | go | x/tools/cmd/goyacc: Please add "version" command or flag | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
```
bash-4.2$ go version
go version go1.12.15 linux/amd64
```
### Does this issue repro... | help wanted,NeedsFix,FeatureRequest,Tools | low | Critical |
653,624,781 | TypeScript | Difference in overload pick between JS and TS with default generic type parameter | <!-- 🚨 STOP 🚨 STOP 🚨 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 before lo... | Needs Investigation | low | Critical |
653,630,893 | rust | `unused_lifetimes` warning misses unused lifetime | I discovered an unused lifetime in my code that the compiler didn't tell me about. I was able to reduce the problem to the following snippet.
```rust
#![warn(unused_lifetimes)]
struct Foo<'a>(for<'r> fn(&'r mut Foo<'a>));
impl<'a> Foo<'a> {
pub fn new() -> Self {
Self(Self::a)
}
pu... | A-lints,A-lifetimes,T-compiler,C-bug | low | Minor |
653,652,935 | node | Add a `stream` event for client-side HTTP2 sessions | **Is your feature request related to a problem? Please describe.**
```js
const http2 = require('http2');
const session = http2.connect('https://google.com');
// Unfortunately there is no API for this.
// It would be very useful for example to catch how many streams are pending in this session.
session.once('s... | http2 | low | Minor |
653,655,182 | node | Graceful close for HTTP2 sessions | **Is your feature request related to a problem? Please describe.**
IMO it would be very nice to have `session.gracefullyClose()` so pending streams can be finished but no more streams can be created on this session ~(or closing is canceled when `session.request()` is called)~. I'm developing some sort of a pool (age... | help wanted,http2 | medium | Major |
653,666,082 | pytorch | Advanced indexing gradient is extremely slow when there are many duplicate indices | ## 🐛 Bug
We observed a ~2x slowdown in training performance of a detection network when we did broadcast on a tensor.
This broadcasting operation launches the following kernel in the backward pass which completely eats away performance:
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cuda/Inde... | module: performance,triaged,has workaround | low | Critical |
653,667,071 | pytorch | Pytorch.js would be nice! | ## 🚀 Feature
Tensorflow.js allows tensorflow users to run models in a browser. They can share models with their friends, and run realtime inference easily. While ONNX.js exists, I'm finding it doesn't really have a community or any learning resources really except for one youtube video. The official recommendation... | feature,triaged | low | Minor |
653,748,449 | TypeScript | IntelliSense for generic Promise function shows truncated return type |
*TS Template added by @mjbvz*
**TypeScript Version**: 4.0.0-dev.20200702
**Search Terms**
- hover / quick info
- truncation
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search exis... | Suggestion,Awaiting More Feedback | low | Critical |
653,750,933 | excalidraw | Add ability to add a point on either side of a linear element | I thought this was already in place, but I can't make it work:
I expect that if I select a "starting" point, then press "alt", I should be able to "prepend" points to the line. But it seems that I can only add points to the end.
<img width="401" alt="Screen Shot 2020-07-08 at 21 19 07" src="https://user-images.gi... | enhancement | low | Major |
653,755,531 | excalidraw | Double click should pass through selected forefront objects for editing | Not 100% sure but it feels like this should be changed.
Steps to repro:
1. Create a text
2. Create a rectangle over it
3. Deselect all
4. Double click on the text
5. You will enter edit mode for the text (good)
6. Now select the rectangle
7. Again double click on the text
8. This time you will create a new... | bug | low | Minor |
653,763,912 | TypeScript | Consider adding `primitive` as a union of all primitive types | ## Search Terms
- primitive type
- primitive type union
## Suggestion
`primitive` would be a union of all primitive types, e.g.:
```ts
type primitive = string | number | bigint | boolean | symbol | null | undefined; // unknown & not object
```
The advantage of doing this as a **TypeScript** built‑in rat... | Suggestion,Awaiting More Feedback | low | Critical |
653,768,809 | scrcpy | [feature request] Add option to clamp events coordinates inside the device screen (swipe from left/right edge) | - [x] I have checked that a similar [feature request](https://github.com/Genymobile/scrcpy/issues?q=is%3Aopen+is%3Aissue+label%3A%22feature+request%22) does not already exist.
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always f... | feature request | low | Major |
653,799,333 | PowerToys | [FancyZones] Dragging to edge of screen could bring up the FancyZones overlay, instead of default Windows snap overlay | # Summary of the new feature/enhancement
Currently when dragging a window to an edge of a monitor, the window will snap to Windows' default snap positions.

It would be pret... | Idea-Enhancement,Product-FancyZones | low | Major |
653,827,948 | pytorch | The new version of the libtorch become slow | My previous program based on libtorch 1.0.0 Slow down 100ms after the upgrade. And then I find that the same code ran libtorch1.0.0 would be faster than 1.3.0-1.5.1. That's why? 1.1.0-1.2.0 I have not test.
cc @suo @gmagogsfm @yf225 @glaringlee @VitalyFedyunin @ngimel | module: performance,oncall: jit,module: cpp,triaged | medium | Major |
653,836,248 | pytorch | Failure to build on Power9 due to FXDIV_SOURCE_DIR not being set | ## 🐛 Bug
The build (actually the cmake configure) on Power9 architectures fails with a strange error:
```
CMake Error at cmake/Codegen.cmake:207 (add_custom_target):
add_custom_target cannot create target "ATEN_CPU_FILES_GEN_TARGET" because
another target with the same name already exists. The existing t... | module: build,triaged,module: POWER | low | Critical |
653,846,063 | go | encoding/json: add Encoder.EncodeToken method | Currently there is a way to decode JSON token-by-token, but the JSON package does not support encoding tokens that way. It has been stated that just writing the tokens yourself is straightforward enough to do (citation needed), but it's not actually _that_ easy to do.
Here's some code that streams JSON from input t... | Proposal,Proposal-Accepted | medium | Critical |
653,849,793 | go | proposal: encoding/json: garbage-free reading of tokens | As @bradfitz noted in the reviews of the original API, the `Decoder.ReadToken` API [is a garbage factory](https://go-review.googlesource.com/c/go/+/11651/2/src/encoding/json/stream.go#279). Although, as @rsc noted at the time, "a clean API ... is more important here. I expect people to use it to get to the position the... | Proposal,Proposal-Hold | medium | Critical |
653,856,217 | youtube-dl | Reverse playlist and then start from particular number | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | question | low | Critical |
653,863,747 | ant-design | Add swipe support to `Tabs` to switch between `TabPane`s | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
When using the component `Tabs`, it would be great for users on mobile to be able to switch between `TabPane`s by a swipe gesture... | 💡 Feature Request,Inactive | low | Major |
653,868,293 | TypeScript | Head comments are removed in some cases for next `import` line | ---
name: Bug
about: Create a report to help us improve TypeScript
title: 'Head comments are removed in some cases'
labels: ''
assignees: ''
---
**TypeScript Version:** 3.7.x-dev.201xxxxx
There is a repo, the same result for 3.6 and latest next 4.0...
**Search Terms:**
**Code**
```ts
// @s... | Bug | low | Critical |
653,926,734 | go | runtime: darwin using -buildmode=c-shared so got runtime: unexpected return pc for runtime.sigpanic called from 0x41e745a | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.4 darwin/amd64
</pre>
### Does this issue reproduc... | OS-Darwin,NeedsInvestigation,compiler/runtime | low | Critical |
653,977,305 | ant-design | 分页组件(Pagination)的 pageSize 选择器中能否添加一个“显示全部”的选项 | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
现在虽然可以设置一个例如 1000 条/页 这样比较大的页数,但是实际情况下需要用户自己去理解一下当总条目数小于 1000 时,选这个“1000 条/页”就是展示全部的效果,而且有些业务场景我们也无法预知这个总条目会不会超过 1000 条。能不能做到当这个 ... | Inactive | low | Minor |
653,983,826 | material-ui | [material-ui][Autocomplete] Type issue once wrapped with styled() | I'm trying to use `Autocomplete` with `styled-components` in typescript environment. But when using the component, linter start to complain about styled autocomplete component. I checked for this issue but not sure if it is duplicate. Could not find something related?
<!-- Checked checkbox should look like this: [... | docs,typescript,component: autocomplete,ready to take | medium | Critical |
653,999,436 | react-native | iOS can't dismiss Modal! | ## Description
On iOS the `<Modal>` component cannot be dismissed by dragging down. (gesture is a native behaviour on iOS)
The reason for that being is that the `onDismiss` or `onRequestClose` function is never called. It is only being called on tvOS.
## React Native version:
```
info Fetching system and l... | Platform: iOS,Resolution: PR Submitted,Component: Modal,Never gets stale | medium | Critical |
654,039,003 | godot | `drop_data` doesnt fire if `visible = false ; visible = true`was called before | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.2.1.stable
<!-- Specify commit hash if using non-official build. -->
**OS/device including version:** Arch Linux
<!-- Specify GPU model, drivers,... | bug,topic:gui | low | Minor |
654,057,248 | pytorch | DLPack cannot accept empty CUDA tensor | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
When converting a DLPack object representing an empty CUDA tensor to a PyTorch tensor, it crashes with "CUDA error: invalid argument".
## To Reproduce
Steps to reproduce the behavior:
```python
# bug.py
import torch as th
from torc... | module: cuda,triaged | low | Critical |
654,058,851 | flutter | CupertinoAlertDialog inconsistent dividers across IOS and Android | ## Steps to Reproduce
```
showDialog(
context: context,
builder: (BuildContext context) {
return CupertinoAlertDialog(
title: Text('title'),
actions: [
CupertinoDialogAction(child: Text('button')),
CupertinoDialogAction(child: Text('button')),
],
);
},
);
... | framework,f: cupertino,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
654,099,587 | rust | Add support for `#[doc(since="version")]` attribute | To the present day, the _internal_ crates like `core` and `std` can annotate things with `#[stable(since="version")]`. This is extremely useful for users, especially because `rustdoc` is able to write this information in the rendered documentation.
Unfortunately, this kind of feature is not available for _normal_ cr... | T-rustdoc,C-feature-request | medium | Major |
654,129,012 | rust | Missed optimization: Useless branches are kept when matching pattern | EDIT: this is now reasonably optimized: https://rust.godbolt.org/z/nP599MaKM
So it just needs tests: @rustbot label +E-needs-test
---
I tried this code: https://rust.godbolt.org/z/hP3YKe
The code below does not compile because I strip some code, try the godbolt link above:
```rust
const fn doc_comment_kind(... | I-slow,E-needs-test,T-compiler,C-bug | low | Minor |
654,168,581 | pytorch | test_autograd failures on Power | ## 🐛 Bug
I have some tests failing on a Power system. As MKL is not (easily?) available there I'm using the automatic fallback to Eigen/OpenBlas.
The failing tests are:
- test_solve_batched_broadcast_A_cpu
- test_solve_batched_broadcast_b_cpu
- test_solve_batched_cpu
- test_solve_batched_dims_cpu
Those are ... | module: autograd,module: cuda,module: tests,triaged,module: POWER,module: linear algebra | low | Critical |
654,169,563 | rust | Missed optimization: Loop with decreasing index does not elide bounds check | I tried code very similar to the code below. The expected produced code would perform one bounds check at the start of the function and none inside the loop. `offsets` is first asserted to be valid for the initial index. This should be enough to also find that it is valid for all smaller indices. No loop iteration can ... | A-LLVM,I-slow,C-enhancement,T-compiler,C-optimization | low | Minor |
654,174,989 | pytorch | test_upsampling_not_recompute_scale_factor fails with Eigen/OpenBLAS | ## 🐛 Bug
I'm getting a test failure of test_upsampling_not_recompute_scale_factor
## To Reproduce
Steps to reproduce the behavior:
1. python setup.py install
1. cd test
1. python run_tests.py
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
```
=====... | module: tests,triaged | low | Critical |
654,189,748 | go | dev.boringcrypto: crypto/internal/boring: consider splitting up into smaller packages based on math/big requirement | As discussed in [golang.org/cl/241442](https://go-review.googlesource.com/c/go/+/241442/1#message-bb399544c64ab073e5adf50eef6a961dc798ab5e), this is a tracking issue to look into breaking `crypto/internal/boring` up into distinct packages, splitting out RSA and ECDSA—which require `math/big`—away from the rest which do... | NeedsInvestigation | low | Minor |
654,199,429 | TypeScript | Problematic Ternary-Expression Formatting Inside JS String Interpolation | *TS Template added by @mjbvz*
**TypeScript Version**: 4.0.0-dev.20200708
**Search Terms**
- format
- template string
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issue... | Bug,Domain: Formatter | low | Critical |
654,222,855 | storybook | Addon-controls: Add custom user-defined controls | We are currently documenting our React components in Storybook, and decided to go straight to version 6.0 to make use of the new Args and Controls addons. During that work, we realised that the [choice of controls](https://github.com/storybookjs/storybook/blob/next/addons/controls/README.md#control-annotations) is very... | feature request,addon: controls | high | Critical |
654,226,270 | TypeScript | Generic Type Alias Overloading | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,In Discussion | low | Critical |
654,237,939 | angular | [feature] Ability to clone a TemplateRef to multiple outlets at once | # 🚀 Ability to clone a TemplateRef to multiple outlets at once
### Relevant Package
I could see this being a useful utility in `@angular/cdk`, but would likely require an update to `@angular/core`. I'm honestly not sure.
### Description
Essentially, I would like to have the ability to take a `TemplateRef` an... | feature,area: core,core: content projection,core: dynamic view creation,type: use-case,feature: insufficient votes | medium | Critical |
654,324,764 | TypeScript | Variable "name" in VSCode editor(intelli-sense) is showing incorrect information | *TS Template added by @mjbvz*
**TypeScript Version**: 4.0.0-dev.20200708
**Search Terms**
- javascript
- lib.dom
- globals
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existin... | Suggestion,Needs Proposal | low | Critical |
654,334,523 | flutter | Flutter Android app “Unable to instantiate activity” (Pre-Launch crash report) | I build my app as a "release" build (with signing and all) to publish it to PlayStore. I get a lot of crash reports from the "Pre-launch report" within PlayStore (see "actual results"). The build process, however, worked as expected without any failure. Also, the debug build and split-by-abi build is working without an... | platform-android,tool,a: release,P2,c: fatal crash,team-android,triaged-android | low | Critical |
654,338,719 | godot | GridMap is visible only on the first cull_mask layer | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
Godot Engine v3.2.2.stable.custom_build
**OS/device including version:**
5.7.0-3-MANJARO, OpenGL ES 3.0 Renderer: GeForce GTX 1050 Ti/PCIe/SSE2
... | bug,topic:rendering,confirmed | medium | Major |
654,341,716 | TypeScript | Suggestion: Add a way to hint typescript about basic function flow (call orders) | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,Awaiting More Feedback | low | Critical |
654,381,076 | flutter | Scrolling jank in ListView when semantics are enabled | Hi i am following flutter and keep in touch with testing different apps developed in flutter.
But one major issue which is continuously under the ignorance and no thread i found on internet for now.. here is what i feel since 6 months of testing different apps.
Listview kind of scrolling jerks, specially when we ... | framework,engine,c: performance,a: accessibility,f: scrolling,customer: crowd,perf: speed,has reproducible steps,P2,found in release: 3.7,team-engine,triaged-engine | low | Critical |
654,405,038 | flutter | Scrollable Hint Text | <!-- 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... | a: text input,platform-ios,framework,f: material design,a: accessibility,c: proposal,P3,team-text-input,triaged-text-input | low | Critical |
654,406,812 | pytorch | libTorch cpp docs missing for Tensor::item() | ## 📚 Documentation
https://pytorch.org/cppdocs/api/classat_1_1_tensor.html#_CPPv4NK2at6Tensor4itemEv
and
https://pytorch.org/cppdocs/api/classat_1_1_tensor.html#_CPPv4I0ENK2at6Tensor4itemE1Tv
are both missing descriptions.
--------
I am trying to get a `float` out of a `Tensor` (that is a single element,... | module: docs,module: cpp,triaged | low | Critical |
654,414,230 | vscode | [Request] Provide file-specific onDidChangeSemanticTokens event | In C/C++, when a modification is made to a header file, semantic tokens in files that include it could change. (i.e. when renaming a function). Because those other files are not themselves changing, VS Code does not re-request tokens for them (if also open).
There is an `onDidChangeSemanticTokens` event we can us... | feature-request,api,semantic-tokens | low | Minor |
654,422,266 | flutter | [flutter_tools] The tool should prefer the JDK vendored with Android Studio | As seen in issue #56572, if a version of JDK greater than 8 is set as `JAVA_HOME`, the tool will fail to detect android licenses. Since Android Studio vendors JDK 8, we should prefer that version. | tool,a: quality,c: proposal,P3,team-tool,triaged-tool | low | Major |
654,426,214 | opencv | Nightly(sporadic crashes): opencv_test_dnn - Test_Caffe_layers.Concat OCL_FP16 | Observed with:
- MSVS: 2019
- 64-bit
- OpenCL: 26.20.100.7262
Builds examples: [1](http://pullrequest.opencv.org/buildbot/builders/master-win64-vc16/builds/317) [2](http://pullrequest.opencv.org/buildbot/builders/master-win64-vc16/builds/413)
```
[ RUN ] Test_Caffe_layers.Concat/1, where GetParam() = OCV... | bug,category: dnn,needs investigation | low | Critical |
654,429,565 | terminal | ConPTY: transmit DECSET/DECRST state when client application enters/exits ENABLE_VIRTUAL_TERMINAL_INPUT mode | Certain applications (mainly those using the Cygwin/MSYS runtime) will attempt to change VT input parameters while VT input is technically off. Because we do nothing to communicate the expected VT input parameters to a connected terminal before we _turn on VT input passthrough_, it's possible for the connected terminal... | Product-Conpty,Area-Input,Issue-Bug,Priority-2 | low | Major |
654,432,731 | godot | Bools are implicitly cast to ints | <!-- 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 using non-official build. -->
3.2.2
**Issue description:**
<!-- What happened, and what was expected. -->
```GDScript... | bug,discussion,topic:gdscript | low | Critical |
654,458,405 | youtube-dl | Plexstorm | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request,nsfw | low | Critical |
654,475,575 | rust | Add item suggestions for broken intra doc links | The diagnostics for intra-doc links could be improve to match the diagnostics available in rust.
Current error message
```
warning: `[extend]` cannot be resolved, ignoring it.
--> src/vec.rs:704:45
|
704 | /// Note that this function is same as [`extend`] except that it is specialized to work with
... | T-rustdoc,C-enhancement,A-diagnostics,A-intra-doc-links,A-suggestion-diagnostics | low | Critical |
654,487,347 | deno | Runtime features to support Quokka.js | Hi Deno team – firstly, I wanted to say thanks for all your work creating deno. It’s impressive and I am personally looking forward to seeing more community adoption.
Our company creates a couple of popular JavaScript/TypeScript developer tools ([Wallaby.js](https://wallabyjs.com/) and [Quokka.js](https://quokkajs.c... | cli,suggestion | medium | Critical |
654,496,182 | TypeScript | mixin constructor wrongly typed | <!-- 🚨 STOP 🚨 STOP 🚨 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 before lo... | Suggestion,Awaiting More Feedback | low | Critical |
654,497,679 | TypeScript | tsconfig extend field should be more user friendly | ## Suggestion
Probably some functionality may refer to editor (i.e VSCode)
`extends` field in `tsconfig.json`:
1) propose auto suggestions (propose existing parent configs in the project)
2) check if a path exists, and expose an error if the path doesn't exist.
My suggestion meets these guidelines:
... | Suggestion,Awaiting More Feedback | low | Critical |
654,504,978 | pytorch | The name "Contiguous" in `torch::MemoryFormat::Contiguous` can mislead users into assuming contiguous memory | When looking at `torch::MemoryFormat::Contiguous`, users can relate it to `tensor.contiguous()`, and assume that by passing it as the memory_format argument to operators/functions, the output tensor will be with contiguous memory. However this is not true e.g:
In [`at::Tensor::suggest_memory_format`](https://github.... | high priority,triaged,module: memory format | low | Minor |
654,584,300 | pytorch | Cleanup git branches | ## 🚀 Feature
I'd like to propose cleaning up the branches of the pytorch git repo removing all merged or outdated ones
## Motivation
There are currently almost 3800 branches. Lot's of them refer to closed (rejected) PRs or are outdated or merged (e.g. gh/suo/8/base).
Having this many branches makes it harder t... | triaged,small,better-engineering,actionable | medium | Major |
654,624,637 | create-react-app | [docs] I translated Create React App docs into Chinese, can i add a link to readme or send a PR? | I translated Create React App docs into Chinese, including docs under docusaurus directory, i want to contribute the works to community.
You could view the docs here: http://docs.breword.com/facebook-create-react-app
Can i add the above link to repo README.md or send a PR with my translated docs content ?
The ... | issue: proposal,needs triage | low | Minor |
654,647,398 | flutter | [pigeon] Clarify in example that the command depends on the plugin details | I am learning how to use pigeon from https://s0pub0dev.icopy.site/packages/pigeon#-example-tab-
But when I call the following command,it prompts me:
```
maixiangMacBook-Pro:vision_ward wyj$ flutter pub run pigeon --input pigeons/message.dart --dart_out lib/pigeon.dart --objc_header_out ios/Runner/pigeon.... | d: api docs,package,team-ecosystem,p: pigeon,P2,triaged-ecosystem | low | Major |
654,647,676 | pytorch | "out of scope" variable `cmd` used | https://github.com/pytorch/pytorch/blob/df252c059c3ea4c04f8c39c3b4c25a3f4572b0b7/torch/distributed/launch.py#L257
should be `cmd=process.args` ?
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar @jiayisuse @agolynski | oncall: distributed,triaged,better-engineering | low | Minor |
654,663,194 | vscode | Better API to associate a notebook cell document with its notebook | A notebook document contains cell documents, which are `vscode.TextDocument` types. There is no easy/nice way to get to a notebook from a document. Ideas
* add a util like `notebook.findContainerNotebook(document: TextDocument): NotebookDocument | undefined`
* add a pointer from the document, e.g `TextDocument#note... | feature-request,api-finalization,notebook-api | low | Major |
654,707,301 | pytorch | test_backward_deadlock fails with "Directory not empty" | ## 🐛 Bug
I'm running a build & test on a node without a GPU (installation for a cluster)
One test (`TestCppExtensionJIT`) seems to fail with what looks like a race condition. The error is "OSError: [Errno 39] Directory not empty: 'test_backward_deadlock'"
See output below
## To Reproduce
Steps to reprod... | oncall: jit,module: POWER | low | Critical |
654,721,923 | pytorch | [discussion] Unite nn modules nn.Something*d to just nn.Something with appropriate options | I proposed it in https://github.com/pytorch/pytorch/issues/41081#issuecomment-655148816, but maybe a separate issue is a better place to discuss this:
A more radical proposal: unite BatchNorm\*d / SyncBatchNorm in one module BatchNorm (with option sync = False|True, especially given that SyncBatchNorm is now establi... | module: nn,triaged | low | Major |
654,730,806 | pytorch | torch.tan(complex) on CUDA doesn't handle nonfinite values properly | ```
t = torch.tensor(complex(float('-inf'), 0))
print(torch.tan(t))
print(torch.tan(t.cuda()))
print(np.tan(t.numpy()))
```
will print:
```
tensor(nan+0.j)
tensor(nan+nanj, device='cuda:0')
(nan+0j)
```
The CUDA result (in the middle) is incorrect.
cc @ezyang @anjali411 @dylanbespalko @ngimel | module: cuda,triaged,module: complex | low | Minor |
654,733,389 | pytorch | torch.sign is divergent from numpy.sign on NaN | ```
torch.sign(torch.tensor(float('nan')))
: tensor(0.)
np.sign(float('nan'))
: nan
```
cc @mruberry @rgommers | triaged,module: numpy | low | Minor |
654,743,731 | pytorch | torch.abs(complex) is divergent from NumPy on vectorized NaN values | ```
c = complex(float('nan'), float('inf'))
l = [c] * 300
t = torch.tensor(l)
torch.abs(t)
```
will produce a tensor with mostly `nan` values. NumPy, however, and non-vectorized `torch.abs`, will produce `inf` values.
cc @ezyang @anjali411 @dylanbespalko | triaged,module: complex,module: NaNs and Infs | low | Minor |
654,761,829 | flutter | AVIF codec support | <!-- 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 have found ... | c: new feature,engine,customer: crowd,a: images,c: proposal,P3,team-engine,triaged-engine | high | Critical |
654,775,788 | react-native | React native does not support screen refresh rate | Please provide all the information requested. Issues that do not follow this format are likely to stall.
## Description
When running a react native app on a device that has a refresh rate other than 60, react native apps still run at 60 fps.
This means that if you have a device like a Samsung Galaxy S20, which run... | Needs: Triage :mag: | high | Major |
654,785,544 | flutter | [flutter doctor] Cocoapods was not found even after sudo gem install cocoapods | ```
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel master, 1.20.0-8.0.pre.41, on Mac OS X 10.14.6 18G5033,
locale zh-Hans-CN)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[!] Xcode - develop for iOS and macOS (Xcode 11.3)
! Unknown Co... | platform-ios,tool,t: flutter doctor,a: first hour,P3,team-ios,triaged-ios | low | Major |
654,786,805 | go | x/build: some Gerrit CLs are getting into a state where they can't be updated | From `gopherbot` logs, there are a number of CLs where a reviewer fails to be added due to the error "Change nnn may not exceed 5000 updates. It may still be abandoned or submitted. To continue working on this change, recreate it with a new Change-Id, then abandon this one.":
```
2020/07/10 13:27:29 No reviewers or... | Builders,NeedsInvestigation | low | Critical |
654,799,729 | node | Undeprecate _stream_wrap | **Is your feature request related to a problem? Please describe.**
_stream_wrap was [recently deprecated](https://github.com/nodejs/node/pull/26245) because it "doesn't have a reasonable use outside of node".
I think I have two reasonable use cases, and I'd really like this to be undeprecated. As far as I can tel... | stream | medium | Major |
654,807,790 | godot | Option button giving false item count C# | 3.2.2
I have created an OptionButton and added 3 items in the editor.
I run the program and us a FOR loop to change the text of each item.
I will get the following 12 errors:
```
E 0:00:16.906 get_item_text: Index p_idx = 3 is out of bounds (items.size() = 3).
E 0:00:16.906 get_item_text: Index p_idx = 4 ... | topic:dotnet,topic:gui | low | Critical |
654,814,640 | opencv | Stitcher generates panorama smaller than input | OpenCV 4.3.0
I am currently trying the OpenCV Stitcher on very degraded images just to check for the limits of mosaicing.
For the algorithm not to hang, I have to set the bundleAdjuster to NoBundleAdjuster,
I also set WaveCorrection to false because it is not a linear travelling
Is it expected behaviour that ... | category: stitching,needs reproducer | low | Critical |
654,847,318 | go | x/build/cmd/gopherbot, x/build/maintner: "close stale WaitingForInfo" task failing on non-existing issue | From `gopherbot` logs:
```
2020/07/10 13:33:30 close stale WaitingForInfo: POST https://api.github.com/repos/golang/go/issues/39453/comments: 422 Validation Failed [{Resource:IssueComment Field:data Code:unprocessable Message:Could not resolve to a node with the global id of 'MDU6SXNzdWU2MzM4NzY4NTM='.}]
2020/07/1... | Builders,NeedsInvestigation | low | Critical |
654,862,967 | opencv | opencv build error, could NOT find python2. Is this something I should be worried about? | - OpenCV = latest version
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2019
--
Compiled opencv with cmake, is this error something to worry about, or can I ignore it?
Help Required
I downloaded opencv today from the master brand and I am using python 3.7.7. I have cmake 3.18.0 and I... | category: build/install,future | low | Critical |
654,869,860 | pytorch | Add nn.functional.swish alias for nn.functional.silu | SiLU activation function added here https://github.com/pytorch/pytorch/pull/41034 is also known as Swish (see https://github.com/pytorch/pytorch/pull/41034#issuecomment-654496698 for a discussion about it).
To help users find the function we should add an alias for SiLU by the name of Swish once the aliasing system ... | module: nn,triaged | low | Minor |
654,919,748 | rust | rustdoc generates broken "Read more" links when the destination crate doesn't have a URL | I tried this code:
`foo.rs`:
```rust
#![crate_type = "rlib"]
pub struct FooStruct;
pub trait FooTrait {
/// docs
///
/// more docs
fn foo_method();
}
impl FooTrait for FooStruct {
fn foo_method() {}
}
```
`bar.rs`:
```rust
extern crate foo;
pub use foo::FooStruct;
```
r... | T-rustdoc,C-bug,A-cross-crate-reexports,A-rustdoc-ui | low | Critical |
654,923,115 | flutter | [flutter_tools] IDE plugin validators should be deprecated | Supporting the filepaths to the android studio plugins is a moving target, that has proven difficult to keep up to date. In addition, the warning makes Flutter users think that the SDK will not function properly, when this is a completely informational warning; in other words, **Flutter does not directly use the IDE pl... | tool,c: proposal,P2,team-tool,triaged-tool | low | Major |
654,943,601 | excalidraw | It's not clear that the Library auto-expands or that a placeholder is empty | (1) If I open the library initially, nothing indicates that there isn't a component to re-use. Perhaps hide empty ones while nothing is selected? If it's completely empty, it's good to keep a single placeholder with a flashing + button, perhaps with a tooltip.
?
<pre>
$ go version
1..14.4
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
Operating system and architecture independent.
### What did you do?
Read the... | NeedsInvestigation | low | Minor |
655,049,260 | go | x/crypto/acme: Retry on LetsEncrypt rate limit | ### What version of Go are you using?
<pre>
go version go1.14 darwin/amd64
</pre>
### What did you do?
I called `acme.Client.AuthorizeOrder` when the renewal rate limit for the desired domain has been exceeded.
See: https://letsencrypt.org/docs/rate-limits/
### What did you expect to see?
I expected the c... | NeedsInvestigation | low | Critical |
655,058,213 | terminal | New icons for UI elements | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Issue-Feature,Area-UserInterface,Product-Terminal | medium | Critical |
655,067,062 | pytorch | [docs] Strange arg names of torch.bmm/mm and tensor.bmm/mm | https://pytorch.org/docs/master/generated/torch.bmm.html#torch.bmm:
`torch.bmm(input, mat2, deterministic=False, out=None) → Tensor`
`mat2` is quite strange
https://pytorch.org/docs/master/tensors.html?highlight=bmm#torch.Tensor.bmm:
`bmm(batch2) → Tensor`
`batch2` is strange as well (and does not even match... | module: docs,triaged,enhancement | low | Minor |
655,078,789 | pytorch | add a reparameterized version of inverse Gaussian distribution | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Like the gamma distribution, the inverse Gaussian distribution is also implicitly re-parameterizable.
## Motivation
This distribution can be used in variational inference such as Pyro. Moreover, inverse Gaussian is usually more nume... | module: distributions,triaged,enhancement | low | Minor |
655,093,646 | pytorch | List[Any] support in TorchScript | Forwarded from internal post
> Why is returning [1] for List[Any] not ok, while returning 1 for Any is fine?
```
To work around this, I had to use
untyped_output: List[Any] = []
for i in range(self.output_size):
untyped_output.append(output[i])
```
cc @ezyang @gchanan @zou3519 @s... | high priority,triage review,oncall: jit,weeks | low | Major |
655,094,937 | pytorch | Return list of tuples from custom operator | Forwarded from internal post
> Not having the ability to return List<Tuple<something, something>> from a custom operator means we have to return Tuple<List<something>, List<something>>, and convert on the torchscript side, which I think is expensive. Whereas, if we could just return the list of tuples, we could dire... | oncall: jit | low | Minor |
655,096,491 | pytorch | [RFC, Tracker] DataLoader improvements | This issue created to track all current problems of `DataLoader` (and related components such as `DataSet`, `Sampler`, `Transforms`). It is focused on **what** we want to archive. Implementation details will follow after prioritizing.
### Known problems
- Issues interpretability. DataLoader periodically ends in a... | module: dataloader,triaged | medium | Major |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.