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 |
|---|---|---|---|---|---|---|
672,400,318 | pytorch | pytorch tests failed | ## 🐛 Bug
compiled pytorch from source successfully, but some tests failed
## To Reproduce
After finish installing, run python testsrun_test.py, 5 tests failed
```
ERROR: test_cpp_frontend_module_has_same_output_as_python (__main__.TestCppExtensionJIT)
-----------------------------------------------------------... | module: tests,triaged | low | Critical |
672,444,024 | PowerToys | Power profile selection based in active hours | Power users are some of most likely to be running a high performance power profile to get the most out of their machine, because even on the latest processors, the ramp up time for clock speed makes an impact. However, that increased responsiveness is really only needed while they're _at the computer_ for most people.
... | Idea-New PowerToy | low | Major |
672,451,529 | pytorch | [proposal] batch mode for randperm | ## 🚀 Feature
I'd like to implement some features for torch.random.randperm. What I've thought of so far:
-batch parameter, allowing multiple permutations to be sampled at the same time.
-partial or k-permutations
These would be accessible using optional arguments whose default behavior match current behavior (i.... | triaged,enhancement,module: random | low | Major |
672,466,142 | node | Pausing readline pauses SIGINTs | So lets say you are making a cute little CLI app, and you write this code:
```js
const rl = readline.createInterface(...);
rl.on('SIGINT', () => {
console.log('bye!');
process.exit();
});
rl.on('line', (line) => {
rl.pause();
compute(line).then(() => {
rl.resume();
});
});
```
You will d... | readline | low | Minor |
672,480,082 | go | x/build/internal/releasetargets: evaluate for each upcoming major Go release | At the start of each code freeze, we should evaluate the choice of releaselets (builders that are used for constructing a release artifact) used to make the upcoming major Go release, and confirm they are the most appropriate choice out of what is available.
The start of a code freeze is a safe time to introduce a b... | Builders,NeedsInvestigation,release-blocker,recurring | high | Critical |
672,568,667 | godot | [WIP] Multiple Tree Control issues | *[WIP: This is mostly a very quick dump of multiple issues from my notes about multiple issues with the Tree control--particularly in relation to keyboard navigation.*
*This write-up has been sitting in a tab for a couple of weeks & I diagnosed the original issues back in May but my "TODO" list isn't getting any s... | bug,topic:gui | low | Critical |
672,597,385 | rust | `--message-format json` doesn't apply to rustdoc coverage output | I tried this:
```sh
RUSTDOCFLAGS='--show-coverage -Z unstable-options' cargo doc --message-format json --no-deps --all-features
```
I expected to get a json message containing the coverage information, but instead I still got a table.
Then I tried this:
```sh
RUSTDOCFLAGS='--show-coverage -Z unstable-opt... | T-rustdoc,C-bug,A-doc-coverage,A-CLI | low | Major |
672,598,051 | godot | NativeScript property "Library" can not be cleared in the editor | **Godot version:**
3.2.2
**OS/device including version:**
Windows 10
**Issue description:**
After setting the Library for a NativeScript resource, we can not clear it. Clicking the circle arrow beside the "Library" text does not help. Clicking "clear" or "New GDNativeLibrary" does not work, neither.
**Steps... | bug,topic:editor,topic:gdextension | low | Minor |
672,715,283 | terminal | Multiple sets of word delimiters for double-click selection | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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-Settings,Product-Terminal | low | Critical |
672,751,333 | pytorch | Python3 segfaults or doesn't load torch after installation | #42035
after installing torch using ``pip3 install torch''
>>> import torch
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'torch' ## before installation
>>> import torch
Segmentation fault (core dumped) ## after... | module: build,triaged | low | Critical |
672,783,000 | go | x/mobile: Calling net.InterfaceAddrs() fails on Android SDK 30 | <!--
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.6 darwin/amd64
$gomobile version
gomobile version ... | NeedsInvestigation,mobile | high | Critical |
672,834,229 | pytorch | renorm dim argument is extremely confusing | In `torch.renorm`, `dim` means
> dim (int) – the dimension to slice over to get the sub-tensors
That is, if one wants to renormalize each row tensor (i.e., tensor along dim **`1`**) of a matrix, they need to specify `dim=0`. This means inconsistency with `.norm` and many other ops. E.g, users will be confused when... | module: docs,triaged,better-engineering,module: ux | low | Minor |
672,839,476 | godot | RigidBody2D cannot rotate after CollisionShape2D is disabled | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.2.stable.official
**OS/device including version:**
Kubuntu 18.04
**Issue description:**
As described in this issue:
https://github.com... | bug,confirmed,topic:physics | low | Minor |
672,871,862 | pytorch | Docs for Tensor.copy_ non_blocking should mention pinned memory | ## 📚 Documentation
The description on non_blocking should mention pinned memory, since `non_blocking` only affects copies between pinned memory (on the CPU) and GPU.
The current description for the non_blocking argument says "if True and this copy is between CPU and GPU, the copy may occur asynchronously with re... | module: docs,triaged | low | Minor |
672,905,999 | next.js | Build occasionally fails complains about missing modules but also succeeds | # Bug report
## Describe the bug
I have a fairly simple app that pings a mongo database and generates dynamic pages. The homepage lists a handful of documents and they link to individual pages. The build often fails complaining about missing modules despite running perfectly fine on localhost. However, if I build... | good first issue,bug,Webpack | medium | Critical |
672,931,372 | TypeScript | JSDoc optional property in object |
**TypeScript Version:** 3.9.x & 4.1.x
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** jsdoc optional
There seems to be a regression since version 3.9.x where optional params in JSDocs are not converted correctly in declaration files. Several i... | Domain: JSDoc | low | Critical |
672,937,166 | pytorch | torch rpc lose device information between rpc calls | ## 🐛 Bug
I use rpc.remote() to instantiate a trainer class on the remote worker, and then call train() function from the rref. The `__init__` function sets the cuda device, and move the model to the right device. However, the current device information is lost during the remote call of train() function. This can ca... | triaged,module: rpc | low | Critical |
672,943,139 | pytorch | CuDNN RNN bindings are basically all deprecated in cudnn 8 | Many (all?!!) the rnn-related raw cudnn calls in
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/cudnn/Descriptors.h
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cudnn/RNN.cpp
are deprecated according to
https://docs.nvidia.com/deeplearning/cudnn/api/index.html#api-changes
Not... | module: cudnn,module: rnn,triaged,module: deprecation | low | Minor |
672,951,460 | rust | support for bootstrapping on linux with `target = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]` | Spawned off of https://zulip-archive.rust-lang.org/131828tcompiler/10990bootstraponlinuxwsupportforcrosscompilingtowind.html
After being reminded that one can install the stdlib for windows-msvc on a Linux host, that led me to ask whether one could build that artifact locally.
I tried to do so, but failed. You ca... | C-enhancement,T-compiler,T-bootstrap | low | Critical |
673,000,946 | PowerToys | [PowerRename] use file meta tags /meta data to rename files | ## 📝 Provide a description of the new feature
For example, you have folder with photos with filenames like numbers and/or dates (001.jpg, 002.jpg, etc.), you can rename the files to have the folder name ("Product X-001.jpg").
[ReNamer:Meta_Tags](https://www.den4b.com/wiki/ReNamer:Meta_Tags)
?
<pre>
c:\Go386\go\bin>go version
go version go1.14.6 windows/386
</pre>
### Does this... | OS-Windows,NeedsInvestigation | low | Critical |
673,057,227 | terminal | Allow commands with user-defined names to be hidden from cmdpal | Currently we can return an empty string from `GenerateName()` in order to hide a command from the cmdpal, but if a user decides to explicitly give their command a name, it'll show up because it doesn't hit `GenerateName()`. There's no smooth way to hide the command in this case. This is really just to appease the ATS's... | Area-UserInterface,Product-Terminal,Issue-Task | low | Minor |
673,132,415 | vscode | authentication.onDidChangeSessions should fire when access is revoked by a user | Testing #103871
Currently the `authentication.onDidChangeSessions` doesn't fire if the user revokes an extension's access to a login. I would except that it would fire in that case, or have another event that an extension can listen for. | feature-request,authentication | low | Major |
673,163,150 | flutter | tool should validate that discovered java version is 1.8 before running certain SDK tools | <!-- 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... | platform-android,tool,a: first hour,a: quality,P2,team-android,triaged-android | low | Critical |
673,177,406 | ant-design | Add back expandIconAsCell={false} in > 4.0 | - [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?
It used to be possible to set `expandIconAsCell={false}` and have the expand Icon show up in the same cell as other data. This w... | help wanted,Inactive | low | Major |
673,198,398 | create-react-app | Use memo: true flag with SVGR | ### Is your proposal related to a problem?
My situation is, I have components that pass an SVG icon to another component, because the SVG instance always changes, I have a lot of unnecessary re-renders (e.g. `<MyBigComponent icon={<MySvg />} />`.
### Describe the solution you'd like
SVGR has a memo option: https:/... | issue: proposal,needs triage | low | Minor |
673,227,835 | pytorch | Build script complains that gcc is < 6 even though gcc version is 8 | ## 🐛 Bug
Build script complains that gcc is < 6 even though gcc version is 8. see environment for evidence
## To Reproduce
Steps to reproduce the behavior:
1. Install miniconda3 afresh.
1. Follow instructions to clone and build pytorch: https://github.com/pytorch/pytorch/#from-source
1. python setup.py b... | needs reproduction,triaged | low | Critical |
673,249,856 | flutter | Bidi and semantics on Web | The following test passes on non-Web but fails on Web:
```dart
testWidgets('recognizers split semantic node - bidi', (WidgetTester tester) async {
final SemanticsTester semantics = SemanticsTester(tester);
const TextStyle textStyle = TextStyle(fontFamily: 'Ahem');
await tester.pumpWidget(
Ri... | a: internationalization,a: typography,platform-web,P2,c: parity,team-web,triaged-web | low | Minor |
673,253,258 | excalidraw | Remove uncommitted point when alt is lifted | This is for editing linear elements. When you press alt and move cursor a new point is added.
Right now this "uncommitted" point is removed after alt key is released and cursor is moved.
I think we should remove the point straight away after the key is released. This will make the interaction feel snappier. | enhancement | low | Minor |
673,293,792 | TypeScript | Pedantic: deny mutable type generalization | <!-- 🚨 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 |
673,306,051 | terminal | Show a more descriptive error message when the ConptyConnection fails to start for some reason | # Description of the new feature/enhancement
Show a speaking error message, when it is necessary to run Terminal with admin privileges. See https://github.com/microsoft/terminal/issues/4272 for the problem
# Proposed technical implementation details (optional)
<!--
A clear and concise description of what you... | Help Wanted,Area-TerminalConnection,Product-Terminal,Issue-Task,In-PR,good first issue | low | Critical |
673,374,105 | flutter | [feature-request] Per-segment width of Paint() | ## Use case
When drawing to a canvas, it's sometimes useful to have lines with a non-static width. Especially, when representing human handwriting or realistic paintings on a canvas, a per-segment width or a curve representing the development of the stroke width is absolutely mandatory.
In my current case, I woul... | c: new feature,framework,f: material design,c: proposal,team-design,triaged-design | low | Minor |
673,393,444 | flutter | [proposal] Provide a way to close a specific dialog | <!-- 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... | c: new feature,framework,f: material design,f: cupertino,f: routes,customer: crowd,c: proposal,P2,team-design,triaged-design | low | Critical |
673,423,283 | TypeScript | Bogus "duplicate identifier" when checking JS code | <!-- 🚨 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... | Bug,checkJs | low | Critical |
673,424,129 | pytorch | Lower performance when forwarding JIT model with libTorch 1.6 compared with 1.5 | ## 🐛 Bug
Testing the new version of libTorch 1.6 I have realized that when forwarding an exported JIT traced model is about 3 times slower than using libTorch 1.5. I am testing it in CPU using Windows and iOS devices.
## To Reproduce
Steps to reproduce the behavior:
1. Export a JIT traced model of a neural... | oncall: jit | low | Critical |
673,441,795 | go | x/tools/gopls: go to the definition of the only non-test interface implementation | <p>(Currently using v0.4.4 with Go 1.14.6.)</p>
<p>When exploring new codebases I often go to the definition of a method
just to find out that the method is actually a part of an interface.
I then use the “find implementations” action to find the implementation.
Often there is only one non-test implementation.</p... | gopls,Tools | low | Minor |
673,454,100 | flutter | Use dart_test.yaml in flutter test | <!-- 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: tests,tool,c: proposal,P3,team-tool,triaged-tool | medium | Critical |
673,464,473 | pytorch | support LSTM for quantization aware training | ## 🐛 Bug
LSTM network can not be evaluated after preparing for quantisation aware training. The same warning does not appear if evaluated before preparing.
## To Reproduce
Steps to reproduce the behavior:
```
import numpy as np
import torch
import os
# Might not be necessary
os.environ.setdefault("KMP_... | oncall: quantization,low priority,triaged | low | Critical |
673,483,347 | godot | Reparenting TileMap to Navigation2D in ancestor scene removes modifications in descendent scene. | **Godot version:**
3.1-stable, 3.2.2-stable
**OS/device including version:**
Windows 10 Home 1909.
**Issue description:**
When reparenting a TileMap node to a Navigation2D node in a Scene that is inherited by another scene, the inherited scene loses all modifications to its TileMap (tile_data: `PoolIntArra... | bug,topic:editor,confirmed | low | Critical |
673,514,786 | pytorch | Logsigmoid as chaining operation | ## 🚀 Feature
I would like to have a chained log sigmoid operation in `torch.Tensor` object.
## Motivation
I prefer to use chained versions of the operations like `x.sum()`, `x.mean()`, etc. instead of `torch.sum()` `torch.mean()`, etc.
This prevents me from the formulation of hardly readable long operations.... | triaged,function request | low | Major |
673,578,579 | neovim | API: responding to rpcrequest and sending command race and leave messages on the wire | - `nvim --version`: NVIM v0.4.2 (RelWithDebInfo) -- also able to reproduce in a local build of `f26df8bb66158baacb79c79822babaf137607cd6` (2 days old at time of writing)
- Operating system/version: CentOS
- Terminal name/version: gnome-terminal
- `$TERM`: xterm-256color
I was building a plugin which responds to s... | bug,channels-rpc | low | Minor |
673,603,464 | rust | Local path of sysroot dependencies gets used in debuginfo when rust-src is installed | ```rust
pub fn main() {
unsafe { core::arch::x86_64::_mm_pause(); }
}
```
I expected to see this happen: The `/rustc/...` path is used for the inlined `_mm_pause` function just like all parts of libcore that are not getting inlined in the current crate.
Instead, this happened:
The local path `/home/bjo... | A-debuginfo,E-needs-test,T-compiler,C-discussion,WG-debugging | low | Critical |
673,608,358 | opencv | Makefile:160: recipe for target 'all' failed | **System information**
- Ubuntu - 16.04
- NVCC - 7.5
- OpenCV - 4.2.0
I'm trying to install opencv with CUDA support. However when building the files with the make command, I experience the following error:
``` /usr/bin/cmake -H/home/ubuntu/opencv -B/home/ubuntu/opencv/build --check-build-system CMake... | category: build/install,category: gpu/cuda (contrib),incomplete | low | Critical |
673,610,410 | go | cmd/go: go test -json outputs too verbose | Without `-json`
```
golang.org/x/sync$ go test ./...
ok golang.org/x/sync/errgroup (cached)
ok golang.org/x/sync/semaphore (cached)
ok golang.org/x/sync/singleflight (cached)
ok golang.org/x/sync/syncmap (cached)
```
With `-json`
```
golang.org/x/sync$ go test -json .... | NeedsDecision | low | Major |
673,628,433 | ant-design | Extend Rule[] array with validation status field and make it work as validateStatus | - [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?
It would be great to set color of validation message and border of input in a declarative way. E.g. status='warning' in rules of ... | Inactive | low | Critical |
673,638,819 | create-react-app | EACCES: permission denied, open 'yarn.lock' | ### Describe the bug
```
▲ projects/play/create-react-app npx create-react-app app1
Creating a new React app in /home/vyorkin/projects/play/create-react-app/app1.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...
yarn add v1.22.... | stale,needs triage,issue: bug report | low | Critical |
673,687,884 | PowerToys | Allow to remap complex keyboard events (macros) | ## Keyboard Manager should allow mapping complex keyboard events in `Key` and `Mapped To` parameters
Currently, the keyboard manager allows for remapping of simple keyboard events, such as single key-down, to a different keyboard event, which may include multiple modifiers (`Ctrl`, `Shift`, `Alt`). It would be a ben... | Idea-New PowerToy,Product-Keyboard Shortcut Manager | high | Critical |
673,690,094 | youtube-dl | viki.com: download fails with 401 unauthorized for some shows |
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2020.07.28. If it's not, see https://yt-dl.org/updat... | geo-restricted,account-needed | low | Critical |
673,720,918 | youtube-dl | Support for byNWR | <!--
######################################################################
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 |
673,737,504 | go | cmd/go: misleading error message when a dependency's go.mod is a symbolic link | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15rc1 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summa... | NeedsDecision,modules | low | Critical |
673,786,450 | go | cmd/cgo: fix C linker problems when linking C++ static libraries | Currently, if I link a static library containing C++ files, Go can't tell the difference and uses the C linker for example gcc.exe (not g++.exe), which causes the standard C++ libraries to not be linked.
I can think of 2 ways to fix this.
Either add a "#cgo: c++" directive that tells Go that this is a C++ package, or... | NeedsInvestigation,compiler/runtime | low | Minor |
673,791,015 | flutter | Add scrollbar to `LicensePage` group overview page | <!-- 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,f: scrolling,c: proposal,P3,team-design,triaged-design | low | Critical |
673,803,516 | pytorch | F.grid_sample produces weird results on single-pixel images | ## 🐛 Bug
```
import torch
import torch.nn.functional as F
B = 1
src_image = torch.ones([B, 1, 1, 1])
grid = -5 * torch.ones([B, 3, 5, 2])
img = F.grid_sample(src_image, grid, align_corners=True, padding_mode="zeros")
print(img)
```
The above returns an image full of 1's. However, some would expect it to ... | module: nn,triaged | low | Critical |
673,817,267 | PowerToys | [KBM] Separate function for key press vs key hold (a la dual-key-remap) | I love the idea of managing key remaps via PowerToys, but there's no way (that I'm aware of) to remap a key to serve two purposed depending on whether it's pressed and released vs pressed in combination. https://github.com/ililim/dual-key-remap <- This tool is a great example. By default, it maps the CapsLock key to E... | Idea-Enhancement,Help Wanted,Product-Keyboard Shortcut Manager,Status-In progress | medium | Critical |
673,907,498 | vscode | Warn when 'add item' will override an existing value? | Issue Type: <b>Bug</b>
**Repro**
1. Using the `files.associations` setting
1. Add a key `abc` in the setting UI
1. Now click add item again and enter the key `abc` and a different value
**Bug**
This silently overwrites the previous value. Perhaps we should show a warning in this case
VS Code version: Code... | bug,settings-editor | low | Critical |
673,910,032 | flutter | Create a custom vulkan memory allocator for Fuchsia's embedder | This is a blocker to get Flutter runner building in g3.
Currently skia relies on https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator to create a Vulkan memory allocator if we don't explicitly pass one to the background context. See: `flutter_runner::VulkanSurfaceProducer`.
Assuming we still want to ... | customer: fuchsia,engine,platform-fuchsia,P3,team-engine,triaged-engine | medium | Major |
673,942,359 | puppeteer | Link role in accessibility tree lacks value attribute | I am a screen reader user and developer who values the accessibility tree JSON that can be obtained through the Puppeteer API. It seems like the "link" role has a name but not value populated. I think the value should contain the href of the link, but it seems to be empty. | bug,upstream,confirmed,P3,a11y | low | Major |
673,943,283 | godot | Godot mono not updating export variables | <!-- 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. -->
v3.2.3.beta1.mono.official
**OS/device including version:**
<!-- Specify GPU model, driver... | topic:editor,topic:dotnet | low | Major |
673,947,829 | deno | Deno.watchFs is not working in WSL environment | Deno.watchFs is not working in WSL(Ubuntu 18.04 LTS Bionic) environment.
Literally, there are no event messages after changing any files. | bug,cli,windows,upstream | low | Major |
673,970,841 | pytorch | Add non_blocking=True copy of torch.Storage | ## 🐛 Bug
torch.Storage.copy_ has `non_blocking` parameter but there is no implementation of async copy.
Therefore, this copy request will be fall-backed to synced copy.
## Motivation of async use
I want to overwrite the activation during backprop for some reason.
Since PyTorch checks the tensor version if perfo... | triaged,needs research | low | Critical |
673,980,149 | pytorch | RuntimeError: each element in list of batch should be of equal size | ## 🐛 Bug
```python
"python3.7/site-packages/torch/utils/data/_utils/collate.py", line 82, in default_collate
raise RuntimeError('each element in list of batch should be of equal size')
RuntimeError: each element in list of batch should be of equal size
```
<!-- A clear and concise description of what the bug... | module: dataloader,triaged | medium | Critical |
673,980,471 | react-native | iOS TextInput - text undo/redo doesn't work if value, defaultValue, or onChange is set | Please provide all the information requested. Issues that do not follow this format are likely to stall.
## Description
Setting `value`, or `defaultValue` with `onChange` will cause iOS undo/redo keyboard feature (mostly on iPads) to break or rarely work. Additionally, it may cause a native crash from time to time... | Platform: iOS,Component: TextInput | medium | Critical |
673,994,559 | pytorch | When one distributed test fails in CI, the next one can fail spuriously | ## 🐛 Bug
Sometimes when a distributed test fails in CI, the test that runs after it can fail as well. Checking the logs in https://circleci.com/api/v1.1/project/github/pytorch/pytorch/6539093/output/107/0?file=true&allocation-id=5f2b4d69eb4d74678233b209-0-build%2F4EAB7E92, there was a legit failed test `test_ddp_un... | oncall: distributed,module: ci,module: tests,triaged | low | Critical |
674,011,069 | rust | Typechecker doesn't honor Deref as a trait bound on references when using * operator | I tried this code:
```rust
// Ought to work fine but doesn't
fn borrow_and_deref<T>(p: T) -> i32 where for<'a> &'a T: Deref<Target=i32> {
*&p
}
```
I expected to see this happen: Successful typechecking
Instead, this happened:
<img width="723" alt="image" src="https://user-images.githubusercontent.c... | A-trait-system,T-lang,C-bug | low | Critical |
674,047,430 | flutter | Support custom buildtype in android app | I want create new buidtype for android app (the same build configuration in iOS)
I also want to manual config FLUTTER_BUILD_MODE in android.
In iOS I can create new build configuration and override FLUTTER_BUILD_MODE flag in xconfig file.
How to do it in android?
Thanks,
| c: new feature,platform-android,tool,a: build,P3,team-android,triaged-android | low | Major |
674,048,257 | flutter | [mobile] spacebar cannot delete text in RTL mode and cursor is misplaced | Hello, I am experiencing huge problem with space and obscure text erasing in flutter mobile please watch this video [https://drive.google.com/file/d/16ScA6s0oZYVRGwGjnzFWYn9OzsCl-yq4/view](https://drive.google.com/file/d/16ScA6s0oZYVRGwGjnzFWYn9OzsCl-yq4/view)
code:
```dart
import 'package:flutter/material.d... | a: text input,framework,f: material design,a: internationalization,a: quality,P3,team-text-input,triaged-text-input | medium | Critical |
674,065,952 | flutter | text rendering using subpixel / cleartype | ## Use case
Using Flutter on Windows desktop I noticed the text rendering differs from other (native) Windows applications (including Chrome browser). I am using ClearType on my 'low-density' LCD monitor, as surely a lot of my clients do as well, and for me this reads text a lot better.
For text on buttons etc. t... | engine,platform-windows,a: quality,a: typography,c: proposal,P2,team-engine,triaged-engine | low | Critical |
674,071,327 | flutter | [web] Autofill Safari Credit card fields issue | (Tested on Safari13.1 desktop)
Card name autofill however not all the fields fill properly.
This [answer](https://stackoverflow.com/questions/25163891/when-is-the-scan-credit-card-option-available-on-ios8-safari/36151606#36151606) gives clue about what we might need to change.
https://github.com/flutter/engine... | platform-web,good first issue,P3,team-web,triaged-web | low | Major |
674,085,450 | PowerToys | DDS support | ## 📝 Provide DDS Image support in Explorer.
Can we please have DDS Image support so that we can preview DDS files while working with them. I'm kinda forced to use PNG without proper support in Windows. Not that there's anything wrong with PNG for basic work, but it would just be good to have the option to easily wo... | Idea-Enhancement,Product-File Explorer | low | Minor |
674,086,180 | vscode | Allow blocked environment variables through if they're included explicitly in terminal launch configs | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
- VSCode Version: 1.47.1 (not insider as I can't get docker builds working on that for some reaso... | help wanted,feature-request,terminal-process | low | Major |
674,086,207 | storybook | Using SVG as React component inside Story causes error - v6.0.0-rc.26 | **Describe the bug**
In a `mdx` story file I have the following:
```
import { Button } from "../src/ui/atoms/button.tsx";
import { ReactComponent as Github } from "../src/ui/dinocons/brands/github-mark-small.svg";
```
Further down in the same file I then have:
```
<Preview>
<Story
name="Icon but... | question / support,configuration babel / webpack,has workaround,mdx | medium | Critical |
674,096,871 | pytorch | Why Conv3D is slower than Conv2D when its flops is smaller than Conv2D | I update my question for better understanding .
```
import torch
import torch.nn as nn
import numpy as np
import time
import torch.nn.functional as F
from torch.autograd import Variable
from thop import profile
from thop import clever_format
class convbn(nn.Module):
def __init__(self, inplanes, pla... | module: performance,module: cudnn,module: convolution,triaged | low | Major |
674,118,004 | flutter | Support subspecs in Flutter plugin podspecs | We use a couple of plugins that require modifications to the PodFile.
With Flutter 1.20 it's been changed (again, also what's with the weird version numbers?)
The following library has no way of integrating now. https://pub.dev/packages/flutter_ffmpeg
If anyone knows a quick fix or a temporary solution that woul... | platform-ios,tool,d: api docs,P3,found in release: 1.20,a: plugins,team-ios,triaged-ios | medium | Major |
674,142,633 | go | cmd/cgo: Relocation overflow occurring when calling crosscall2 on aix/ppc64 | While trying to compile metricbeat (with go1.15rc1 and 1.14.6), we discovered that a relocation overflow might occur when a CGO generated file tries to call crosscall2.
```
ld: 0711-780 SEVERE ERROR: Symbol .CallbackSubscr (entry 49130) in object /tmp/golang/000019.o:
Relocation overflow in reference to: .cr... | NeedsInvestigation,OS-AIX,compiler/runtime | low | Critical |
674,174,009 | godot | Cannot view node signals and groups information in remote tab during running of game | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.2 stable
**OS/device including version:**
linux mint
**Issue description:**
When you are running a game and go to the remote option in the ... | bug,topic:editor,usability | low | Critical |
674,177,761 | go | cmd/compile: combine phielim and copyelim into a single pass? | <!--
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.3 windows/amd64
</pre>
### Does this issue reprodu... | NeedsInvestigation,compiler/runtime | low | Minor |
674,183,618 | angular | Kind-of recursive imports lead to too much tree shaking with strict sideEffects: false | The issue is probably caused by package @angular/compiler.
### Is this a regression?
This bug is in effect with Ivy and the new strict sideEffects: false on the app level.
### Description
When `AppComponent` has `AComponent` as children (`<app-a><app-a>` in its template), and `AComponent` imports `AppComp... | type: bug/fix,workaround2: non-obvious,area: compiler,state: confirmed,P3 | low | Critical |
674,192,782 | opencv | [calib3d] Mismatch between documentation and sample code for `StereoSGBM` | ##### Detailed description
The documentation and sample for `StereoSGBM` don't match.
* [What documentation says](https://github.com/opencv/opencv/blob/master/modules/calib3d/include/opencv2/calib3d.hpp#L3287): `blockSize Matched block size. It must be an odd number \>=1 . Normally, it should be somewhere in the ... | category: documentation,category: calib3d | low | Critical |
674,195,242 | vue | Safari doesn't see frame inside vue app | ### Version
2.6.11
### Reproduction link
https://jsfiddle.net/posva/vczwh82g/2/
### Steps to reproduce
In Safari click different links to load iframes
### What is expected?
all iframes should load
### What is actually happening?
the one rendered inside vue doesn't load
<!-- generat... | bug,has PR,has workaround | low | Minor |
674,220,591 | PowerToys | Investigate `Numpad Enter` vs `Enter` for remaping keys in Keyboard Manager | <!--
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue.
-->
## ℹ Computer information
- Windows build number: 2004
- PowerToys version: v0.20.0
- PowerToy modu... | Idea-Enhancement,Help Wanted,Product-Keyboard Shortcut Manager | low | Major |
674,228,607 | pytorch | Optimizer support via Libtorch C++ on Android | ## 🐛 Bug
We are building libtorch using ./scripts/build_anroid.sh.
We need the support for Aten Ops and TorchScript, so building without the BUILD_CAFFE2_MOBILE option.
The build is successful, but the library does not link ${TORCH_SRC_DIR}/csrc/api/src/optim/adam.cpp and dependencies because of NO_API being ... | module: cpp,module: optimizer,triaged,oncall: mobile | low | Critical |
674,246,235 | godot | [Bullet] Performance issues when adding lot of convex shapes to a RigidBody | **Godot version:**
Godot_v3.2.3-rc3_win64
**OS/device including version:**
W10
**Issue description:**
I try to do a 3D voxel blocky game. Each grid of voxel is a rigidbody, each rigidbody is capable to move and collide with others. As a result I can't use concave shapes or height maps and I'm forced to create ... | topic:physics,topic:3d,performance | low | Major |
674,265,507 | PowerToys | [FancyZones] Option to preserve the window aspect ratio | With Firefox you can make frameless pop-ups from videos to move freely around your screen. These are fixed in aspect according the video.
When trying to put it into a zone it scales based on available horizontal space meaning if your zone has a wider ratio than the video it will reach outside of the zone.
So It w... | Idea-Enhancement,FancyZones-Dragging&UI,Product-FancyZones | low | Major |
674,317,097 | PowerToys | [Run][File Plugin] search for folders only | ## 📝 Provide a description of the new feature
I often enough want to navigate to a deeply buried folder quickly, but typing in it in PT Run just brings up a lot of files.
What I want is an option, preferably typing the slash `/` to let PT Run know I only want to see folders as result.
---
If you'd like to se... | Idea-Enhancement,Help Wanted,Product-PowerToys Run,Run-Plugin | low | Major |
674,372,868 | rust | Confusing notes with per-method where-bounds when bounds are not satisfied | The following code:
```rust
trait Fruit {
type Error;
}
struct Peach;
impl Fruit for Peach {
type Error = ();
}
struct Banana<F>(F);
impl<F> Banana<F> {
fn peel(&self) -> Result<(), F::Error> where F: Fruit {
unimplemented!()
}
}
fn pineapple() -> Result<(), ()> {
let... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,D-confusing | low | Critical |
674,406,363 | TypeScript | Clean up syntax for importing and using nested type declarations | <!-- 🚨 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 |
674,422,868 | pytorch | [discussion] Support __round__ magic | Then `round(torch_tensor)` would work. Currently wrappers like in https://github.com/pytorch/fairseq/blob/38f35cccea01482d143c488c75fceb352875d654/fairseq/logging/meters.py#L53 have to be done.
However, this is not supported in NumPy
cc @mruberry @rgommers | triaged,enhancement,module: numpy | low | Minor |
674,427,551 | pytorch | Unexpected behavior of "to" method inside a torch.jit.script decorated function | ## 🐛 Bug
Hi, I was doing some work with `@torch.jit.script` decorator and came upon this strange bug which changed the value (by changing the data type of the tensor) of the resulting values I obtained with the decorated function.
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
... | oncall: jit,days,TSRootCause:DefaultTypes,TSUsability | low | Critical |
674,436,974 | go | runtime: gcc_libinit.c _cgo_try_pthread_create 'EAGAIN' undeclared | ### Problem
Hi, I'm getting the below error when compiling a CGO project.
```
# runtime/cgo
gcc_libinit.c: In function '_cgo_try_pthread_create':
gcc_libinit.c:106:14: error: 'EAGAIN' undeclared (first use in this function)
if (err != EAGAIN) {
^~~~~~
gcc_libinit.c:106:14: note: each undecl... | NeedsInvestigation,compiler/runtime | low | Critical |
674,493,488 | flutter | Allow atomic Flutter releases | Today, Flutter releases are triggered by a push to the release branch. From there, LUCI git pollers will pick up the new commits, and trigger packaging builds (one per host platform per architecture). At the end of each build, they are zipped, uploaded to cloud storage, and a manifest JSON file for the website is updat... | c: new feature,team,P2,team-release,triaged-release | low | Major |
674,494,848 | next.js | JSConfig with Webpack 5 Resolution Does Not Work | # Bug report
@timneutkens @Timer I'm using Yarn 2 and I have a Next.js application within a monorepo alongside some other Webpack 5 applications. I have set the `resolutions` at the root package.json level to resolve to Webpack 5. What I've found is that by doing that, it actually breaks my `jsconfig.json` and absol... | bug,Webpack | low | Critical |
674,518,445 | pytorch | How can I specify NumPy while building PyTorch? |
I tried the following command
```
TORCH_CUDA_ARCH_LIST="6.1" NO_TEST=1 USE_MKLDNN=0 FULL_CAFFE2=1 USE_NUMPY=1 python setup.py build
```
And PyTorch is **100% built successfully**. But in the end, it shows:
```
NumPy not found
```
I `pip install numpy --user` under ` ~/.local` . How can I specify **num... | module: build,triaged | low | Minor |
674,531,084 | flutter | Track the number of commits dropped per engine roll | quote from @yjbanov
> The reason this number is important is because when we drop a lot of commits, there's a much higher chance that it will have to be rolled back, and the extra size of the drop makes the rollback process disproportionately more difficult (e.g. it requires a longer bisection). Large number of com... | team-infra,P3,triaged-infra | low | Minor |
674,539,536 | godot | Pan mode stays on after opening any editor UI | Godot 3.1
Issue:
Everytime when the pan mode is used and ui opens up, the pan mode stays on until you press a button on your mouse again.
Steps to reproduce:
Example 1:
turn pan mode on by either holding your middle or your right mouse button.
keep the mouse button pressed and now do CTRL + Q.
Now, if you ... | bug,topic:editor | low | Minor |
674,561,126 | flutter | migrate SystemChannels.navigation to standard codec | The SystemChannels.navigation is currently using the json codec and is inefficient. we would like to migrate it over to the standard codec. | c: new feature,framework,engine,P3,team-engine,triaged-engine | low | Minor |
674,568,058 | node | `error` event not emitted when destroying an HTTP request without a socket | * **Version**: v14.5.0
* **Platform**: Linux solus 5.6.19-158.current \#1 SMP PREEMPT Sun Jul 26 14:17:01 UTC 2020 x86_64 GNU/Linux
* **Subsystem**: http
### What steps will reproduce the bug?
```js
const http = require('http');
const net = require('net');
const request = http.get('http://example.com', {
... | http | low | Critical |
674,628,916 | pytorch | torch.distributed.rpc package not work well with generator and lambda | I'm using torch.distributed.rpc package to work on a distributed training POC, currently I'm seeing rpc package itself is using pickle and pickle not work well with some python features like generator and lambda, so that put extra limitation, what even worse is if I try to reference some other python package that used ... | triaged,module: rpc | low | Minor |
674,659,250 | youtube-dl | open.fm support | <!--
######################################################################
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 |
674,664,175 | youtube-dl | Add a custom protocol handler | ## Checklist
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2020.07.28**
- [x] I've searched the bugtracker for similar feature requests including closed ones
## Description
Windows, Linux, and Mac support the creation of custom protocol handlers to launch app... | request | low | Critical |
674,664,502 | youtube-dl | pilot.wp.pl support | <!--
######################################################################
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.