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
342,255,450
opencv
Lower FPS with the newest OpenCV version(3.4) than 3.3/3.2
<!-- 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). This is a template helping you to create an issue which can be...
category: videoio(camera),incomplete
low
Critical
342,293,640
vscode
Enhancement: finer control of word separators
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Currently, the setting term `"editor.wordSeparators"` only tells the editor to separate words *at* these characters. Can we make it *before* or *after* the separators? Now I take LaTeX as an example. ...
feature-request,languages-basic,editor-core
low
Major
342,295,520
pytorch
[caffe2]train on GPU and test on cpu failed
I am learning caffe2. I want to train on a Machine with GPU, and I want to test the trained model on an ARM cpu without GPU. I tried the cifar10 tuorial on [https://github.com/caffe2/tutorials/blob/master/CIFAR10_Part1.ipynb](url) to speed up the training , I use GPU mode while training ``` with core.DeviceScope(...
caffe2
low
Critical
342,345,091
opencv
setting parameters of openCV tracking API in python
I'm trying to use openCV tracking API in Python for object tracking. I tried the code in this [link](https://www.learnopencv.com/object-tracking-using-opencv-cpp-python/) and don't have any problem running the code. But, looking at the openCV documentation [here](http://docs.opencv.org/trunk/d9/df8/group__tracking.html...
feature,category: python bindings,category: contrib
low
Minor
342,346,909
rust
suggestion in unresolved trait method calls misses crate `as` rename
Okay get ready, this is quite a combination of pieces to fit together to reproduce this. If crate A defines a trait (with a method), and crate B rexports A under a new name (via `pub extern crate A as NewName`), and crate C pulls in crate B and makes a call to the trait's method without importing the trait or withou...
C-enhancement,A-diagnostics,T-compiler,D-confusing
low
Critical
342,357,037
go
testing: parallel test output reported in non-deterministic order
I have a test with parallel subtests. A few are failing. Every time I run the test, the failures come out in a different order, presumably depending on which ones finish first. This makes it hard to see at a glance what is different each time I make a tweak and re-run the tests. Given that we're saving up the output t...
NeedsInvestigation
low
Critical
342,381,333
vscode
Allow disabling of breadcrumbs on a per language basis
I want to do this: ```json "[markdown]": { "breadcrumbs.enabled": false } ```
feature-request,polish,breadcrumbs
low
Minor
342,387,955
rust
1.27.1 many tests fail on s390x
See https://buildd.debian.org/status/fetch.php?pkg=rustc&arch=s390x&ver=1.27.1%2Bdfsg1-1%7Eexp1&stamp=1531882985&raw=0 at the bottom. You can ignore the stdsimd/coresimd failures they were fixed as part of https://github.com/rust-lang-nursery/stdsimd/pull/466 but I have no clue what the other failures are.
C-bug,O-SystemZ
low
Critical
342,392,166
TypeScript
Formatter should convert object literal to multiple lines / one line
**TypeScript Version:** 3.1.0-dev.20180717 **Code** ```ts const o = { a: 0, b: 1, c: 2 }; ``` **Expected behavior:** A refactor exists to convert to: ```ts const o = { a: 0, b: 1, c: 2, }; ``` and back. **Actual behavior:** No such refactor. I have to do a lot of manual editing ...
Suggestion,Help Wanted,Domain: Formatter
low
Minor
342,393,861
rust
1.27.1 powerpc64/powerpc64le ui/target-feature-{gate,wrong} failing
- Debian log https://buildd.debian.org/status/fetch.php?pkg=rustc&arch=ppc64el&ver=1.27.1%2Bdfsg1-1%7Eexp1&stamp=1531883902&raw=0 - Fedora log https://kojipkgs.fedoraproject.org//packages/rust/1.27.1/3.fc29/data/logs/ppc64le/build.log Since the files already have `// ignore-arm` for now I will go ahead and add `// ...
O-PowerPC,C-bug
low
Minor
342,429,850
flutter
Flutter crashes in debug builds (but not release) on the Hisense C11 Chromebook
I purchased a cheap Hisense Chromebook to test out how Unreal Engine performs on it (and the results are quite surprising!) Anyways, running a release mode app on the Chromebook runs fine, very smooth, great performance, etc. Running a debug mode app is... actually quite entertaining. Seems to be a VM bug. <de...
c: crash,platform-android,framework,engine,dependency: dart,platform-chromebook,P2,team-android,triaged-android
low
Critical
342,452,023
go
x/mobile: support vendored asset package on Android
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version devel +2acae87416 Mon Jul 9 23:04:30 2018 +0000 windows/amd64 go/mobile version is also latest from master ### Does this issue reproduce with the latest release? This is on la...
OS-Android,mobile
medium
Critical
342,454,377
flutter
NetworkImageWithRetry should support HTTP headers for parity with NetworkImage
Just like the "usual" `NetworkImage` does. In my case I need to add an `Authorization` header and I think this is not unlikely.
c: new feature,framework,package,team-ecosystem,P2,triaged-ecosystem
low
Major
342,460,207
vue
Error thrown when using transition-group with conditionally rendered children
### Version 2.5.16 ### Reproduction link [https://codepen.io/riophae/pen/EpgWdZ](https://codepen.io/riophae/pen/EpgWdZ) ### Steps to reproduce 1. Open the pen and it shows 1, 3, 5 2. Click the button ### What is expected? It should show 3, 5 ### What is actually happening? Got this error in console: ...
transition
medium
Critical
342,476,162
pytorch
[feature request] Rename `Subset` -> `Resample` to reflect wider use
Very minor but I believe `torch.utils.data.dataset.Subset` might better be named `Resample` (or something similar), since it's possible to use for oversampling via duplicated indices. This is a common use case for e.g. imbalanced data, and I had actually made my own before realizing that `Subset` was exactly the same ...
todo,module: dataloader,triaged
low
Critical
342,476,830
pytorch
Incorrect term in _LRScheduler.
So, _LRScheduler use 'epoch' (last_epoch etc.) as a term which describe step of learning rate. But epoch is an artifical term, more commonly we operate in terms of steps. And I think that rename of 'last_epoch' to 'last_step' will be more correct. cc @vincentqb
todo,module: optimizer,triaged
low
Major
342,477,549
go
x/image/tiff: implement a generic tiff parser
Hi, I am currently working on a project handling tiff based content (proprietary raw from Canon and Nikon, as well as Exif). There is a library handling my needs regarding [Exif](https://github.com/rwcarlsen/goexif) but this one re-implements the [tiff parser](https://github.com/rwcarlsen/goexif/blob/go1/tiff/tif...
NeedsInvestigation,FeatureRequest
low
Minor
342,489,303
pytorch
batch_sampler/test_worker_seed intermittently fails with address already in use on OS X
Sample log: ``` 19:26:36 test_add_dataset (__main__.TestConcatDataset) ... ok 19:26:36 test_concat_raises_index_error (__main__.TestConcatDataset) ... ok 19:26:36 test_concat_two_non_singletons (__main__.TestConcatDataset) ... ok 19:26:36 test_concat_two_non_singletons_with_empty (__main__.TestConcatDataset) ......
todo,module: serialization,triaged,module: flaky-tests
low
Critical
342,494,956
vscode
Rectangle commands for large file editing
### Problem It is difficult to modify large files (more than 10k lines) efficiently, as we are limited in cursors, as showed in the following gif. ![Cursor](https://i.imgur.com/fc78CRp.gif) While i do understand the possible problem to have more than 10k active cursors at the same time, i still think it would be...
feature-request,editor-multicursor
low
Minor
342,507,841
flutter
Update flutter_test documentation to highlight gotchas of inherent fake async usage
Not sure if this is expected but I just noticed that calling any async method from `dart:io`, for instance `File.exists()` does not work when executed in tests. However `File.existsSync()` still works. To reproduce simply `flutter create` a new project and modify existing test to include something like this: ```d...
team,tool,d: api docs,P3,team-tool,triaged-tool
low
Major
342,512,437
pytorch
[feature request] More options for Fractional Max Pooling
Two things from the Fractional Max Pooling paper (https://arxiv.org/pdf/1412.6071.pdf) are not currently implemented: - what is called random increments in the paper (in contrast with what is called pseudorandom increments, which seems to be the only possible kind of increments in the current implementation); - what...
triaged,module: pooling
low
Minor
342,523,838
TypeScript
Bring back typedef property expansion
_From @zavr-1 on July 18, 2018 20:25_ In the newer version, I can only see the type of an argument which is an object, compared to how it was expanded in the previous versions. ![test3](https://user-images.githubusercontent.com/21156791/42904849-3f94249c-8ace-11e8-91bb-8a09063e9d30.png) It was actually very usef...
Suggestion,In Discussion
high
Critical
342,531,751
go
cmd/go: get downgrade of excluded last version fails
Bryan points out that this fails because the go.mod is inconsistent: go get rsc.io/sampler@<v1.99 -- go.mod -- module x require rsc.io/sampler@v1.99.99 exclude rsc.io/sampler@v1.99.99 It's unclear how to make it succeed, and it's fine for most other commands like go build etc to fail, but running that go get i...
NeedsDecision,modules
low
Minor
342,569,682
rust
rustdoc discussion: collapsing sections by default
IIUC, Rustdoc collapses all trait impls and the type declaration (cc https://github.com/rust-lang/rust/pull/49412) by default. But leaves other sections expanded. This seems good in many cases, but in others. We might want to adjust exactly how things are collapsed. Some thoughts: * When collapsing the type de...
T-rustdoc,C-discussion,A-rustdoc-ui
low
Minor
342,573,967
rust
SystemTime conversions invite programmer error
Yesterday, I found and reported a [panic bug in `serde_json`](https://github.com/serde-rs/json/issues/464) which traces its origins to the mechanism for extracting usable information from `SystemTime`. Specifically, using the best method they believed to be available, it would panic when I tried to serialize metadat...
C-enhancement,T-libs-api,A-docs
low
Critical
342,599,613
godot
GodotSharp(?): detect if Solution is a C# or C++ project first before attempting to build it
**Godot version:** 3.0.5 stable mono win64 **Issue description:** GodotSharp will blindly try to build an .sln, obviously failing when it's a C++ solution. Had to drag the .sln out of the folder in order to run the project. Not an urgent issue at all, as I can just download the non-mono release of Godot and use t...
enhancement,topic:dotnet
low
Major
342,605,294
vscode
[folding] Add keyboard shortcut to jump between #region and #endregion
How difficult would it be to add a keyboard shortcut to jump between `#region` and `#endregion`, the same way you can jump between opening and closing brackets `[]`, braces `{}`, and parentheses `()`? I would prefer the same keyboard shortcut, so just adding this to `editor.action.jumpToBracket` would be perfect. Howev...
feature-request,editor-folding
low
Major
342,632,809
vscode
[scss] Add "Go to or peek defintion" for imported mixins and variables for SCSS files
Has this been discussed before? I couldn't find an issue, but I can't imagine other people not needing this.
feature-request,css-less-scss
low
Minor
342,665,400
go
testing: examples with trailing whitespace in multiple lines of output can be confusing
Below example fails. Even if I copy the output of `go test` to the output section, it still fails. ``` func ExampleTrailingSpace() { fmt.Println("abc ") fmt.Println("cde") // Output: //abc //cde } ``` However, if I remove the second print, it succeeds. ``` func ExampleTrailingSpace() { fmt.Println(...
NeedsInvestigation
low
Major
342,683,952
opencv
isContinuous() fails for large images in OpenCV
<!-- 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). This is a template helping you to create an issue which can be...
category: core,RFC
low
Critical
342,749,282
go
cmd/link: short tests are not short enough
Running all.bash (which does go test -short std cmd), my target is usually that individual tests should run in under 1 second. The cmd/link test takes 3.4s on my system. Can we make it take less time? cmd/link is implicitly tested by pretty much every other test in the system, so it's hard to believe it needs to do ...
Testing,NeedsInvestigation,compiler/runtime
low
Major
342,752,500
go
build: all.bash takes too long
My target for all.bash is to keep it around 3-4 minutes. Usually when it gets to 5 minutes I spend some time trimming it back down. Maybe 3-4 minutes is no longer attainable, but right now we're at 7 minutes, which is much longer than I'd hope. I filed a few bugs to try to help: #26469, #26472, #26470, #26471. Speedi...
Testing,help wanted,NeedsFix
medium
Critical
342,755,606
go
cmd/go: module update should drop unused indirect dependencies?
### What version of Go are you using (`go version`)? Latest go devel: `go version devel +d278f09333 Thu Jul 19 05:40:37 2018 +0000 darwin/amd64` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="...
NeedsInvestigation,modules
low
Critical
342,779,719
rust
Set up CI for local rebuilds using the actual rustc-src tarball
By that I mean the whole end-to-end process of `./x.py {build,test,install}` and then using this installed version to build itself again. Would help to prevent things like #52541, this has happened quite a few times now.
T-infra,C-feature-request
low
Minor
342,783,512
flutter
[image_picker plugin] FEATURE REQUEST: get most recent image/video
I'm working on an app that accesses the user's image/video gallery. I want the button that opens the image picker to be a thumbnail of the most recent image/video in the user's gallery. It would be great if I could get this from the image_picker package directly!
c: new feature,p: image_picker,package,c: proposal,team-ecosystem,P3,has partial patch,triaged-ecosystem
low
Minor
342,803,524
go
x/net/http2: support http2 proxy connections
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ``` go version go1.10.3 linux/amd64 ``` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ...
FeatureRequest
medium
Critical
342,808,803
rust
Sub-optimal performance of Iterator::max_by_key in some cases
@pftbest noted that this test case: ```rust #[bench] fn bench_max_by_key(b: &mut Bencher) { struct Data { k: i32, z: i8 } let v: Vec<Data> = (0..10000).map(|i| Data { k: i, z: 48 }).collect(); b.iter(|| v.iter().max_by_key(|x| x.k)); } ``` is about 2–3 times slower than ...
I-slow,T-compiler
low
Critical
342,847,100
pytorch
[JIT] Unify python -> SugaredValue construction + fix inlining of graphs with Tuple-typed inputs
1. Remove stuff like this https://github.com/pytorch/pytorch/blob/master/torch/csrc/jit/script/init.cpp#L87 and move it into a unified python -> SugaredValue constructor (e.g. `create()`). This will require having flags that indicate that a value is e.g. constant or a submodule. 2. Fix disabled tests for annotated s...
oncall: jit
low
Minor
342,893,666
pytorch
WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode. CRITICAL:root:Cannot load caffe2.python. Error: libcaffe2.so: cannot open shared object file: No such file or directory
So I tried to install caffe2 from source because I want to build densepose. I installed cuda and cudnn as well. Getting above error when I do `from caffe2.python import core` my cmake output: **-- ******** Summary ******** -- General: -- CMake version : 3.11.4 -- CMake command : /usr/loca...
caffe2
low
Critical
342,901,863
flutter
No word-breaks for CJK locales
Internal: b/112618495 Flutter cannot properly detect word breaks in Chinese and Japanese text because the ICU configuration that we ship with Flutter doesn't include the dictionary to provide that functionality. Chinese example: Type δ½ ε₯½ε— into a text field. Long-pressing on either of the first two characters should...
a: text input,engine,a: internationalization,a: china,has reproducible steps,P3,team-engine,triaged-engine,found in release: 3.19,found in release: 3.22
low
Major
342,910,917
vue-element-admin
adding Font-awesome
Hello, Can i add font-awesome in our best powerfull template of vue-element-admin ? Thank's for help, Merci d'avance,
in plan
low
Minor
342,928,270
go
cmd/go: build: add -static flag
This is a proposal to add `-static` flag to `go build`. Producing a static build with go already requires a non-trivial amount of flags passed to `go build`, which on Linux currently amounts to something like: `-ldflags '-extldflags "-fno-PIC -static"' -buildmode pie -tags 'osusergo netgo static_build'` [1] .....
help wanted,Proposal,Proposal-Accepted,GoCommand
high
Critical
342,931,629
TypeScript
fourslash test breaks when setting "@lib"
**TypeScript Version:** master **Code** ```ts /// <reference path="fourslash.ts" /> // @lib: es2015 ////function f(x: number[]) { return x.length; } verify.noErrors(); ``` **Expected behavior:** No error. **Actual behavior:** `Error: At line 1, col 0: Found an error: /tests/cases/fourslash...
Infrastructure
low
Critical
342,980,450
rust
derive Debug incorrect assumption
Hello, I'm guessing there "might" be something wrong how the `Debug` trait is derived in case a type is owned but not actually needed for formatting the object. The following code fails because `B` is not necessarily `Debug` which is correct, however since `Foo` doesn't actually have an instance of `B` as a field, t...
C-enhancement,A-diagnostics,T-compiler
low
Critical
343,028,673
go
cmd/compile: constant string -> []byte and []byte -> string conversions aren't constant folded
### What did you see? Conversions like ``` string([]byte{...}) []byte("...") ``` are not constant folded. ### What did you expect? Conversions of const literals should probably be constant folded because it significantly slows down things like ``` for .... { p.Write([]byte(":=") } ``` Th...
Performance,NeedsInvestigation,compiler/runtime
low
Major
343,056,106
rust
Rustdoc: unify impl blocks where possible.
From #32631: > We'll have to be sure to update rustdoc, however, to provide one unified view to the API surface area rather than multiple impl blocks. I have run into a similar problem when using codegen (specifically, in [web-sys]), where currently each function/value is inside its own impl block, e.g. ```rust ...
T-rustdoc
low
Major
343,061,184
vue-element-admin
RTL Support
Please add rtl support to project. Tanks a lot
PR Welcome
low
Minor
343,106,912
angular
browser back froward does not trigger router change detection on upgraded app
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,freq1: low,area: router,area: upgrade,state: confirmed,P3
low
Critical
343,111,809
pytorch
Request: Pycuda interoperability
For doing computations on tensors with `pycuda`, I can do this for going from `Tensor` to `pycuda.gpuarray.GPUArray`: ``` def tensor_to_gpuarray(tensor): if not tensor.is_cuda: raise ValueError('Cannot convert CPU tensor to GPUArray (call `cuda()` on it)') else: return GPUArray(tensor....
feature,triaged
low
Critical
343,150,575
go
x/tools/go/analysis/cmd/vet: add -cgoinclude check for #include of code in subdirectories
The go build model is that all code for a package is in one directory. The cache relies on this. Vendoring tools rely on this. Probably many other things rely on this. One of the few ways a package can violate this rule is by using #include in cgo source code to access code in nearby directories. This appears to work,...
help wanted,NeedsFix,Analysis
low
Major
343,159,204
flutter
Feature Request: Support for endDrawer on Scaffold when AppBar actions exist
If the `actions` property exists on an `AppBar` object, then the `endDrawer` property on the parent `Scaffold` object is ignored. It would be nice to have support for both together, so that `endDrawer` menus could peacefully co-exist with `Scaffold` `action` properties.
c: new feature,framework,f: material design,c: proposal,P2,team-design,triaged-design
low
Major
343,229,178
flutter
Make flutter_driver and flutter_test APIs more similar
We have lots of minor unnecessary differences right now. We should implement as much of each API on the other, to make it easier to migrate tests back and forth.
a: tests,c: new feature,tool,c: API break,t: flutter driver,P3,team-tool,triaged-tool
low
Minor
343,271,711
kubernetes
GCE: ILB->ClusterIP orphans a few GCP resources
/kind bug **How to reproduce it (as minimally and precisely as possible)**: 1. Create a service of type ILB. 2. Edit the service a. Change the type to ClusterIP b. Remove the port's nodeport Observe the service controller calls the delete code for the external load balancer instead of the internal lo...
kind/bug,area/provider/gcp,lifecycle/frozen,sig/cloud-provider,needs-triage
low
Critical
343,289,524
go
x/tools/cmd/stringer: handle untyped constants with typed initial values
### What version of Go are you using (`go version`)? 1.10.2, 1.11beta2 (but "stringer" is the same version either way) ### Does this issue reproduce with the latest release? probably ("stringer" is not really included) ### What operating system and processor architecture are you using (`go env`)? linux/a...
NeedsInvestigation,FeatureRequest,Tools
low
Major
343,294,880
pytorch
The state of sparse Tensors
This note tries to summarize the current state of sparse tensor in pytorch. It describes important invariance and properties of sparse tensor, and various things need to be fixed (e.g. empty sparse tensor). It also shows some details of sparse operators. ## Semantics ### Construct a sparse tensor ``` # create...
module: sparse,triaged
medium
Critical
343,299,974
youtube-dl
[Site support request] kocowa.com
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.07.10*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified**...
site-support-request,geo-restricted
low
Critical
343,305,062
pytorch
[caffe2]running problem, No module named caffe2_pybind11_state_hip
I follow the Detectron installation, and i succeed install caffe2 ![1532156622 1](https://user-images.githubusercontent.com/35193543/43033153-b049446c-8cf7-11e8-816d-f67d6fca3ab0.jpg) but i don't test the GPU support, so sad for this. and i install cocoapi and detectron when i finish this, and want to test detect...
caffe2
low
Critical
343,312,053
go
x/text: p.Sprint outputs key + fallback
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.11b2 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? linux/amd64 ### What did you do? ```...
NeedsInvestigation
low
Major
343,316,524
go
dl: golang.org/dl installer shouldn't create a new subdirectory of $HOME
@andybons sent an email to golang-dev yesterday, subject 'Go 1.11 Beta 2 is Released'. The instructions included If you have Go installed already, the easiest way to try go1.11beta2 is by installing it using the go command: $ go get https://golang.org/dl/go1.11beta2 $ go1.11beta2 download Thes...
Builders,NeedsInvestigation
medium
Critical
343,317,498
opencv
Opencv 3.4.2 broke waitkey
<!-- 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). This is a template helping you to create an issue which can be...
bug,category: highgui-gui
low
Critical
343,319,519
godot
Comment node in visual scripting does not properly update size
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** Godot 3.1 dev **OS/device including version:** Win 10 64 bit, AMD GPU **Issue description:** When changing size of the comment node in visual s...
bug,confirmed,topic:visualscript
low
Minor
343,323,343
pytorch
Remove BatchNorm layers once the training is completed.
In PyTorch, is there any way to remove the batchnorm layers by merging their parameters into their preceding convolutional layers? ps: If you are familiar with the model deployment function in MatConvNet, you should know what I mean :) cc @albanD @mruberry @jbschlosser
feature,module: nn,triaged,module: norms and normalization
low
Major
343,345,941
pytorch
[feature request] Support for 0-length sequences in packed_sequences
Hello, Currently, calling `pack_padded_sequence` with some length of size zero raises the error: ``` ValueError: Length of all samples has to be greater than 0, but found an element in 'lengths' that is <= 0 ``` I believe it would be useful to support sequences of length zero for the following case. Working wi...
module: nn,module: rnn,triaged
low
Critical
343,379,472
go
go/format: add benchmarks
I maintain a (fork of a) [tool called `go-bindata`](https://github.com/kevinburke/go-bindata) that compiles static files into a binary. Often the compiled file is quite large - tens of megabytes are not uncommon. I call `format.Source` on this generated file to avoid gofmt thrash. However, I noticed recently that calli...
Performance,NeedsInvestigation
low
Major
343,412,400
godot
InputEventMouseMotion is generated after each mouse button release
Godot 3.0.5 Windows 10 64 bits Repro: 1) Create a new scene and add a single Node in it 2) Put this script on it: ```gdscript extends Node func _input(event): if event is InputEventMouseMotion: print(event, " motion ", event.relative) if event is InputEventMouseButton: print(event, " button ", ...
bug,platform:windows,confirmed,topic:input
low
Major
343,424,643
go
cmd/compile: optimise away deferred calls to empty functions
### What version of Go are you using (`go version`)? ### Does this issue reproduce with the latest release? go version devel +48c7973 Fri Jul 20 20:08:15 2018 +0000 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOCACHE="/home/ainar/.c...
Performance,help wanted,NeedsFix
medium
Critical
343,466,051
pytorch
[Build error] libcudnn.so: error adding symbols: File in wrong format
## Issue description When I build Caffe2 from source on my Jetson TX1, there are errors like this: [ 93%] Linking CXX shared library ../lib/libcaffe2_gpu.so /usr/local/cuda/lib64/libcudnn.so: error adding symbols: File in wrong format collect2: error: ld returned 1 exit status caffe2/CMakeFiles/caffe2_gpu.dir/...
caffe2
low
Critical
343,482,514
pytorch
[request] speed-up multidim slicing backward
The current way of apply slicing (indexing) isn't very efficient ([here](https://github.com/pytorch/pytorch/blob/7160846c81d9ebd298a4c1608d67b8f4bd76fee7/torch/csrc/autograd/python_variable_indexing.cpp#L151-L199)). Each slicing at each dim is applied as a separate autograd op, making the backward extremely inefficient...
todo,module: performance,module: autograd,triaged
low
Major
343,487,042
pytorch
A newer protobuf should be used, so that cmake install will work when building for mobile
## Issue description As Yangqing noted in https://github.com/pytorch/pytorch/blob/master/cmake/ProtoBuf.cmake#L77, we should eliminate `EXCLUDE_FROM_ALL` after https://github.com/google/protobuf/pull/3878 merges. I have a corresponding PR(https://github.com/pytorch/pytorch/pull/7085) but the updating of protobuf bre...
caffe2
low
Minor
343,562,544
node
Processes created using spawn with a pipe have no /dev/stdin
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
child_process
low
Critical
343,629,457
pytorch
[caffe2]mpirun multi-node multi GPU in Distributed mode ,run resnet50_trainer.py get RuntimeError
run with MPI MPI is for coordinating machine rendezvous through MPI so is it possible just using MPI as rendezvous but not redis or nfs? i do not use redis and nfs as my caffe2 is included in the container singularity , i run the under command: mpirun -np 4 singularity exec /public/DL_Data/cnic_ai_20180316.img p...
caffe2
low
Critical
343,629,665
pytorch
[caffe2]mpirun multi-node multi GPU in Distributed mode ,run resnet50_trainer.py get RuntimeError
run with MPI MPI is for coordinating machine rendezvous through MPI so is it possible just using MPI as rendezvous but not redis or nfs? i do not use redis and nfs as my caffe2 is included in the container singularity , i run the under command: mpirun -np 4 singularity exec /public/DL_Data/cnic_ai_20180316.img p...
caffe2
low
Critical
343,631,296
opencv
solvePnP behaves differently on ARM as compared to x86_64
##### System information (version) - OpenCV => 3.4.2 - Operating System / Platform => Ubuntu Xenial 16.04 64bit - Compiler => g++5.4.0 ##### Detailed description When running solvePnP function with some parameters it returns some values on x86_64 platform, but when running the same code on ARM, results are comp...
bug,category: calib3d
low
Major
343,715,175
TypeScript
Services in unopened projects
Some language services, such as `findAllReferences`, `rename`, `navigateTo`, and `getEditsForFileRename`, as well as refactors like `moveToNewFile` (which wants to update imports from external references), work best when they know about as many files as possible. Currently we only keep projects open if at least one fi...
Suggestion,In Discussion,Effort: Difficult
low
Minor
343,737,011
material-ui
[TextField] Long labels break layout
<!--- Provide a general summary of the issue in the Title above --> The textfield layout is not responsive when there are long labels. <!-- Checked checkbox should look like this: [x] --> - [x] This is a v1.3.1 issue. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this reposi...
docs,component: text field
medium
Critical
343,760,962
flutter
Need primaryLightTextTheme and primaryDarkTextTheme in ThemeData
I need a reliable way of placing text on primary dark and primary light backgrounds Primary and accent colors can do this since I can access `primaryTextTheme` and `accentTextTheme` through the `ThemeData`. Currently I mimic the code from `ThemeData` `primaryTextTheme` for `primaryColorLight` and `primaryColorDa...
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Minor
343,821,743
go
cmd/vet: make printf checking more precise when arguments are changed
For #26486 https://golang.org/cl/125039 changed the printf checking to only warn about functions that do not modify the arguments before passing them to `fmt.Printf` (or whatever). The example in that issue, drawn from real code, is: ```Go func dbg(s string, va ...interface{}) { if s == "" { s = strings.Repea...
help wanted,NeedsInvestigation,Analysis
low
Critical
343,821,891
TypeScript
Allow type variables to be constrained singleton, causing lookup into a non-generic mapped type to substitute
<!-- 🚨 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. --> I feel awkward submitting this suggestion since I don't know if it will get enough ...
Suggestion,In Discussion
low
Critical
343,858,114
flutter
[text input ]Detect input via the on-screen keyboard
Per the advice, I [asked this on StackOverflow](https://stackoverflow.com/questions/50341089/detecting-software-keyboard-input-using-flutter) some time ago now. I'm yet to receive any reply, so I'm starting to think this is a genuine issue. In flutter, is it possible to detect keyboard input received via the on-scre...
a: text input,c: new feature,framework,c: proposal,P2,team-framework,triaged-framework
low
Major
343,921,060
go
cmd/go: test cached run slower than real test run
### What version of Go are you using (`go version`)? 1.10.3 ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? linux; amd64 ### What did you do? go test --count 1 .; time go test . foo_test.go: // package and im...
help wanted,ToolSpeed,NeedsInvestigation,GoCommand
low
Critical
343,939,937
rust
Add `--emit=nothing` to tell rustc not to emit any files (even if `--crate-type=lib`)
In order to only check if a program is well-formed (think `cargo check`), one would like to call `rustc` without emitting any files. `cargo check` uses `--emit=metadata -Z no-codegen` because the metadata is needed to check dependent crates. However, it seems like it's impossible to tell the compiler to not write a...
A-driver,T-compiler,C-feature-request
low
Critical
343,950,300
pytorch
dataloader stuck at sched_yield =0
**My docker envs**: Description: Debian GNU/Linux 8.9 (jessie) Pytorch: 0.4.0 cuda: 8.0 python: 3.6.5 After a few epochs of training and validation, dataloader of validation suddenly stuck at sched_yield =0. I set dataloader worker = 10. I can see one subprocess use CPU at 100% and other 9 processes just us...
module: dataloader,triaged
low
Minor
343,964,471
TypeScript
Feat: Extract function with jsx selection should be replaced with jsx sfc
<!-- 🚨 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. --> <!-- List of keywords you searched for before creating this issue. Write them dow...
Suggestion,Awaiting More Feedback,Domain: Refactorings
low
Critical
343,990,665
kubernetes
Bind mounts in container not updated after volume is remounted again
<!-- This form is for bug reports and feature requests ONLY! If you're looking for help check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/). If the matter is security related, ple...
kind/bug,sig/storage,lifecycle/frozen
medium
Critical
344,064,444
pytorch
[caffe2] Questions about conv_transpose && ConvTranspose
I need to use conv_transpose(), but I always receive the same error. My code are as follows, any help would be highly appreciated. Thanks in advance. upconv = brew.conv_transpose( model, blob_in = final_avg, blob_out = 'upconv', dim_in = =512, dim_out = 2048, kernels = [4,1,1], str...
caffe2
low
Critical
344,075,078
TypeScript
Enums and interfaces do not have definitions in quick info/tooltips
<!-- 🚨 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. --> The issue might be related to [this one](https://github.com/Microsoft/TypeScript/is...
Suggestion,Help Wanted,Domain: Quick Info,Experience Enhancement
low
Critical
344,079,728
rust
Macro checks thwart `unreachable_pub` lint
Recently we [landed a change](https://github.com/rust-lang/rust/pull/52467) which squashes all lints tied to foreign macros, but this can thwart lints like `unreachable_pub` in unusual fashions. The `unreachable_pub` lint can't be fixed unless *all* its warnings are fixed, which means the following examples fails to co...
C-enhancement,A-lints,A-macros,T-compiler,A-suggestion-diagnostics,L-unreachable_pub,A-edition-2018
low
Minor
344,139,428
TypeScript
Improve errors for potential arrow functions
There are certain locations where arrow functions don't parse ```ts var x = window.foo || () => {} ``` In these instances, it would be nice if users could get a better error message as to avoid issues like #25897. Ideally this should not be an invasive change. * The change should be limited in scope. * T...
Bug,Help Wanted,Effort: Moderate,Domain: Error Messages
low
Critical
344,179,626
flutter
Drawer width should vary based on device size
The drawer width is too narrow on the small iPhone screens (iPhone SE, 5, etc) and leaves only a narrow tap section on the right side of the screen to close. The user can still swipe to close but it may not be obvious to them, especially if they opened the menu by tapping instead of swiping. The width is hardcoded a...
framework,f: material design,customer: mulligan (g3),c: proposal,P2,team-design,triaged-design
low
Minor
344,246,904
pytorch
Build torch as a submodule with static linking doesn't work (CAFFE2_PERF_WITH_AVX2 is not defined)
## Issue description Hi, I'm trying to compile a simple C++ program using the Caffe2 library. I include the pytorch repository as a git submodule to my project because I want to make this project as self-conteined as I can (the systems I want to target doesn't have the caffe2 lib installed). The file layout of...
caffe2,module: static linking
low
Critical
344,246,959
go
x/text: panic of index out of range in language.Matcher
### What version of Go are you using (`go version`)? go 1.9 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? amd64, darwin and linux. ### What did you do? language.MustParse accepts "lang_ZZ", e.g. en_ZZ, es_ZZ, etc....
NeedsInvestigation
low
Critical
344,272,435
go
cmd/vendor/github.com/google/pprof/internal/binutils: TestObjFile failure
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.10.3 linux/amd64 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? bash-3.2$ ld --...
help wanted,NeedsInvestigation
low
Critical
344,316,180
godot
Export arrays in singleton end up shared if initialized to same value (fixed in `master`)
___ ***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.* ___ **Godot version:** Godot v3.0.5.stable.official.6a88e22 win64 **OS/device including version:** Windows 10 Pro v.1803 (on 2 different pc) **Issue description:** Loading values in a two-dimen...
bug,topic:gdscript,confirmed
medium
Critical
344,329,363
TypeScript
Special characters in 'enum' type will be compiled to unicode by default
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.9.1 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** typescript unicode, typescript enum unicode **Code** ```ts ...
Bug
low
Critical
344,400,754
vscode
Allow syntax colouring in parameters for SignatureHelp
There are a couple of issues that looked like they might cover this: - https://github.com/Microsoft/vscode/issues/11877 - https://github.com/Microsoft/vscode/issues/26241 However as far as I can tell, it's not possible to get highlighting in the parameter names in the signature. I've tried various combinations o...
feature-request,editor-parameter-hints
medium
Critical
344,414,500
opencv
Linker Error LNK2022 of dnn module in CLR project
<!-- 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). This is a template helping you to create an issue which can be...
priority: low,category: build/install
low
Critical
344,425,689
rust
Doc-tests are not ignored when no changes have been made
Running the entire test suite will ignore most files after nothing relevant has been changed (e.g. another test), but doc-tests will be re-run each time. I tested this for stage 2 tests, but it seems likely it occurs for other stages too.
A-testsuite,C-enhancement,T-bootstrap,E-needs-investigation
low
Minor
344,438,660
rust
{i386,x86_64}-apple-ios targets pass too many thousands of arguments to the linker
To reproduce: ```sh git clone https://github.com/rust-lang-nursery/packed_simd cd packed_simd # Get Rust target: rustup target add x86_64-apple-ios # Build cargo runner: export RUSTFLAGS='-C link-args=-mios-simulator-version-min=7.0' rustc ./ci/deploy_and_run_on_ios_simulator.rs -o ios_cargo_runner --verbose ...
A-linkage,O-macos,O-ios,O-x86_64,T-compiler,C-bug,O-x86_32
low
Major
344,495,586
TypeScript
Improve completions with --checkJs turned off
**TypeScript Version:** 3.1.0-dev.20180725 **Code** ```ts /** * @typedef {object} I * @property {number} m */ /** @returns {I} */ function f() { return { x: 0 }; } const x = f(); x. ``` **Expected behavior:** Get completion for `m` only. **Actual behavior:** Get completions for `I`, `f`...
Suggestion,Domain: Completion Lists,Awaiting More Feedback
low
Minor
344,525,437
vscode
Show Opening Tag when Closing Tag Selected
intelliJ / PHP Storm / etc. have this nifty little feature. When your cursor is at the end of a tag, if the opening tag is off the screen it will show it in a little floating window. ![Example of being able to see a line that is off the screen](https://user-images.githubusercontent.com/40297408/43215220-89fe0742-900...
feature-request,editor-bracket-matching
high
Critical