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
326,864,065
pytorch
[Caffe2] convert ONNX to caffe2
I used this program to generate pb model. > convert-caffe2-to-onnx trainednet.onnx --output predict_net.pb My Error ``` WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode. WARNING:root:Debug message: No module named caffe2_pybind11_state_gpu Traceback (most recent call ...
caffe2
low
Critical
326,882,364
pytorch
[feature request] batch_first of RNN hidden weight for Multi GPU training
As we know, the input and output tensor support ```batch_first``` for RNN training, but as for hidden state, the tensor shape is forced to be ```(num_layers * num_directions, batch, hidden_size)```, even we set ```batch_first = True```. So there is a problem when we do multi GPU training by using ```torch.nn.DataParall...
module: nn,triaged,enhancement,module: data parallel
low
Major
327,013,320
rust
Defaulted unit types no longer error out (regression?)
This currently compiles (on stable and nightly). Till 1.25, it would trigger a [lint](https://github.com/rust-lang/rust/issues/39216) because it has inference default to `()` instead of throwing an error. ```rust fn main() {} struct Err; fn load<T: Default>() -> Result<T, Err> { Ok(T::default()) } fn foo...
T-compiler,regression-from-stable-to-stable,A-inference,C-bug
low
Critical
327,031,030
pytorch
[caffe2] build from source, cannot find my cudnn7.1
I am building pytorch from source. My cudnn version is 7.1, however, it seems that caffe2 cannot succeed to use this verion of cudnn 7.1, but found a low version 5 instead. errors like below: ``` [ 87%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cuda/CUDAReduceOps.cpp.o [ 87%]...
caffe2
low
Critical
327,032,058
three.js
Add shadow map support for RectAreaLights (brainstorming, R&D)
##### Description of the problem It would be very useful for realism to support shadows on RectAreaLights. I am unsure of the best technique to use here as I have not researched it yet beyond some quick Google searches. I am not yet sure what is the accepted best practice in the industry? Two simple technique...
Enhancement
high
Critical
327,048,239
rust
[rustdoc] Implementors section of Sync (and other similar traits) should separate implementors and !implementors
![image](https://user-images.githubusercontent.com/772/40619532-6af752b4-6263-11e8-8627-2ae03dfe621d.png) The `!Sync` implementations and the `Sync` implementations really ought to be separated apart, otherwise it makes it harder to skim. https://doc.rust-lang.org/stable/std/marker/trait.Sync.html#implementors
T-rustdoc,C-enhancement,E-mentor
low
Major
327,059,337
opencv
Suggestion for the CUDA stream module
Hi, I'd like to suggest something related to the CUDA stream module. It seems that `cv::cuda::Stream` class encapsulates a feature related to CUDA memory allocation using `StackAllocator` class and `MemoryPool` class. This feature is described in detail at [this documentation for `BufferPool`](https://docs.opencv...
category: gpu/cuda (contrib),RFC
low
Critical
327,063,120
rust
Borrowing an immutable reference of a mutable reference through a function call in a loop is not accepted
This code appears to be sound because `event` should either leave the loop or be thrown away before the next iteration: ```rust #![feature(nll)] fn next<'buf>(buffer: &'buf mut String) -> &'buf str { loop { let event = parse(buffer); if true { return event; } }...
C-enhancement,T-lang,A-NLL,NLL-polonius
low
Critical
327,108,944
pytorch
Deprecate torch.Tensor
This: ```python >>> torch.Tensor(torch.tensor(0.5)) RuntimeError: slice() cannot be applied to a 0-dim tensor. ``` should work and be a no-op I guess? I'm running pytorch CPU, built from source at fece8787d98c99177505c9357850171457397b61.
triaged,module: deprecation,module: tensor creation
low
Critical
327,150,371
pytorch
TracedModules don't support parameter sharing between modules
I have a multihead module with 2 heads that share parameters during training. I want to use the JIT compiler to increase the performance only during the inference when only 1 head is used. When I create a jit compiled module, JIT code looks at all of the parameters, even those that will never be used in the 2nd head an...
oncall: jit
low
Critical
327,157,973
go
cmd/objdump: x86 disassembler does not recognize PDEPQ
### What version of Go are you using (`go version`)? ``` go version go1.10.2 darwin/amd64 ``` ### Does this issue reproduce with the latest release? Yes, confirmed on 1.9.2 and 1.10.2. Not tested on master. ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd6...
help wanted,NeedsFix,compiler/runtime
low
Critical
327,226,910
pytorch
[Caffe2] Operators of Detectron module not registered/compiled when built on windows
## Issue description I am using Caffe2+Detectron in Windows. After successfully building Caffe2 (with CUDA, cuDNN, OpenCV), COCOAPI and Detectron modules, I ran the `tools/train_net.py` script in Detectron, trying to train Faster R-CNN on Pascal VOC. But the following errors appeared, reporting a Detectron operator ...
caffe2
low
Critical
327,247,193
vue
Transition using js hooks always run the initial render
### Version 2.5.16 ### Reproduction link [https://jsfiddle.net/p1dthw6z/](https://jsfiddle.net/p1dthw6z/) ### Steps to reproduce In the demo link, toggle checkbox 'odd'. ### What is expected? When rows appeared, both inner element transition using CSS (fade) and transition using hooks (slide) should not do...
transition
medium
Minor
327,252,852
vscode
Cannot exclude root folders while searching
Testing #50498 - In a MR workspace, try to exclude root folder using **/folder1/** and search. Results are still shown in folder1. This happens irrespective of setting `search.enableSearchProviders" ` ![image](https://user-images.githubusercontent.com/10746682/40652451-8f56d79e-6338-11e8-8994-58f40d5ab239.png)...
help wanted,feature-request,search
medium
Major
327,353,740
opencv
RTSP streams freeze at version 3.1+ but not at 3.0
<!-- 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: videoio,incomplete
low
Critical
327,380,459
rust
when suggesting to remove a crate, we leave a blank line
As of https://github.com/rust-lang/rust/pull/51015, the rustfix result for: ```rust #![warn(unused_crates)] extern crate foo; fn main() { } ``` is ```rust #![warn(unused_crates)] fn main() { } ``` but not ```rust #![warn(unused_crates)] fn main() { } ```
C-enhancement,A-diagnostics,T-compiler,E-help-wanted,WG-epoch
low
Minor
327,382,289
rust
unused macros fails some obvious cases due to prelude
This example does not warn, even in Rust 2018 edition: ```rust // compile-flags: --edition 2018 extern crate foo; fn main() { foo::bar(); } ``` The reason is that we resolve `foo` against the extern crate, when in fact it could *also* be resolved by the extern prelude fallback. But that's tricky! Something l...
C-enhancement,T-compiler,WG-epoch
low
Minor
327,396,102
vscode
QuickPick API is no longer type safe
Testing #50574: I've added `canPickMany: true` to my `vscode.QuickPickOptions` and now I'm receiving an array through a parameter that does not include the array type: Debugger hover shows: ![2018-05-29_18-25-06](https://user-images.githubusercontent.com/1898161/40671948-a788bbc2-636d-11e8-9a36-3a11d8ded731.png)...
api,debt
low
Critical
327,396,229
rust
libcore: add defaults for empty iterators
I'm looking for a way to create empty iterators. I have a few places in my application where I keep an iterator around as part of a data structure, and will advance that from time to time. After a few rounds, I will reset the iterator to start from the beginning again. (The iterator is supposed to point into the dat...
T-libs-api,C-feature-request,A-iterators
low
Major
327,402,320
angular
Formbuilder group from value object with array
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ ] Feature request [ ] Docum...
type: bug/fix,effort3: weeks,freq1: low,area: forms,state: confirmed,design complexity: major,P4
medium
Critical
327,487,364
terminal
colortool.exe does not exit after executing
This bug-tracker is monitored by Windows Console development team and other technical types. **We like detail!** If you have a feature request, please post to [the UserVoice](https://wpdev.uservoice.com/forums/266908). > **Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or...
Product-Colortool,Help Wanted,Area-Interaction,Issue-Bug
low
Critical
327,500,183
opencv
Cuda 9.1 NVCUVID not working with opencv test program but works with nvidia test source code.
##### System information (version) - OpenCV => 3.4 (checkout from git) - Operating System / Platform => Linux Ubuntu 16.04 64 Bit - Compiler => gcc (Ubuntu 5.4.0-6ubuntu1~16.04.9) 5.4.0 20160609 ##### Detailed description When using cuda9.1, opencv's own test program does not work: ./example_gpu_video_rea...
priority: low,category: build/install,category: gpu/cuda (contrib)
low
Major
327,522,428
go
cmd/compile: confusing internal error when importing different packages with same name from different paths
This is a follow-up on #25568: It is possible to get an internal compiler error when invoking the compiler with plausible but incorrect `-I` arguments leading to selection of different but identically named packages ("io" in this case). To reproduce: 1) `cd $GOROOT/test` 2) `go tool compile fixedbugs/bug345.dir/io....
NeedsFix,compiler/runtime
low
Critical
327,532,825
flutter
Instrument code to give visual cue to developers when their native code is taking too long
Following a discussion with peers I noticed that a pain point and source of misunderstanding around Method Channels running on main native thread. Following a suggestion from @dnfield, it would be nice if method channels had a way to know if they're taking too long and freezing the UI. That would benefit people comi...
engine,c: performance,c: proposal,P3,team-engine,triaged-engine
low
Critical
327,542,135
rust
Command's Debug impl has incorrect shell escaping
On Unix, the Debug impl for Command prints the command using quotes around each argument, e.g. "ls" "-la" "\"foo \"" The use of spaces as a delimiter suggests that the output is suitable to be passed to a shell. While it's debatable whether users should be depending on any specific debug representation, in p...
C-bug,T-libs,A-fmt
low
Critical
327,569,088
pytorch
Better error message in DataChannelTCP::_receive
## Issue description The following code will produce an error from the TCP distributed backend: ```python import os import torch import torch.distributed as dist import sys os.environ['MASTER_ADDR'] = '127.0.0.1' os.environ['MASTER_PORT'] = '29500' dist.init_process_group('tcp', rank=int(sys.argv[1]), wo...
triaged,module: backend
low
Critical
327,577,134
pytorch
[Caffe2]How to convert Caffe's mean file to Caffe2's ?
I have tried to use Caffe's mean file directly in Caffe2, but it complains the mean file doesn't contain qtensor fields. Is there any way to translate Caffe's mean file to Caffe2's? Thansk.
caffe2
low
Minor
327,587,604
pytorch
how to use Softmax when do segmentation
I want implement FCN by caffe2 to do semantic segmentation, but I do not konw how to implement Softmax as FCN in caffe version. Could you help me, Thanks! the code of FCN's softmax using caffe is as follows: ``` layer { name: "upscore" type: "Deconvolution" bottom: "score_fr" top: "upscore" param {...
caffe2
low
Minor
327,631,847
rust
assert_eq!(a,b) fails to compile for slices while assert!(a == b) works fine
Example ([playground](https://play.rust-lang.org/?gist=1515ab97f5153b600fe3542b50aba925&version=stable&mode=debug)): ```rust pub fn foo(xs: &[u32], k: u32) -> (&[u32], u32) { (xs, 0) } fn main() { assert!(foo(&[], 10) == (&[], 0)); // OK assert_eq!(foo(&[], 10), (&[], 0)); // FAILS } ````
C-enhancement,T-libs-api
low
Critical
327,674,010
opencv
VideoCapture can't read some png files
##### System information (version) - OpenCV => 4.0.0-dev (todays) - Operating System / Platform => Windows 64 Bit - Compiler => mingw64 opencv_ffmpeg400_64.dll has 2018-03-01 timestamp ##### Detailed description the dnn samples make heavy use of loading images through the videocapture, but trying with ht...
category: videoio,incomplete
low
Minor
327,676,172
gin
Question: How to write request log and error log in a separate manner.
I could write everything into a file with #805 post. Related to this, how could it be possible to write error into a separate log? -- I assume to use gin.DefaultErrorWriter, but it seems that log.SetOuput is only possible with a single file. Current output (everything into a single file) ``` [GIN] 2018/05/30 ...
question
low
Critical
327,713,679
create-react-app
Add React version into eslint-config-react-app
Hello everyone, ### Is this a bug report? No ### Situation I'm working on a project that use React (**react@15.6.2**). I use **react-scripts** (1.0.11) to start and build my project. According to my React version, I use some deprecated function: - **componentWillMount** (https://reactjs.org/docs/react-...
issue: proposal
low
Critical
327,723,946
vue
Make vue available to other libraries without having to import it
Title needs work, idk what to call this. ### What problem does this feature solve? Writing a component library with typescript requires importing Vue so you can use `Vue.extend(...)` to get typings. This causes problems when webpack decides to load a different instance of vue. See https://github.com/vuetifyjs/vu...
discussion
medium
Major
327,745,880
flutter
ListTile needs Material Design guidance: title overflow, textScaleFactor != 1.0
We've updated the Flutter ListTile (like list items) widget to match: https://material.io/design/components/lists.html#specs There are still some loose ends that the spec doesn't cover: - Overflow: what happens when the title or subtitle wraps? - Text scale factor: how should the layout scale when the text scale...
framework,f: material design,P2,team-design,triaged-design
low
Minor
327,798,737
rust
Problem with type inference resolution
A problem was found with the type inference resoultion when the env_logger crate was imported. The issue was reported on [reddit](https://old.reddit.com/r/rust/comments/8n83ph/compile_issue_when_adding_a_dependency) and errors on the latest stable and nightly. ```rust // Uncomment this and it breaks... extern cra...
A-trait-system,T-compiler,A-inference,T-types
low
Critical
327,802,686
flutter
Text does not conform to DefaultTextStyle which is beyond Card
<!-- 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.io/ * https://docs.flutter.io/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have...
framework,f: material design,a: typography,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,team-design,triaged-design
low
Critical
327,873,076
vscode
Support customisable alias for commands in command palette
- VSCode Version: 1.23.0 - OS Version: Linux ---- **Is there a way to define an alias for a command so that the command can be called under multiple different names (original name and the alias)?** This is useful in different cases: - If you switch from a different editor that uses a command palette (like ...
feature-request,quick-open
medium
Major
327,888,684
vscode
Support folding ranges inside a line
Hey, I have read through the folding-related issues (like #3422, the linked ones and some other ones related to the `FoldingRangeProvider` API specifically), but I don't seem to have come across a conversation about inline folding ranges. Has this been discussed - or is it okay to start a discussion on the topic now...
feature-request,editor-folding
high
Critical
327,892,047
rust
rustdoc: accept a "test runner" argument to wrap around doctest executables
Unit tests are currently built and run in separate steps: First you call `rustc --test` to build up a test runner executable, then you run the executable it outputs to actually execute the tests. This provides a great advantage: The unit tests can be built for a different platform than the host. Cargo takes advantage o...
T-rustdoc,C-enhancement,A-doctests
low
Critical
327,901,269
flutter
Improve error message when a qualified import should be relative
I had a PR validation fail because I used a fully qualified import where I should have used a relative import. The error message in the out was as follows: ```bash dart ./dev/bots/test.dart SHARD=analyze ⏩ RUNNING: cd examples/hello_world; ../../bin/flutter inject-plugins Unhandled exception: NoSuchMethodError...
a: tests,team,framework,a: error message,P2,team-framework,triaged-framework
low
Critical
327,938,554
TypeScript
Add a Mutable type (opposite of Readonly) to lib.d.ts
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,Awaiting More Feedback,Fix Available
high
Critical
327,967,867
go
runtime/pprof: possible sampling error with large memprofile rate
Split out from #25096, where @hyangah wrote: > With the default memprofile sampling rate, however, the results look different. The results are different from the results with -memprofilerate=1, too. The order in the top15 list varies a lot. This seems to me errors from sampling-based estimation, not the bug the orig...
NeedsInvestigation,compiler/runtime
low
Critical
327,978,466
go
x/image/vector: rasterizer shifts alpha mask and is slow when target is offset and small relative image size
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.10.2 ### 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? In ...
Performance,NeedsInvestigation
low
Major
328,000,762
puppeteer
Support ServiceWorkers
We need an API to connect and manage ServiceWorkers. At the very least, we need to: - have a way to shut down service worker (requested at https://github.com/GoogleChrome/puppeteer/issues/1396) - have a way to see service worker traffic (requested at https://github.com/GoogleChrome/puppeteer/issues/2617) - suppor...
feature,chromium
low
Major
328,051,788
rust
Tracking issue for the OOM hook (`alloc_error_hook`)
PR #50880 added an API to override the std OOM handler, similarly to the panic hook. This was discussed previously in issue #49668, after PR #50144 moved OOM handling out of the `Alloc`/`GlobalAlloc` traits. The API is somewhat similar to what existed before PR #42727 removed it without an explanation. This issue track...
A-allocators,T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked
medium
Critical
328,053,026
flutter
[proposal] make flutter compatible with Appium Tests
Hi, we are writing a new flutter app and want it to be acceptance-tested by a bunch of Appium Tests. As first we want to test on an iPhone, so we are not sure if the same problem also exsits for Android. The flutter app cannot be tested because the PageSource always returns the one of the LaunchImage. Although t...
a: tests,framework,c: proposal,P2,team-framework,triaged-framework
low
Critical
328,074,971
angular
Angular remove some of html entities between tags
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> </code></pre> ## Current behavior Angular remove `&emsp;`, `&thinsp;` and maybe another html entites. ## Expected behavior Save ...
type: bug/fix,freq1: low,area: compiler,state: confirmed,core: basic template syntax,P3,compiler: parser
low
Critical
328,120,425
angular
APP_INITIALIZER contract not honoured with TestBed
<!-- 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,area: testing,freq1: low,P3
medium
Critical
328,127,526
pytorch
[Caffe2] place some nodes of the same network on GPU and others on CPU?
## Issue description When I use multi-GPU to run the baseline X152, I get an error of "out of memory", but I have no better device. Can I run some network nodes on the CPU?
caffe2
low
Critical
328,225,018
TypeScript
Cannot augment global namespace from module due to shadowing(?)
**TypeScript Version:** 2.8.3, 3.0.0-dev.20180531 **Search Terms:** global augment **Code** Briefly, declare a namespace in a script, then attempt to augment it in a module, and it shadows rather than augments. ```ts // global.d.ts, note: a script declare namespace X { interface Iface { x: string; ...
Bug
low
Critical
328,336,675
pytorch
[Caffe2] VideoInput/LMDB Reader to Standalone Predictor Question
Hey Caffe2/PyTorch team, I had a question about going from a trained model (.mdl format) to a standalone predictor model. I've been able to load the .mdl file as follows: ``` meta_net_def = pred_exp.load_from_db('trained_model.mdl', 'minidb') init_net = core.Net( pred_utils.GetNet(meta_net_def, predictor_con...
caffe2
low
Minor
328,339,777
go
cmd/compile: inconsistent acceptance of cyclic variable declaration (esoteric)
Another test case for handling of cycle detection: https://play.golang.org/p/DAftfsYBsrX is accepted and appears to run correctly. The similar (and functionally identical) program https://play.golang.org/p/AChHOplAHzp is not accepted with an incorrect type alias cycle error. And the simplified version eliminating t...
NeedsInvestigation,compiler/runtime
low
Critical
328,424,186
node
async_hooks.triggerAsyncId() don't return the expected value in context of the connection callback of net.Server
<!-- 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...
async_hooks
low
Critical
328,445,443
angular
Make possible to configurable style compiler constants
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Performance issue [x] Feature request </code></pre> ## Current behavior Compiler variable and attr is constant. https://github.com/angular/angular/blob/master/packages/compiler/src/style_compiler.ts#L16 ```ts const C...
feature,area: core,core: stylesheets,feature: under consideration
low
Major
328,455,357
opencv
Windows 10 CMake | OPENCV_EXTRA_MODULES_PATH | Bug
- OpenCV => Latest Github - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 ``` CMake Error at cmake/OpenCVModule.cmake:368 (_glob_locations): Syntax error in cmake code at E:/opencv_github/opencv/cmake/OpenCVModule.cmake:368 when parsing string E:\opencv_githu...
bug,priority: low,category: build/install
low
Critical
328,456,191
go
all: be consistent about the term "embedded field"
The spec very clearly calls fields with no names "embedded fields": https://golang.org/ref/spec#Struct_types > A field declared with a type but no explicit field name is called an embedded field. However, the Go standard library and documentation mixes that term with "anonymous field": ``` $ cd tip $ git gre...
NeedsFix
low
Critical
328,456,248
pytorch
Build error : mpi/mpi_gpu_test.cc.o: undefined reference to symbol '_ZN3MPI8Datatype4FreeEv'
I get the following error while trying to build the package on ubuntu 16.04: cc1plus: warning: unrecognized command line option '-Wno-unknown-warning-option' cc1plus: warning: unrecognized command line option '-Wno-invalid-partial-specialization' [ 91%] Linking CXX executable ../bin/mpi_gpu_test /usr/bin/ld: CMak...
caffe2
low
Critical
328,471,620
angular
minlength validator causes ExpressionChangedAfterItHasBeenCheckedError when its value is dynamically updated
<!-- 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,freq2: medium,workaround2: non-obvious,area: forms,state: confirmed,P3
low
Critical
328,556,475
flutter
App throws "Failed assertion ... labelStyle != null" when applying TextTheme with only Title color defined
Hi! I am working on an app using Android studio using Flutter 4.4 and I get the following issue. This works fine: ```dart return new MaterialApp( title: 'Title', theme: new ThemeData(primarySwatch: Colors.lightBlue,) home: new HomePage(title: 'Title'), ); ``` This doesn't: ```dart ret...
framework,f: material design,d: api docs,P2,team-design,triaged-design
low
Critical
328,560,863
terminal
Secondary buffer window restore glitch
* Your Windows build number: (Type `ver` at a Windows Command Prompt) 17682 * What you're doing and what's happening: (Copy & paste specific commands and their output, or include screen shots) Run `vim -u NONE -i NONE "+set tgc"` (needs a recent Windows vim). Maximize the window and then restore it. The buffer wi...
Product-Conhost,Area-Output,Issue-Bug
low
Minor
328,578,080
vscode
onEnterRules should be multi-line aware
<!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. For bug reports, please fill in the details below. For feature requests, please describe the desired feature. --> <!-- Use Help > Report Issue to prefill these. --> Use case: Microsoft/vscode-cpptools#2072 Step...
feature-request,languages-basic,editor-autoindent
low
Critical
328,613,188
pytorch
[PyTorch] EmbeddingBag comparison vs Embedding fails w/ small max_norm on CUDA
When using small `max_norm` values like `0.1`, `1` or `2`, the comparison on CUDA fails with large error (Half w/ 0.1 fails with error ~`0.16`), but passes on CPU. Relevant lines: https://github.com/pytorch/pytorch/blob/master/test/test_nn.py#L1674-L1706 Discovered when doing #7959 cc @adamlerer
triaged,module: norms and normalization
low
Critical
328,616,452
neovim
swapfile dialog should check for zombie processes
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: 0.2.2 - Vim (version: ) behaves differently? unknown - Operating system/version: FreeBSD but probably all OS except Windows - Terminal name/version: conhost but N/A - `$TERM`: xterm-256color but N/A ### Steps to reproduce...
enhancement,complexity:low,system
low
Major
328,621,862
bitcoin
Notes on Compact Block getdata fallback responses
This came up at a meeting a while back, but I realized it was never materially written down anywhere. Compact Block high-bandwidth processing can fall back to getdatas when the client belives a short id collision may have occurred (among a few other cases). In such cases, we are required to wait until we have verifi...
P2P
low
Minor
328,645,044
pytorch
[PyTorch] Windows CI CUDA mem leak check on BN tests are flaky
They often report -1024 anti-leaks. Instances: https://ci.pytorch.org/jenkins/job/pytorch-builds/job/pytorch-win-ws2016-cuda9-cudnn7-py3-test1/44/console https://ci.pytorch.org/jenkins/job/pytorch-builds/job/pytorch-win-ws2016-cuda9-cudnn7-py3-test1/106/console https://ci.pytorch.org/jenkins/job/pytorch-builds/job/p...
module: memory usage,triaged,module: flaky-tests
low
Minor
328,651,197
flutter
Min width of material button is greater than it should be
Spec says 64dp, but its set to 88dp
framework,f: material design,a: fidelity,P2,team-design,triaged-design
low
Minor
328,659,101
go
net/http: consider implementing browser http client at http.Client level instead of http.RoundTripper
The motivation for considering implementing the HTTP client at `http.Client` level rather than `http.RoundTripper`, it has to do with the fact that browser APIs (such as XmlHTTPRequest and Fetch) do not allow making individual HTTP requests without interpreting the response code, they operate at a higher level, closer ...
arch-wasm
low
Minor
328,660,825
go
runtime: TestGdbPython flaky on linux-mipsle builder
Examples: https://build.golang.org/log/e59511fa905a9939c7b85a9f6cefb99140c8915f https://build.golang.org/log/dc9b43b3eb5e0029089cf9ac53b37f6b8b0e7847 Detail: ``` ##### GOMAXPROCS=2 runtime -cpu=1,2,4 -quick --- FAIL: TestGdbPython (3.10s) runtime-gdb_test.go:61: gdb version 7.7 runtime-gdb_test.go:195...
Testing,help wanted,NeedsInvestigation,compiler/runtime
low
Critical
328,667,976
angular
Adding property/event bindings to ng-content should error
### Issue Adding property/event bindings to `<ng-content>` (attributes that are not explicitly supported APIs) currently no-op. They should be an error, as the attributes will be completely lost. ### Reproduction https://stackblitz.com/edit/angular-gitter-hm6egs?file=app%2Fapp.component.ts
type: bug/fix,hotlist: error messages,freq1: low,area: core,state: confirmed,core: content projection,design complexity: low-hanging
low
Critical
328,692,079
flutter
DatePicker touch targets are too small
framework,f: material design,a: accessibility,f: date/time picker,P2,team-design,triaged-design
low
Minor
328,696,079
pytorch
CrossEntropyLoss mishandles weights
## Issue description When a `weight` tensor is passed to CrossEntropyLoss, it exhibits unusual behavior, such as occasionally ignoring the weights, and returning different results when it averages losses over examples versus averaging them manually. ## Code example 1) Incorrect size_average result ``` input = to...
module: nn,module: loss,triaged
low
Critical
328,700,461
godot
UWP export can't find my script
**Godot version:** Master as of 2/06/2018, UWP template updated with fresh build and using matching editor build. **OS/device including version:** Universal Windows Platform running on Windows 10 **Issue description:** Exporting to UWP gives error: Parse Error: [ext_resource] referenced nonexistent resource a...
bug,topic:porting,confirmed,platform:uwp
low
Critical
328,708,765
pytorch
import problem
I install the caffe2 using the command "conda install -c caffe2 caffe2-cuda8.0-cudnn7". In directory of xx/caffe2, there are the following folds/files: contrib core distributed experiments __init__.py __init__.pyc perfkernels proto python But when I execute import caffe2 dir(caffe2) It only shows t...
caffe2
low
Critical
328,710,048
javascript-algorithms
Add B-Tree
I would like to contriblute to adding the [B-Tree](https://en.wikipedia.org/wiki/B-tree) data structure. It is a rather common data structure that is great for large data, I'll be glad to implement it.
enhancement
low
Major
328,723,352
opencv
Extend Python FFI bindings to adopt more languages
It's not a bug report, but it's not a question too, so I think it's an appropriate place to write this proposal. There is plenty of projects that are trying to implement FFI bindings to opencv, e.g. [this](https://github.com/hybridgroup/gocv) or [this](https://github.com/ruby-opencv/ruby-opencv) among many others. A...
feature,category: build/install,RFC
medium
Critical
328,734,047
pytorch
Document torch.acos() behavior near -1 and 1
I created a network using torch.acos() and encountered a Nan error during its training. The reason is that an input value to torch.acos () approaches 1 or -1, causing the grad to diverge, and resulting in value.grad = Nan. I know that torch.acos () can only handle values ​​in the range from -1 to 1, and limited t...
module: docs,triaged
high
Critical
328,734,304
rust
Recursive trait constraints crash compiler with exit code 3221225501
I've got a crate that doesn't compile, it just starts eating memory until it stops without an error message. Only passing the `--verbose` flag to `cargo build` tells me ``` error: Could not compile `the-crate`. Caused by: process didn't exit successfully: `rustc …` (exit code: 3221225501) ``` Seems to be the ...
A-trait-system,I-compiletime,T-compiler,I-compilemem,C-bug
low
Critical
328,746,436
flutter
Changing build folder destination issue ( .flutter_settings file)
In native android development we can change the build folder destination adding the line below to the project "build.gradle" file: ``` allprojects { repositories { ... } buildDir = "C:/dev_build/android/${rootProject.name}/${project.name}" } ``` With Flutter I tried @cbracken instructions t...
c: new feature,tool,P2,team-tool,triaged-tool
low
Major
328,755,318
rust
Unable to make a function for write!ing that is generic over a File or String
write! duck types to calling write_fmt() which happens to work on both std::io::Write and std::fmt::Write. Unfortunately because std::io::Write does not implement std::fmt::Write you can't write a generic function that would accept either a File or String. One would want to be able to write something like: ```rus...
C-enhancement,T-lang,T-libs-api
low
Minor
328,777,034
ant-design
Menu item grouping and alignment
- [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. Someone else has requested something similar [1] but the response to that request was hijacked by text alignment (which is not what this is about) and then sadly closed for...
Inactive
high
Critical
328,779,015
rust
Tracking issue for #[doc(keyword = "...")]
Implemented in #51140.
T-rustdoc,B-unstable,C-tracking-issue,S-tracking-perma-unstable
low
Major
328,784,268
three.js
FBXLoader messes the animation up
I dont really know why, but this model here looks like this if animated: ![screen shot 2018-06-03 at 2 02 30](https://user-images.githubusercontent.com/242577/40881564-3d91e5aa-66d2-11e8-84f6-e09993d81bef.png) It does work perfectly fine in [autodesk fbx review](https://www.autodesk.com/products/fbx/fbx-review). Th...
Bug,Loaders
low
Major
328,821,336
godot
Make special C# cases for APIs like get_property_list which return a list of dictionaries.
Just throwing an idea out there, really. The API for `get_property_list` return an *array of dictionaries*, probably to avoid having to declare a new type for a single function. This is *fine* in dynamically typed languages because there's little difference between `x.y` and `x["y"]`, but it's awful in typed languag...
enhancement,topic:core,topic:dotnet
low
Major
328,833,679
create-react-app
Create React App removes SSI directives on Build from index.html
I'm trying to add some SSI directives in the index.html so that I can return dynamic meta tags based on the current url. I'm doing this to solve the Facebook Meta Tag issue. Below is the snippet of the if-condition I've added in the index.html. `<!--#if expr="$DOCUMENT_URI = /movie-review\/(.*)/" -->` But, realiz...
issue: proposal
low
Minor
328,868,138
neovim
win: failed assertion "_osfile(fh) & FOPEN" during debugging
- `nvim --version`: f711b635133f - Operating system/version: Windows 7 32-bit ### Steps to reproduce using `nvim -u NORC` 1. Using the Visual Studio 2017 [build steps](https://github.com/neovim/neovim/wiki/Building-Neovim#windows--msvc), build Nvim with the `x86-Debug` configuration. 2. Use the Visual Studio de...
bug,platform:windows,system
low
Critical
328,877,188
pytorch
manager.cpp:64: undefined reference to `shm_open (when building with GCC 5.x (sic))
I attempted to build with GCC 5.x on Linux and the "do I have to link against rt" logic doesn't seem to work correctly: ``` CMakeFiles/torch_shm_manager.dir/manager.cpp.o: In function `object_exists(char const*)': /home/ezyang/Dev/pytorch-tmp/torch/lib/libshm/manager.cpp:64: undefined reference to `shm_open' CMak...
module: build,triaged
low
Critical
328,885,986
pytorch
Please provide wheel package for windows on PyPI
Hi, I am a pytorch user on windows, and saw pytorch wheel package for windows on the official site. Would you please also put the win-amd64 wheel package on PyPI, so we can download it easily using "pip install pytorch". Thanks.
module: binaries,triaged
low
Minor
328,905,351
pytorch
load_state_dict unexpectedly does not load Tensor to buffers that currently have None value
## Issue description I have some model variations that learn a certain value, while others keep this value fixed. For this purpose I'd like to have a None-able buffer that stores the fixed value and have this value included in the state dict for serialization. The [`_load_from_state_dict` function](https://github.c...
module: bc-breaking,module: docs,module: nn,triaged
low
Critical
328,911,307
godot
ERROR: set_data: Condition ' len % 2 ' is true
commit hash: 8684b631182dffebba27bdf538129818321d0d7d I'm getting a lot of those errors when dynamically changing the array of segments in ConcavePolygonShape2D (adding points). Collisions on some of the segments don't work. Errors are from `servers/physics_2d/shape_2d_sw.cpp:910`. What does this error mean?
bug,topic:physics
low
Critical
328,944,228
pytorch
Export CC is ignored when I build pytorch
Hi, I tried to build pytorch from source but I knew that it couldn't be compiled with gcc 8 because nccl fails to compile with gcc 8. When I was compiling caffe2 I fixed this issue with compiling gcc 7.3 and installing it under /usr/local/ and exporting CC and CXX and then compiling caffe2. But when I export CC and CXX...
module: build,triaged
low
Minor
328,966,477
puppeteer
Feature request: create isolated world
I'd like to create an isolated context to execute some js in the same website I'm visiting without polluting the main context. It is possible right now, but it requires to access a lot of internal methods: const mainFrame = page.mainFrame() const isolatedWorldInfo = await page._client.send('Page.creat...
feature,upstream,chromium,P2
low
Major
329,025,666
rust
Seemingly inconsistent behavior when using default trait parameters
I am building a `Length` trait for a `Line` struct that determines the length of a line using various geospatial distance algorithms. It utilizes a default trait parameter to specify a reasonable default to improve the ergonomics. While designing the trait, I noticed some inconsistent behavior. Consider the next two...
A-trait-system,T-compiler,C-bug,T-types
low
Critical
329,073,512
angular
Bug(Animations): animation transition :enter delay should delay the appearance of an element
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [x] Feature request [ ] Docume...
area: animations,freq2: medium,P4,bug
low
Critical
329,094,970
go
cmd/vet: spurious "context leak" due to imprecise 'defer' control-flow analysis in lostcancel
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.10 windows/amd64 ### Does this issue reproduce with the latest release? yes, tested on go1.10.2 as well ### What operating system and processor architecture are you using ...
help wanted,NeedsFix,Analysis
low
Critical
329,154,367
rust
compiler error message shows the error path containing parent directory identifier ( `/../` )
``` error[E0599]: no method named `map` found for type `std::iter::Map<postgres::rows::Iter<'_>, for<'r, 's> fn(postgres::rows::Row<'r>, &'s extract::CmdOptions) -> std::result::Result<<Q as extract::query::Query>::Message, postgres::Error> {<Q as extract::query::Query>::map}>` in the current scope --> extract/test...
C-enhancement,A-diagnostics,E-mentor,T-compiler,E-help-wanted
low
Critical
329,173,607
vscode
Filter "Problems" by the extension which generated them (Markers Panel Filter)
I'd love to be able to declutter the "Problems" Markers Panel by hiding/showing logs generated by only certain extensions. Right now, if I type `[ts]` into the filtering box, I get `No results found with provided filter criteria. Clear Filter.` If I then delete the filter, I can clearly see plenty of warnings an...
feature-request,error-list,papercut :drop_of_blood:
high
Critical
329,185,417
pytorch
PyTorch multiprocessing using single CPU core
## Issue description I was trying to load data with DataLoader with multiple workers, and I noticed that although it creates the processes they all run on the same CPU core, thus the data loading is very slow. I succeeded in creating a minimal example (below). If I run the script below, it uses 4 CPU cores. If I ...
todo,module: multiprocessing,triaged
low
Critical
329,187,353
rust
RFE: debug pretty printers for Rc/Arc
It would be nice if `rust-gdb`/etc. could pretty-print the inner value of `Rc` and `Arc`. Right now you only get the raw details, like: ``` (gdb) p foo $1 = Rc<i32> = {ptr = NonNull<alloc::rc::RcBox<i32>> = { pointer = NonZero<*const alloc::rc::RcBox<i32>> = {0x555555783a40}}, phantom = PhantomData<i32>} ...
T-dev-tools,C-feature-request
low
Critical
329,188,894
pytorch
Cmake is getting permission denied when installed system wide
Hi, Trying to build from source, compiled fine when disabling the `-DBUILD_TEST=OFF` but now I'm trying to use `caffe2` from my own CMakeLists.txt and I get the following interesting error: ``` -- Caffe2: Cannot find gflags automatically. Using legacy find. -- Caffe2: Found gflags (include: /usr/include, libra...
caffe2
low
Critical
329,204,357
go
cmd/asm: how to test?
The current tests are an inconsistent mess. Some files are hand-written. Others are auto-generated and enormous, and could be generated on the fly instead of being checked in. Some architectures are well tested. Others are not. Some subsets of architectures (AVX) are exhaustively tested. Others are not. I would lik...
Testing,NeedsInvestigation,compiler/runtime
low
Major