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 |
---|---|---|---|---|---|---|
509,360,393 | go | cmd/go: go mod download does not report invalid certificate error | ### What version of Go are you using (`go version`)?
`go version go1.13.3 linux/amd64`
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
`golang:1.13.3` Docker image:
```
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/root/.cache/go-build"
GOENV="/root/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build897368373=/tmp/go-build -gno-record-gcc-switches"
```
### What did you do?
Using a network that performs TLS MiTM decryption (that is, uses an internal root certificate for TLS traffic so that network inspection can be performed):
```
# docker run -it golang:1.13.3
# GOPROXY=direct go mod download -json rsc.io/[email protected]
go: finding rsc.io/sampler v1.3.1
{
"Path": "rsc.io/sampler",
"Version": "v1.3.1",
"Error": "rsc.io/[email protected]: invalid version: unknown revision v1.3.1"
}
```
### What did you expect to see?
The fetch operation is actually failing because the fetch operation can't validate the certificate injected by the TLS MiTM decryption. Verified this by adding the root certificate to the trust store and running the same command again:
```
# wget -qO- http://{URL_FOR_CERT} >> /etc/ssl/certs/ca-certificates.crt
# GOPROXY=direct go mod download -json rsc.io/[email protected]
go: finding rsc.io/sampler v1.3.1
{
"Path": "rsc.io/sampler",
"Version": "v1.3.1",
"Info": "/go/pkg/mod/cache/download/rsc.io/sampler/@v/v1.3.1.info",
"GoMod": "/go/pkg/mod/cache/download/rsc.io/sampler/@v/v1.3.1.mod",
"Zip": "/go/pkg/mod/cache/download/rsc.io/sampler/@v/v1.3.1.zip",
"Dir": "/go/pkg/mod/rsc.io/[email protected]",
"Sum": "h1:F0c3J2nQCdk9ODsNhU3sElnvPIxM/xV1c/qZuAeZmac=",
"GoModSum": "h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA="
}
```
I would expect the original error to state that it could not determine the version because the network call it made could not validate the certificate -- because the error didn't make this clear, it took trial-and-error debugging to determine that the TLS decryption policy was the cause for this failure.
### What did you see instead?
Error that did not describe the root cause:
```
{
"Path": "rsc.io/sampler",
"Version": "v1.3.1",
"Error": "rsc.io/[email protected]: invalid version: unknown revision v1.3.1"
}
``` | help wanted,NeedsFix,modules | low | Critical |
509,389,713 | flutter | Account for null values in `AnimatedPositioned` | I was using animated positioned an I wanted to move a widget from the top of a stack to the bottom. I was using top: 0, bottom: null and then setting the state to top: null, bottom:0. This made the widget move, but no animation. I'm told that since it's interpolation between the values of the old position and new, it can't have null values, since that wouldn't make sense.
This makes since with that explanation, but it doesn't from an outside view. Could the widget be a little "smarter" and determine its relative position and use that for interpolation rather than the values **if** interpolation from a null value? | c: new feature,framework,a: animation,c: proposal,P3,team-framework,triaged-framework | low | Major |
509,401,290 | pytorch | No in-place version of where() | ## π Feature
There is no way to perform the functionality of `torch.where()` in-place. This feature would either add a `.where_()` method to `Tensor` or an `out` parameter to the existing `torch.where()`, or both.
## Motivation
All of the usual reasons for doing operations in-place.
## Pitch
As stated above, add a `.where_()` method to `Tensor` or an `out` parameter to the existing `torch.where()`.
## Alternatives
One could use the out-of-place `torch.where()` for a less efficient alternative.
Note that the `.masked_scatter_()` method does not have the same functionality as an in-place `where()`.
| triaged,OSS contribution wanted,actionable,module: sorting and selection,function request | medium | Major |
509,412,019 | go | runtime: unexpected return pc for os/signal.loop called from 0x0 | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
go version go1.13 linux/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</summary><br><pre>
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/root/.cache/go-build"
GOENV="/root/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build556391308=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
I'm building a module which is supposed to work with another program (https://github.com/heroiclabs/nakama). The program runs fine as long as I don't load the module and crashes with below error while loading the module.
The program even starts loading the module (I know it because I can see the logs from module) but crashes instantly.
### What did you expect to see?
Not crash
### What did you see instead?
```
{"level":"warn","ts":"2019-10-19T06:03:25.728Z","msg":"WARNING: insecure default parameter value, change this for production!","param":"console.signing_key"}
{"level":"info","ts":"2019-10-19T06:03:25.730Z","msg":"Nakama starting"}
{"level":"info","ts":"2019-10-19T06:03:25.731Z","msg":"Node","name":"nakama-node-1","version":"2.7.0+d5e0b5bb","runtime":"go1.13","cpu":1,"proc":1}
{"level":"info","ts":"2019-10-19T06:03:25.731Z","msg":"Data directory","path":"/nakama/data"}
{"level":"info","ts":"2019-10-19T06:03:25.732Z","msg":"Database connections","dsns":["nakama:[email protected]:5432/nakama"]}
{"level":"debug","ts":"2019-10-19T06:03:25.733Z","msg":"Complete database connection URL","raw_url":"postgresql://nakama:[email protected]:5432/nakama?sslmode=disable"}
{"level":"info","ts":"2019-10-19T06:03:25.744Z","msg":"Database information","version":"PostgreSQL 11.5 on x86_64-pc-linux-gnu, compiled by gcc (Debian 7.3.0-5) 7.3.0, 64-bit"}
{"level":"info","ts":"2019-10-19T06:03:25.750Z","msg":"Initializing leaderboard rank cache"}
{"level":"info","ts":"2019-10-19T06:03:25.751Z","msg":"Leaderboard rank cache initialization completed successfully","cached":[],"skipped":[]}
{"level":"info","ts":"2019-10-19T06:03:25.752Z","msg":"Initialising runtime","path":"/nakama/data/modules"}
{"level":"info","ts":"2019-10-19T06:03:25.752Z","msg":"Initialising runtime event queue processor"}
{"level":"info","ts":"2019-10-19T06:03:25.753Z","msg":"Runtime event queue processor started","size":8192,"workers":8}
{"level":"info","ts":"2019-10-19T06:03:25.754Z","msg":"Initialising Go runtime provider","path":"/nakama/data/modules"}
{"level":"info","ts":"2019-10-19T06:03:25.794Z","msg":"My module"}
{"level":"info","ts":"2019-10-19T06:03:25.795Z","msg":"env variables%!(EXTRA map[string]string=map[env:staging])"}
runtime: unexpected return pc for os/signal.loop called from 0x0
stack: frame={sp:0xc00005e7c0, fp:0xc00005e7e0} stack=[0xc00005e000,0xc00005e800)
000000c00005e6c0: 0000000000000000 0000000000000000
000000c00005e6d0: 0000000000000000 0000000000a04046 <runtime.futexsleep+70>
000000c00005e6e0: 00000000029a7c00 0000000000000080
000000c00005e6f0: 0000000000000000 0000000000000000
000000c00005e700: 0000000000000000 000000c00005e768
000000c00005e710: 000000c000001980 0000000000000000
000000c00005e720: 000000c00005e758 00000000009e3286 <runtime.notetsleep_internal+134>
000000c00005e730: 00000000029a7c00 0000000000000000
000000c00005e740: 0000000000000000 0000000000000000
000000c00005e750: 0000000000000000 0000000000000000
000000c00005e760: 0000000000000000 0000000000000000
000000c00005e770: 0000000000000000 0000000000000000
000000c00005e780: 0000000000000000 0000000000000000
000000c00005e790: 0000000000a1d57c <os/signal.signal_recv+156> 00000000029a7c00
000000c00005e7a0: ffffffffffffffff 0000000000000000
000000c00005e7b0: 000000c00005e7d0 0000000000d0f0e2 <os/signal.loop+34>
000000c00005e7c0: <0000000000000000 0000000000000000
000000c00005e7d0: 0000000000000000 !0000000000000000
000000c00005e7e0: >0000000000000000 0000000000000000
000000c00005e7f0: 0000000000000000 0000000000000000
fatal error: unknown caller pc
runtime stack:
runtime.throw(0x1ac7719, 0x11)
runtime/panic.go:774 +0x72
runtime.gentraceback(0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0xc000001980, 0x0, 0x0, 0x7fffffff, 0x7ffdfd5a6340, 0x0, 0x0, ...)
runtime/traceback.go:273 +0x19e5
runtime.scanstack(0xc000001980, 0xc00004b270)
runtime/mgcmark.go:711 +0x15d
runtime.scang(0xc000001980, 0xc00004b270)
runtime/proc.go:886 +0x1e3
runtime.markroot.func1()
runtime/mgcmark.go:221 +0x6d
runtime.markroot(0xc00004b270, 0xb)
runtime/mgcmark.go:202 +0x2f3
runtime.gcDrain(0xc00004b270, 0xb)
runtime/mgcmark.go:915 +0x110
runtime.gcBgMarkWorker.func2()
runtime/mgc.go:1925 +0x185
runtime.systemstack(0xa332a4)
runtime/asm_amd64.s:370 +0x66
runtime.mstart()
runtime/proc.go:1146
goroutine 9 [GC worker (idle)]:
runtime.systemstack_switch()
runtime/asm_amd64.s:330 fp=0xc00005ff60 sp=0xc00005ff58 pc=0xa333a0
runtime.gcBgMarkWorker(0xc00004a000)
runtime/mgc.go:1891 +0x1bd fp=0xc00005ffd8 sp=0xc00005ff60 pc=0x9f472d
runtime.goexit()
runtime/asm_amd64.s:1357 +0x1 fp=0xc00005ffe0 sp=0xc00005ffd8 pc=0xa35471
created by runtime.gcBgMarkStartWorkers
runtime/mgc.go:1785 +0x77
goroutine 1 [runnable]:
bytes.makeSlice(0x902, 0x0, 0x0, 0x0)
bytes/buffer.go:229 +0x77
bytes.(*Buffer).grow(0xc0007321e0, 0x902, 0x1a0c740)
bytes/buffer.go:142 +0x15b
bytes.(*Buffer).Write(0xc0007321e0, 0xc000723500, 0x902, 0x903, 0x18dce00, 0x1a0c740, 0x1)
bytes/buffer.go:172 +0xdd
bytes.(*Reader).WriteTo(0xc0007321b0, 0x1fbc5e0, 0xc0007321e0, 0x7f097c77fba0, 0xc0007321b0, 0x7f097b294601)
bytes/reader.go:144 +0xa1
io.copyBuffer(0x1fbc5e0, 0xc0007321e0, 0x1fbc620, 0xc0007321b0, 0x0, 0x0, 0x0, 0xc02f80ac1f, 0x2f80ac1f7b65d9bc, 0xc0003ba898)
io/io.go:384 +0x34f
io.Copy(...)
io/io.go:364
github.com/gobuffalo/packd.(*virtualFile).write(0xc000725880, 0x1a0c740, 0xc0007321b0, 0x0, 0xc0003ba8f8, 0x7f097b294d9a)
github.com/gobuffalo/[email protected]/file.go:76 +0x2e5
github.com/gobuffalo/packd.buildFile(0xc0003867e0, 0x13, 0x1fbc620, 0xc0007321b0, 0xc000620d80, 0xc000732150, 0xc000723500)
github.com/gobuffalo/[email protected]/file.go:121 +0xef
github.com/gobuffalo/packd.NewFile(...)
github.com/gobuffalo/[email protected]/file.go:97
github.com/gobuffalo/packr.Box.find(0x7f097ba75f64, 0x6, 0xc000398c00, 0x30, 0xc000620d80, 0xc000732150, 0xc0003867e0, 0x13, 0xc0003baa90, 0x7f097b364e66, ...)
github.com/gobuffalo/[email protected]/box.go:160 +0x2c6
github.com/gobuffalo/packr.Box.Find(0x7f097ba75f64, 0x6, 0xc000398c00, 0x30, 0xc000620d80, 0x0, 0xc0003867e0, 0x13, 0xc0003bab50, 0x7f097b75fa00, ...)
github.com/gobuffalo/[email protected]/box.go:108 +0x76
getmega.com/multiplay/pkg/thirdparty/google.readFile(...)
getmega.com/multiplay@/pkg/thirdparty/google/default_application_credentials.go:15
getmega.com/multiplay/pkg/thirdparty/google.SetupDefaultCredentials(0xc000619440)
getmega.com/multiplay@/pkg/thirdparty/google/default_application_credentials.go:22 +0x105
plugin/unnamed-979dcbb6301160304f8e5e9973563ccbab186d50.InitModule(0x1feb900, 0xc000620600, 0x20001c0, 0xc000010b20, 0xc00003e540, 0x200fe20, 0xc0005680e0, 0x20145c0, 0xc00003e6c0, 0xc0006d4380, ...)
getmega.com/multiplay@/init_module.go:35 +0xbc
github.com/heroiclabs/nakama/v2/server.NewRuntimeProviderGo(0xc0000fd860, 0xc0000fd860, 0xc00003e540, 0x28bfb80, 0x2001fe0, 0xc0005fe1e0, 0xc000562410, 0x1ffc760, 0xc00001fd40, 0x1ff5bc0, ...)
github.com/heroiclabs/nakama/v2@/server/runtime_go.go:1830 +0xc11
github.com/heroiclabs/nakama/v2/server.NewRuntime(0xc0000fd860, 0xc0000fd860, 0xc00003e540, 0x28bfb80, 0x2981af0, 0x2001fe0, 0xc0005fe1e0, 0xc000562410, 0x1ffc760, 0xc00001fd40, ...)
github.com/heroiclabs/nakama/v2@/server/runtime.go:442 +0x6a8
main.main()
main.go:130 +0x1356
goroutine 6 [syscall (scan)]:
os/signal.signal_recv(0x0)
runtime/sigqueue.go:147 +0x9c
runtime: unexpected return pc for os/signal.loop called from 0x0
stack: frame={sp:0xc00005e7c0, fp:0xc00005e7e0} stack=[0xc00005e000,0xc00005e800)
000000c00005e6c0: 0000000000000000 0000000000000000
000000c00005e6d0: 0000000000000000 0000000000a04046 <runtime.futexsleep+70>
000000c00005e6e0: 00000000029a7c00 0000000000000080
000000c00005e6f0: 0000000000000000 0000000000000000
000000c00005e700: 0000000000000000 000000c00005e768
000000c00005e710: 000000c000001980 0000000000000000
000000c00005e720: 000000c00005e758 00000000009e3286 <runtime.notetsleep_internal+134>
000000c00005e730: 00000000029a7c00 0000000000000000
000000c00005e740: 0000000000000000 0000000000000000
000000c00005e750: 0000000000000000 0000000000000000
000000c00005e760: 0000000000000000 0000000000000000
000000c00005e770: 0000000000000000 0000000000000000
000000c00005e780: 0000000000000000 0000000000000000
000000c00005e790: 0000000000a1d57c <os/signal.signal_recv+156> 00000000029a7c00
000000c00005e7a0: ffffffffffffffff 0000000000000000
000000c00005e7b0: 000000c00005e7d0 0000000000d0f0e2 <os/signal.loop+34>
000000c00005e7c0: <0000000000000000 0000000000000000
000000c00005e7d0: 0000000000000000 !0000000000000000
000000c00005e7e0: >0000000000000000 0000000000000000
000000c00005e7f0: 0000000000000000 0000000000000000
os/signal.loop()
os/signal/signal_unix.go:23 +0x22
created by os/signal.init.0
os/signal/signal_unix.go:29 +0x41
goroutine 8 [select]:
go.opencensus.io/stats/view.(*worker).start(0xc00003ca50)
[email protected]/stats/view/worker.go:154 +0x100
created by go.opencensus.io/stats/view.init.0
[email protected]/stats/view/worker.go:32 +0x57
goroutine 30 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 31 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 25 [select]:
database/sql.(*DB).connectionCleaner(0xc00003e540, 0x34630b8a000)
database/sql/sql.go:950 +0x370
created by database/sql.(*DB).startCleanerLocked
database/sql/sql.go:937 +0xa7
goroutine 29 [select]:
github.com/heroiclabs/nakama/v2/server.StartLocalTracker.func1(0xc0005dbdd0)
github.com/heroiclabs/nakama/v2@/server/tracker.go:191 +0xeb
created by github.com/heroiclabs/nakama/v2/server.StartLocalTracker
github.com/heroiclabs/nakama/v2@/server/tracker.go:188 +0x1cb
goroutine 15 [select]:
github.com/blevesearch/bleve/index.AnalysisWorker(0xc000396c60, 0xc000396cc0)
github.com/blevesearch/[email protected]/index/analysis.go:102 +0x102
created by github.com/blevesearch/bleve/index.NewAnalysisQueue
github.com/blevesearch/[email protected]/index/analysis.go:94 +0xc8
goroutine 16 [select]:
github.com/blevesearch/bleve/index.AnalysisWorker(0xc000396c60, 0xc000396cc0)
github.com/blevesearch/[email protected]/index/analysis.go:102 +0x102
created by github.com/blevesearch/bleve/index.NewAnalysisQueue
github.com/blevesearch/[email protected]/index/analysis.go:94 +0xc8
goroutine 18 [select]:
github.com/blevesearch/bleve/index.AnalysisWorker(0xc000396c60, 0xc000396cc0)
github.com/blevesearch/[email protected]/index/analysis.go:102 +0x102
created by github.com/blevesearch/bleve/index.NewAnalysisQueue
github.com/blevesearch/[email protected]/index/analysis.go:94 +0xc8
goroutine 19 [select]:
github.com/blevesearch/bleve/index.AnalysisWorker(0xc000396c60, 0xc000396cc0)
github.com/blevesearch/[email protected]/index/analysis.go:102 +0x102
created by github.com/blevesearch/bleve/index.NewAnalysisQueue
github.com/blevesearch/[email protected]/index/analysis.go:94 +0xc8
goroutine 22 [select]:
database/sql.(*DB).connectionOpener(0xc00003e540, 0x1feb840, 0xc000618a00)
database/sql/sql.go:1052 +0xe8
created by database/sql.OpenDB
database/sql/sql.go:722 +0x15d
goroutine 23 [select]:
database/sql.(*DB).connectionResetter(0xc00003e540, 0x1feb840, 0xc000618a00)
database/sql/sql.go:1065 +0xfb
created by database/sql.OpenDB
database/sql/sql.go:723 +0x193
goroutine 32 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 33 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 34 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 35 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 36 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
goroutine 37 [select]:
github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue.func1(0xc0006204e0)
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:43 +0xda
created by github.com/heroiclabs/nakama/v2/server.NewRuntimeEventQueue
github.com/heroiclabs/nakama/v2@/server/runtime_event.go:41 +0x100
``` | OS-Windows,NeedsInvestigation | low | Critical |
509,451,369 | TypeScript | TS 3.7: optional chaining output is introducing a local variable | **TypeScript Version:** 3.7.x-dev.201xxxxx
**Search Terms:**
optional chaining
**Code**
```ts
function isTrue(something: { value: boolean} | undefined): boolean {
return something?.value === true;
}
```
**Expected behavior:**
Output:
```js
"use strict";
function isTrue(something) {
return (something === null || something === void 0 ? void 0 : something.value) === true;
}
```
**Actual behavior:**
Actual Output:
```js
"use strict";
function isTrue(something) {
var _a;
return ((_a = something) === null || _a === void 0 ? void 0 : _a.value) === true;
}
``` | Suggestion,Experience Enhancement | low | Minor |
509,483,619 | terminal | 'fontFace' not working for any profile after system reboot. | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
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 explanation or engagement.
3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number).
4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement.
5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement.
All good? Then proceed!
-->
<!--
This bug tracker is monitored by Windows Terminal development team and other technical folks.
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to [email protected], referencing this GitHub issue.
If this is an application crash, please also provide a Feedback Hub submission link so we can find your diagnostic data on the backend. Use the category "Apps > Windows Terminal (Preview)" and choose "Share My Feedback" after submission to get the link.
Please use this form and describe your issue, concisely but precisely, with as much detail as possible.
-->
# Environment
- Microsoft Windows [Version 10.0.18362.418]
- Windows Terminal (Preview) Version: 0.5.2762.0
- Ubuntu subsystem with Oh My Zsh using the agnoster theme with Powerline Fonts installed.
# Steps to reproduce
1. Setup Windows Terminal (With Ubuntu subsystem)
2. Set the `fontFace` for various profiles (Tested with powershell, cmd and Ubuntu WSL)
Note, that everything was working as intended up to here.
3. Restart Windows.
# Expected behavior
The font setting being applied:


<!-- A description of what you're expecting, possibly containing screenshots or reference material. -->
# Actual behavior
After restarting Windows `fontFace` is being ignored:


# Additional Info
My current profiles.json: [profiles.txt](https://github.com/microsoft/terminal/files/3746987/profiles.txt) | Resolution-External,Area-Rendering,Issue-Bug,Product-Terminal,Tracking-External | high | Critical |
509,493,451 | TypeScript | TS 3.7: unlike `x is T`, `asserts x is T` cannot close over generics defined in outer scopes | **TypeScript Version:** 3.7.0-dev.20191016
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
asserts, asserts return, asserts higher order, asserts type, 2775
**Code**
```ts
function literal<T extends keyof any>(lit: T): {
is(value: any): value is T
assert(value: any): asserts value is T
} {
return null as any; // implementation doesn't matter
}
const isHi = literal("hi")
const x: unknown = "test"
if (isHi.is(x)) {
console.log(x) // x is correctly inferred to be 'hi' :)
}
isHi.assert(x); // error: Assertions require every name in the call target to be declared with an explicit type annotation.(2775)
console.log(x); // x should be inferred to be 'hi' here :(
```
**Expected behavior:**
No compile error, `x` is inferred to be `"hi"` on the last line.
**Actual behavior:**
Compile error on `isHi.assert`. `Assertions require every name in the call target to be declared with an explicit type annotation.(2775)`
Construction higher order type guards is possible without problem (as shown in the snippet). This mechanism used heavily in libraries like `io-ts` and `mobx-state-tree`.
However, when trying to extend the latter library with assertion functionality for more convenient control flow, we run into this issue.
We can build `type.is` properly, but not `type.assert`, although they seem to be needing the exact same type / depth of type analysis; if type guards can close over `T`, so should type assertions?
**Playground Link:** [link](http://www.typescriptlang.org/play/?ts=3.7-Beta#code/C4TwDgpgBAggznCAnYcA8AVAfFAvFACgDcBDAGwFcIAuKCgOwGt6B7Ad3oEo8cSFlUUUpWgBLOFAwAoKQDMGAY2CiW9KGVHBk5TFAgAPLfQAmExhBAtZUEvRBYCG4LQydaAbylRvUccXJUtLYgbkIBYhLSPjb8KP4iQXahfIgoEsJUvpFePgD0uTGpzrCxqJhYUgC+UJ7RSBDAFEhq9BRkZDE2dgDcVTIKqnDAWQASonjqmtpkBABEABais5z9g8P6tAzM7Gr4s1pDszKi1gTiYwB0fvqc3LU+A-RwLGQQF2QsAOYEN1D5UPoslABkh6koyCBfPRZMh6sYoMAWFAAOSLZF9KTnUQXFICH6cbp-AqwlhIKDUAirJ4vN4fb43Qn-QFweYsNrwgBGYmhsIg8L4KLRUBYRGQUHmyAgQA)
**Related Issues:**
#34523
| Suggestion,Experience Enhancement | medium | Critical |
509,500,512 | rust | Suggest comparison with binary char when comparing u8 with char literal | Currently attempting to compare a `u8` with a literal `char` gives a generic error about missing trait implementations:
```rust
let mut next: u8;
...
while next != ']' {
```
> can't compare `u8` with `char` no implementation for `u8 == char`
> help: the trait `std::cmp::PartialEq<char>` is not implemented for `u8`
As the comparison is being made between a single, literal char (vs a runtime value or multiple characters), I believe it is safe for a help message suggesting comparing against `b'β¦'` instead.
e.g. something along the lines of
> can't compare `u8` with `char` no implementation for `u8 == char`
> help: did you mean to compare with b'X' instead?
Ideally `X` would be substituted with the actual value that was in the code.
| C-enhancement,T-compiler,A-suggestion-diagnostics | low | Critical |
509,503,096 | go | time: NewTimer firing later if computer sleeps, how to use wall clock? | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
go version go1.11.4 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</summary><br><pre>
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/gabriel/Library/Caches/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/gabriel/go"
GOPROXY=""
GORACE=""
GOROOT="/usr/local/go"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/gj/lr5vqgfn7jj_431xw83k37qc0000gn/T/go-build372524712=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
```
go func() {
timer := time.NewTimer(timeUntilAlarm)
select {
case <-timer.C:
log.WithField("event", event.Summary).Info("Firing alarm for event")
alarmFired <- event
case <-ctx.Done():
// alarm cancelled
timer.Stop()
}
}()
```
### What did you expect to see?
This works until my macbook goes to sleep (macOS) I'm guessing that it's because of the monotonic clock stopping. Is there a way to create a Timer that fires using the wall clock?
I need the alarm to fire at the right time (after x amount of minutes/hours have passed) regardless of whether the computer went into sleep mode in between the time when the timer was created and when it was supposed to fire.
### What did you see instead?
If macbook goes to sleep, timer clock stops and it fires way later than it was supposed to (depending on how long the computer slept) | help wanted,OS-Darwin,NeedsInvestigation | medium | Critical |
509,506,203 | node | --use-strict flag doesn't apply strict mode to script | * Node 12.*:
* Windows 64bit, Debian 64bit:
The `--use-strict` flag doesn't apply strict mode to script.
reproduction:
```
echo a = 1 > test.js && node --use-strict test
```
expected behavior:
`ReferenceError: a is not defined` is thrown.
behavior:
script executes without any issue.
however it works as expected when node is started first and script is called from repl.
<12 versions aren't affected.
```
node --use-strict
Welcome to Node.js v12.12.0.
Type ".help" for more information.
> a = 1
Thrown:
ReferenceError: a is not defined
>
``` | confirmed-bug,v8 engine | low | Critical |
509,508,195 | rust | `dylib` shared libraries will not make public symbols that may be necessary to link inlined code | When a `dylib` crate has a public `inline(always)` functions in it that use, as an implementation, other, private functions, using these public functions from other crates will fail with linkage errors because we fail to "export" the private functions.
An example project can be seen [here](https://gitlab.com/nagisa/sample-example-for-rust-bernacle/tree/master). In this example the `driver` dylib crate privately `extern`s a symbol from a static C library and uses it to implement an `inline(always)` interface/wrapper. The `user` crate then attempts to use the `inline(always)` wrapper, but linking fails with an error such as this:
```
/tmp/user/driver/src/lib.rs:8: undefined reference to `private_extern_symbol'
```
When inspecting the `libdriver.so` we can see that the extern symbol does indeed exist but is "private":
```
0000000000001100 t private_extern_symbol
```
I think we might be un-exporting items too aggressively here. cc @michaelwoerister @oli-obk
Blocks https://github.com/rust-lang/rust/pull/55617
Regression from 1.36.0 (example builds successfully) to 1.37 (example fails to build). | A-linkage,P-medium,T-compiler,regression-from-stable-to-stable,C-bug | low | Critical |
509,515,781 | go | cmd/go: unclear error when server does not provide 'go-import' metadata for a module in a subdirectory | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.1 linux/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</summary><br><pre>
$ go env
GO111MODULE="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/wolf/.cache/go-build"
GOENV="/home/wolf/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/wolf/go"
GOPRIVATE=""
GOPROXY="direct"
GOROOT="/usr/lib/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/wolf/tmp/golang_test/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build652827916=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
Created go module:
```
+$ tree .
.
βββ bar
βββ bar.go
βββ go.mod
1 directory, 2 files
+$ find . -name .git -prune -o -type f -print -exec cat {} \;
./bar/bar.go
package bar
func Bar() string {
return "bar"
}
./bar/go.mod
module git.sr.ht/~graywolf/foo/bar
go 1.13
```
pushed it to the repository (`https://git.sr.ht/~graywolf/foo`) and tried to use it in following program:
```
package main
import (
"fmt"
"git.sr.ht/~graywolf/foo/bar"
)
func main() {
fmt.Println(bar.Bar())
}
```
### What did you expect to see?
```
+$ go run sr.go
bar
```
### What did you see instead?
```
+$ go run sr.go
go: finding git.sr.ht/~graywolf/foo latest
build command-line-arguments: cannot load git.sr.ht/~graywolf/foo/bar: module git.sr.ht/~graywolf/foo@latest (v0.0.0-20191019153505-33a4721605aa) found, but does not contain package git.sr.ht/~graywolf/foo/bar
``` | Documentation,NeedsInvestigation,modules | low | Critical |
509,524,328 | pytorch | LinearOperator Abstraction / Structure-Exploiting LazyTensors for Linear Algebra | ## Feature
Abstraction for lazy evaluation of tensors that can make use of special matrix structure for linear algebra operations, similar to Tensorflow's / scipy's `LinearOperator`.
## Motivation
In many situations, sequences of operations involving tensors can often be expressed and computed without ever instantiating the involved tensors. This can be achieved using lazy evaluation, so that a compiler can optimize the operations (βoperator fusionβ). In the context of linear algebra, the involved (input or intermediate) tensors often have special structure (e.g. diagonal, block diagonal, triangular, Toeplitz, β¦). Exploiting this structure using (semi-)symbolic evaluation and reductions can significantly decrease time and memory complexity, often by many orders of magnitude (see example below).
While TensorFlowβs `LinearOperator` (and to a lesser degree, scipyβs) provide a basic abstraction for implementing such operators, PyTorch does not have this concept. This is a significant shortcoming for researchers whose work involves a lot of linear algebra.
#### General Wishlist
In order for this to be general useful, we should have the following:
- PyTorch autograd functions can accept the operator abstraction
- The operator abstraction accept the same methods as Tensors, with the default implementations being to evaluate the operator and perform standard operations on the materialized tensors.
## Alternatives / 3rd party solutions
Third-party implementations include KeOpsβs LazyTensor, which compiles the symbolic operations (basically a JIT) and GPyTorchβs LazyTensor, which performs reductions in a pair-wise fashion using the PyTorchβs python frontend.
#### Illustration: Simple example using GPyTorch LazyTensor
```
import torch
from gpytorch.lazy import DiagLazyTensor
d = torch.rand(10000)
D = d.diag() # 10000 x 10000 tensor
D_lazy = DiagLazyTensor(d) # same object, but represented only by d
(D @ D).diag() # 1.6 seconds
(D_lazy @ D_lazy).diag() # 0.000027 seconds (D_lazy @ D_lazy is a DiagLazyTensor)
```
Many other operations can similarly be accelerated when exploiting known tensor structure, including matrix decompositions (Cholesky) and spectral operations.
#### Limitations
Both of these solutions have significant shortcomings. KeOps requires setting up an external compiler toolchain (which can be painful), and does not straightforwardly support sparse / structured representations. GPyTorch, being implemented in pure python, incurs overhead that for smaller tensors / simpler operations often outweighs the benefits.
Pyroβs suggested [Funsor](https://github.com/pyro-ppl/funsor) abstraction also addresses the issue, but is much more general in scope (it generalizes the tensor interface to also cover arbitrary functions of multiple variables, where variables may be integers, real numbers or themselves tensors).
## Existing plans for Lazy Tensors
The proposed implementation for lazy tensors in #25753 lays the groundwork for lazy evaluation. However, so far it only deals with the basic dispatch mechanism, not with any actual code optimizations. It should be possible to implement optimization of the involved tensors by manipulating PyTorch Internal Representation generated during the evaluation of the lazy operations.
In order to be able to exploit special structure, it seems that one would need to have certain structured tensor primitives (similar to GPyTorchβs `BlockDiagLazyTensor` or TensorFlowβs `LinearOperatorKronecker`).
@gpleiss, @jacobrgardner, @vishwakftw, @bwasti
cc @ezyang @gchanan @zou3519 @bdhirsh @jbschlosser @anjali411 @Varal7 @jianyuh @nikitaved @pearu @mruberry @heitorschueroff @walterddr @IvanYashchuk @xwang233 @Lezcano @vincentqb @vishwakftw @SsnL | feature,triaged,module: linear algebra,module: lazy | low | Major |
509,557,302 | godot | Bad performance using AnimationTree when multithreaded | Sorry for weird bug report in here, but I do not have time to dig deeper now.
This is for master branch of Friday, October 18 2019.
I have a character scene with AnimationTree (25K poly/160 bones per character), I add 30 characters to main scene playing the same idle animation (random waving mainly) which is set up using AnimationTree. If I enable thread model as "multiple threads" I get 20 FPS and if I set threading model "single safe" I get 60 FPS, no other changes are there.
If I disable AnimationTree I get 60FPS in both cases. Do anybody had the same observation?
I had to disable threads because of this and now performance is normal, so the issue is not in anyway urgent for me, but I just want to let people know. | bug,topic:core,needs testing | low | Critical |
509,620,469 | vue | Symbol-keyed properties non-reactive | ### Version
2.6.10
### Reproduction link
[https://jsfiddle.net/dansebcar/b75n0uw6/16/](https://jsfiddle.net/dansebcar/b75n0uw6/16/)
### Steps to reproduce
- Press update to change each item's name to "b"
### What is expected?
The list re-renders with the new name
### What is actually happening?
The list does not change
---
If we instead define "symbol" as any non-empty string, the expected re-render is observed, so I think the cause is just the parent list (items) is accessed through a symbol.
Nesting the symbol property an additional level (IE in config, rather than directly on data) is necessary to render the list at all; I guess symbols from data aren't directly transferred?
I noticed in the devtools when I pressed "refresh" after mutating the items that I could see the new name, so I assumed something about the way I was setting the property didn't trigger the update, but even Vue.set did not help.
<!-- generated by vue-issues. DO NOT REMOVE --> | feature request | low | Major |
509,621,134 | godot | Updating MeshLib may result in incorrect cell items, unless .import folder is cleaned | **Godot version:** 3.1, 3.1.1, 3.2
**OS/device including version:** Windows 10 64-bit
**Issue description:**
- When you update your existing Mesh Library, by adding / deleting / changing / renaming items; your new MeshLib may have missing / incorrect meshes as well as missing / incorrect texture previews
- A consistent solution to such bugs is to delete .import folder and reimport your 3D file / scene and meshlib
- This seems to affect all versions starting from 3.1 at least
**Steps to reproduce:**
1) Add your working meshlib to a gridmap, test your tiles
2) Update your meshlib, by adding / deleting meshes or by renaming them
3) Test your gridmap again - you may observe missing / incorrect items
4) Delete your .import folder and (maybe) re-create your meshlib - now everything is working as expected | bug,topic:editor,confirmed | low | Critical |
509,638,651 | go | cmd/compile: expected "not used" error | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.1 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/me/.cache/go-build"
GOENV="/home/me/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/me/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build399130454=/tmp/go-build -gno-record-gcc-switches"
GOROOT/bin/go version: go version go1.13.1 linux/amd64
GOROOT/bin/go tool compile -V: compile version go1.13.1
uname -sr: Linux 5.0.0-31-generic
Distributor ID: Ubuntu
Description: Ubuntu 18.04.3 LTS
Release: 18.04
Codename: bionic
/lib/x86_64-linux-gnu/libc.so.6: GNU C Library (Ubuntu GLIBC 2.27-3ubuntu1) stable release version 2.27.
gdb --version: GNU gdb (Ubuntu 8.1-0ubuntu3.1) 8.1.0.20180409-git
</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
https://play.golang.org/p/O_76qweGQ0g
```
package main
func main() {
var x int
x = 7 - x
}
```
### What did you expect to see?
Although x is used in assignment over itself, there is no usage of x, it is nice to get "not used" error for preventing unnecessary computations.
### What did you see instead?
Nothing, run successfully | NeedsInvestigation,compiler/runtime | low | Critical |
509,740,349 | go | x/crypto/ssh: Unable to start subsystem without an exec or shell message | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.3 openbsd/amd64
</pre>
### Does this issue reproduce with the latest release?
It does.
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/stuart/.cache/go-build"
GOENV="/home/stuart/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="openbsd"
GONOPROXY=""
GONOSUMDB=""
GOOS="openbsd"
GOPATH="/home/stuart/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/stuart/.go/1.13.3"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/stuart/.go/1.13.3/pkg/tool/openbsd_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="0"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -fmessage-length=0"
</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
Wrote a little server which implemented an SSH subsystem and tried to write a client to use that subsystem.
A minimal server: http://play.golang.org/p/HtAmPnyMpDl
A minimal client: http://play.golang.org/p/VqSuWARBHJT
### What did you expect to see?
Output from the subsystem
### What did you see instead?
That the session hadn't been started.
When starting a subsystem, a channel is opened and a `subsystem` request is sent with the name of the subsystem. According to [RFC4254](https://tools.ietf.org/html/rfc4254#section-6.5) exactly one of `shell`, `exec`, or `subsystem` requests can succeed per channel, though it doesn't say that only one may be sent. Currently, the subsystem request is sent with session.RequestSubsystem, but there is no way to call the non-exported session.start without calling session.Start (which sends an `exec` request) or session.Shell (which sends a `shell` request). This means that to start subsystem, the server will first receive a `subsystem` request and then an `exec` or `shell` request. Changing session.RequestSubsystem to call session.start (i.e. to parallel session.Shell and session.Start) causes the server to start the subsystem and delivers output to the client.
The OpenSSH client only sends a `subsystem` message. The OpenSSH server replies with false `exec` request following a `subsystem` request. | NeedsInvestigation | low | Critical |
509,755,877 | flutter | Write test for FlutterFragmentActivity in framework devicelab test suite | Write test for FlutterFragmentActivity in framework devicelab test suite
For example, to cover things like this:
https://github.com/flutter/engine/pull/13214 | a: tests,team,framework,engine,a: existing-apps,P2,team-engine,triaged-engine | low | Minor |
509,772,637 | neovim | TUI thread / environment hygiene | @erw7:
> Related to #11259: `gettext()` calls `getenv()` internally, so I think we need the same exclusive control as #11259. However, the TUI thread does not include a `gettext()` call, so only os_getenv() can be called during a `gettext()` call. ISO/IEC 9899:1999 has the following description of `getenv()`.
>
> ```
> The string pointed to shall not be modified by the program, but may
> be overwritten by a subsequent call to the getenv function.
> ```
>
> Therefore, strictly speaking, exclusive control is necessary. I'm wondering if there are any implementations that actually need exclusive control, but should `gettext` be controlled exclusively?
@justinmk:
> wouldn't this problem exist even if we were using gettext + getenv (not
> the os_getenv wrapper) ?
@erw7:
> Regardless of whether or not `os_getenv()` is used, it is necessary to call
> `getenv()`, `setenv()`, and unsetenv() exclusively.
I think we shouldn't worry about this. neovim/neovim#10071 will reduce the need for an extra thread.
Plan:
- we should focus on eliminating the extra thread .
- we should avoid using env vars in the TUI thread.
- we definitely should not use gettext there.
- E.g. `$TERM` could be passed from the main thread, to the TUI thread, from `ui_builtin_start()`.
- We could add `unibi_from_params` which takes parameters instead of checking the environment itself.
| needs:design,environment,tui,has:plan | low | Minor |
509,836,458 | flutter | Flutter Framework assertion errors with showSearch | ## Steps to Reproduce
We use a search page (`package:flutter/src/marterial/search.dart`) that is opened with `showSearch` and uses a custom `SearchDelegate`.
When I type in the search, eventually (sometimes at the first character, sometimes after I typed some more), the app crashes with assertion errors (see logs below). It seems to happen when building the `ListView` for the suggestions.
Everything worked fine with Flutter 1.2.1 before. Problems started with upgrade to 1.9.1+hotfix.4 and remain after upgrade to 1.9.1+hotfix.5.
This is a show stopper for our product. I'll try to come up with a minimal example I can share.
**Target Platform:** iOS, Android
**Target OS version/browser:** iOS 13.1.2, Android 9
**Devices:** Happens only on physical devices (both iPhone and Android phone), not in simulators (neither Android nor iOS)
<details>
<summary>## Logs</summary>
```
[ +27 ms] executing: [/usr/local/Cellar/flutter/stable/] git log -n 1 --pretty=format:%H
[ +38 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 1aedbb1835bd6eb44550293d57d4d124f19901f0
[ ] executing: [/usr/local/Cellar/flutter/stable/] git describe --match v*.*.* --first-parent --long --tags
[ +12 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v1.9.1+hotfix.4-1-g1aedbb1
[ +7 ms] executing: [/usr/local/Cellar/flutter/stable/] git rev-parse --abbrev-ref --symbolic @{u}
[ +11 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [/usr/local/Cellar/flutter/stable/] git ls-remote --get-url origin
[ +10 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +53 ms] executing: [/usr/local/Cellar/flutter/stable/] git rev-parse --abbrev-ref HEAD
[ +13 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +231 ms] executing: ~/Library/Android/sdk/platform-tools/adb devices -l
[ +6 ms] Exit code 0 from: ~/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +10 ms] executing: /usr/local/Cellar/flutter/stable/bin/cache/artifacts/libimobiledevice/idevice_id -h
[ +242 ms] /usr/bin/xcrun simctl list --json devices
[ +118 ms] Artifact Instance of 'AndroidEngineArtifacts' is not required, skipping update.
[ +5 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ +46 ms] Found plugin flutter_secure_storage at ~/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-3.3.1+1/
[ +21 ms] Found plugin path_provider at ~/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/
[ +45 ms] Found plugin flutter_secure_storage at ~/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-3.3.1+1/
[ +13 ms] Found plugin path_provider at ~/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/
[ +42 ms] executing: [~/my-app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1110 ms] Exit code 0 from: /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = <my-user>
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = ~/my-app/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = ~/my-app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = ~/my-app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CCHROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = ~/my-app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.1
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1
DERIVED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = T73BH6C3U9
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = ~/my-app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /usr/local/Cellar/flutter/stable
FLUTTER_TARGET = ~/my-app/lib/main_prod.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" ~/my-app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
HIDE_BITCODE_SYMBOLS = YES
HOME = ~
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = <my-user>
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = ~/my-app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 19A602
MAC_OS_X_VERSION_ACTUAL = 101500
MAC_OS_X_VERSION_MAJOR = 101500
MAC_OS_X_VERSION_MINOR = 1500
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = ~/my-app/build/ios/Release-iphoneos/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = ~/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = ~/my-app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider" -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/usr/local/Cellar/pyenv/1.2.13_1/libexec:/usr/local/opt/node@8/bin:~/.composer/vendor/bin:/usr/local/sbin:~/.pyenv/shims:~/.rbenv/shims:~/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Library/Apple/bin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17A820
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = ~/my-app/build/ios
PODS_CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = ~/my-app/ios/.
PODS_ROOT = ~/my-app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = eu.cqse.pdashApp
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = ~/my-app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = ~/my-app/ios
PROJECT_FILE_PATH = ~/my-app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = ~/my-app/build/ios/Runner.build
PROJECT_TEMP_ROOT = ~/my-app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR_iphoneos13_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_NAME = iphoneos13.1
SDK_NAMES = iphoneos13.1
SDK_PRODUCT_BUILD_VERSION = 17A820
SDK_VERSION = 13.1
SDK_VERSION_ACTUAL = 130100
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 100
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = ~/my-app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = ~/my-app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = ~/my-app/ios
SRCROOT = ~/my-app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = ~/my-app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = ~/my-app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = <my-user>
USER_APPS_DIR = ~/Applications
USER_LIBRARY_DIR = ~/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = <my-user>
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11A1027
XCODE_VERSION_ACTUAL = 1110
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1110
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +56 ms] Launching lib/main_prod.dart on Svenβs iPhone 8 in debug mode...
[ +4 ms] executing: /usr/bin/plutil -convert json -o - ~/my-app/ios/Runner/Info.plist
[ +8 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - ~/my-app/ios/Runner/Info.plist
[ ] {"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleDisplayName":"PDash","UIViewControllerBasedStatusBarAppearance":false,"CFBundlePackageType":"APPL","CFBundleSignature":"????","CFBundleDevelopmentRegion":"en","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleName":"pdash-mobile-app"}
[ +6 ms] executing: /usr/local/Cellar/flutter/stable/bin/cache/artifacts/libimobiledevice/idevicesyslog -u 6df4d490132d1af7b558f761644226a5da8300b5
[ +2 ms] Building Runner.app for 6df4d490132d1af7b558f761644226a5da8300b5
[ +117 ms] executing: [~/my-app/ios/] /usr/bin/xcodebuild -list
[ +845 ms] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
Profile
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +3 ms] executing: [~/my-app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1073 ms] Exit code 0 from: /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = <my-user>
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = ~/my-app/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = ~/my-app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = ~/my-app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CCHROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = ~/my-app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.1
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1
DERIVED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = T73BH6C3U9
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = ~/my-app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /usr/local/Cellar/flutter/stable
FLUTTER_TARGET = ~/my-app/lib/main_prod.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" ~/my-app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
HIDE_BITCODE_SYMBOLS = YES
HOME = ~
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = <my-user>
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = ~/my-app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 19A602
MAC_OS_X_VERSION_ACTUAL = 101500
MAC_OS_X_VERSION_MAJOR = 101500
MAC_OS_X_VERSION_MINOR = 1500
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = ~/my-app/build/ios/Release-iphoneos/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = ~/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = ~/my-app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider" -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/usr/local/Cellar/pyenv/1.2.13_1/libexec:/usr/local/opt/node@8/bin:~/.composer/vendor/bin:/usr/local/sbin:~/.pyenv/shims:~/.rbenv/shims:~/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Library/Apple/bin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17A820
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = ~/my-app/build/ios
PODS_CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = ~/my-app/ios/.
PODS_ROOT = ~/my-app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = eu.cqse.pdashApp
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = ~/my-app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = ~/my-app/ios
PROJECT_FILE_PATH = ~/my-app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = ~/my-app/build/ios/Runner.build
PROJECT_TEMP_ROOT = ~/my-app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR_iphoneos13_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_NAME = iphoneos13.1
SDK_NAMES = iphoneos13.1
SDK_PRODUCT_BUILD_VERSION = 17A820
SDK_VERSION = 13.1
SDK_VERSION_ACTUAL = 130100
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 100
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = ~/my-app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = ~/my-app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = ~/my-app/ios
SRCROOT = ~/my-app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = ~/my-app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = ~/my-app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = <my-user>
USER_APPS_DIR = ~/Applications
USER_LIBRARY_DIR = ~/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = <my-user>
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11A1027
XCODE_VERSION_ACTUAL = 1110
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1110
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +4 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: T73BH6C3U9
[ +1 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '~/my-app/ios/Frameworks'.
[ ] Creating service definitions manifest at '~/my-app/ios/ServiceDefinitions.json'
[ +36 ms] Found plugin flutter_secure_storage at ~/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-3.3.1+1/
[ +12 ms] Found plugin path_provider at ~/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/
[ +15 ms] executing: [~/my-app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1093 ms] Exit code 0 from: /usr/bin/xcodebuild -project ~/my-app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = <my-user>
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = ~/my-app/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = ~/my-app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = ~/my-app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CCHROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = ~/my-app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.1
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1
DERIVED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = T73BH6C3U9
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = ~/my-app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = ~/my-app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /usr/local/Cellar/flutter/stable
FLUTTER_TARGET = ~/my-app/lib/main_prod.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Release-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" ~/my-app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers" "~/my-app/build/ios/Release-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
HIDE_BITCODE_SYMBOLS = YES
HOME = ~
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = <my-user>
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = ~/my-app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 19A602
MAC_OS_X_VERSION_ACTUAL = 101500
MAC_OS_X_VERSION_MAJOR = 101500
MAC_OS_X_VERSION_MINOR = 1500
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = ~/my-app/build/ios/Release-iphoneos/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = ~/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = ~/my-app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider" -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/usr/local/Cellar/pyenv/1.2.13_1/libexec:/usr/local/opt/node@8/bin:~/.composer/vendor/bin:/usr/local/sbin:~/.pyenv/shims:~/.rbenv/shims:~/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Library/Apple/bin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17A820
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = ~/my-app/build/ios
PODS_CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = ~/my-app/ios/.
PODS_ROOT = ~/my-app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = eu.cqse.pdashApp
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = ~/my-app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = ~/my-app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = ~/my-app/ios
PROJECT_FILE_PATH = ~/my-app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = ~/my-app/build/ios/Runner.build
PROJECT_TEMP_ROOT = ~/my-app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR_iphoneos13_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_NAME = iphoneos13.1
SDK_NAMES = iphoneos13.1
SDK_PRODUCT_BUILD_VERSION = 17A820
SDK_VERSION = 13.1
SDK_VERSION_ACTUAL = 130100
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 100
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = ~/my-app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = ~/my-app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = ~/my-app/ios
SRCROOT = ~/my-app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = ~/my-app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = ~/my-app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = ~/my-app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = ~/my-app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = <my-user>
USER_APPS_DIR = ~/Applications
USER_LIBRARY_DIR = ~/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = <my-user>
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11A1027
XCODE_VERSION_ACTUAL = 1110
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1110
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +26 ms] executing: which pod
[ +4 ms] executing: pod --version
[ +577 ms] 1.8.3
[33mWARNING: CocoaPods requires your terminal to be using UTF-8 encoding.
Consider adding the following to ~/.profile:
export LANG=en_US.UTF-8
[0m
Running Xcode build...
[ +6 ms] executing: [~/my-app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug -quiet -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=~/my-app/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO
[+11501 ms] === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with βUse of deprecated Swift 3 @objc inferenceβ logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
[ +10 ms] Xcode build done. 11.5s
[ +1 ms] executing: [~/my-app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug -quiet -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=~/my-app/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[ +830 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug -quiet -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=~/my-app/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = <my-user>
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = ~/my-app/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = ~/my-app/build/ios/Debug-iphoneos
CACHE_ROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CCHROOT = /var/folders/bc/gw57z9dn4rn2v6df7306k9sh0000gn/C/com.apple.DeveloperTools/11.1-11A1027/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = ~/my-app/build/ios/Debug-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = NO
COMPOSITE_SDK_DIRS = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Debug-iphoneos
CONFIGURATION_TEMP_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.1
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1
DERIVED_FILES_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = T73BH6C3U9
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = ~/my-app/build/ios/Debug-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = ~/my-app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /usr/local/Cellar/flutter/stable
FLUTTER_SUPPRESS_ANALYTICS = true
FLUTTER_TARGET = ~/my-app/lib/main_prod.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "~/my-app/build/ios/Debug-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Debug-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" "~/my-app/build/ios/Debug-iphoneos/flutter_secure_storage" "~/my-app/build/ios/Debug-iphoneos/path_provider" "~/my-app/ios/Pods/../.symlinks/flutter/ios" ~/my-app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "~/my-app/build/ios/Debug-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" "~/my-app/build/ios/Debug-iphoneos/flutter_secure_storage/flutter_secure_storage.framework/Headers" "~/my-app/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers"
HIDE_BITCODE_SYMBOLS = YES
HOME = ~
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = <my-user>
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = ~/my-app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 19A602
MAC_OS_X_VERSION_ACTUAL = 101500
MAC_OS_X_VERSION_MAJOR = 101500
MAC_OS_X_VERSION_MINOR = 1500
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = ~/my-app/build/ios/Debug-iphoneos/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = ~/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal
OBJROOT = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider" -framework "Flutter" -framework "flutter_secure_storage" -framework "path_provider"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/usr/local/Cellar/pyenv/1.2.13_1/libexec:/usr/local/opt/node@8/bin:~/.composer/vendor/bin:/usr/local/sbin:~/.pyenv/shims:~/.rbenv/shims:~/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Library/Apple/bin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17A820
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = ~/my-app/build/ios
PODS_CONFIGURATION_BUILD_DIR = ~/my-app/build/ios/Debug-iphoneos
PODS_PODFILE_DIR_PATH = ~/my-app/ios/.
PODS_ROOT = ~/my-app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = eu.cqse.pdashApp
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = ~/my-app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = ~/my-app/ios
PROJECT_FILE_PATH = ~/my-app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_DIR_iphoneos13_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk
SDK_NAME = iphoneos13.1
SDK_NAMES = iphoneos13.1
SDK_PRODUCT_BUILD_VERSION = 17A820
SDK_VERSION = 13.1
SDK_VERSION_ACTUAL = 130100
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 100
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = ~/my-app/build/ios/Debug-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = ~/my-app/ios
SRCROOT = ~/my-app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = ~/my-app/build/ios/Debug-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILES_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILE_DIR = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_ROOT = ~/Library/Developer/Xcode/DerivedData/Runner-dzuluqwjptoxuuetprmxvxsafksw/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = <my-user>
USER_APPS_DIR = ~/Applications
USER_LIBRARY_DIR = ~/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = NO
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = <my-user>
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11A1027
XCODE_VERSION_ACTUAL = 1110
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1110
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
Installing and launching...
[ +253 ms] Debugging is enabled, connecting to observatory
[ +3 ms] executing: /usr/local/Cellar/flutter/stable/bin/cache/artifacts/ios-deploy/ios-deploy --id 6df4d490132d1af7b558f761644226a5da8300b5 --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --start-paused --enable-checked-mode --verify-entry-points
[ +13 ms] [....] Waiting for iOS device to be connected
[ +11 ms] [....] Using 6df4d490132d1af7b558f761644226a5da8300b5 (D201AP, iPhone 8, iphoneos, arm64) a.k.a. 'Svenβs iPhone 8'.
[ ] ------ Install phase ------
[ ] [ 0%] Found 6df4d490132d1af7b558f761644226a5da8300b5 (D201AP, iPhone 8, iphoneos, arm64) a.k.a. 'Svenβs iPhone 8' connected through USB, beginning install
[ +267 ms] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/META-INF/ to device
[ ] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device
[ ] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/_CodeSignature/ to device
[ ] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device
[ ] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 5%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 6%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device
[ ] [ 6%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 6%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Runner to device
[ ] [ 6%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 6%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 7%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device
[ ] [ 7%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 7%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 7%] Copying ~/my-app/build/ios/iphoneos/Runner.app/[email protected] to device
[ ] [ 7%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/ to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib/ to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib/objects-13.0+.nib to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib/runtime.nib to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib/ to device
[ ] [ 8%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib/objects-13.0+.nib to device
[ ] [ 9%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib/runtime.nib to device
[ ] [ 9%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device
[ ] [ 9%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device
[ ] [ 9%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib/ to device
[ ] [ 9%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib/objects-13.0+.nib to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib/runtime.nib to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib/ to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib/objects-13.0+.nib to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib/runtime.nib to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device
[ ] [ 10%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Assets.car to device
[ ] [ 11%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device
[ ] [ 11%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device
[ ] [ 11%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device
[ ] [ 11%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device
[ ] [ 11%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device
[ ] [ 12%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device
[ ] [ 12%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/ to device
[ ] [ 12%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device
[ +10 ms] [ 12%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device
[+2629 ms] [ 18%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device
[ +100 ms] [ 18%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device
[ +181 ms] [ 18%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_mailer.framework/ to device
[ ] [ 19%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_mailer.framework/_CodeSignature/ to device
[ ] [ 19%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_mailer.framework/_CodeSignature/CodeResources to device
[ ] [ 19%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_mailer.framework/Info.plist to device
[ ] [ 19%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_mailer.framework/flutter_mailer to device
[ +27 ms] [ 19%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device
[ +31 ms] [ 20%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device
[ ] [ 20%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device
[ ] [ 20%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device
[ ] [ 20%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device
[ +155 ms] [ 21%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device
[+3438 ms] [ 27%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device
[ ] [ 28%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device
[ ] [ 28%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device
[ ] [ 28%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device
[ ] [ 28%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device
[ +7 ms] [ 28%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/ to device
[ ] [ 29%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/LICENSE to device
[ +75 ms] [ 29%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data to device
[ ] [ 29%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data to device
[ +418 ms] [ 30%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json to device
[ ] [ 30%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin to device
[+3125 ms] [ 36%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/env/ to device
[ ] [ 37%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/env/dev.json to device
[ ] [ 37%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/env/prod.json to device
[ ] [ 37%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/env/local.json to device
[ ] [ 37%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json to device
[ ] [ 37%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/ to device
[ ] [ 38%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/ to device
[ ] [ 38%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/ to device
[ ] [ 38%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf to device
[ ] [ 38%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/ to device
[ ] [ 38%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.ttf to device
[ +23 ms] [ 39%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device
[ ] [ 39%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device
[ +113 ms] [ 39%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/device_info.framework/ to device
[ ] [ 39%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/device_info.framework/_CodeSignature/ to device
[ ] [ 39%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/device_info.framework/_CodeSignature/CodeResources to device
[ ] [ 40%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/device_info.framework/device_info to device
[ +2 ms] [ 40%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/device_info.framework/Info.plist to device
[ ] [ 40%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_secure_storage.framework/ to device
[ ] [ 40%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_secure_storage.framework/_CodeSignature/ to device
[ ] [ 40%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_secure_storage.framework/_CodeSignature/CodeResources to device
[ ] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_secure_storage.framework/flutter_secure_storage to device
[ +1 ms] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_secure_storage.framework/Info.plist to device
[ ] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/fluttertoast.framework/ to device
[ ] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/fluttertoast.framework/_CodeSignature/ to device
[ ] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/fluttertoast.framework/_CodeSignature/CodeResources to device
[ ] [ 41%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/fluttertoast.framework/fluttertoast to device
[ +41 ms] [ 42%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/fluttertoast.framework/Info.plist to device
[ ] [ 42%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device
[+1374 ms] [ 45%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/package_info.framework/ to device
[ ] [ 45%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/package_info.framework/_CodeSignature/ to device
[ ] [ 45%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/package_info.framework/_CodeSignature/CodeResources to device
[ ] [ 45%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/package_info.framework/Info.plist to device
[ ] [ 45%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/package_info.framework/package_info to device
[ ] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/ to device
[ ] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/ to device
[ +22 ms] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/CodeResources to device
[ ] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/path_provider to device
[ ] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/Info.plist to device
[ ] [ 46%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/catcher.framework/ to device
[ ] [ 47%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/catcher.framework/_CodeSignature/ to device
[ ] [ 47%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/catcher.framework/_CodeSignature/CodeResources to device
[ ] [ 47%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/catcher.framework/catcher to device
[ +1 ms] [ 47%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/catcher.framework/Info.plist to device
[ ] [ 47%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_local_notifications.framework/ to device
[ ] [ 48%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_local_notifications.framework/_CodeSignature/ to device
[ ] [ 48%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_local_notifications.framework/_CodeSignature/CodeResources to device
[ ] [ 48%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_local_notifications.framework/flutter_local_notifications to device
[ +23 ms] [ 48%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Frameworks/flutter_local_notifications.framework/Info.plist to device
[ ] [ 48%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device
[ ] [ 49%] Copying ~/my-app/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device
[ ] [ 49%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device
[ ] [ 49%] Copying ~/my-app/build/ios/iphoneos/Runner.app/Info.plist to device
[ ] [ 49%] Copying ~/my-app/build/ios/iphoneos/Runner.app/PkgInfo to device
[ ] [ 49%] Copying ~/my-app/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device
[ +439 ms] [ 52%] CreatingStagingDirectory
[ ] [ 57%] ExtractingPackage
[ ] [ 60%] InspectingPackage
[ +14 ms] [ 60%] TakingInstallLock
[ +35 ms] [ 65%] PreflightingApplication
[ +97 ms] [ 65%] InstallingEmbeddedProfile
[ +3 ms] [ 70%] VerifyingApplication
[+1111 ms] [ 75%] CreatingContainer
[ +6 ms] [ 80%] InstallingApplication
[ +4 ms] [ 85%] PostflightingApplication
[ +3 ms] [ 90%] SandboxingApplication
[ +10 ms] [ 95%] GeneratingApplicationMap
[ +57 ms] [100%] Installed package build/ios/iphoneos/Runner.app
[ +160 ms] ------ Debug phase ------
[ ] Starting debug of 6df4d490132d1af7b558f761644226a5da8300b5 (D201AP, iPhone 8, iphoneos, arm64) a.k.a. 'Svenβs iPhone 8' connected through USB...
[ +830 ms] [ 0%] Looking up developer disk image
[ +23 ms] [ 95%] Developer disk image mounted successfully
[ +337 ms] [100%] Connecting to remote debug server
[ ] -------------------------
[ +30 ms] (lldb) command source -s 0 '/tmp/FC8C4087-3270-4664-9963-C69726BF7220/fruitstrap-lldb-prep-cmds-6df4d490132d1af7b558f761644226a5da8300b5'
[ ] Executing commands in '/tmp/FC8C4087-3270-4664-9963-C69726BF7220/fruitstrap-lldb-prep-cmds-6df4d490132d1af7b558f761644226a5da8300b5'.
[ ] (lldb) platform select remote-ios --sysroot '~/Library/Developer/Xcode/iOS DeviceSupport/13.1.2 (17A860)/Symbols'
[ ] Platform: remote-ios
[ ] Connected: no
[ ] SDK Path: "~/Library/Developer/Xcode/iOS DeviceSupport/13.1.2 (17A860)/Symbols"
[ ] (lldb) target create "~/my-app/build/ios/iphoneos/Runner.app"
[+3637 ms] Current executable set to '~/my-app/build/ios/iphoneos/Runner.app' (arm64).
[ ] (lldb) script fruitstrap_device_app="/private/var/containers/Bundle/Application/EE2141C3-3A90-4C68-8578-A6227B8E7310/Runner.app"
[ +362 ms] (lldb) script fruitstrap_connect_url="connect://127.0.0.1:63920"
[ ] (lldb) script fruitstrap_output_path=""
[ ] (lldb) script fruitstrap_error_path=""
[ ] (lldb) target modules search-paths add /usr "~/Library/Developer/Xcode/iOS DeviceSupport/13.1.2 (17A860)/Symbols/usr" /System "~/Library/Developer/Xcode/iOS DeviceSupport/13.1.2 (17A860)/Symbols/System" "/private/var/containers/Bundle/Application/EE2141C3-3A90-4C68-8578-A6227B8E7310" "~/my-app/build/ios/iphoneos" "/var/containers/Bundle/Application/EE2141C3-3A90-4C68-8578-A6227B8E7310" "~/my-app/build/ios/iphoneos" /Developer "~/Library/Developer/Xcode/iOS DeviceSupport/13.1.2 (17A860)/Symbols/Developer"
[ +19 ms] (lldb) command script import "/tmp/FC8C4087-3270-4664-9963-C69726BF7220/fruitstrap_6df4d490132d1af7b558f761644226a5da8300b5.py"
[ +3 ms] (lldb) command script add -f fruitstrap_6df4d490132d1af7b558f761644226a5da8300b5.connect_command connect
[ ] (lldb) command script add -s asynchronous -f fruitstrap_6df4d490132d1af7b558f761644226a5da8300b5.run_command run
[ ] (lldb) command script add -s asynchronous -f fruitstrap_6df4d490132d1af7b558f761644226a5da8300b5.autoexit_command autoexit
[ ] (lldb) command script add -s asynchronous -f fruitstrap_6df4d490132d1af7b558f761644226a5da8300b5.safequit_command safequit
[ ] (lldb) connect
[ +31 ms] (lldb) run
[ +208 ms] success
[ ] (lldb) safequit
[ +116 ms] Process 1065 detached
[ +48 ms] Application launched on the device. Waiting for observatory port.
[ +3 ms] Checking for advertised Dart observatories...
[+5018 ms] Checking for available port on eu.cqse.pdashApp._dartobservatory._tcp.local
[ +1 ms] Checking for authentication code for eu.cqse.pdashApp._dartobservatory._tcp.local
[ +3 ms] attempting to forward device port 54208 to host port 1024
[ ] executing: /usr/local/Cellar/flutter/stable/bin/cache/artifacts/usbmuxd/iproxy 1024 54208 6df4d490132d1af7b558f761644226a5da8300b5
[+1022 ms] Forwarded port ForwardedPort HOST:1024 to DEVICE:54208
[ +8 ms] Connecting to service protocol: http://127.0.0.1:1024/jVLnkx4JPAE=/
[ +158 ms] Successfully connected to service protocol: http://127.0.0.1:1024/jVLnkx4JPAE=/
[ +2 ms] Sending to VM service: getVM({})
[ +4 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Unknown, operatingSystem: ios, targetCPU: arm64, version: 2.5.0 (Fri Sep 6 20:10:36 2019 +0200) on "ios_arm64", _profilerMode: VM, _nativeZoneMemoryUsage: 0, pid: 1065, startTime: 1571648766916, ...
[ +4 ms] Sending to VM service: getIsolate({isolateId: isolates/291662737189927})
[ +3 ms] Sending to VM service: _flutter.listViews({})
[ +26 ms] Result: {type: Isolate, id: isolates/291662737189927, name: main, number: 291662737189927, _originNumber: 291662737189927, startTime: 1571648766954, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis: 0...
[ +13 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x105810a20, isolate: {type: @Isolate, fixedId: true, id: isolates/291662737189927, name: main.dart$main-291662737189927, number: 291662737189927}}]}
[ +5 ms] DevFS: Creating new filesystem on the device (null)
[ ] Sending to VM service: _createDevFS({fsName: pdash-mobile-app})
[ +15 ms] Result: {type: FileSystem, name: pdash-mobile-app, uri: file:///private/var/mobile/Containers/Data/Application/46AB8868-D131-4ECE-8B22-ED07149BF002/tmp/pdash-mobile-appWr98ci/pdash-mobile-app/}
[ ] DevFS: Created new filesystem on the device (file:///private/var/mobile/Containers/Data/Application/46AB8868-D131-4ECE-8B22-ED07149BF002/tmp/pdash-mobile-appWr98ci/pdash-mobile-app/)
[ +2 ms] Updating assets
[ +114 ms] Scanned through 0 files in 0ms
Syncing files to device Svenβs iPhone 8...
[ +2 ms] Scanning asset files
[ +2 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +9 ms] /usr/local/Cellar/flutter/stable/bin/cache/dart-sdk/bin/dart /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /usr/local/Cellar/flutter/stable/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill.track.dill --packages ~/my-app/.packages --track-widget-creation
[ +5 ms] <- compile package:pdash_mobile_app/main_prod.dart
[ +79 ms] -> result f6c28508-0ef0-4b93-ac84-70602d5b107a
[+1298 ms] -> f6c28508-0ef0-4b93-ac84-70602d5b107a
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/async.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/async_cache.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/async_memoizer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/byte_collector.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/cancelable_operation.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/event_sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/stream.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/stream_consumer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/stream_sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/delegate/stream_subscription.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/future_group.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/lazy_stream.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/null_stream_sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/restartable_timer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/capture_sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/capture_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/error.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/release_sink.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/release_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/result.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/result/value.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/single_subscription_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_completer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_group.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_queue.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_sink_completer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_sink_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_sink_transformer/handler_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_sink_transformer/stream_transformer_wrapper.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_sink_transformer/typed.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_splitter.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_subscription_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/stream_zip.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/subscription_stream.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/typed/stream_subscription.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/typed_stream_transformer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/async-2.3.0/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/bloc-0.11.2/lib/bloc.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/bloc-0.11.2/lib/src/bloc.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/bloc-0.11.2/lib/src/bloc_delegate.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/bloc-0.11.2/lib/src/bloc_supervisor.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/bloc-0.11.2/lib/src/transition.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/lib/ascii.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/lib/charcode.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/lib/html_entity.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/collection.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/algorithms.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/canonicalized_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_iterable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_list.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/comparators.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/empty_unmodifiable_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/wrappers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/functions.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/iterable_zip.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/priority_queue.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/queue_list.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/union_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/unmodifiable_wrappers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/union_set_controller.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/datetime_picker_formfield-0.1.8/lib/datetime_picker_formfield.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/equatable-0.1.10/lib/equatable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/equatable-0.1.10/lib/src/equatable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-0.10.1/lib/flutter_bloc.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-0.10.1/lib/src/bloc_builder.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-0.10.1/lib/src/bloc_listener.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-0.10.1/lib/src/bloc_provider.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-0.10.1/lib/src/bloc_provider_tree.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-3.3.1+1/lib/flutter_secure_storage.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_slidable-0.4.9/lib/flutter_slidable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_slidable-0.4.9/lib/src/widgets/slidable.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/ticker_provider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/automatic_keep_alive.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/flutter_slidable-0.4.9/lib/src/widgets/slide_action.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/http.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/base_client.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/base_request.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/base_response.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/boundary_characters.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/byte_stream.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/client.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/exception.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/io_client.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/multipart_file.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/multipart_file_io.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/multipart_request.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/request.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/response.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/streamed_request.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/streamed_response.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http-0.12.0/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/http_parser.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/authentication_challenge.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/case_insensitive_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/chunked_coding.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/chunked_coding/decoder.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/chunked_coding/encoder.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/http_date.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/media_type.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/scan.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.3/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/date_symbols.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/number_format.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/bidi_formatter.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/bidi_utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/compact_number_format.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format_field.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/number_symbols.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/number_symbols_data.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/date_format_internal.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/plural_rules.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/json_annotation.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/allowed_keys_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/checked_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_converter.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_key.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_literal.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_serializable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_serializable.g.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/json_value.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/json_annotation-2.3.0/lib/src/wrapper_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/meta-1.1.7/lib/meta.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/path.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/characters.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/context.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/internal_style.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/parsed_path.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/path_exception.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/path_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/path_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/style.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/style/posix.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/style/url.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/style/windows.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path-1.6.4/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/lib/path_provider.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/futures.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/rxdart.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/samplers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/futures/as_observable_future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/futures/stream_max_future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/futures/stream_min_future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/futures/wrapped_future.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/observables/connectable_observable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/observables/observable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/observables/replay_observable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/observables/value_observable.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/samplers/buffer_strategy.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/samplers/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/amb.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/combine_latest.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/concat.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/concat_eager.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/defer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/error.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/merge.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/never.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/race.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/range.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/repeat.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/retry.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/retry_when.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/switch_latest.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/timer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/streams/zip.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/subjects/behavior_subject.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/subjects/publish_subject.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/subjects/replay_subject.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/subjects/subject.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/buffer.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/debounce.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/default_if_empty.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/delay.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/dematerialize.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/distinct_unique.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/do.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/exhaust_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/flat_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/flat_map_latest.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/group_by.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/ignore_elements.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/interval.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/map_to.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/materialize.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/of_type.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/on_error_resume.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/on_error_resume_next.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/sample.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/scan.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/skip_until.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/start_with.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/start_with_many.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/switch_if_empty.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/switch_map.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/take_until.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/throttle.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/time_interval.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/timestamp.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/window.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/transformers/with_latest_from.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/utils/composite_subscription.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/utils/notification.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/src/utils/type_token.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/streams.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/subjects.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/rxdart-0.21.0/lib/transformers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/source_span.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/colors.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/file.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/span_with_context.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/highlighter.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/location.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/location_mixin.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/span.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/span_exception.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/span_mixin.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.5/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/eager_span_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/line_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/exception.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/relative_span_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/span_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/string_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/src/utils.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.5/lib/string_scanner.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/src/generated/ascii_glyph_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/src/generated/glyph_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/src/generated/top_level.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/src/generated/unicode_glyph_set.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/term_glyph.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/lib/typed_buffers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/lib/typed_data.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/hash.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/vector_math_64.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/aabb2.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/aabb3.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/colors.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/frustum.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/intersection_result.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix2.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix3.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix4.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/obb3.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/plane.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/quad.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/quaternion.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/ray.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/sphere.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/third_party/noise.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/triangle.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector2.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector3.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector4.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/constants.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/error_helpers.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/opengl.dart
[ ] -> +file://~/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/utilities.dart
[ ] -> +file://~/my-app/lib/VacationValidator.dart
[ ] -> +file://~/my-app/lib/auth/auth_bloc.dart
[ ] -> +file://~/my-app/lib/auth/auth_events.dart
[ ] -> +file://~/my-app/lib/auth/auth_states.dart
[ ] -> +file://~/my-app/lib/auth/login_bloc.dart
[ ] -> +file://~/my-app/lib/auth/login_events.dart
[ ] -> +file://~/my-app/lib/auth/login_states.dart
[ ] -> +file://~/my-app/lib/auth/user_repository.dart
[ ] -> +file://~/my-app/lib/env/env.dart
[ ] -> +file://~/my-app/lib/env/env.g.dart
[ ] -> +file://~/my-app/lib/main_prod.dart
[ ] -> +file://~/my-app/lib/models/EmployeeInfo.dart
[ ] -> +file://~/my-app/lib/models/EmployeeInfo.g.dart
[ ] -> +file://~/my-app/lib/models/PaceInfo.dart
[ ] -> +file://~/my-app/lib/models/PaceInfo.g.dart
[ ] -> +file://~/my-app/lib/models/Project.dart
[ ] -> +file://~/my-app/lib/models/Project.g.dart
[ ] -> +file://~/my-app/lib/models/Settings.dart
[ ] -> +file://~/my-app/lib/models/Settings.g.dart
[ ] -> +file://~/my-app/lib/models/SyncStatus.dart
[ ] -> +file://~/my-app/lib/models/SyncableEntity.dart
[ ] -> +file://~/my-app/lib/models/Task.dart
[ ] -> +file://~/my-app/lib/models/Task.g.dart
[ ] -> +file://~/my-app/lib/models/TimeLogEntry.dart
[ ] -> +file://~/my-app/lib/models/TimeLogEntry.g.dart
[ ] -> +file://~/my-app/lib/models/Vacation.dart
[ ] -> +file://~/my-app/lib/models/Vacation.g.dart
[ ] -> +file://~/my-app/lib/models/data.dart
[ ] -> +file://~/my-app/lib/models/entity.dart
[ ] -> +file://~/my-app/lib/pdash/AppStorage.dart
[ ] -> +file://~/my-app/lib/pdash/AuthEndpoint.dart
[ ] -> +file://~/my-app/lib/pdash/PDashData.dart
[ ] -> +file://~/my-app/lib/pdash/PDashEndpoint.dart
[ ] -> +file://~/my-app/lib/pdash/PDashSyncEndpoint.dart
[ ] -> +file://~/my-app/lib/pdash/TimeLogEndpoint.dart
[ ] -> +file://~/my-app/lib/pdash/sync_bloc.dart
[ ] -> +file://~/my-app/lib/pdash/sync_events.dart
[ ] -> +file://~/my-app/lib/pdash/sync_states.dart
[ ] -> +file://~/my-app/lib/persistence/FileStorage.dart
[ ] -> +file://~/my-app/lib/timelog/duration_text_widget.dart
[ ] -> +file://~/my-app/lib/timelog/task_picker_formfield.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_bloc.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_entry_dialog.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_entry_widget.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_events.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_screen.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_states.dart
[ ] -> +file://~/my-app/lib/timelog/timelog_update_events.dart
[ ] -> +file://~/my-app/lib/timelog/tracking_bloc.dart
[ ] -> +file://~/my-app/lib/timelog/tracking_events.dart
[ ] -> +file://~/my-app/lib/timelog/tracking_states.dart
[ ] -> +file://~/my-app/lib/timelog/tracking_states.g.dart
[ ] -> +file://~/my-app/lib/ui/LoginScreen.dart
[ ] -> +file://~/my-app/lib/ui/MainNavigationScreen.dart
[ ] -> +file://~/my-app/lib/ui/NewVacationDialog.dart
[ ] -> +file://~/my-app/lib/ui/PDashApp.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/binding.dart
[ ] -> +file://~/my-app/lib/ui/SettingsScreen.dart
[ ] -> +file://~/my-app/lib/ui/SplashScreen.dart
[ ] -> +file://~/my-app/lib/ui/UiUtils.dart
[ ] -> +file://~/my-app/lib/ui/VacationScreen.dart
[ ] -> +file://~/my-app/lib/ui/elements/error_box.dart
[ ] -> +file://~/my-app/lib/ui/elements/info_box.dart
[ ] -> +file://~/my-app/lib/ui/elements/loading_indicator_widget.dart
[ ] -> +file://~/my-app/lib/ui/elements/message_box.dart
[ ] -> +file://~/my-app/lib/utils/datetime_provider.dart
[ ] -> +file://~/my-app/lib/utils/datetime_provider_widget.dart
[ ] -> +file://~/my-app/lib/utils/datetime_utils.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/animation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/cupertino.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/foundation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/gestures.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/material.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/painting.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/physics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/rendering.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/scheduler.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/semantics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/services.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/animation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/animation_controller.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/listener_helpers.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/animations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/curves.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/tween.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/animation/tween_sequence.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/action_sheet.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/object.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/box.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/activity_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/app.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/colors.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/constants.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/date_picker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/dialog.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/icons.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/localizations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/nav_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/diagnostics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/page_scaffold.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/picker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/refresh.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/route.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/scrollbar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/segmented_control.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/slider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/switch.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/tab_scaffold.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/tab_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/text_field.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/text_selection.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/text_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/cupertino/thumb_painter.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/_bitfield_io.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/_isolates_io.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/_platform_io.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/annotations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/assertions.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/basic_types.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/bitfield.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/change_notifier.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/collections.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/consolidate_response.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/constants.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/isolates.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/key.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/licenses.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/node.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/observer_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/platform.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/print.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/profile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/serialization.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/synchronous_future.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/foundation/unicode.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/arena.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/constants.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/converter.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/drag.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/drag_details.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/eager.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/events.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/force_press.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/hit_test.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/long_press.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/lsq_solver.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/monodrag.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/mouse_tracking.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/multidrag.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/multitap.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/pointer_router.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/recognizer.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/scale.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/tap.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/team.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/gestures/velocity_tracker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/about.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/animated_icons.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/app.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/app_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/app_bar_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/arc.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/back_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/banner.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/banner_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/bottom_app_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/bottom_app_bar_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/bottom_navigation_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/bottom_sheet.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/bottom_sheet_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/button_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/button_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/card.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/card_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/checkbox.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/checkbox_list_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/chip.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/chip_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/circle_avatar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/color_scheme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/colors.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/constants.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/data_table.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/data_table_source.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/date_picker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/dialog.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/dialog_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/divider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/divider_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/drawer.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/drawer_header.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/dropdown.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/expand_icon.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/expansion_panel.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/expansion_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/feedback.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/flat_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/flexible_space_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/floating_action_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/floating_action_button_location.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/floating_action_button_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/flutter_logo.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/grid_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/grid_tile_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/icon_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/icons.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/ink_decoration.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/ink_highlight.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/ink_ripple.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/ink_splash.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/ink_well.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/input_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/input_decorator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/list_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/material.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/material_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/material_localizations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/material_state.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/mergeable_material.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/outline_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/page.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/page_transitions_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/paginated_data_table.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/popup_menu.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/popup_menu_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/progress_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/radio.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/radio_list_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/raised_button.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/range_slider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/refresh_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/reorderable_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/scaffold.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/scrollbar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/search.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/selectable_text.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/shadows.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/slider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/slider_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/snack_bar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/snack_bar_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/stepper.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/switch.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/switch_list_tile.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tab_bar_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tab_controller.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tab_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tabs.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/text_field.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/text_form_field.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/text_selection.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/text_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/theme_data.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/time.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/time_picker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/toggle_buttons.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/toggle_buttons_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/toggleable.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tooltip.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/tooltip_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/typography.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/material/user_accounts_drawer_header.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/_network_image_io.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/alignment.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/basic_types.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/beveled_rectangle_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/border_radius.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/borders.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/box_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/box_decoration.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/box_fit.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/box_shadow.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/circle_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/clip.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/colors.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/continuous_rectangle_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/decoration.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/decoration_image.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/edge_insets.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/flutter_logo.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/fractional_offset.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/geometry.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/gradient.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/image_cache.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/image_decoder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/image_provider.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/image_resolution.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/image_stream.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/inline_span.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/matrix_utils.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/notched_shapes.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/paint_utilities.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/placeholder_span.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/rounded_rectangle_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/shader_warm_up.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/shape_decoration.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/stadium_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/strut_style.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/text_painter.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/text_span.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/painting/text_style.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/clamped_simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/friction_simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/gravity_simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/spring_simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/tolerance.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/physics/utils.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/animated_size.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/scheduler/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/semantics/binding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/custom_layout.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/custom_paint.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/editable.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/error.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/flex.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/flow.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/image.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/layer.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/list_body.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/list_wheel_viewport.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/paragraph.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/performance_overlay.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/platform_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/proxy_box.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/rotated_box.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/shifted_box.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_fill.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_grid.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_padding.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/sliver_persistent_header.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/stack.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/table.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/table_border.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/texture.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/tweens.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/viewport.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/viewport_offset.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/rendering/wrap.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/scheduler/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/scheduler/priority.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/scheduler/ticker.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/semantics/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/semantics/semantics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/semantics/semantics_event.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/semantics/semantics_service.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/asset_bundle.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/binary_messenger.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/clipboard.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/font_loader.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/haptic_feedback.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/keyboard_key.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/keyboard_maps.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/message_codec.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/message_codecs.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/platform_channel.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/platform_messages.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/platform_views.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/raw_keyboard.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/raw_keyboard_android.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/raw_keyboard_linux.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/raw_keyboard_macos.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/system_channels.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/system_chrome.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/system_navigator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/system_sound.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/text_editing.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/text_formatter.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/services/text_input.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/actions.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/animated_cross_fade.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/animated_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/animated_size.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/animated_switcher.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/annotated_region.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/app.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/async.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/banner.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/basic.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/color_filter.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/constants.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/container.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/debug.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/dismissible.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/drag_target.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_notification.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/editable_text.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/fade_in_image.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/focus_manager.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/focus_scope.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/focus_traversal.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/form.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/framework.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/gesture_detector.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/grid_paper.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/heroes.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/icon.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/icon_data.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/icon_theme.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/icon_theme_data.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/image.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/image_icon.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/implicit_animations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/inherited_model.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/inherited_notifier.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/layout_builder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/localizations.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/media_query.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/modal_barrier.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/navigation_toolbar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/navigator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/nested_scroll_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/notification_listener.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/orientation_builder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/overlay.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/overscroll_indicator.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/page_storage.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/page_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/pages.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/performance_overlay.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/placeholder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/platform_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/preferred_size.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/primary_scroll_controller.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/route_notification_messages.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/routes.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/safe_area.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_activity.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_configuration.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_context.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_controller.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_metrics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_physics.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_position.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_simulation.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scroll_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scrollable.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/scrollbar.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/semantics_debugger.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/shortcuts.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/single_child_scroll_view.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/sliver.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/sliver_layout_builder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/sliver_persistent_header.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/spacer.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/status_transitions.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/table.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/text.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/text_selection.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/texture.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/title.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/transitions.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/unique_widget.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/value_listenable_builder.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/viewport.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/visibility.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/widget_inspector.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/widget_span.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/src/widgets/will_pop_scope.dart
[ ] -> +file:///usr/local/Cellar/flutter/stable/packages/flutter/lib/widgets.dart
[ ] -> f6c28508-0ef0-4b93-ac84-70602d5b107a build/app.dill.track.dill 0
[ ] Updating files
[ +109 ms] DevFS: Sync finished
[ ] Synced 1.0MB.
[ +1 ms] Sending to VM service: _flutter.listViews({})
[ +1 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x105810a20, isolate: {type: @Isolate, fixedId: true, id: isolates/291662737189927, name: main.dart$main-291662737189927, number: 291662737189927}}]}
[ ] <- accept
[ ] Connected to _flutterView/0x105810a20.
[+1143 ms] Sending to VM service: ext.flutter.platformOverride({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.timeDilation({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.debugPaint({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.debugPaintBaselinesEnabled({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.repaintRainbow({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.showPerformanceOverlay({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.debugAllowBanner({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.structuredErrors({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.show({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.trackRebuildDirtyWidgets({isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.trackRepaintWidgets({isolateId: isolates/291662737189927})
[ +3 ms] Sending to VM service: ext.flutter.inspector.structuredErrors({enabled: true, isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.trackRebuildDirtyWidgets({enabled: false, isolateId: isolates/291662737189927})
[ ] Sending to VM service: ext.flutter.inspector.trackRepaintWidgets({enabled: false, isolateId: isolates/291662737189927})
[ +18 ms] Result: {value: iOS, type: _extensionType, method: ext.flutter.platformOverride}
[ +1 ms] Result: {timeDilation: 1.0, type: _extensionType, method: ext.flutter.timeDilation}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.debugPaint}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.debugPaintBaselinesEnabled}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.repaintRainbow}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.showPerformanceOverlay}
[ ] Result: {enabled: true, type: _extensionType, method: ext.flutter.debugAllowBanner}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.structuredErrors}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.show}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.trackRebuildDirtyWidgets}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.trackRepaintWidgets}
[ ] Result: {enabled: true, type: _extensionType, method: ext.flutter.inspector.structuredErrors}
[ ] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.trackRebuildDirtyWidgets}
[ +1 ms] Result: {enabled: false, type: _extensionType, method: ext.flutter.inspector.trackRepaintWidgets}
ββββββββ Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following assertion was thrown building MediaQuery(MediaQueryData(size: Size(375.0, 667.0), devicePixelRatio: 2.0, textScaleFactor: 1.0, platformBrightness: Brightness.light, padding: EdgeInsets.zero, viewPadding: EdgeInsets.zero, viewInsets: EdgeInsets.zero, physicalDepth: 1.7976931348623157e+308, alwaysUse24HourFormat: true, accessibleNavigation: false, disableAnimations: false, invertColors: false, boldText: false)):
'package:flutter/src/rendering/sliver_multi_box_adaptor.dart': Failed assertion: line 263 pos 16: 'child == null || indexOf(child) > index': is not true.
Either the assertion indicates an error in the framework itself, or we should provide substantially more information in this error message to help you determine and fix the underlying cause.
In either case, please report this assertion by filing a bug on GitHub:
https://github.com/flutter/flutter/issues/new?template=BUG.md
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
When the exception was thrown, this was the stack:
#2 RenderSliverMultiBoxAdaptor._debugVerifyChildOrder (package:flutter/src/rendering/sliver_multi_box_adaptor.dart:263:16)
#3 RenderSliverMultiBoxAdaptor.debugChildIntegrityEnabled=.<anonymous closure> (package:flutter/src/rendering/sliver_multi_box_adaptor.dart:238:14)
#4 RenderSliverMultiBoxAdaptor.debugChildIntegrityEnabled= (package:flutter/src/rendering/sliver_multi_box_adaptor.dart:240:6)
#5 SliverMultiBoxAdaptorElement.performRebuild (package:flutter/src/widgets/sliver.dart:1148:20)
#6 SliverMultiBoxAdaptorElement.update (package:flutter/src/widgets/sliver.dart:1084:7)
...
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (2) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
A RenderSliverPadding expected a child of type RenderSliver but received a child of type RenderErrorBox.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (3) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (4) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (5) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (6) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (7) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
ListView file://~/my-app/lib/timelog/task_picker_formfield.dart:234:12
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (8) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (9) Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (10) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (11) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (12) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (13) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (14) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (15) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (16) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (17) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (18) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (19) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (20) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (21) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (22) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (23) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (24) Exception caught by widgets library ββββββββββββββββββββββββββββββββββββββββββββββββββ
'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
User-created ancestor of the error-causing widget was:
MaterialApp file://~/my-app/lib/ui/PDashApp.dart:168:16
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
</details>
```
$> flutter doctor -v
[β] Flutter (Channel stable, v1.9.1+hotfix.5-pre.1, on Mac OS X 10.15 19A602, locale en-US)
β’ Flutter version 1.9.1+hotfix.5-pre.1 at /usr/local/Cellar/flutter/stable
β’ Framework revision 1aedbb1835 (4 days ago), 2019-10-17 08:37:27 -0700
β’ Engine revision b863200c37
β’ Dart version 2.5.0
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
β’ Android SDK at /Users/svenamann/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-28, build-tools 28.0.3
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.1, Build version 11A1027
β’ CocoaPods version 1.8.3
[β] Android Studio (version 3.4)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 34.0.2
β’ Dart plugin version 183.5901
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
[β] IntelliJ IDEA Community Edition (version 2019.2.3)
β’ IntelliJ at /Applications/IntelliJ IDEA CE.app
β’ Flutter plugin version 40.2.4
β’ Dart plugin version 192.7359
[β] Connected device (2 available)
β’ Svenβs iPhone 8 β’ 6df4d490132d1af7b558f761644226a5da8300b5 β’ ios β’ iOS 13.1.2
β’ iPhone 8 β’ D514EB2F-A9E3-49A4-937F-0EF4B5A91EF4 β’ ios β’ com.apple.CoreSimulator.SimRuntime.iOS-13-1 (simulator)
β’ No issues found!
```
| c: crash,framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
509,849,909 | flutter | "Flutter build aar" command not include flutter's dependencies | Got the ARR file with the execution of "flutter build aar". When an android native project depends on this dependency, it crashed. we have two flutter plugins in our flutter module. but I can't find it in ARR file
<details>
<summary>## Logs:</summary>
`catch exception:java.lang.NoClassDefFoundError: Failed resolution of: Lcom/github/adee42/keyboardvisibility/KeyboardVisibilityPlugin;
at io.flutter.plugins.GeneratedPluginRegistrant.registerWith(GeneratedPluginRegistrant.java:15)
at cn.yonghui.hyd.appframe.flutter.FlutterBaseActivity.onCreate(FlutterBaseActivity.java:57)
at android.app.Activity.performCreate(Activity.java:7815)
at android.app.Activity.performCreate(Activity.java:7804)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1318)
at com.qiyukf.unicorn.i.a.callActivityOnCreate(Unknown Source:2)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3347)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3511)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2109)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7537)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:530)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:948)
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.github.adee42.keyboardvisibility.KeyboardVisibilityPlugin" on path: DexPathList[[zip file "/data/app/cn.yonghui.hyd-R7tQQrwqH9F3fpVc6Sssng==/base.apk"],nativeLibraryDirectories=[/data/app/cn.yonghui.hyd-R7tQQrwqH9F3fpVc6Sssng==/lib/arm, /data/app/cn.yonghui.hyd-R7tQQrwqH9F3fpVc6Sssng==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:196)
at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
at io.flutter.plugins.GeneratedPluginRegistrant.registerWith(GeneratedPluginRegistrant.java:15)Β
at cn.yonghui.hyd.appframe.flutter.FlutterBaseActivity.onCreate(FlutterBaseActivity.java:57)Β
at android.app.Activity.performCreate(Activity.java:7815)Β
at android.app.Activity.performCreate(Activity.java:7804)Β
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1318)Β
at com.qiyukf.unicorn.i.a.callActivityOnCreate(Unknown Source:2)Β
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3347)Β
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3511)Β
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)Β
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)Β
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)Β
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2109)Β
at android.os.Handler.dispatchMessage(Handler.java:107)Β
at android.os.Looper.loop(Looper.java:214)Β
at android.app.ActivityThread.main(ActivityThread.java:7537)Β
at java.lang.reflect.Method.invoke(Native Method)Β
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:530)Β
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:948)Β
2019-10-21 17:38:59.017 1680-3293/? W/ActivityTaskManager: Force finishing activity cn.yonghui.hyd/.lab.flutter.FlutterHostActivity`
</details>
<details>
<summary>## Flutter Doctor -V</summary>
```
[β] Flutter (Channel stable, v1.9.1+hotfix.5, on Mac OS X 10.14.5 18F132, locale zh-Hans-CN)
β’ Flutter version 1.9.1+hotfix.5 at /Users/nickhu/Documents/WorkSpace/Flutter/flutter
β’ Framework revision 1aedbb1835 (4 days ago), 2019-10-17 08:37:27 -0700
β’ Engine revision b863200c37
β’ Dart version 2.5.0
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
β’ Android SDK at /Users/nickhu/Documents/WorkSpace/AndroidSdk
β’ Android NDK at /Users/nickhu/Documents/WorkSpace/AndroidSdk/ndk-bundle
β’ Platform android-29, build-tools 28.0.3
β’ ANDROID_HOME = /Users/nickhu/Documents/WorkSpace/AndroidSdk
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.1, Build version 11A1027
β’ CocoaPods version 1.7.2
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 39.0.3
β’ Dart plugin version 191.8423
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] VS Code (version 1.39.1)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 3.5.1
[β] Connected device (1 available)
β’ ONEPLUS A6000 β’ 49bb105f β’ android-arm64 β’ Android 10 (API 29)
```
</details>
| c: crash,tool,t: gradle,P2,team-tool,triaged-tool | low | Critical |
509,868,372 | go | x/mobile: gomobile +6d0d39b incompatible with NDK 20.0.x | ### What version of Go are you using (`go version`)?
<pre>
$ go version
gomobile version +6d0d39b Wed Oct 2 17:59:09 2019 +0000 (android); androidSDK=/opt/android-sdk/platforms/android-29
</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</summary><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/arp/.cache/go-build"
GOENV="/home/arp/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/opt/go-packages"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/lib/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build030033936=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
gomobile clean
gomobile init
### What did you expect to see?
Should not show following error!!
### What did you see instead?
```
gomobile: No compiler for 386 was found in the NDK (tried /opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android16-clang). Make sure your NDK version is >= r19c. Use `sdkmanager --update` to update it.
gomobile bind
gomobile: No compiler for amd64 was found in the NDK (tried /opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android21-clang). Make sure your NDK version is >= r19c. Use `sdkmanager --update` to update it.
```
### Android NDK version
Android NDK r20.0.x | NeedsInvestigation,mobile | low | Critical |
510,134,795 | go | syscall: windows doesn't allow read-only directories | On Windows, right now we map the lack of the writable bit in Unix file permissions to FILE_ATTRIBUTES_READONLY. This sort of works fine, but MSDN says that it's not honored for directories. This has implications for the Go module cache.
I'm not suggesting that we change this mapping to something else right now, but in case things pop up down the line related to this, here's a bug to track it.
cc @bcmills @alexbrainman | Documentation,OS-Windows,NeedsInvestigation,compiler/runtime | low | Critical |
510,135,723 | go | syscall: windows doesn't allow renames for read-only files | On Windows, right now we map the lack of the writable bit in Unix file permissions to FILE_ATTRIBUTES_READONLY. This sort of works fine, but this actually prohibits rename-in-place, whereas it's allowed on Unix.
I'm not suggesting that we change this mapping to something else right now, but in case things pop up down the line related to this, here's a bug to track it.
cc @bcmills @alexbrainman | Documentation,OS-Windows,NeedsFix | low | Critical |
510,181,799 | TypeScript | Create a parser npm module | ## Search Terms
- parser
- parser module
## Suggestion
use the parser part of typescript and create a npm module from it to be used without the whole typescript (a few megabytes)
## Use Cases
parsing typescipt & javascript to AST
## Checklist
My suggestion meets these guidelines:
* [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Suggestion,Awaiting More Feedback | low | Minor |
510,190,244 | flutter | Removed Tab from TabController is still scrollable by swiping in the TabBarView | Hey guys,
I've been writing a tutorial about Dynamic TabBar and TabBarView and I discovered something interesting. It seems somehow Widgets are cached while they are dynamically removed.
Repo - https://github.com/zeromaro/dynamic-tab-bar-view/tree/tbv-basic .
1. Run the app.
2. Try to click on different TabViews - everything works as expected. Tabs and TabViews are switching.
3. Now click on TabView with number **3** and press **-** (minus sign will remove TabView and Removed Widget too). However, if we now **horizontally scroll to left**, we can access last widget, which is removed.
Log below
```
E/flutter (15672): [ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: 'package:flutter/src/material/tab_controller.dart': Failed assertion: line 152 pos 12: 'value >= 0 && (value < length || length == 0)': is not true.
E/flutter (15672): #0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:40:39)
E/flutter (15672): #1 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:36:5)
E/flutter (15672): #2 TabController._changeIndex (package:flutter/src/material/tab_controller.dart:152:12)
E/flutter (15672): #3 TabController.index= (package:flutter/src/material/tab_controller.dart:188:5)
E/flutter (15672): #4 _TabBarViewState._handleScrollNotification (package:flutter/src/material/tabs.dart:1307:19)
E/flutter (15672): #5 NotificationListener._dispatch (package:flutter/src/widgets/notification_listener.dart:127:27)
E/flutter (15672): #6 Notification.visitAncestor (package:flutter/src/widgets/notification_listener.dart:45:20)
E/flutter (15672): #7 ViewportNotificationMixin.visitAncestor (package:flutter/src/widgets/scroll_notification.dart:31:18)
E/flutter (15672): #8 Element.visitAncestorElements (package:flutter/src/widgets/framework.dart:3502:39)
E/flutter (15672): #9 Notification.dispatch (package:flutter/src/widgets/notification_listener.dart:61:13)
E/flutter (15672): #10 ScrollActivity.dispatchScrollEndNotification (package:flutter/src/widgets/scroll_activity.dart:106:63)
E/flutter (15672): #11 ScrollPosition.didEndScroll (package:flutter/src/widgets/scroll_position.dart:670:14)
E/flutter (15672): #12 ScrollPosition.beginActivity (package:flutter/src/widgets/scroll_position.dart:639:9)
E/flutter (15672): #13 ScrollPositionWithSingleContext.beginActivity (package:flutter/src/widgets/scroll_position_with_single_context.dart:116:11)
E/flutter (15672): #14 ScrollPositionWithSingleContext.goIdle (package:flutter/src/widgets/scroll_position_with_single_context.dart:131:5)
E/flutter (15672): #15 ScrollPositionWithSingleContext.goBallistic (package:flutter/src/widgets/scroll_position_with_single_context.dart:150:7)
E/flutter (15672): #16 BallisticScrollActivity._end (package:flutter/src/widgets/scroll_activity.dart:551:15)
E/flutter (15672): #17 _rootRun (dart:async/zone.dart:1120:38)
E/flutter (15672): #18 _CustomZone.run (dart:async/zone.dart:1021:19)
E/flutter (15672): #19 _FutureListener.handleWhenComplete (dart:async/future_impl.dart:161:18)
E/flutter (15672): #20 Future._propagateToListeners.handleWhenCompleteCallback (dart:async/future_impl.dart:648:39)
E/flutter (15672): #21 Future._propagateToListeners (dart:async/future_impl.dart:704:37)
E/flutter (15672): #22 Future._completeWithValue (dart:async/future_impl.dart:522:5)
E/flutter (15672): #23 Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:552:7)
E/flutter (15672): #24 _rootRun (dart:async/zone.dart:1124:13)
E/flutter (15672): #25 _CustomZone.run (dart:async/zone.dart:1021:19)
E/flutter (15672): #26 _CustomZone.runGuarded (dart:async/zone.dart:923:7)
E/flutter (15672): #27 _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:963:23)
E/flutter (15672): #28 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
E/flutter (15672): #29 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
E/flutter (15672):
```
This is first part of discovery.
Second part is that now we have 3 tabs. Originally we had 4 tabs. Let's click **+** sign two times. Second time our UI will overflow.
```
ββββββββ Exception caught by widgets library βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following RangeError was thrown building TabBar(dirty, dependencies: [_LocalizationsScope-[GlobalKey#36d65], _InheritedTheme], state: _TabBarState#bedd5):
RangeError (index): Invalid value: Not in range 0..3, inclusive: 4
User-created ancestor of the error-causing widget was:
AppBar file:///Users/mac/FlutterProject/tutorials/dynamic_tab_bar_view/lib/main.dart:46:15
When the exception was thrown, this was the stack:
#0 List.[] (dart:core-patch/growable_array.dart:147:60)
#1 _TabBarState.build (package:flutter/src/material/tabs.dart:1017:26)
#2 StatefulElement.build (package:flutter/src/widgets/framework.dart:4040:27)
#3 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3934:15)
#4 Element.rebuild (package:flutter/src/widgets/framework.dart:3731:5)
...
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ (2) Exception caught by rendering library βββββββββββββββββββββββββββββββββββββββββββββββββ
A RenderFlex overflowed by 99896 pixels on the bottom.
User-created ancestor of the error-causing widget was:
AppBar file:///Users/mac/FlutterProject/tutorials/dynamic_tab_bar_view/lib/main.dart:46:15
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
I'm not sure it's expected or not.
Flutter Doctor
```
Doctor summary (to see all details, run flutter doctor -v):
[β] Flutter (Channel dev, v1.10.5, on Mac OS X 10.15 19A583, locale en-HK)
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[β] Xcode - develop for iOS and macOS (Xcode 11.1)
[β] Chrome - develop for the web
[β] Android Studio (version 3.5)
[β] VS Code (version 1.39.0)
[β] Connected device (3 available)
β’ No issues found!
```
Cheers | framework,f: material design,f: scrolling,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
510,210,175 | go | cmd/go: build for armv7s with -buildmode=c-archive | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.3 darwin/amd64
</pre>
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GO111MODULE=""
GOARCH="arm"
GOBIN=""
GOCACHE="/Users/vagrant/Library/Caches/go-build"
GOENV="/Users/vagrant/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/usr/local/go/go_packages"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
GOARM="7"
AR="/Library/Developer/CommandLineTools/usr/bin/ar"
CC="/Library/Developer/CommandLineTools/usr/bin/clang"
CXX="/Library/Developer/CommandLineTools/usr/bin/clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-arch armv7s -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk -miphoneos-version-min=10.0"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-arch armv7s -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk -miphoneos-version-min=10.0"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -marm -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/k6/wch_wxzx43z04wmzdf61znqr0000gn/T/go-build140873070=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
Tried to build using the above environment configuration and the result was an archive that was both armv7 and armv7s.
```
nm libvcb.a | grep armv7
libvcb.a(go.o) (for architecture armv7):
libvcb.a(000000.o) (for architecture armv7s):
libvcb.a(000001.o) (for architecture armv7s):
libvcb.a(000002.o) (for architecture armv7s):
libvcb.a(000003.o) (for architecture armv7s):
libvcb.a(000004.o) (for architecture armv7s):
libvcb.a(000005.o) (for architecture armv7s):
libvcb.a(000006.o) (for architecture armv7s):
libvcb.a(000007.o) (for architecture armv7s):
libvcb.a(000008.o) (for architecture armv7s):
libvcb.a(000009.o) (for architecture armv7s):
libvcb.a(000010.o) (for architecture armv7s):
libvcb.a(000011.o) (for architecture armv7s):
libvcb.a(000012.o) (for architecture armv7s):
libvcb.a(000013.o) (for architecture armv7s):
libvcb.a(000014.o) (for architecture armv7s):
libvcb.a(000015.o) (for architecture armv7s):
libvcb.a(000016.o) (for architecture armv7s):
libvcb.a(000017.o) (for architecture armv7s):
libvcb.a(000018.o) (for architecture armv7s):
libvcb.a(000019.o) (for architecture armv7s):
libvcb.a(000020.o) (for architecture armv7s):
libvcb.a(000021.o) (for architecture armv7s):
libvcb.a(000022.o) (for architecture armv7s):
libvcb.a(000023.o) (for architecture armv7s):
libvcb.a(000024.o) (for architecture armv7s):
```
### What did you expect to see?
A fully armv7s archive file.
### What did you see instead?
An armv7s archive file that was both armv7 and armv7s.
I don't see an option for `GOARM` that is `7s`, but that's essentially what i'm looking for.
Related issue that was closed without a response: https://github.com/golang/go/issues/14691 | ExpertNeeded,NeedsInvestigation,arch-arm | low | Critical |
510,272,089 | go | cmd/link: allow asking linker to *not* eliminate a "dead" function | We have some assembly code in our Go binary that is never directly called by any Go code in userspace. (It's intended to be handed to the kernel to execute during a `kexec` in ring 0. Kernel hands execution to this piece of Go assembly, Go assembly hands it to a kernel we're booting.)
Normally, this code would be optimized out of the final binary by the linker. So far, we can get around that with this: https://github.com/u-root/u-root/blob/ac7ae682c648c26a7c90ac73a2a8b4597bdbeb78/pkg/multiboot/internal/trampoline/trampoline_linux_amd64.go#L39
Arguably a hack that will eventually be optimized away by the compiler.
Can we have a directive to not optimize away a piece of code? "//go:nodelete"? This is the assembly in question that shouldn't be optimized away: https://github.com/u-root/u-root/blob/ac7ae682c648c26a7c90ac73a2a8b4597bdbeb78/pkg/multiboot/internal/trampoline/trampoline_linux_amd64.s#L29 | NeedsInvestigation,compiler/runtime | low | Major |
510,325,334 | pytorch | torch.multinominal ignores elements from cumulative distribution | ## π Bug
torch.multinominal for CPU calculates cumulative distribution internally to generate samples. If the exponents of the probabilities in one row have significantly different values (e.g. half < 1e-15 and others > 1e+15) the optimized local cumulative sum does not work as expected. The issue exists because we lose mantissa when calculating cumulative distribution, summarizing large and small numbers, and is not longer monotonically increasing.
Example:
input = [1e+15, 1e-15, 1e-15, 1e-15]
cumsum = [1e+15, 1e+15, 1e+15, 1e+15] //lost of mantissa
random = sum * rand(0, 1) = 1e+15 * rand(0, 1) => always a zero index
so function will never return values in the tail.
cc @VitalyFedyunin | module: cpu,triaged,module: random | low | Critical |
510,344,353 | vscode | OS specific properties in Tasks.json to overwrite build shell doen't work | - VSCode Version: 1.39.2
- OS Version: Windows 10
Steps to Reproduce:
1. Set default shell to `bash` so your build tasks fails as VSCode recently started passing incorrect build path to `bash`
2. Set a build shell which is different than default as you want to build your TypeScript project. `powershell` works.
```JSONC
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"windows": { // this is the only place where VSCode allows to add `windows`
"options": {
"shell": {
"executable": "C:/Windows/System32/WindowsPowershell/v1.0/powershell.exe"
}
}
},
"tasks": [
```
3. Run build and see that it is using original shell, not one defined in `.vscode\tasks.json`
Does this issue occur when all extensions are disabled?: Yes
Options to add `windows:{options:shell:{executable:{"......"}}}` is available in VSCode for all Windows, OSX and Linux, however it doesn't affect build task on Windows:

| feature-request,tasks | low | Major |
510,346,253 | flutter | Migrate android_semantics_testing and android_views to the v2 embedding | There are a few cases where access to `FlutterView` is currently needed.
1. `flutterView.getAccessibilityNodeProvider()` in
https://github.com/flutter/flutter/blob/master/dev/integration_tests/android_semantics_testing/android/app/src/main/java/com/yourcompany/platforminteraction/MainActivity.java#L44
2. Full Flutter view. https://github.com/flutter/flutter/blob/master/dev/integration_tests/android_views/android/app/src/main/java/io/flutter/integration/androidviews/MainActivity.java#L39
These two tests are needed for https://github.com/flutter/flutter/issues/33884 | platform-android,engine,a: existing-apps,P2,team-android,triaged-android | low | Major |
510,353,637 | rust | Document auto traits implemented by the return types of `async fn` | Currently, Rustdoc documents auto-trait impls for types, displaying them along with manually written impls. However, there is currently no way of telling what auto traits are implemented by the `impl Future` type returned by an `async fn`.
I'm not quite sure what the best way of displaying this is. We need to make it clear to users that the auto trait impls apply to opaque return type - not to the function itself, or to the underlying type returned by the future (e.g. the `u8` in `async fn foo() -> u8`). | T-rustdoc,C-enhancement,A-async-await,AsyncAwait-Triaged | low | Minor |
510,357,494 | flutter | Create a way to test Engine on its own | We need a way to create tests against Engine directly. As a shortterm workaround we allow people to call GetEngine() on a Shell which does have test harness code that creates it. Ideally we could just create the Engine on its own to test. | a: tests,engine,P2,team-engine,triaged-engine | low | Minor |
510,407,029 | youtube-dl | [theplatform.eu] video from DigitalTheatre.com | ## Checklist
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.10.22**
- [x] I've checked that all provided URLs are alive and playable in a browser
- [x] I've checked that none of provided URLs violate any copyrights
- [x] I've searched the bugtracker for similar site support requests including closed ones
## Example URLs
- Single video: http://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606
## Description
```
C:\Users\Ardis>youtube-dl -v http://player.theplatform.eu/p/lCpzgC/dt-p/embed/select/media/bcl_3606
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-v', 'http://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606']
[debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252
[debug] youtube-dl version 2019.10.22
[debug] Python version 3.4.4 (CPython) - Windows-10-10.0.18362
[debug] exe versions: none
[debug] Proxy map: {}
[generic] bcl_3606: Requesting header
WARNING: Could not send HEAD request to http://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606: HTTP Error 405: Method Not Allowed
[generic] bcl_3606: Downloading webpage
WARNING: Falling back on generic information extractor.
[generic] bcl_3606: Extracting information
[generic] bcl_3606?autoPlay=false: Requesting header
WARNING: Could not send HEAD request to https://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606?autoPlay=false: HTTP Error 405: Method Not Allowed
[generic] bcl_3606?autoPlay=false: Downloading webpage
WARNING: Falling back on generic information extractor.
[generic] bcl_3606?autoPlay=false: Extracting information
ERROR: Unsupported URL: https://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606?autoPlay=false
Traceback (most recent call last):
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy0p\build\youtube_dl\YoutubeDL.py", line 796, in extract_info
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy0p\build\youtube_dl\extractor\common.py", line 530, in extract
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy0p\build\youtube_dl\extractor\generic.py", line 3353, in _real_extract
youtube_dl.utils.UnsupportedError: Unsupported URL: `https://player.theplatform.eu/p/lCpzgC/dt-vp/embed/select/media/bcl_3606?autoPlay=false
```
| site-support-request | low | Critical |
510,484,345 | godot | Disable properties that should not be used (scale/rotation) (or warn the user) | **Godot version:** 3.2 alpha 2
**OS/device including version:** macOS Mojave
**Issue description:**
I faced the same issue as #5929, reduz said it's not an issue but a limitation of the physic engine, `scale` must not be used with this node (or a rigid in non static mode) and the issue was closed.
This issue is similar but with the rotation property #2129
However those fields are accessible in the UI/Code and nothing warn the user of that situation.
I suggest if possible to disable those properties if they can't be used or at least display a warning/error message to avoid users to face the problem.
| enhancement,discussion,topic:editor | low | Critical |
510,495,286 | flutter | Scaffold BottomSheet Does Not Respect Elevation Property When Using BottomNavigationBar with Elevation | Create a BottomSheet for a Scaffold and show it using showBottomSheet. BottomSheet has an elevation property but his is not respected.
If the Scaffold includes a BottomNavigationBar (which also has an elevation property) then when the BottomSheet is opened, it animates from the bottom of the screen (ie. bottom of the Scaffold) always over the top of the BottomNavigationBar.
Despite BottomSheet having an elevation lower eg. 3, than the elevation of the BottomNavigationBar eg. 10, the BottomSheet always animated OVER the BottomNavigationBar.
Expected behaviour: If elevation of BottomSheet is lower than the BottomNavigationBar elevation, then the opening of the BottomSheet animates BEHIND the BottomNavigationBar.
<details>
<summary>flutter doctor -v</summary>
```
[β] Flutter (Channel stable, v1.9.1+hotfix.5, on Mac OS X 10.14.6 18G103, locale en-AU)
β’ Flutter version 1.9.1+hotfix.5 at /Users/gamma/Documents/flutter
β’ Framework revision 1aedbb1835 (5 days ago), 2019-10-17 08:37:27 -0700
β’ Engine revision b863200c37
β’ Dart version 2.5.0
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
β’ Android SDK at /Users/gamma/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-29, build-tools 29.0.2
β’ ANDROID_HOME = /Users/gamma/Library/Android/sdk
β’ Java binary at: /Applications/Android Studio 3.5 Preview.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.1, Build version 11A1027
β’ CocoaPods version 1.7.5
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio 3.5 Preview.app/Contents
β’ Flutter plugin version 40.2.2
β’ Dart plugin version 191.8593
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] VS Code (version 1.39.2)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 3.5.1
[β] Connected device (1 available)
β’ Nexus 6P β’ CVH7N15A17000241 β’ android-arm64 β’ Android 8.1.0 (API 27)
β’ No issues found!
```
</details>
<details>
<summary>Full example code:</summary>
```
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter BottomSheet',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter NEW BottomSheet Presistent'),
);
}
}
// Article example Home was stateless, but I think I want stateful for now
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
// Index of the current bottom nav bar items, defaults to the second item
int _currentIndex = 1;
static const infoAppIcon = Icon(
Icons.info,
color: Colors.white,
);
// Bottom nav bar items lists in the other screen files
final List<Widget> _children = [
Container(color: Colors.red),
Container(color: Colors.blue),
Container(color: Colors.green),
];
// This function takes in the BottomNavBarItem's tab index and calls setState on our state class
void onTabTapped(int index) {
setState(() {
_currentIndex = index;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
// To stop back button showing as leading icon when bottom sheet is showing
automaticallyImplyLeading: false,
),
// body: Center(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: <Widget>[
// Text(
// 'Main page with Scaffold content',
// ),
// ],
// ),
// ),
body: _children[_currentIndex],
//backgroundColor: Styles.appBgColor,
bottomNavigationBar: BottomNavigationBar(
elevation: 5.0,
onTap: onTabTapped,
currentIndex: _currentIndex,
type: BottomNavigationBarType.fixed,
// TODO Hard coded for now, but can use the canvas color, see doco
// If type is fixed, then does NOT use BottomNavigationBarItem.backgroundColor like if type shifting
backgroundColor: Colors.green,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: infoAppIcon,
title: Text(
"Screen 1",
//style: Styles.bottomNavButtonTextStyle,
),
backgroundColor: Colors.blueGrey,
),
BottomNavigationBarItem(
icon: infoAppIcon,
title: Text(
"Screen 2",
//style: Styles.bottomNavButtonTextStyle,
),
backgroundColor: Colors.blueGrey,
),
BottomNavigationBarItem(
icon: infoAppIcon,
title: Text(
"Screen 3",
//style: Styles.bottomNavButtonTextStyle,
),
backgroundColor: Colors.blueGrey,
),
],
),
floatingActionButton: MyFloatingActionButton(),
);
}
}
class MyFloatingActionButton extends StatefulWidget {
@override
_MyFloatingActionButtonState createState() => _MyFloatingActionButtonState();
}
class _MyFloatingActionButtonState extends State<MyFloatingActionButton> {
bool showFab = true;
PersistentBottomSheetController bottomSheetController; // define it first, will be assigned once bottomSheet created
void showFloatingActionButton(bool value) {
setState(() {
showFab = value;
});
}
@override
Widget build(BuildContext context) {
// return FAB is showFAb state is true, otherwise Container
return (showFab) ? FloatingActionButton(
onPressed: () {
// BottomSheet Opens
// NEW Use showBottomSheet method inside onPressed
// returns a bottomsheet controller when called
bottomSheetController = showBottomSheet(
context: context,
//elevation: 7.0, // use white background to see bigger elevation shadow
backgroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(15),
topRight: Radius.circular(15),
),
),
// Use a builder
builder: (context) => Container(
//color: Colors.blueGrey,
height: 200,
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'Filters',
style:
TextStyle(color: Colors.black, fontFamily: 'ProductSans'),
),
Spacer(),
IconButton(
icon: Icon(Icons.keyboard_arrow_down, color: Colors.black26),
onPressed: () {
// Can close bottom sheet a couple of ways
//Navigator.of(context).pop();
bottomSheetController.close();
},
),
],
),
],
),
),
));
// If bottom sheet is open then do not show FAB, via state
showFloatingActionButton(false);
// Subscribe to Future on bottomSheetController and WHEN it triggers closed,
// then bottom sheet is closed so call method to show FAB again
bottomSheetController.closed.then((value) async {
// Issue when fab flashes as it does not wait for animation of bottom sheet to finish
// So as a workaround, when closing the bottom sheet, we wait a little time before showing fab again
await Future.delayed(const Duration(milliseconds: 300));
showFloatingActionButton(true);
});
},
)
// If not showing fab, show empty container
: Container();
}
}
```
</details> | framework,f: material design,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
510,516,708 | go | cmd/cgo: calling C code without cgo on aix/ppc64 | In CL 198798, @jpap allows Go asm to call/jump directly to a C function defined in a .syso files.
The jump is performed like this `JMP Cfunc(SB)`.
However, on AIX, this JMP doesn't work. A C function has two symbols:
- `Cfunc`, a data symbol with a pointer to `.Cfunc` and a pointer to the TOC symbol (something similar to GOT stuff with ELF format)
- `.Cfunc`, a text symbol which the label in `.text` section.
Therefore, `JMP Cfunc(SB)` is jumping to a data symbol which obviously doesn't work.
The normal 'AIX' code should be `JMP .Cfunc(SB)`.
However, there are several problems with that:
- GO asm doesn't seem able to parse this "." function.
- Special AIX code will be needed for every programs using this stuff.
What's the policy of Go in this case ? Do we want to match C code (ie using `JMP .Cfunc(SB)`) or do we want to be closer to Go code (ie using `JMP Cfunc(SB)`) and afterwards changing ASM generated in `cmd/internal`.
Note that both solution might be added. So people might want to write special ASM code for AIX with "dot" function, etc. While others just want their code to work in all platforms.
| NeedsInvestigation,arch-ppc64x,compiler/runtime | low | Major |
510,518,061 | create-react-app | Include step of adding "ie 11" in package.json developement key when using react-app-polyfill | ### Is your proposal related to a problem?
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
When following instructions on this page: https://github.com/facebook/create-react-app/blob/master/packages/react-app-polyfill/README.md, in my case to make ie11 work in development, I also had to add "ie 11" to my package.json > browserlist> development. This should be documented.
### Describe the solution you'd like
<!--
Provide a clear and concise description of what you want to happen.
-->
In package.json > browserslist > development, add "ie 11" or the appropriate IE version that corresponds to the polyfill in use. You might also, need to delete your node_modules folder and re-install the modules.
### Describe alternatives you've considered
<!--
Let us know about other solutions you've tried or researched.
-->
None.
### Additional context
<!--
Is there anything else you can add about the proposal?
You might want to link to related issues here, if you haven't already.
-->
N/A
| issue: proposal,needs triage | low | Minor |
510,533,436 | pytorch | Patch: Fix for using `clang` to compile CUDA | ## π Patch (bug seemed the closest category I could choose)
If you write custom kernels using the libtorch API and use `clang` rather than `nvcc` to compile the CUDA code, you receive (at least) the following compilation error:
```
In file included from bazel-out/k8-fastbuild/bin/kernels/correlation/src/correlation.cu.cc
:1:
In file included from external/libtorch/torch/include/ATen/ATen.h:5:
In file included from external/libtorch/torch/include/ATen/Context.h:4:
In file included from external/libtorch/torch/include/ATen/Type.h:2:
In file included from external/libtorch/torch/include/ATen/core/Type.h:8:
In file included from external/libtorch/torch/include/c10/core/Scalar.h:9:
In file included from external/libtorch/torch/include/c10/core/ScalarType.h:4:
external/libtorch/torch/include/c10/util/Half.h:53:12: error: no matching function for call to '__uint_as_float'
return __uint_as_float((unsigned int)w);
^~~~~~~~~~~~~~~
external/llvm_toolchain/lib/clang/9.0.0/include/__clang_cuda_device_functions.h:678:18: note: candidate function not viable: call to __device__ function from __host__ function
__DEVICE__ float __uint_as_float(unsigned int __a) {
^
In file included from bazel-out/k8-fastbuild/bin/kernels/correlation/src/correlation.cu.cc:1:
In file included from external/libtorch/torch/include/ATen/ATen.h:5:
In file included from external/libtorch/torch/include/ATen/Context.h:4:
In file included from external/libtorch/torch/include/ATen/Type.h:2:
In file included from external/libtorch/torch/include/ATen/core/Type.h:8:
In file included from external/libtorch/torch/include/c10/core/Scalar.h:9:
In file included from external/libtorch/torch/include/c10/core/ScalarType.h:4:
external/libtorch/torch/include/c10/util/Half.h:69:22: error: no matching function for call to '__float_as_uint'
return (uint32_t)__float_as_uint(f);
^~~~~~~~~~~~~~~
external/llvm_toolchain/lib/clang/9.0.0/include/__clang_cuda_device_functions.h:282:25: note: candidate function not viable: call to __device__ function from __host__ function
__DEVICE__ unsigned int __float_as_uint(float __a) {
```
AFAICT, this is probably due to [clang's CUDA compilation model](http://llvm.org/docs/CompileCudaWithLLVM.html#compilation-models) possibly combined with different inlining behaviour between `nvcc` and `clang`. Note in particular that clang requires "__device__ code is parsed and must be semantically correct, even though weβre not generating code for the device at this time" during the `__host__` compilation, when the `__CUDA_ARCH__` macro will not be defined.
## Proposed (possibly incomplete) solution
For my immediate purposes, this patch file sufficed:
```
--- torch/include/c10/util/Half.h 2019-07-16 13:12:24.000000000 +0100
+++ torch/include/c10/util/Half.h 2019-10-18 17:26:58.703472487 +0100
@@ -44,0 +44,7 @@
+
+#if defined(__clang__) && defined(__CUDA__) && defined(__CUDA_ARCH__)
+#define __DEVICE_HOST_FUNCTION__ __device__ __host__
+#else
+#define __DEVICE_HOST_FUNCTION__
+#endif
@@ -49,7 +49,7 @@
- inline float fp32_from_bits(uint32_t w) {
+ __DEVICE_HOST_FUNCTION__ inline float fp32_from_bits(uint32_t w) {
#if defined(__OPENCL_VERSION__)
return as_float(w);
#elif defined(__CUDA_ARCH__)
return __uint_as_float((unsigned int)w);
#elif defined(__INTEL_COMPILER)
return _castu32_f32(w);
@@ -65,7 +65,7 @@
- inline uint32_t fp32_to_bits(float f) {
+ __DEVICE_HOST_FUNCTION__ inline uint32_t fp32_to_bits(float f) {
#if defined(__OPENCL_VERSION__)
return as_uint(f);
#elif defined(__CUDA_ARCH__)
return (uint32_t)__float_as_uint(f);
#elif defined(__INTEL_COMPILER)
return _castf32_u32(f);
```
## To Reproduce
Steps to reproduce the behavior:
1. Write a non-trivial CUDA kernel using libtorch API
1. Compile with `clang -x cuda ...`(http://llvm.org/docs/CompileCudaWithLLVM.html)
## Expected behavior
Everything works as if you'd compiled with `nvcc`.
## Additional context
I tried this with clang 8.0.0 and 9.0.0 with libtorch at master. This isn't a full PR because a) I haven't found time to run a full test suite to check that I've found all of the bugs and b) I'm not confident enough that my proposed solution is acceptable to the pytorch devs. Hence this Issue instead. If anybody would like to outline for me the steps I should take to create a properly tested PR for this, I'd be happy to (assuming this is something you want to support). Ideally, there should be CI compiles against clang to check for compatibility.
| module: build,module: cuda,triaged | low | Critical |
510,543,316 | svelte | Prevent multiple style recalculations and improve performance by grouping DOM reads and writes | **Is your feature request related to a problem? Please describe.**
When requesting `offsetLeft` (or other DOM reads) in the `beforeUpdate` callback the browser has to recalculate styles when the styles are changed in a further update. See below how this looks in dev tools with multiple components (the second one is without the DOM reads, you can see the recalculation is done after every style has been updated).
I've created a REPL: https://svelte.dev/repl/1977c00357cc496eae5ec1f2a9d23675?version=3.12.1
Multiple recalculations because of DOM reads

Single recalculation

This slows down the frame render.
**Describe the solution you'd like**
If we can schedule all reads before the update happens DOM reads are free (the browser has prepared the frame) and don't cause additional style recalculations. This might require setting up a global draw loop so web components created with Svelte all use the same read/write order.
**Describe alternatives you've considered**
I've moved the DOM read to `afterUpdate` while that does group part of the writes we only get the info after the update while we need it before.

**How important is this feature to you?**
Very. It's super useful to be able to access layout information at the start of the frame (it's free at that moment) and this can be used to for example calculate the width of a component and then layout its children accordingly (simulating component queries) without affecting render performance. I use this extensively in [FilePond](https://pqina.nl/filepond/). | perf | low | Major |
510,620,756 | electron | webContents.reload should accept same options as webContents.loadURL | ### Problem Description
[webContents.loadURL](https://github.com/electron/electron/blob/master/docs/api/web-contents.md#contentsloadurlurl-options) lets you add additional options such as `userAgent` and `extraHeaders`, but [webContents.reload()](https://github.com/electron/electron/blob/master/docs/api/web-contents.md#contentsreload) does not use these options.
Any values set with `loadURL` will not be kept with a reload. For `userAgent` we have `webContents.setUserAgent`, but the other options (`extraHeaders`, `httpReferrer` etc) have no such persistent call.
### Proposed Solution
Ideally `webContents.reload()` should keep and re-use the extra options that `loadURL` was last called with.
### Alternatives Considered
Alternatively, `webContents.reload()` could get the same set of options, and it's up to the user to replicate them.
| enhancement :sparkles:,6-1-x,7-1-x | low | Minor |
510,669,580 | flutter | Listing non platform compatible plugins | ## Use case
When I start adding a new platform like web or desktop to my application I want to know the non-compitable plugins with the new platform
## Proposal
Simply by Using a flutter command to list The Plugins which is not compatible with the targeted platform
Sample
`Flutter plugin -check web
`
Result:
```
Dio 2.0.0 Android - iOS
Suggestion Dio 3.0.0 Android-iOS-Web
```
This command will help too much when a developer investigates to target a new platform too much otherwise he have to search plugin by plugin and debugging.
| c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
510,707,362 | rust | Casting away lifetimes using closures | The following code compiles on stable and nightly. I'm not sure it should as it's effectively casting a `Struct::<'a>` to a `Struct::<'static>` in safe code.
```rust
use std::{any::Any, marker::PhantomData};
fn main() {
bad();
}
fn bad<'a>() -> Struct<'static> {
make_static(|| Struct::<'a>(PhantomData))
}
struct Struct<'a>(PhantomData<&'a ()>);
fn make_static<A, B>(a: A) -> B
where
A: FnOnce0 + 'static,
B: 'static,
{
let boxed: Box<dyn Any + 'static> = Box::new(a.call());
*Box::<dyn Any + 'static>::downcast(boxed).unwrap()
}
trait FnOnce0 {
type Output;
fn call(self) -> Self::Output;
}
impl<F, O> FnOnce0 for F
where
F: FnOnce() -> O,
{
type Output = F::Output;
fn call(self) -> Self::Output {
self()
}
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2bfb6a8f538e4a4c79ffc070cb045f98))
It seems lifetime and type parameters that are used in the closure don't affect the lifetime of the closure itself. I stumbled upon this after noticing that `|| T::default()` is `'static` whereas `T::default()` is [not](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=9d8c8da5dcd7f26696149a16a7e8eae1). | A-lifetimes,A-closures,T-lang,C-bug | low | Critical |
510,725,863 | godot | Hovering over a property in the Inspector for over 1 second causes its tooltip to disappear, then continue to blink on and off [Stardock Fences, Kakaotalk] | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
**Godot version:**
3.1.1 Stable
**OS/device including version:**
Windows 10.0.18362
**Issue description:**
When hovering over a property in the inspector panel, a description pops up for a second, then blinks away, then comes back. This can't be how it was designed.
**Steps to reproduce:**
Open a blank project. Hover over any property in the inspector window. Observe the property description appear for a second, then disappear for a fraction of a second, then reappear.
**Minimal reproduction project:**
Any blank Godot default project.
| bug,platform:windows,topic:porting,confirmed,topic:thirdparty,topic:gui | medium | Critical |
510,751,719 | fastapi | Execute dependencies in parallel instead of sequentially awaiting them | **Is your feature request related to a problem? Please describe.**
FastAPI's Dependency injection system, while extremely useful, tends to run into a problem when several long-running dependencies are needed for a single route, such as with the example below.
```py
from fastapi import Depends, FastAPI
from asyncio import sleep as async_sleep
app = FastAPI()
async def get_big_data():
await async_sleep(5)
return "ππππ"
async def compute_pi():
await async_sleep(5)
return "About 3, I think?"
async def do_nothing_for_a_bit():
await async_sleep(5)
return "Gotta let the CPU spin down for a bit, otherwise it could explode."
@app.get("/do_long_thing")
async def do_long_thing(
big_dep1: str = Depends(get_big_data),
big_dep2: str = Depends(compute_pi),
big_dep3: str = Depends(do_nothing_for_a_bit)
):
return {
'big': big_dep1,
'pi': big_dep2,
'sleep': big_dep3,
}
```
Running that application and thentrying to access `/do_long_thing` takes 15 seconds to load, even though none of those dependencies are reliant on each other and could very well be ran in parallel.
**Describe the solution you'd like**
Don't await coroutines and threadpools here. Collect them into a list instead and gather them.
https://github.com/tiangolo/fastapi/blob/3f9f4a0f8f7f5db50fbdc3157fe692cf4e68e13f/fastapi/dependencies/utils.py#L442-L456
**Describe alternatives you've considered**
Asking that the user take care of running and gathering those dependencies themselves is pretty much the only solution to this problem available right now (that I can see, anyway, there might be another one), which undermines the usefulness of the dependency injection system.
| feature,reviewed | medium | Major |
510,752,150 | go | x/build/cmd/gopherbot: fix Gerrit reviewer email addresses | I have three main email addresses (gmail.com, golang.org, google.com), with three corresponding Chrome identities/Google accounts.
So do many others on the Go team. (Or at least two)
And because I've clicked links to Gerrit reviews while signed into each of the three, Gerrit has helpfully signed me in & made an account for me.
Which then means my name shows up in the autocomplete list for "bradfitz" in three ways.
It's distracting when I get reviews to the wrong email account.
This just bit @ianlancetaylor too.
I realized we could just have a mapping table and make gopherbot fix the reviewers if it sees a wrong one added by mistake.
/cc @dmitshur @andybons @bcmills | help wanted,Builders,NeedsInvestigation,FeatureRequest | low | Minor |
510,763,712 | TypeScript | Stricter Assignability Checks for Overloaded Functions | <!-- π¨ 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, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ
-->
## Search Terms
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
function overload, assignability
## Suggestion
<!-- A summary of what you'd like to see added or changed -->
When a function has overloads, each with a different number of arguments, subtle bugs can occur.
My suggestion is to have extra assignability checks for overloaded methods/functions.
When assigning `A` to `B` the algorithm should be,
1. Is `A` assignable to `B` under the existing assignability rules?
1. Is `A` an overloaded function/method?
1. If it is not, we are done.
1. If it is, we need more checks,
1. Does the assignable overload of `A` have the same number of arguments as `B`?
1. If it does, we are done. (Right? Maybe?)
1. If it doesn't, find all overloads of `A` with the same number of arguments as `B`
1. Is each overload assignable to `B`? If it isn't, we have a compile-time error
## Use Cases
<!--
What do you want to use this for?
What shortcomings exist with current approaches?
-->
Better type safety. I've been bitten by this behaviour regarding overloaded functions/methods in the past, with far more complicated examples. My general advice to people is to avoid overloads as much as possible/at all cost.
If this hole in the type system is fixed, I may not be so averse to overloads... Or I'll probably find something else to gripe about =x
## Examples
The repro below has the following properties,
+ Each overload has a different number of arguments
+ Each overload has a different return type
```ts
function foo(a: number, b: symbol): string;
function foo(a: number): number;
function foo(a: number, b?: symbol): string|number {
if (b == undefined) {
return a;
} else {
return `a:${a},b:${String(b)}`;
}
}
function takesNumCallback(callback: (a: number, b: number) => number) {
const tmp = callback(1, 2);
if (typeof tmp != "number") {
throw new Error("wat");
}
console.log(1 / tmp);
}
//Allowed during compile-time
//But will throw an error during run-time
takesNumCallback(foo);
```
[Playground](http://www.typescriptlang.org/play/?ssl=1&ssc=1&pln=21&pc=23#code/GYVwdgxgLglg9mABMOcAUBDAXIsIC2ARgKYBOANIoTgM4CeRcANgJS1SkxgDmA3AFChIsBMlSYceImTa4CJUgKHR4SFOmxzpFKgH5aDQs1k0OXbgB8pCxAG9+iRDGCI0hRAF4PicABNiwFzEvix2Do6IpMRQIKRIGAKOAL6IxEw0xGERkdGxSAAG2AAkthhJ5NQlAMpmPG4sSfmJiEn8rYLgKqJQGADWxDQAcgQAwhhMTIQYEL1oEOOT0704EloKlNRrMp4AfFukofaOEAimiFD4AA6eiPMTUzNoAIyUAEwszc6uUHSXxHAuC7XACE3gARNYyGDDuFHFAABakOAAd1wxFRAFFSEjSGgwciMFBoc1WsdTsxiAA6JhwbjPRAAenOVw+bX4-AZDIAghMUcFEL5YuZbnArjAmMQALSwfDEDkMgBCICgiGR4qY50RKMQGCQZBxAqFPEi4GlMFl-B6-SGowWD1m6g+QA)
The problem here is that `foo (a : number) : number` is assignable to `(a : number, b : number) => number`, because TS assumes `foo (a : number) : number` will ignore the second argument (`b`).
However, TS is not considering the other overload that has two arguments and is expecting `b : symbol`.
## Checklist
My suggestion meets these guidelines:
* [ ] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
Well, it would break TS code for people currently using overloaded functions/methods unsafely. | Suggestion,Awaiting More Feedback | low | Critical |
510,834,286 | TypeScript | Provide auto-completion on function parameters (TypeScript) | *TypeScript issue template from @mjbvz*
**TypeScript Version**: 3.7.0-dev.20191021
**search terms**
- parameter hints
- signature help
*original report below*
---
<!-- 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/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.39.0
- OS Version: Ubuntu 18.04
Steps to Reproduce:
1. Parameter hints do **not work** if `fn` **is optional**
```ts
type fn = (a: string, b: object) => boolean
type obj = {
fn?: fn
}
const test: obj = {
fn: (/** parameter hints not working */) => true,
}
```
2. Parameter hints do **work** if `fn` is **not optional**
```ts
type obj = {
fn: fn
}
const test: obj = {
fn: (/** parameter hints working */) => true,
}
```
<!-- Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: **Yes**/No | Bug,Domain: Completion Lists | low | Major |
510,850,567 | material-ui | Jest snapshot problem with component Fade | - [x] The issue is present in the latest release.
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Current Behavior π―
When `Fade` component has `in={true}`, Jest fails to render it with message `TypeError: Cannot set property 'webkitTransition' of undefined`
Stack trace:
```
at Object.handleEnter [as onEnter] (node_modules/@material-ui/core/Fade/Fade.js:66:33)
at Transition.performEnter (node_modules/react-transition-group/cjs/Transition.js:282:16)
at Transition.updateStatus (node_modules/react-transition-group/cjs/Transition.js:253:14)
at Transition.componentDidMount (node_modules/react-transition-group/cjs/Transition.js:195:10)
at commitLifeCycles (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:12078:22)
at commitLayoutEffects (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:15276:7)
at HTMLUnknownElement.callCallback (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:11616:14)
at Object.invokeGuardedCallbackDev (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:11665:16)
at invokeGuardedCallback (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:11718:31)
at commitRootImpl (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:15012:9)
at unstable_runWithPriority (node_modules/react-test-renderer/node_modules/scheduler/cjs/scheduler.development.js:815:12)
at runWithPriority (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:2038:10)
at commitRoot (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:14853:3)
at finishSyncRender (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:14346:5)
at performSyncWorkOnRoot (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:14318:9)
at node_modules/react-test-renderer/cjs/react-test-renderer.development.js:2088:24
at unstable_runWithPriority (node_modules/react-test-renderer/node_modules/scheduler/cjs/scheduler.development.js:815:12)
at runWithPriority (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:2038:10)
at flushSyncCallbackQueueImpl (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:2083:7)
at flushSyncCallbackQueue (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:2071:3)
at scheduleUpdateOnFiber (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:13696:9)
at scheduleRootUpdate (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:16931:3)
at updateContainerAtExpirationTime (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:16959:10)
at updateContainer (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:16979:10)
at Object.create (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:17722:5)
at Object.<anonymous>.test (src/components/CircleNumber.test.tsx:14:6)
```
## Expected Behavior π€
Test should be able to render a composite component containing `<Fade in={true}/>`.
## Steps to Reproduce πΉ
Steps:
```
import React from "react";
import renderer from "react-test-renderer";
import { Fade } from "@material-ui/core";
test("Fade should render correctly", () => {
const tree = renderer
.create(
<Fade in={true}>
<div>some text</div>
</Fade>)
.toJSON();
expect(tree).toMatchSnapshot();
});
```
## Context π¦
Snapshot testing with `Jest` as explained here: https://jestjs.io/docs/en/snapshot-testing
## Your Environment π
| Tech | Version |
| ----------- | ------- |
| Material-UI | v4.5.1 |
| React | v16.9.0 |
| Jest | v24.9.0 |
| bug π,external dependency,test | low | Critical |
510,860,632 | pytorch | Python/C++ API Parity: torch.optim optimizers | Currently, `torch.optim` optimizers in PyTorch C++ API behave slightly differently from the Python API. In order to achieve parity, we should check the following aspects of an optimizer:
1. Make sure the C++ optimizer takes the same set of constructor arguments as the Python optimizer.
2. Make sure the C++ optimizer's constructor has the exact same logic as the Python optimizer's `__init__()` function. Particularly, we need to support `param_groups` in C++ optimizers.
2. Make sure the C++ optimizer's `step()` function has the exact same logic as the Python optimizer's `step()` function.
3. Add `state` to all optimizers, which is equivalent to the `state` dict in Python optimizers. In the `serialize` function of each C++ optimizer, make sure to serialize the `state` field into a list of `at::IValue`s, and have tests to make sure we can deserialize the `state` field successfully.
- You might ask "what should we do with the existing serialization logic in the `serialize` function, and would the change break backward compatibility of the user's existing serialized optimizers?" The answer is that we should put a "version number" in the serialized optimizer, and use that to identify the version - if we find no version number, we know that it's the old version, if we find version number "1.5", we know that it's the second version (aka. the version after our changes). We need to have tests to cover deserialization of the old version as well.
For more detailed discussions on the class structure design, see https://github.com/pytorch/pytorch/pull/29581.
## Optimizers
- [x] Adagrad (https://github.com/pytorch/pytorch/pull/29335)
- [x] Adam (https://github.com/pytorch/pytorch/pull/33730)
- [x] LBFGS (https://github.com/pytorch/pytorch/pull/34564)
- [x] RMSprop (https://github.com/pytorch/pytorch/pull/33450)
- [x] SGD (https://github.com/pytorch/pytorch/pull/32592)
- [ ] Adadelta
- [x] AdamW
- [ ] SparseAdam
- [ ] Adamax
- [ ] ASGD
- [ ] Rprop
cc @yf225 | module: cpp,triaged | low | Major |
510,871,309 | godot | TextEdit always clips content (including the focus outline, causing it to be not fully visible) | **Godot version:**
3564547208030264a28cc55232992aab3cbdad94
**OS/device including version:**
ArcoLinux
**Issue description:**
TextEdit forcibly clips all content, regardless of whether the `Clip Content` box is checked.


| bug,discussion,confirmed,topic:gui | low | Major |
510,874,196 | pytorch | gradient of Dirichlet.log_prob gives nan | ## π Bug
Hi there, I am trying to apply backward/grad on the dirichlet.log-prob(x_constrained). The input(i.e x_constrained) is the output of a call to stick-breaking transform. However, grad output includes nan and -inf for the following x_constrained (note that x_constrained may not be precise since it comes from execution of my code)
x_constrained= tensor([1.7647e-01, 7.2429e-01, 1.1665e-39, 9.9239e-02]
It seems an overflow for log_prob happens since one of the elements of x_constrained is really small.
## To Reproduce
Here is the code snippet:
```
print(f"\n x_unconstrained = {x_unconstrained}")
transform = dist.StickBreakingTransform()
x_unconstrained.to(dtype=torch.float64)
x_unconstrained.requires_grad_(True)
x_constrained = transform._call(x_unconstrained)
x_constrained.to(dtype=torch.float64)
print(f"\n x_constrained = {x_constrained}")
dirirchlet = dist.Dirichlet(tensor([2.5, 10.0, 2.0, 3.0]))
score1 = dirirchlet.log_prob(x_constrained)
print(f"\n dir.log_prob {score1}")
score1_gradient = grad(score1.clone(), x_unconstrained, create_graph=True)[0]
print("\nscore wrt x", score1_gradient)
```
Here is its output:
<img width="648" alt="Screen Shot 2019-10-23 at 10 04 20 AM" src="https://user-images.githubusercontent.com/56326968/67416887-85242880-f57c-11e9-8db8-abd614652f61.png">
## Expected behavior
I expect to get the actual derivative for dirichlet.log_prob.
cc @vincentqb @fritzo @neerajprad @alicanb @vishwakftw | module: distributions,triaged | low | Critical |
510,886,092 | pytorch | Problem installing from source on CentOS 6.5 | ## π Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
I ran the following code:
1. conda create detectron2 python=3.7
2. conda activate detectron2
3. conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing
4. git clone --recursive https://github.com/pytorch/pytorch
5. cd pytorch
6. export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
7. python setup.py install
This gave the following stdout (sorry for the wall of text!):
```
The use of NO_MKLDNN is deprecated and will be removed on Feb 20, 2020.Please use USE_MKLDNN instead.
Building wheel torch-1.4.0a0+3fce612
-- Building version 1.4.0a0+3fce612
cmake -GNinja -DBUILD_PYTHON=True -DBUILD_TEST=True -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/nethome/ebj26/apps/pytorch/torch -DCMAKE_PREFIX_PATH=/nethome/ebj26/apps/anaconda3/envs/detectron2 -DNUMPY_INCLUDE_DIR=/nethome/ebj26/apps/anaconda3/envs/detectron2/lib/python3.7/site-packages/numpy/core/include -DPYTHON_EXECUTABLE=/nethome/ebj26/apps/anaconda3/envs/detectron2/bin/python -DPYTHON_INCLUDE_DIR=/nethome/ebj26/apps/anaconda3/envs/detectron2/include/python3.7m -DPYTHON_LIBRARY=/nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libpython3.7m.so.1.0 -DTORCH_BUILD_VERSION=1.4.0a0+3fce612 -DUSE_CUDA=True -DUSE_MKLDNN=0 -DUSE_NUMPY=True /nethome/ebj26/apps/pytorch
-- The CXX compiler identification is GNU 5.5.0
-- The C compiler identification is GNU 5.5.0
-- Check for working CXX compiler: /share/opt/gcc/5.5.0/bin/c++
-- Check for working CXX compiler: /share/opt/gcc/5.5.0/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /share/opt/gcc/5.5.0/bin/gcc
-- Check for working C compiler: /share/opt/gcc/5.5.0/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Not forcing any particular BLAS to be found
-- Performing Test COMPILER_WORKS
-- Performing Test COMPILER_WORKS - Success
-- Performing Test SUPPORT_GLIBCXX_USE_C99
-- Performing Test SUPPORT_GLIBCXX_USE_C99 - Success
-- Performing Test CAFFE2_EXCEPTION_PTR_SUPPORTED
-- Performing Test CAFFE2_EXCEPTION_PTR_SUPPORTED - Success
-- std::exception_ptr is supported.
-- Performing Test CAFFE2_IS_NUMA_AVAILABLE
-- Performing Test CAFFE2_IS_NUMA_AVAILABLE - Failed
-- NUMA is not available
-- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING
-- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING - Failed
-- Turning off deprecation warning due to glog.
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX2_EXTENSIONS
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX2_EXTENSIONS - Failed
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Failed
-- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY
-- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success
-- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY
-- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success
-- Performing Test COMPILER_SUPPORTS_RDYNAMIC
-- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success
-- Building using own protobuf under third_party per request.
-- Use custom protobuf build.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Caffe2 protobuf include directory: $<BUILD_INTERFACE:/nethome/ebj26/apps/pytorch/third_party/protobuf/src>$<INSTALL_INTERFACE:include>
-- Trying to find preferred BLAS backend of choice: MKL
-- MKL_THREADING = OMP
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of void*
-- Check size of void* - done
-- Looking for cblas_sgemm
-- Looking for cblas_sgemm - found
-- MKL libraries: /nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libmkl_intel_lp64.so;/nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libmkl_gnu_thread.so;/nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libmkl_core.so;-fopenmp;/usr/lib64/libpthread.so;/usr/lib64/libm.so;/usr/lib64/libdl.so
-- MKL include directory: /nethome/ebj26/apps/anaconda3/envs/detectron2/include
-- MKL OpenMP type: GNU
-- MKL OpenMP library: -fopenmp
-- The ASM compiler identification is GNU
-- Found assembler: /share/opt/gcc/5.5.0/bin/gcc
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Brace yourself, we are building NNPACK
-- Performing Test NNPACK_ARCH_IS_X86_32
-- Performing Test NNPACK_ARCH_IS_X86_32 - Failed
-- Found PythonInterp: /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/python (found version "3.7.4")
-- NNPACK backend is x86-64
-- Failed to find LLVM FileCheck
-- Found Git: /usr/bin/git (found version "1.7.1")
-- git Version: v1.4.0-505be96a
-- Version: 1.4.0
-- Performing Test HAVE_CXX_FLAG_STD_CXX11
-- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success
-- Performing Test HAVE_CXX_FLAG_WALL
-- Performing Test HAVE_CXX_FLAG_WALL - Success
-- Performing Test HAVE_CXX_FLAG_WEXTRA
-- Performing Test HAVE_CXX_FLAG_WEXTRA - Success
-- Performing Test HAVE_CXX_FLAG_WSHADOW
-- Performing Test HAVE_CXX_FLAG_WSHADOW - Success
-- Performing Test HAVE_CXX_FLAG_WERROR
-- Performing Test HAVE_CXX_FLAG_WERROR - Success
-- Performing Test HAVE_CXX_FLAG_PEDANTIC
-- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success
-- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS
-- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success
-- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32
-- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed
-- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL
-- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL - Success
-- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING
-- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success
-- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS
-- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success
-- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING
-- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success
-- Performing Test HAVE_CXX_FLAG_WD654
-- Performing Test HAVE_CXX_FLAG_WD654 - Failed
-- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY
-- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed
-- Performing Test HAVE_CXX_FLAG_COVERAGE
-- Performing Test HAVE_CXX_FLAG_COVERAGE - Success
-- Performing Test HAVE_STD_REGEX
-- Performing Test HAVE_STD_REGEX
-- Performing Test HAVE_STD_REGEX -- success
-- Performing Test HAVE_GNU_POSIX_REGEX
-- Performing Test HAVE_GNU_POSIX_REGEX
-- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
-- Performing Test HAVE_POSIX_REGEX
-- Performing Test HAVE_POSIX_REGEX
-- Performing Test HAVE_POSIX_REGEX -- success
-- Performing Test HAVE_STEADY_CLOCK
-- Performing Test HAVE_STEADY_CLOCK
-- Performing Test HAVE_STEADY_CLOCK -- success
CMake Warning at cmake/Dependencies.cmake:520 (message):
A compiler with AVX512 support is required for FBGEMM. Not compiling with
FBGEMM. Turn this warning off by USE_FBGEMM=OFF.
Call Stack (most recent call first):
CMakeLists.txt:373 (include)
-- Could NOT find Numa (missing: Numa_INCLUDE_DIR Numa_LIBRARIES)
CMake Warning at cmake/Dependencies.cmake:598 (message):
Not compiling with NUMA. Suppress this warning with -DUSE_NUMA=OFF
Call Stack (most recent call first):
CMakeLists.txt:373 (include)
-- Using third party subdirectory Eigen.
Python 3.7.4
-- Found PythonInterp: /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/python (found suitable version "3.7.4", minimum required is "2.7")
-- Found PythonLibs: /nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libpython3.7m.so.1.0 (found suitable version "3.7.4", minimum required is "2.7")
-- Could NOT find pybind11 (missing: pybind11_DIR)
-- Could NOT find pybind11 (missing: pybind11_INCLUDE_DIR)
-- Using third_party/pybind11.
-- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS)
-- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS)
-- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND)
CMake Warning at cmake/Dependencies.cmake:831 (message):
Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF
Call Stack (most recent call first):
CMakeLists.txt:373 (include)
-- Adding OpenMP CXX_FLAGS: -fopenmp
-- Will link against OpenMP libraries: /share/opt/gcc/5.5.0/lib64/libgomp.so;/usr/lib64/libpthread.so
CMake Warning (dev) at cmake/public/cuda.cmake:29 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
Environment variable CUDA_ROOT is set to:
/share/apps/cuda/9.1.85
For compatibility, CMake is ignoring the variable.
Call Stack (most recent call first):
cmake/Dependencies.cmake:896 (include)
CMakeLists.txt:373 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Found CUDA: /share/apps/cuda/9.1.85 (found version "9.1")
-- Caffe2: CUDA detected: 9.1
-- Caffe2: CUDA nvcc is: /share/apps/cuda/9.1.85/bin/nvcc
-- Caffe2: CUDA toolkit directory: /share/apps/cuda/9.1.85
-- Caffe2: Header version is: 9.1
-- Found CUDNN: /share/apps/cuda/9.1.85/lib64/libcudnn.so
-- Found cuDNN: v7.1.2 (include: /share/apps/cuda/9.1.85/include, library: /share/apps/cuda/9.1.85/lib64/libcudnn.so)
CMake Warning at cmake/public/utils.cmake:172 (message):
In the future we will require one to explicitly pass TORCH_CUDA_ARCH_LIST
to cmake instead of implicitly setting it as an env variable. This will
become a FATAL_ERROR in future version of pytorch.
Call Stack (most recent call first):
cmake/public/cuda.cmake:381 (torch_cuda_get_nvcc_gencode_flag)
cmake/Dependencies.cmake:896 (include)
CMakeLists.txt:373 (include)
-- Added CUDA NVCC flags for: -gencode;arch=compute_70,code=sm_70
CMake Warning at cmake/public/utils.cmake:172 (message):
In the future we will require one to explicitly pass TORCH_CUDA_ARCH_LIST
to cmake instead of implicitly setting it as an env variable. This will
become a FATAL_ERROR in future version of pytorch.
Call Stack (most recent call first):
cmake/External/nccl.cmake:13 (torch_cuda_get_nvcc_gencode_flag)
cmake/Dependencies.cmake:1012 (include)
CMakeLists.txt:373 (include)
-- Could NOT find CUB (missing: CUB_INCLUDE_DIR)
CMake Warning (dev) at third_party/gloo/CMakeLists.txt:21 (option):
Policy CMP0077 is not set: option() honors normal variables. Run "cmake
--help-policy CMP0077" for policy details. Use the cmake_policy command to
set the policy and suppress this warning.
For compatibility with older versions of CMake, option is clearing the
normal variable 'BUILD_BENCHMARK'.
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at third_party/gloo/cmake/Cuda.cmake:133 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
Environment variable CUDA_ROOT is set to:
/share/apps/cuda/9.1.85
For compatibility, CMake is ignoring the variable.
Call Stack (most recent call first):
third_party/gloo/cmake/Dependencies.cmake:78 (include)
third_party/gloo/CMakeLists.txt:56 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Found CUDA: /share/apps/cuda/9.1.85 (found suitable version "9.1", minimum required is "7.0")
-- CUDA detected: 9.1
-- Could NOT find NCCL (missing: NCCL_INCLUDE_DIR NCCL_LIBRARY)
CMake Warning at third_party/gloo/cmake/Dependencies.cmake:96 (message):
Not compiling with NCCL support. Suppress this warning with
-DUSE_NCCL=OFF.
Call Stack (most recent call first):
third_party/gloo/CMakeLists.txt:56 (include)
CMake Warning at cmake/Dependencies.cmake:1097 (message):
Metal is only used in ios builds.
Call Stack (most recent call first):
CMakeLists.txt:373 (include)
Generated: /nethome/ebj26/apps/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto
Generated: /nethome/ebj26/apps/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto
--
-- ******** Summary ********
-- CMake version : 3.14.0
-- CMake command : /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/cmake
-- System : Linux
-- C++ compiler : /share/opt/gcc/5.5.0/bin/c++
-- C++ compiler version : 5.5.0
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -fopenmp -Wnon-virtual-dtor
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1
-- CMAKE_PREFIX_PATH : /nethome/ebj26/apps/anaconda3/envs/detectron2;/share/apps/cuda/9.1.85
-- CMAKE_INSTALL_PREFIX : /nethome/ebj26/apps/pytorch/torch
-- CMAKE_MODULE_PATH : /nethome/ebj26/apps/pytorch/cmake/Modules;/nethome/ebj26/apps/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.6.0
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
-- ONNXIFI_ENABLE_EXT : OFF
--
-- Protobuf compiler :
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
--
-- ******** Summary ********
-- CMake version : 3.14.0
-- CMake command : /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/cmake
-- System : Linux
-- C++ compiler : /share/opt/gcc/5.5.0/bin/c++
-- C++ compiler version : 5.5.0
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -fopenmp -Wnon-virtual-dtor
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1
-- CMAKE_PREFIX_PATH : /nethome/ebj26/apps/anaconda3/envs/detectron2;/share/apps/cuda/9.1.85
-- CMAKE_INSTALL_PREFIX : /nethome/ebj26/apps/pytorch/torch
-- CMAKE_MODULE_PATH : /nethome/ebj26/apps/pytorch/cmake/Modules;/nethome/ebj26/apps/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.4.1
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
--
-- Protobuf compiler :
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
-- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor
-- Removing -DNDEBUG from compile flags
-- MAGMA not found. Compiling without MAGMA support
-- Could not find hardware support for NEON on this machine.
-- No OMAP3 processor on this machine.
-- No OMAP4 processor on this machine.
-- Looking for cpuid.h
-- Looking for cpuid.h - found
-- Performing Test HAVE_GCC_GET_CPUID
-- Performing Test HAVE_GCC_GET_CPUID - Success
-- Performing Test NO_GCC_EBX_FPIC_BUG
-- Performing Test NO_GCC_EBX_FPIC_BUG - Success
-- Performing Test C_HAS_AVX_1
-- Performing Test C_HAS_AVX_1 - Failed
-- Performing Test C_HAS_AVX_2
-- Performing Test C_HAS_AVX_2 - Success
-- Performing Test C_HAS_AVX2_1
-- Performing Test C_HAS_AVX2_1 - Failed
-- Performing Test C_HAS_AVX2_2
-- Performing Test C_HAS_AVX2_2 - Failed
-- Performing Test C_HAS_AVX2_3
-- Performing Test C_HAS_AVX2_3 - Failed
-- Performing Test CXX_HAS_AVX_1
-- Performing Test CXX_HAS_AVX_1 - Failed
-- Performing Test CXX_HAS_AVX_2
-- Performing Test CXX_HAS_AVX_2 - Success
-- Performing Test CXX_HAS_AVX2_1
-- Performing Test CXX_HAS_AVX2_1 - Failed
-- Performing Test CXX_HAS_AVX2_2
-- Performing Test CXX_HAS_AVX2_2 - Failed
-- Performing Test CXX_HAS_AVX2_3
-- Performing Test CXX_HAS_AVX2_3 - Failed
-- AVX compiler support found
-- Performing Test BLAS_F2C_DOUBLE_WORKS
-- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed
-- Performing Test BLAS_F2C_FLOAT_WORKS
-- Performing Test BLAS_F2C_FLOAT_WORKS - Success
-- Performing Test BLAS_USE_CBLAS_DOT
-- Performing Test BLAS_USE_CBLAS_DOT - Success
-- Found a library with BLAS API (mkl).
-- Found a library with LAPACK API (mkl).
disabling ROCM because NOT USE_ROCM is set
-- MIOpen not found. Compiling without MIOpen support
disabling MKLDNN because USE_MKLDNN is not set
-- Looking for clock_gettime in rt
-- Looking for clock_gettime in rt - found
-- Looking for mmap
-- Looking for mmap - found
-- Looking for shm_open
-- Looking for shm_open - found
-- Looking for shm_unlink
-- Looking for shm_unlink - found
-- Looking for malloc_usable_size
-- Looking for malloc_usable_size - found
-- Performing Test C_HAS_THREAD
-- Performing Test C_HAS_THREAD - Success
-- GCC 5.5.0: Adding gcc and gcc_s libs to link line
-- don't use NUMA
-- Found OpenSSL: /nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libcrypto.so (found version "1.1.1d")
-- Check size of long double
-- Check size of long double - done
-- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE
-- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE - Success
-- Performing Test COMPILER_SUPPORTS_FLOAT128
-- Performing Test COMPILER_SUPPORTS_FLOAT128 - Success
-- Performing Test COMPILER_SUPPORTS_SSE2
-- Performing Test COMPILER_SUPPORTS_SSE2 - Success
-- Performing Test COMPILER_SUPPORTS_SSE4
-- Performing Test COMPILER_SUPPORTS_SSE4 - Success
-- Performing Test COMPILER_SUPPORTS_AVX
-- Performing Test COMPILER_SUPPORTS_AVX - Success
-- Performing Test COMPILER_SUPPORTS_FMA4
-- Performing Test COMPILER_SUPPORTS_FMA4 - Success
-- Performing Test COMPILER_SUPPORTS_AVX2
-- Performing Test COMPILER_SUPPORTS_AVX2 - Failed
-- Performing Test COMPILER_SUPPORTS_AVX512F
-- Performing Test COMPILER_SUPPORTS_AVX512F - Failed
-- Found OpenMP_C: -fopenmp (found version "4.0")
-- Found OpenMP_CXX: -fopenmp (found version "4.0")
-- Found OpenMP: TRUE (found version "4.0")
-- Performing Test COMPILER_SUPPORTS_OPENMP
-- Performing Test COMPILER_SUPPORTS_OPENMP - Success
-- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES
-- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Success
-- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH
-- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success
-- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM
-- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed
-- Configuring build for SLEEF-v3.4.0
Target system: Linux-2.6.32-431.el6.x86_64
Target processor: x86_64
Host system: Linux-2.6.32-431.el6.x86_64
Host processor: x86_64
Detected C compiler: GNU @ /share/opt/gcc/5.5.0/bin/gcc
-- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef
-- Building shared libs : OFF
-- MPFR : LIB_MPFR-NOTFOUND
-- GMP : /usr/lib64/libgmp.so
-- RT : /usr/lib64/librt.so
-- FFTW3 : LIBFFTW3-NOTFOUND
-- OPENSSL : 1.1.1d
-- SDE : SDE_COMMAND-NOTFOUND
-- RUNNING_ON_TRAVIS : 0
-- COMPILER_SUPPORTS_OPENMP : 1
AT_INSTALL_INCLUDE_DIR include/ATen/core
core header install: /nethome/ebj26/apps/pytorch/build/aten/src/ATen/core/TensorBody.h
core header install: /nethome/ebj26/apps/pytorch/build/aten/src/ATen/core/TensorMethods.h
-- Include NCCL operators
-- Excluding ideep operators as we are not using ideep
-- Excluding image processing operators due to no opencv
-- Excluding video processing operators due to no opencv
-- MPI operators skipped due to no MPI support
-- Include Observer library
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/BatchNorm.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/Conv.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/GridSampler.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/LossCTC.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cudnn/RNN.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/miopen/BatchNorm_miopen.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/miopen/Conv_miopen.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/miopen/RNN_miopen.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/CUDABlas.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/CUDAContext.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/CUDAGenerator.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/detail/CUDAHooks.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/CUDAUnaryOps.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/LegacyDefinitions.cpp
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/CUDAType.cpp
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/CUDAType.h
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/LegacyTHFunctionsCUDA.cpp
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/LegacyTHFunctionsCUDA.h
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/SparseCUDAType.cpp
-- /nethome/ebj26/apps/pytorch/build/aten/src/ATen/SparseCUDAType.h
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCCachingHostAllocator.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCGeneral.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCStorageCopy.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensor.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCReduceApplyUtils.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCBlas.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCSleep.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCStorage.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCStorageCopy.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensor.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorCopy.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMath.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMathBlas.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMathMagma.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMathPairwise.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMathReduce.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMathScan.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorIndex.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorRandom.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorScatterGather.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorTopK.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorSort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCSortUtils.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/THCTensorMode.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedByte.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedChar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedShort.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedInt.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedLong.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedHalf.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedFloat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorSortDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedDouble.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareTBool.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathCompareBool.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathReduceBool.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMaskedBool.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THC/generated/THCTensorMathPointwiseBool.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/AbsCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/BCECriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/ClassNLLCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/ELU.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/GatedLinearUnit.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/HardTanh.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/LeakyReLU.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/LogSigmoid.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/MSECriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/MultiLabelMarginCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/MultiMarginCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/RReLU.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/Sigmoid.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SmoothL1Criterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SoftMarginCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SoftPlus.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SoftShrink.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SpatialClassNLLCriterion.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SpatialConvolutionMM.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/SpatialDepthwiseConvolution.cu
-- /nethome/ebj26/apps/pytorch/aten/src/THCUNN/Tanh.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cuda/detail/IndexUtils.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Activation.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AveragePool2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/AveragePool3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/BatchLinearAlgebra.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/BinaryOpsKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/CUDAScalar.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Col2Im.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Copy.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/CrossKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/DilatedMaxPool2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/DilatedMaxPool3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/DistanceKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Distributions.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Dropout.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Embedding.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/EmbeddingBag.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/FillKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/GridSampler.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Im2Col.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/IndexKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Indexing.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Lerp.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/LinearAlgebra.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Loss.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/LossCTC.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/MaxUnpooling.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/MultinomialKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/NaiveDilatedConvolution.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Normalization.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/PointwiseOpsKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/PowKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/RNN.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/RangeFactories.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Reduce.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/ReduceOpsKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/ReflectionPad.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Repeat.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/ReplicationPadding.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Resize.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/SoftMax.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/SortingKthValue.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/SparseMM.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/SpectralOps.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/SummaryOps.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/TensorCompare.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/TensorFactories.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/TensorTransformations.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UnaryOpsKernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/Unique.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleBicubic2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleLinear1d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleNearest1d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleNearest2d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleNearest3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/UpSampleTrilinear3d.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/WeightNorm.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/cuda/layer_norm_kernel.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/quantized/cuda/fake_quantize_core.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/quantized/cuda/fake_quantize_per_channel_affine.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/native/quantized/cuda/fake_quantize_per_tensor_affine.cu
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cudnn/Descriptors.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cudnn/Handle.cpp
-- /nethome/ebj26/apps/pytorch/aten/src/ATen/cudnn/Types.cpp
-- /nethome/ebj26/apps/pytorch/caffe2/core/common_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/core/blob_serialization_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/core/common_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/core/event_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/core/context_gpu.cu
-- utils/math/broadcast.cu
-- utils/math/elementwise.cu
-- utils/math/reduce.cu
-- utils/math/transpose.cu
-- utils/math_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/aten/aten_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/nccl/cuda_nccl_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/gloo/allreduce_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/gloo/broadcast_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/contrib/gloo/common_world_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/db/create_db_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/distributed/file_store_handler_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/channelwise_conv3d_op_cudnn.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_op_cache_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_transpose_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/depthwise_3x3_conv_op_cudnn.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/dropout_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elu_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/local_response_normalization_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/order_switch_ops_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/pool_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sigmoid_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/softmax_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/spatial_batch_norm_op_cudnn.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/tanh_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/transpose_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/communicator_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/concat_split_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_op_shared_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/conv_transpose_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/counter_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/do_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_add_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_sub_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/exp_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/expand_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/expand_squeeze_dims_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/free_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/fully_connected_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/if_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/im2col_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/load_save_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/locally_connected_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/log_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/matmul_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/negate_gradient_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/negative_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/order_switch_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/prepend_dim_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reshape_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/scale_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/shape_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sqr_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sqrt_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/stop_gradient_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/tensor_protos_db_input_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/while_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/zero_gradient_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/abs_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/accumulate_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/accuracy_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/acos_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/affine_channel_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/arg_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/asin_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/assert_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/atan_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/batch_gather_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/batch_matmul_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/batch_moments_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/boolean_mask_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/boolean_unmask_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/bucketize_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cast_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cbrt_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/ceil_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/channel_backprop_stats_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/channel_shuffle_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/channel_stats_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/clip_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/copy_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cos_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cosh_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cosine_embedding_criterion_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cross_entropy_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/cube_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/data_couple_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/deform_conv_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/distance_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/dropout_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_div_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_linear_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_mul_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elementwise_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/elu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/enforce_finite_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/ensure_cpu_output_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/erf_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/filler_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/find_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/floor_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/gather_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/gelu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/generate_proposals_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/given_tensor_byte_string_to_uint8_fill_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/given_tensor_fill_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/glu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/group_norm_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/gru_unit_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/half_float_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/hard_sigmoid_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/instance_norm_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/integral_image_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/layer_norm_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/leaky_relu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/lengths_pad_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/lengths_tile_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/local_response_normalization_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/logit_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/loss_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/lp_pool_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/lstm_unit_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/margin_ranking_criterion_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/max_pool_with_index.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/mean_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/mem_query_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/minmax_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/moments_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/multi_class_accuracy_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/normalize_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/one_hot_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/pack_segments.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/pad_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/perplexity_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/piecewise_linear_transform_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/pool_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/pow_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/prelu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reciprocal_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reduce_front_back_max_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reduce_front_back_sum_mean_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reduce_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reduction_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/relu_n_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/relu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/replace_nan_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/resize_3d_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/resize_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/reverse_packed_segs_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rmac_regions_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/roi_align_gradient_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/roi_align_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/roi_align_rotated_gradient_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/roi_align_rotated_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/roi_pool_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rsqrt_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/scale_blobs_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/segment_reduction_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/selu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sequence_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sigmoid_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sin_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sinh_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/slice_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/softmax_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/softplus_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/softsign_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/space_batch_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sparse_normalize_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/sparse_to_dense_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/spatial_batch_norm_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/stump_func_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/summarize_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/swish_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/tan_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/tanh_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/thresholded_relu_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/tile_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/top_k.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/transpose_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/unique_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/upsample_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/utility_ops.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/weighted_sample_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rnn/recurrent_op_cudnn.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/operators/rnn/recurrent_network_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/queue/queue_ops_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/iter_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/learning_rate_op_gpu.cc
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/adadelta_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/adagrad_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/adam_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/fp16_momentum_sgd_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/fp32_momentum_sgd_op.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/lars_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/momentum_sgd_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/rmsprop_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/sgd/yellowfin_op_gpu.cu
-- /nethome/ebj26/apps/pytorch/caffe2/../torch/csrc/jit/fuser/cuda/fused_kernel.cpp
-- /nethome/ebj26/apps/pytorch/caffe2/../torch/csrc/autograd/profiler_cuda.cpp
-- /nethome/ebj26/apps/pytorch/caffe2/../torch/csrc/autograd/functions/comm.cpp
-- /nethome/ebj26/apps/pytorch/caffe2/../torch/csrc/cuda/comm.cpp
-- /share/opt/gcc/5.5.0/bin/c++ /nethome/ebj26/apps/pytorch/caffe2/../torch/abi-check.cpp -o /nethome/ebj26/apps/pytorch/build/abi-check
-- Determined _GLIBCXX_USE_CXX11_ABI=1
-- pytorch is compiling with OpenMP.
OpenMP CXX_FLAGS: -fopenmp.
OpenMP libraries: /share/opt/gcc/5.5.0/lib64/libgomp.so;/usr/lib64/libpthread.so.
-- Caffe2 is compiling with OpenMP.
OpenMP CXX_FLAGS: -fopenmp.
OpenMP libraries: /share/opt/gcc/5.5.0/lib64/libgomp.so;/usr/lib64/libpthread.so.
-- Using ATen parallel backend: OMP
-- Using lib/python3.7/site-packages as python relative installation path
CMake Warning at CMakeLists.txt:576 (message):
Generated cmake files are only fully tested if one builds with system glog,
gflags, and protobuf. Other settings may generate files that are not well
tested.
--
-- ******** Summary ********
-- General:
-- CMake version : 3.14.0
-- CMake command : /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/cmake
-- System : Linux
-- C++ compiler : /share/opt/gcc/5.5.0/bin/c++
-- C++ compiler id : GNU
-- C++ compiler version : 5.5.0
-- BLAS : MKL
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -fopenmp -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1
-- CMAKE_PREFIX_PATH : /nethome/ebj26/apps/anaconda3/envs/detectron2;/share/apps/cuda/9.1.85
-- CMAKE_INSTALL_PREFIX : /nethome/ebj26/apps/pytorch/torch
--
-- TORCH_VERSION : 1.4.0
-- CAFFE2_VERSION : 1.4.0
-- BUILD_CAFFE2_MOBILE : ON
-- USE_STATIC_DISPATCH : OFF
-- BUILD_BINARY : OFF
-- BUILD_CUSTOM_PROTOBUF : ON
-- Link local protobuf : ON
-- BUILD_DOCS : OFF
-- BUILD_PYTHON : True
-- Python version : 3.7.4
-- Python executable : /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/python
-- Pythonlibs version : 3.7.4
-- Python library : /nethome/ebj26/apps/anaconda3/envs/detectron2/lib/libpython3.7m.so.1.0
-- Python includes : /nethome/ebj26/apps/anaconda3/envs/detectron2/include/python3.7m
-- Python site-packages: lib/python3.7/site-packages
-- BUILD_CAFFE2_OPS : ON
-- BUILD_SHARED_LIBS : ON
-- BUILD_TEST : True
-- INTERN_BUILD_MOBILE :
-- USE_ASAN : OFF
-- USE_CUDA : True
-- CUDA static link : OFF
-- USE_CUDNN : ON
-- CUDA version : 9.1
-- cuDNN version : 7.1.2
-- CUDA root directory : /share/apps/cuda/9.1.85
-- CUDA library : /share/apps/cuda/9.1.85/lib64/stubs/libcuda.so
-- cudart library : /share/apps/cuda/9.1.85/lib64/libcudart.so
-- cublas library : /share/apps/cuda/9.1.85/lib64/libcublas.so;/share/apps/cuda/9.1.85/lib64/libcublas_device.a
-- cufft library : /share/apps/cuda/9.1.85/lib64/libcufft.so
-- curand library : /share/apps/cuda/9.1.85/lib64/libcurand.so
-- cuDNN library : /share/apps/cuda/9.1.85/lib64/libcudnn.so
-- nvrtc : /share/apps/cuda/9.1.85/lib64/libnvrtc.so
-- CUDA include path : /share/apps/cuda/9.1.85/include
-- NVCC executable : /share/apps/cuda/9.1.85/bin/nvcc
-- CUDA host compiler : /share/opt/gcc/5.5.0/bin/gcc
-- USE_TENSORRT : OFF
-- USE_ROCM : OFF
-- USE_EIGEN_FOR_BLAS :
-- USE_FBGEMM : OFF
-- USE_FFMPEG : OFF
-- USE_GFLAGS : OFF
-- USE_GLOG : OFF
-- USE_LEVELDB : OFF
-- USE_LITE_PROTO : OFF
-- USE_LMDB : OFF
-- USE_METAL : OFF
-- USE_MKL : ON
-- USE_MKLDNN : OFF
-- USE_NCCL : ON
-- USE_SYSTEM_NCCL : OFF
-- USE_NNPACK : ON
-- USE_NUMPY : ON
-- USE_OBSERVERS : ON
-- USE_OPENCL : OFF
-- USE_OPENCV : OFF
-- USE_OPENMP : ON
-- USE_TBB : OFF
-- USE_PROF : OFF
-- USE_QNNPACK : ON
-- USE_REDIS : OFF
-- USE_ROCKSDB : OFF
-- USE_ZMQ : OFF
-- USE_DISTRIBUTED : ON
-- USE_MPI : OFF
-- USE_GLOO : ON
-- BUILD_NAMEDTENSOR : OFF
-- Public Dependencies : Threads::Threads;caffe2::mkl
-- Private Dependencies : qnnpack;pytorch_qnnpack;nnpack;cpuinfo;fp16;gloo;aten_op_header_gen;foxi_loader;rt;gcc_s;gcc;dl
-- Configuring done
CMake Warning at cmake/Modules_CUDA_fix/upstream/FindCUDA.cmake:1844 (add_library):
Cannot generate a safe linker search path for target torch because files in
some directories may conflict with libraries in implicit directories:
link library [libgomp.so] in /share/opt/gcc/5.5.0/lib64 may be hidden by files in:
/nethome/ebj26/apps/anaconda3/envs/detectron2/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
caffe2/CMakeLists.txt:627 (cuda_add_library)
CMake Warning at cmake/Modules_CUDA_fix/upstream/FindCUDA.cmake:1844 (add_library):
Cannot generate a safe runtime search path for target torch because files
in some directories may conflict with libraries in implicit directories:
runtime library [libgomp.so.1] in /share/opt/gcc/5.5.0/lib64 may be hidden by files in:
/nethome/ebj26/apps/anaconda3/envs/detectron2/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
caffe2/CMakeLists.txt:627 (cuda_add_library)
CMake Warning at cmake/Modules_CUDA_fix/upstream/FindCUDA.cmake:1844 (add_library):
Cannot generate a safe linker search path for target
caffe2_detectron_ops_gpu because files in some directories may conflict
with libraries in implicit directories:
link library [libgomp.so] in /share/opt/gcc/5.5.0/lib64 may be hidden by files in:
/nethome/ebj26/apps/anaconda3/envs/detectron2/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
modules/detectron/CMakeLists.txt:13 (CUDA_ADD_LIBRARY)
CMake Warning at cmake/Modules_CUDA_fix/upstream/FindCUDA.cmake:1844 (add_library):
Cannot generate a safe runtime search path for target
caffe2_detectron_ops_gpu because files in some directories may conflict
with libraries in implicit directories:
runtime library [libgomp.so.1] in /share/opt/gcc/5.5.0/lib64 may be hidden by files in:
/nethome/ebj26/apps/anaconda3/envs/detectron2/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
modules/detectron/CMakeLists.txt:13 (CUDA_ADD_LIBRARY)
-- Generating done
-- Build files have been written to: /nethome/ebj26/apps/pytorch/build
cmake --build . --target install --config Release -- -j 16
[185/3081] Performing build step for 'nccl_external'
FAILED: nccl_external-prefix/src/nccl_external-stamp/nccl_external-build nccl/lib/libnccl_static.a
cd /nethome/ebj26/apps/pytorch/third_party/nccl/nccl && env CCACHE_DISABLE=1 SCCACHE_DISABLE=1 make CXX=/share/opt/gcc/5.5.0/bin/c++ CUDA_HOME=/share/apps/cuda/9.1.85 NVCC=/share/apps/cuda/9.1.85/bin/nvcc NVCC_GENCODE=-gencode=arch=compute_70,code=sm_70 BUILDDIR=/nethome/ebj26/apps/pytorch/build/nccl VERBOSE=0 -j && /nethome/ebj26/apps/anaconda3/envs/detectron2/bin/cmake -E touch /nethome/ebj26/apps/pytorch/build/nccl_external-prefix/src/nccl_external-stamp/nccl_external-build
make -C src build BUILDDIR=/nethome/ebj26/apps/pytorch/build/nccl
make[1]: Entering directory `/nethome/ebj26/apps/pytorch/third_party/nccl/nccl/src'
Compiling misc/nvmlwrap.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/nvmlwrap.o
Compiling misc/rings.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/rings.o
Compiling init.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/init.o
Compiling misc/group.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/group.o
Grabbing include/nccl_net.h > /nethome/ebj26/apps/pytorch/build/nccl/include/nccl_net.h
Compiling misc/ibvwrap.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/ibvwrap.o
Compiling collectives/reduce_scatter.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/reduce_scatter.o
Compiling channel.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/channel.o
Compiling collectives/all_gather.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/all_gather.o
Compiling transport/p2p.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport/p2p.o
Compiling enqueue.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/enqueue.o
Compiling bootstrap.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/bootstrap.o
Compiling misc/argcheck.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/argcheck.o
Compiling transport/shm.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport/shm.o
Compiling transport/net.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport/net.o
Compiling misc/topo.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/topo.o
Compiling transport/net_ib.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport/net_ib.o
Compiling collectives/broadcast.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/broadcast.o
Compiling transport.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport.o
Compiling transport/net_socket.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/transport/net_socket.o
Compiling misc/utils.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/utils.o
Compiling misc/trees.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/misc/trees.o
Compiling collectives/all_reduce.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/all_reduce.o
Compiling collectives/reduce.cc > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/reduce.o
Generating nccl.h.in > /nethome/ebj26/apps/pytorch/build/nccl/include/nccl.h
Generating nccl.pc.in > /nethome/ebj26/apps/pytorch/build/nccl/lib/pkgconfig/nccl.pc
make[2]: Entering directory `/nethome/ebj26/apps/pytorch/third_party/nccl/nccl/src/collectives/device'
Generating rules > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/Makefile.rules
make[2]: Leaving directory `/nethome/ebj26/apps/pytorch/third_party/nccl/nccl/src/collectives/device'
make[2]: Entering directory `/nethome/ebj26/apps/pytorch/third_party/nccl/nccl/src/collectives/device'
Compiling functions.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/functions.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_u64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_u32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_f16.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_f64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_f32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_f64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_i32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_i8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_f32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_i8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_f64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_i8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_i64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_f32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_i32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_u8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_u64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_u64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_u32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_u8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_f32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_f16.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_i32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_u64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_f16.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_u8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_i8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_f64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_u32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum_i64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_f16.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_i64.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_u32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_i32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_i32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_i32.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min_i64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_u8.o
Compiling reduce_scatter.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max_i64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_i64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_i8.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_u64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_f64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_f32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_i32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_u64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_f16.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_i32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_i64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_i64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_i8.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_u32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_i32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_i32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_u32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_f32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_i64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_u32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_i32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_u64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_i32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_f16.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_f32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_f16.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_i64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_u64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_i32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_i64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_i8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_f32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_f64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_i8.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_u64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_u8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_i32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_i32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_f32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_f16.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_i32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_f16.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_f32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_u64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_i64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_i8.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_u64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_f32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_u8.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_f16.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_f64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_u64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_u8.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_u32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_i64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_i32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_u64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_u32.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_f32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_u64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_f16.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_i32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_f32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_f32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_f32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_f16.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_f64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_i64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_f32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_f16.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_max_u8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_f64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_u32.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_min_u8.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_f16.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_f32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_u8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_f16.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_i32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_u64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_f16.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_sum_u8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_f64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_f16.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_prod_u64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_i32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_i64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_u64.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_min_i8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_i8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_u8.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_i8.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_max_u32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_u8.o
Compiling all_reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_reduce_prod_i8.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_sum_u8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_f16.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_i64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_u64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_f64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_i64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_i8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_f16.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_u64.o
Compiling broadcast.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/broadcast_sum_f32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_u8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_sum_u32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_min_i64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_f64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_i64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_f64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_max_f16.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_max_u64.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_i8.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_min_f32.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_i64.o
Compiling reduce.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/reduce_prod_f32.o
Compiling all_gather.cu > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/all_gather_prod_u32.o
Archiving objects > /nethome/ebj26/apps/pytorch/build/nccl/obj/collectives/device/colldevice.a
make[2]: Leaving directory `/nethome/ebj26/apps/pytorch/third_party/nccl/nccl/src/collectives/device'
Linking libnccl.so.2.4.8 > /nethome/ebj26/apps/pytorch/build/nccl/lib/libnccl.so.2.4.8
make: *** [src.build] Segmentation fault (core dumped)
[200/3081] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o
ninja: build stopped: subcommand failed.
Traceback (most recent call last):
File "setup.py", line 759, in <module>
build_deps()
File "setup.py", line 311, in build_deps
cmake=cmake)
File "/nethome/ebj26/apps/pytorch/tools/build_pytorch_libs.py", line 59, in build_caffe2
cmake.build(my_env)
File "/nethome/ebj26/apps/pytorch/tools/setup_helpers/cmake.py", line 334, in build
self.run(build_args, my_env)
File "/nethome/ebj26/apps/pytorch/tools/setup_helpers/cmake.py", line 142, in run
check_call(command, cwd=self.build_dir, env=env)
File "/nethome/ebj26/apps/anaconda3/envs/detectron2/lib/python3.7/subprocess.py", line 347, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--target', 'install', '--config', 'Release', '--', '-j', '16']' returned non-zero exit status 1.
```
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
Clean install of pytorch from source
## Environment
Output from collect_env.py:
```
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
OS: CentOS release 6.5 (Final)
GCC version: (GCC) 5.5.0
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: N/A
CUDA runtime version: Could not collect
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Could not collect
Versions of relevant libraries:
[pip] numpy==1.17.2
[conda] blas 1.0 mkl
[conda] mkl 2019.4 243
[conda] mkl-include 2019.4 243
[conda] mkl-service 2.3.0 py37he904b0f_0
[conda] mkl_fft 1.0.14 py37ha843d7b_0
[conda] mkl_random 1.1.0 py37hd6b4f25_0
```
## Additional context
Any help would be greatly appreciated!
| module: build,triaged,module: nccl | low | Critical |
510,892,142 | flutter | flutter create --template plugin should make a federated plugin by default | Once the federated plugin layout has stabilized (see https://github.com/flutter/plugins/pull/2217) I think we should make it the default in the plugin template.
Making federated the default is better for the ecosystem long term since it improves portability, even though it increases complexity for first-time plugin authors who have to publish multiple packages.
We should ensure that the template includes warnings about making breaking changes to the platform package. https://flutter.dev/go/platform-interface-breaking-changes | tool,P2,a: plugins,team-tool,triaged-tool | low | Critical |
510,976,941 | go | cmd/compile: review compiler-generated symbol naming scheme | cmd/compile generates a lot of linker symbols for internal objects, and we've amassed a number of ad hoc naming schemes for them. I'm concerned that there might be collisions, particularly with user-defined symbols.
We should review and probably catalog the existing symbol, and try to find a more uniform naming scheme that we can ensure is collision-free. | help wanted,NeedsInvestigation,compiler/runtime | low | Minor |
511,004,053 | kubernetes | Support adding an init process to containers | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
Add support for adding an init process (PID 1) to containers started by Kubernetes, across the supported container runtimes. This should be toggled by an appropriate flag on the `Container` spec.
A possible implementation is basically bind mounting a statically built init executable (e.g. `tini`) into the container and passing the containers entrypoint+cmd to it, which I think is what Docker's implementation of this does. Of course, the exact place to prepend the init command depends on the runtime, with Docker having its entrypoint/cmd separation and others possibly having different models.
**Why is this needed**:
Linux containers have a well known problem where due to the first process started in the container having PID 1, that process assumes the roles and responsibilities of `init`, and as such, has the default signal handling behavior disabled, unless they establish signal handles, and in addition have zombies reparented to them for reaping.
Well behaved Docker images take this into account and either:
* Handle such details in the image's main process, that is, handle signals (depending on language/runtime/framework if this is needed), and reap zombies or otherwise don't create them by waiting appropriately.
* Embed some minimal init into the image to handle this for them. Such as: `tini`, `dumb-init`, etc.
Sadly, there are plenty of badly behaving container images out there, and there are also plenty of use cases where requiring the user to add an init to the image is a problem. For example, systems where users submit jobs using their own custom images and commands, which might be less attentive to such issues.
To help with this, Docker added a flag that adds an init process backed by `tini` (Compiled as a vendored static executable named `docker-init) to its API. As far as I can tell, this is implemented by simply bind mounting this binary read only to the container and passing the command that would otherwise be executed as PID 1 to it.
This is of course Docker specific and for something like this to exist in Kubernetes it likely needs to be re-implemented by Kubernetes for all supported container runtimes. Though assuming you can bind mount such a binary in all runtimes, and can distribute it, it should be possible... I think...
Note that `tini`, specifically used by Docker, also supports some extra features that can be configured via environment variables that can sometimes be useful for certain kinds of containerizied workloads. Whether that's a good or a bad thing...
Of course, this entire thing is quite up for debate... | area/kubelet,sig/node,kind/feature,needs-triage | high | Critical |
511,044,887 | go | net: get npcap usable windows network device names | net.Interfaces(), net.InterfaceByName(), and net.InterfaceByIndex() return an Interface struct with a Name variable. On Linux, this will tend to be the name (eth0, wlan0, en0, etc) that can be passed to pcap functions/methods (eg. "github.com/google/gopacket/pcap".OpenLive() )
However, that isn't the case on Windows 10.
On my box net.InterfaceByIndex(5), for example returns a Interface.Name "Ethernet" and what I need for pcap.OpenLive() is "\Device\NPF_{13044533-0543-4AF5-9E3C-85EBBC7C04BB}"
gopacket and gopacket/pcap are really promising. ~as simple as scappy, and ~as fast as c, and I can write it once and run it on Windows and Linux. Except, not quite yet. | OS-Windows,NeedsInvestigation | low | Major |
511,089,320 | rust | rustdoc: document fields exposed by `Deref` implementations. | `rustdoc` provides a very useful "methods from `Deref<Target=...>`" section for types that implement the `Deref` trait, but this section only displays associated functions and never fields. It could be very useful if (public) fields exposed via `Deref` were also documented. | T-rustdoc,C-enhancement,A-rustdoc-ui | low | Minor |
511,110,330 | TypeScript | Incorrect or broken autocomplete suggestions for enum indexed interfaces | <!-- π¨ 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 logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ
Please fill in the *entire* template below.
-->
<!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: `typescript@next`
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
**TypeScript Version:** 3.6.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** intellisense suggestion hint enum
**Code**
In enum indexed interfaces ts suggestion fails (playground) or suggest incorrect informations (vscode).
```ts
enum IPiece {
Id = "id",
FirstName = "firstname",
LastName = "lastname",
Age = "age"
}
interface IPiecePerson {
[IPiece.Id]: string | null;
[IPiece.FirstName]: string | null;
[IPiece.LastName]: string | null;
[IPiece.Age]: number | null;
}
const o: Pick<IPiecePerson, IPiece.Age> = { [IPiece.Age]: 1 };
o.
```
**Expected behavior:**
```ts
// age
// or IPiece.Age
```
**Actual behavior:**
```ts
// IPiece enum
```
<img width="677" alt="Zrzut ekranu 2019-10-19 o 07 52 27" src="https://user-images.githubusercontent.com/1199350/67138560-9e0f9f80-f245-11e9-9100-f5579f733937.png">
**Playground Link:** [TypeScript Playground](http://www.typescriptlang.org/play/?ssl=16&ssc=3&pln=1&pc=1#code/KYOwrgtgBAkgCgS2AY2FA3gKCj2ATKAXigCIE8SAabXAMQQCcBnAFwDkBDCNYkgM0asQXYFRo4AMh1aduRUgBtpLYdzG4oAQQDmPUh10lMAX0yYEIFsAZ8OqWIhTA41pgHsQGcVADa8JKgAdDB4ALoAXFCsDBbaUAA+UOAKCgDc3n6OQfTM7CIRUSwxIHGJyWkZ-k6BUjL5kdGxCUlgKekamQHAgTrABeAQAEbWzeXpppjIHqxQbpGIyADWADxVqC7MHpQOXT26AHzy6L5r3b0FAIxQxulugUA)
**Related Issues:** https://github.com/microsoft/vscode/issues/83097
| Bug,Domain: Completion Lists | low | Critical |
511,121,546 | TypeScript | Allow static members in abstract classes to reference type parameters | ## Search Terms
abstract generic class static type parameter
## Suggestion
It has been previously concluded in #24018 that referencing class type parameters in the static side is problematic unless that class is meant to be extended. Well, abstract classes _are_ meant to be extended, so it makes sense to allow type parameters to be used?
To quote @andy-ms in #24018:
> Without inheritance that wouldn't make much sense:
> ```ts
> class Super<T> {
> static m(x: T): void;
> }
> Super.m(); // What's `T`?
> ```
This is a valid point. But with a solution for abstract static members from #34516, this could be refactored like so:
```ts
abstract class Super<T> {
abstract static m(x: T): void;
}
class A extends Super<number> {
static m(x) {
console.log(x * 42);
}
}
class B extends Super<string> {
static m(x) {
console.log(x + ' World!');
}
}
A.m(2);
B.m('Hello');
```
## Use Cases
Pretty much everywhere that instance side types are related to static side types and where instance methods depend on static properties.
## Examples
As an example I'll give my personal use case. I have a class with a static `defaults` property and instances merge it with a constructor argument of the same type but partial. Then, the resulting object is stored in an instance property:
```ts
abstract class Base<T> {
static defaults: T
config: T
constructor(options: Partial<T>) {
this.config = Object.assign({}, (this.constructor as typeof Base).defaults, options);
}
}
interface Options {
a: string
b: number
}
class A extends Base<Options> {
static defaults = {
a: 42, // Type '42' is not assignable to type 'string'.
b: 'oops' // Type '"oops"' is not assignable to type 'number'.
};
}
let inst = new A({
a: 'bar', // OK
b: 'baz' // Type '"baz"' is not assignable to type 'number'.
});
inst.config.a = 12; // Type '12' is not assignable to type 'string'.
```
## Checklist
My suggestion meets these guidelines:
* [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Suggestion,Awaiting More Feedback | medium | Critical |
511,133,069 | flutter | [Google sign in] com.google.android.gms.common.api.b: 10 | I have migrated an existing Android application that's use Google sign in to flutter, and crashlytics start reporting me this kind of errors:
```
Non-fatal Exception: com.kiwi.fluttercrashlytics.b: PlatformException(sign_in_failed, com.google.android.gms.common.api.b: 10: , null)
at StandardMethodCodec.decodeEnvelope + 569(StandardMethodCodec.java:569)
at MethodChannel.invokeMethod + 316(MethodChannel.java:316)
at MethodChannel.invokeMapMethod + 344(MethodChannel.java:344)
at GoogleSignIn._callMethod + 218(GoogleSignIn.java:218)
at GoogleSignIn._addMethodCall.<fn> + 270(_addMethodCall.java:270)
at ._rootRun + 1120(.java:1120)
at _CustomZone.run + 1021(_CustomZone.java:1021)
at _FutureListener.handleWhenComplete + 161(_FutureListener.java:161)
at Future._propagateToListeners.handleWhenCompleteCallback + 648(_propagateToListeners.java:648)
at Future._propagateToListeners + 704(Future.java:704)
at Future._addListener.<fn> + 387(_addListener.java:387)
at ._rootRun + 1124(.java:1124)
at _CustomZone.run + 1021(_CustomZone.java:1021)
at _CustomZone.runGuarded + 923(_CustomZone.java:923)
at _CustomZone.bindCallbackGuarded.<fn> + 963(bindCallbackGuarded.java:963)
at ._microtaskLoop + 41(.java:41)
at ._startMicrotaskLoop + 50(.java:50)
```
From what I've found error 10 mean developer error, but not all users have the problem... I wasn't able to reproduce the problem at all, on multiple device and directly with the store version.
If it's a developer problem it should be happening all the time right ? Can we have more insight of what that error mean ?
Env:
```
[β] Flutter (Channel stable, v1.9.1+hotfix.4, on Mac OS X 10.15 19A602, locale fr-FR)
β’ Flutter version 1.9.1+hotfix.4 at /Users/jaumard/flutter
β’ Framework revision cc949a8e8b (4 weeks ago), 2019-09-27 15:04:59 -0700
β’ Engine revision b863200c37
β’ Dart version 2.5.0
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
β’ Android SDK at /Users/jaumard/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-29, build-tools 29.0.2
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 11.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 11.1, Build version 11A1027
β’ CocoaPods version 1.6.0
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 40.2.2
β’ Dart plugin version 191.8580
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] IntelliJ IDEA Ultimate Edition (version 2019.2.3)
β’ IntelliJ at /Applications/IntelliJ IDEA.app
β’ Flutter plugin version 40.2.4
β’ Dart plugin version 192.7402
``` | c: crash,platform-android,p: google_sign_in,package,P2,team-android,triaged-android | low | Critical |
511,136,699 | flutter | Cupertino Text Field Placeholder should expand to multiple lines if max lines is not set |
I would expect that placeholder text automatically expands to multiple lines if number of lines for text field is not set - unlimited. It works if I put max lines ex. 2, but doesn't work if unlimited lines.
Tested on simulator iPhone X
## Steps to Reproduce
```
import 'dart:async';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() {
runApp(
MyApp(),
);
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SizedBox(
width: 100,
height: 100,
child: CupertinoTextField(
placeholder: 'This is long placeholder and it should be in two lines',
textAlign: TextAlign.center,
//maxLines: 2,
),
),
),
);
}
}
```
## Logs
<!--
Run your application with `flutter run --verbose` and attach all the
log output below between the lines with the backticks. If there is an
exception, please see if the error message includes enough information
to explain how to solve the issue.
-->
```
```
<!--
Run `flutter analyze` and attach any output of that command below.
If there are any analysis errors, try resolving them before filing this issue.
-->
```
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
Doctor summary (to see all details, run flutter doctor -v):
[β] Flutter (Channel beta, v1.10.7, on Mac OS X 10.14.6 18G87, locale en-US)
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[β] Xcode - develop for iOS and macOS (Xcode 11.0)
[β] Android Studio (version 3.5)
[!] IntelliJ IDEA Ultimate Edition (version 2018.1.2)
β Flutter plugin not installed; this adds Flutter specific functionality.
β Dart plugin not installed; this adds Dart specific functionality.
[β] Connected device (1 available)
! Doctor found issues in 1 category.
``` | a: text input,c: new feature,framework,f: material design,f: cupertino,a: quality,c: proposal,P3,team-text-input,triaged-text-input | low | Critical |
511,200,966 | rust | UnwindSafe docs are unclear | After reading the current docs of `panic::UnwindSafe` I am left with the feeling that the explanation of the concept of "panic safety" and its auto trait has only been handwaved. The docs point to the RFC, which does a better job, but I still do not feel like I fully understood what "panic safety" is, what does `UnwindSafe` convey, and when is it ok to use `AssertUnwindSafe` or not.
I feel like the docs could do a much better job at explaining all of this, and that some examples in the RFC would help, but I don't think that any documentation we currently have about this is enough.
This is a complex topic and I have no experience teaching it to others, but if somebody has done that, their feedback should probably be taken into account.
I think the API docs are very important to get right because they are currently the only teaching materials that we have about this aspect of the language. The Rust book does not cover this either, and the nomicon [Exception safety](https://doc.rust-lang.org/nomicon/exception-safety.html?highlight=panic,safety#exception-safety) has very few words to say about this.
cc @steveklabnik @rust-lang/docs | C-enhancement,T-libs-api,A-docs | low | Major |
511,216,780 | pytorch | Problem when installing pytorch 1.4 from source on Centos 6.3 | ## π Bug
Problem when installing pytorch 1.4 from source on Centos 6.3
[402/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86features.cpp.o
[403/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o
../third_party/fbgemm/third_party/asmjit/src/asmjit/core/ralocal.cpp:833:79: warning: unused parameter βcontβ [-Wunused-parameter]
**Error RALocalAllocator::allocBranch**(InstNode* node, RABlock* target, RABlock* cont) noexcept {
^
[404/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512.cc.o
[405/3429] Generating src/x86_64-fma/2d-fourier-8x8.py.o
[406/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o
[407/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o
[408/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16.cc.o
[409/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o
[410/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86logging.cpp.o
../third_party/fbgemm/third_party/asmjit/src/asmjit/x86/x86logging.cpp: In function βasmjit::Error asmjit::x86::LoggingInternal::formatInstruction(asmjit::String&, uint32_t, const asmjit::BaseEmitter*, uint32_t, const asmjit::BaseInst&, const asmjit::Operand_*, uint32_t)β:
../third_party/fbgemm/third_party/asmjit/src/asmjit/x86/x86logging.cpp:677:29: warning: unused variable βinstInfoβ [-Wunused-variable]
const InstDB::InstInfo& instInfo = InstDB::infoById(instId);
^
[411/3429] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o
[412/3429] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o
[413/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmConv.cc.o
[414/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32.cc.o
[415/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o
../aten/src/ATen/native/NamedTensor.cpp: In function βat::Tensor at::native::index_copy(const at::Tensor&, at::Dimname, const at::Tensor&, const at::Tensor&)β:
../aten/src/ATen/native/NamedTensor.cpp:420:2: **internal compiler error**: in expand_thunk, at cgraphunit.c:1700
}} // namespace at::native
^
0x7dd826 cgraph_node::expand_thunk(bool, bool)
../../gcc/cgraphunit.c:1699
0x7df3bb cgraph_node::create_wrapper(cgraph_node*)
../../gcc/cgraphunit.c:2517
0x10255e9 ipa_icf::sem_function::merge(ipa_icf::sem_item*)
../../gcc/ipa-icf.c:1133
0x101d61f ipa_icf::sem_item_optimizer::merge_classes(unsigned int)
../../gcc/ipa-icf.c:3232
0x1024f9c ipa_icf::sem_item_optimizer::execute()
../../gcc/ipa-icf.c:2436
0x1026716 ipa_icf_driver
../../gcc/ipa-icf.c:3309
0x1026716 ipa_icf::pass_ipa_icf::execute(function*)
../../gcc/ipa-icf.c:3356
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
## To Reproduce
Steps to reproduce the behavior:
python setup.py install
-- The CXX compiler identification is GNU 5.2.0
-- The C compiler identification is GNU 5.2.0
-- Check for working CXX compiler: /usr/local/bin/c++
-- Check for working CXX compiler: /usr/local/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /usr/local/bin/gcc
-- Check for working C compiler: /usr/local/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Not forcing any particular BLAS to be found
-- Performing Test COMPILER_WORKS
-- Performing Test COMPILER_WORKS - Success
-- Performing Test SUPPORT_GLIBCXX_USE_C99
-- Performing Test SUPPORT_GLIBCXX_USE_C99 - Success
-- Performing Test CAFFE2_EXCEPTION_PTR_SUPPORTED
-- Performing Test CAFFE2_EXCEPTION_PTR_SUPPORTED - Success
-- std::exception_ptr is supported.
-- Performing Test CAFFE2_IS_NUMA_AVAILABLE
-- Performing Test CAFFE2_IS_NUMA_AVAILABLE - Failed
-- NUMA is not available
-- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING
-- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING - Success
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX2_EXTENSIONS
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX2_EXTENSIONS - Success
-- Current compiler supports avx2 extension. Will build perfkernels.
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS
-- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success
-- Current compiler supports avx512f extension. Will build fbgemm.
-- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY
-- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success
-- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY
-- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success
-- Performing Test COMPILER_SUPPORTS_RDYNAMIC
-- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success
-- Building using own protobuf under third_party per request.
-- Use custom protobuf build.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Caffe2 protobuf include directory: $<BUILD_INTERFACE:/ssd1/xuezhao/2d_detection/pytorch/third_party/protobuf/src>$<INSTALL_INTERFACE:include>
-- Trying to find preferred BLAS backend of choice: MKL
-- MKL_THREADING = OMP
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of void*
-- Check size of void* - done
-- Looking for cblas_sgemm
-- Looking for cblas_sgemm - found
-- MKL libraries: /usr/local/lib/libmkl_intel_lp64.so;/usr/local/lib/libmkl_gnu_thread.so;/usr/local/lib/libmkl_core.so;-fopenmp;/usr/lib64/libpthread.so;/usr/lib64/libm.so;/usr/lib64/libdl.so
-- MKL include directory: /usr/local/include
-- MKL OpenMP type: GNU
-- MKL OpenMP library: -fopenmp
-- The ASM compiler identification is GNU
-- Found assembler: /usr/local/bin/gcc
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Brace yourself, we are building NNPACK
-- Performing Test NNPACK_ARCH_IS_X86_32
-- Performing Test NNPACK_ARCH_IS_X86_32 - Failed
-- Found PythonInterp: /home/semantics/python-tf/bin/python (found version "2.7.13")
-- NNPACK backend is x86-64
-- Caffe2: Found glog with new-style glog target.
-- Failed to find LLVM FileCheck
-- Found Git: /usr/bin/git (found version "1.7.1")
-- git Version: v1.4.0-505be96a
-- Version: 1.4.0
-- Performing Test HAVE_CXX_FLAG_STD_CXX11
-- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success
-- Performing Test HAVE_CXX_FLAG_WALL
-- Performing Test HAVE_CXX_FLAG_WALL - Success
-- Performing Test HAVE_CXX_FLAG_WEXTRA
-- Performing Test HAVE_CXX_FLAG_WEXTRA - Success
-- Performing Test HAVE_CXX_FLAG_WSHADOW
-- Performing Test HAVE_CXX_FLAG_WSHADOW - Success
-- Performing Test HAVE_CXX_FLAG_WERROR
-- Performing Test HAVE_CXX_FLAG_WERROR - Success
-- Performing Test HAVE_CXX_FLAG_PEDANTIC
-- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success
-- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS
-- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success
-- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32
-- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed
-- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL
-- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL - Success
-- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING
-- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success
-- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS
-- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success
-- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING
-- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success
-- Performing Test HAVE_CXX_FLAG_WD654
-- Performing Test HAVE_CXX_FLAG_WD654 - Failed
-- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY
-- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed
-- Performing Test HAVE_CXX_FLAG_COVERAGE
-- Performing Test HAVE_CXX_FLAG_COVERAGE - Success
-- Performing Test HAVE_STD_REGEX
-- Performing Test HAVE_STD_REGEX
-- Performing Test HAVE_STD_REGEX -- success
-- Performing Test HAVE_GNU_POSIX_REGEX
-- Performing Test HAVE_GNU_POSIX_REGEX
-- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
-- Performing Test HAVE_POSIX_REGEX
-- Performing Test HAVE_POSIX_REGEX
-- Performing Test HAVE_POSIX_REGEX -- success
-- Performing Test HAVE_STEADY_CLOCK
-- Performing Test HAVE_STEADY_CLOCK
-- Performing Test HAVE_STEADY_CLOCK -- success
-- Performing Test COMPILER_SUPPORTS_AVX512
-- Performing Test COMPILER_SUPPORTS_AVX512 - Success
-- Found OpenMP_C: -fopenmp (found version "4.0")
-- Found OpenMP_CXX: -fopenmp (found version "4.0")
-- Found OpenMP: TRUE (found version "4.0")
-- Performing Test __CxxFlag__fmerge_all_constants
-- Performing Test __CxxFlag__fmerge_all_constants - Success
** AsmJit Summary **
ASMJIT_DIR=/ssd1/xuezhao/2d_detection/pytorch/third_party/fbgemm/third_party/asmjit
ASMJIT_TEST=FALSE
ASMJIT_TARGET_TYPE=STATIC
ASMJIT_DEPS=pthread;rt
ASMJIT_LIBS=asmjit;pthread;rt
ASMJIT_CFLAGS=-DASMJIT_STATIC
ASMJIT_PRIVATE_CFLAGS=-Wall;-Wextra;-fno-math-errno;-fno-threadsafe-statics;-DASMJIT_STATIC
ASMJIT_PRIVATE_CFLAGS_DBG=
ASMJIT_PRIVATE_CFLAGS_REL=-O2;-fmerge-all-constants
-- Could NOT find Numa (missing: Numa_INCLUDE_DIR Numa_LIBRARIES)
CMake Warning at cmake/Dependencies.cmake:598 (message):
Not compiling with NUMA. Suppress this warning with -DUSE_NUMA=OFF
Call Stack (most recent call first):
CMakeLists.txt:389 (include)
-- Using third party subdirectory Eigen.
Python 2.7.13
-- Found PythonInterp: /home/semantics/python-tf/bin/python (found suitable version "2.7.13", minimum required is "2.7")
-- Found PythonLibs: /home/users/huangkaiwen/xdevel/output/xdevel/lib/libpython2.7.so.1.0 (found suitable version "2.7.13", minimum required is "2.7")
-- Could NOT find pybind11 (missing: pybind11_DIR)
-- Found pybind11: /home/semantics/python-tf/include/python2.7/pybind11
-- System pybind11 found
-- pybind11 include dirs: /home/semantics/python-tf/include/python2.7/pybind11
-- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS)
-- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS)
-- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND)
CMake Warning at cmake/Dependencies.cmake:831 (message):
Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF
Call Stack (most recent call first):
CMakeLists.txt:389 (include)
-- Adding OpenMP CXX_FLAGS: -fopenmp
-- Will link against OpenMP libraries: /usr/local/lib64/libgomp.so;/usr/lib64/libpthread.so
-- Found CUDA: /home/work/cuda-10.0 (found version "10.0")
-- Caffe2: CUDA detected: 10.0
-- Caffe2: CUDA nvcc is: /home/work/cuda-10.0/bin/nvcc
-- Caffe2: CUDA toolkit directory: /home/work/cuda-10.0
-- Caffe2: Header version is: 10.0
-- Found CUDNN: /home/work/cudnn/cudnn_v7.4/cuda/lib64/libcudnn.so
-- Found cuDNN: v7.4.2 (include: /home/work/cudnn/cudnn_v7.4/cuda/include, library: /home/work/cudnn/cudnn_v7.4/cuda/lib64/libcudnn.so)
-- Autodetected CUDA architecture(s): 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0
-- Added CUDA NVCC flags for: -gencode;arch=compute_70,code=sm_70
-- Autodetected CUDA architecture(s): 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0
-- Could NOT find CUB (missing: CUB_INCLUDE_DIR)
-- Found CUDA: /home/work/cuda-10.0 (found suitable version "10.0", minimum required is "7.0")
-- CUDA detected: 10.0
-- Found NCCL: /home/work/nccl/nccl2.4.2_cuda10.0/include
-- Determining NCCL version from the header file: /home/work/nccl/nccl2.4.2_cuda10.0/include/nccl.h
-- NCCL_MAJOR_VERSION: 2
-- Found NCCL (include: /home/work/nccl/nccl2.4.2_cuda10.0/include, library: /home/work/nccl/nccl2.4.2_cuda10.0/lib/libnccl.so)
CMake Warning at cmake/Dependencies.cmake:1097 (message):
Metal is only used in ios builds.
Call Stack (most recent call first):
CMakeLists.txt:389 (include)
Generated: /ssd1/xuezhao/2d_detection/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto
Generated: /ssd1/xuezhao/2d_detection/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto
--
-- ******** Summary ********
-- CMake version : 3.10.3
-- CMake command : /usr/local/bin/cmake
-- System : Linux
-- C++ compiler : /usr/local/bin/c++
-- C++ compiler version : 5.2.0
-- CXX flags : -fvisibility-inlines-hidden -fopenmp -Wnon-virtual-dtor
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1
-- CMAKE_PREFIX_PATH : /home/semantics/python-tf/lib/python2.7/site-packages;/home/work/cuda-10.0
-- CMAKE_INSTALL_PREFIX : /ssd1/xuezhao/2d_detection/pytorch/torch
-- CMAKE_MODULE_PATH : /ssd1/xuezhao/2d_detection/pytorch/cmake/Modules;/ssd1/xuezhao/2d_detection/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.6.0
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
-- ONNXIFI_ENABLE_EXT : OFF
--
-- Protobuf compiler : /usr/local/bin/protoc
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
--
-- ******** Summary ********
-- CMake version : 3.10.3
-- CMake command : /usr/local/bin/cmake
-- System : Linux
-- C++ compiler : /usr/local/bin/c++
-- C++ compiler version : 5.2.0
-- CXX flags : -fvisibility-inlines-hidden -fopenmp -Wnon-virtual-dtor
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1
-- CMAKE_PREFIX_PATH : /home/semantics/python-tf/lib/python2.7/site-packages;/home/work/cuda-10.0
-- CMAKE_INSTALL_PREFIX : /ssd1/xuezhao/2d_detection/pytorch/torch
-- CMAKE_MODULE_PATH : /ssd1/xuezhao/2d_detection/pytorch/cmake/Modules;/ssd1/xuezhao/2d_detection/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.4.1
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
--
-- Protobuf compiler : /usr/local/bin/protoc
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
-- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor
-- Removing -DNDEBUG from compile flags
-- MAGMA not found. Compiling without MAGMA support
-- Could not find hardware support for NEON on this machine.
-- No OMAP3 processor on this machine.
-- No OMAP4 processor on this machine.
-- Looking for cpuid.h
-- Looking for cpuid.h - found
-- Performing Test HAVE_GCC_GET_CPUID
-- Performing Test HAVE_GCC_GET_CPUID - Success
-- Performing Test NO_GCC_EBX_FPIC_BUG
-- Performing Test NO_GCC_EBX_FPIC_BUG - Success
-- Performing Test C_HAS_AVX_1
-- Performing Test C_HAS_AVX_1 - Failed
-- Performing Test C_HAS_AVX_2
-- Performing Test C_HAS_AVX_2 - Success
-- Performing Test C_HAS_AVX2_1
-- Performing Test C_HAS_AVX2_1 - Failed
-- Performing Test C_HAS_AVX2_2
-- Performing Test C_HAS_AVX2_2 - Success
-- Performing Test CXX_HAS_AVX_1
-- Performing Test CXX_HAS_AVX_1 - Failed
-- Performing Test CXX_HAS_AVX_2
-- Performing Test CXX_HAS_AVX_2 - Success
-- Performing Test CXX_HAS_AVX2_1
-- Performing Test CXX_HAS_AVX2_1 - Failed
-- Performing Test CXX_HAS_AVX2_2
-- Performing Test CXX_HAS_AVX2_2 - Success
-- AVX compiler support found
-- AVX2 compiler support found
-- Performing Test BLAS_F2C_DOUBLE_WORKS
-- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed
-- Performing Test BLAS_F2C_FLOAT_WORKS
-- Performing Test BLAS_F2C_FLOAT_WORKS - Failed
-- Performing Test BLAS_USE_CBLAS_DOT
-- Performing Test BLAS_USE_CBLAS_DOT - Failed
-- Found a library with BLAS API (mkl).
-- Found a library with LAPACK API (mkl).
disabling ROCM because NOT USE_ROCM is set
-- MIOpen not found. Compiling without MIOpen support
-- MKLDNN_THREADING = OMP:COMP
-- Found OpenMP_C: -fopenmp (found version "4.0")
-- Found OpenMP_CXX: -fopenmp (found version "4.0")
-- OpenMP lib: provided by compiler
-- Found Doxygen: /usr/bin/doxygen (found version "1.6.1") found components: doxygen missing components: dot
-- VTune profiling environment is unset
-- Found MKL-DNN: TRUE
-- Looking for clock_gettime in rt
-- Looking for clock_gettime in rt - found
-- Looking for mmap
-- Looking for mmap - found
-- Looking for shm_open
-- Looking for shm_open - found
-- Looking for shm_unlink
-- Looking for shm_unlink - found
-- Looking for malloc_usable_size
-- Looking for malloc_usable_size - found
-- Performing Test C_HAS_THREAD
-- Performing Test C_HAS_THREAD - Success
-- GCC 5.2.0: Adding gcc and gcc_s libs to link line
-- don't use NUMA
-- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT
-- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Success
-- Found OpenSSL: /usr/lib64/libcrypto.so (found version "1.0.0")
-- Check size of long double
-- Check size of long double - done
-- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE
-- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE - Failed
-- Performing Test COMPILER_SUPPORTS_FLOAT128
-- Performing Test COMPILER_SUPPORTS_FLOAT128 - Success
-- Performing Test COMPILER_SUPPORTS_SSE2
-- Performing Test COMPILER_SUPPORTS_SSE2 - Success
-- Performing Test COMPILER_SUPPORTS_SSE4
-- Performing Test COMPILER_SUPPORTS_SSE4 - Success
-- Performing Test COMPILER_SUPPORTS_AVX
-- Performing Test COMPILER_SUPPORTS_AVX - Success
-- Performing Test COMPILER_SUPPORTS_FMA4
-- Performing Test COMPILER_SUPPORTS_FMA4 - Success
-- Performing Test COMPILER_SUPPORTS_AVX2
-- Performing Test COMPILER_SUPPORTS_AVX2 - Success
-- Performing Test COMPILER_SUPPORTS_AVX512F
-- Performing Test COMPILER_SUPPORTS_AVX512F - Failed
-- Performing Test COMPILER_SUPPORTS_OPENMP
-- Performing Test COMPILER_SUPPORTS_OPENMP - Success
-- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES
-- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Success
-- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH
-- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success
-- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM
-- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed
-- Configuring build for SLEEF-v3.4.0
Target system: Linux-3.10.0_3-0-0-15
Target processor: x86_64
Host system: Linux-3.10.0_3-0-0-15
Host processor: x86_64
Detected C compiler: GNU @ /usr/local/bin/gcc
-- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef
-- Building shared libs : OFF
-- MPFR : LIB_MPFR-NOTFOUND
-- GMP : /usr/lib64/libgmp.so
-- RT : /usr/lib64/librt.so
-- FFTW3 : LIBFFTW3-NOTFOUND
-- OPENSSL : 1.0.0
-- SDE : SDE_COMMAND-NOTFOUND
-- RUNNING_ON_TRAVIS : 0
-- COMPILER_SUPPORTS_OPENMP : 1
AT_INSTALL_INCLUDE_DIR include/ATen/core
core header install: /ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h
core header install: /ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorMethods.h
-- Include NCCL operators
-- Including IDEEP operators
-- Excluding image processing operators due to no opencv
-- Excluding video processing operators due to no opencv
-- MPI operators skipped due to no MPI support
-- Include Observer library
-- /ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp
-- /ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cudnn/BatchNorm.cpp
-- /ssd1/xuezhao/2d_detection/pytorch/caffe2/../torch/csrc/cuda/comm.cpp
-- /usr/local/bin/c++ /ssd1/xuezhao/2d_detection/pytorch/caffe2/../torch/abi-check.cpp -o /ssd1/xuezhao/2d_detection/pytorch/build/abi-check
-- Determined _GLIBCXX_USE_CXX11_ABI=1
-- pytorch is compiling with OpenMP.
OpenMP CXX_FLAGS: -fopenmp.
OpenMP libraries: /usr/local/lib64/libgomp.so;/usr/lib64/libpthread.so.
-- Caffe2 is compiling with OpenMP.
OpenMP CXX_FLAGS: -fopenmp.
OpenMP libraries: /usr/local/lib64/libgomp.so;/usr/lib64/libpthread.so.
-- Using ATen parallel backend: OMP
-- Using lib/python2.7/site-packages as python relative installation path
CMake Warning at CMakeLists.txt:592 (message):
Generated cmake files are only fully tested if one builds with system glog,
gflags, and protobuf. Other settings may generate files that are not well
tested.
-- ******** Summary ********
-- General:
-- CMake version : 3.10.3
-- CMake command : /usr/local/bin/cmake
-- System : Linux
-- C++ compiler : /usr/local/bin/c++
-- C++ compiler id : GNU
-- C++ compiler version : 5.2.0
-- BLAS : MKL
-- CXX flags : -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math
-- Build type : Release
-- Compile definitions : TH_BLAS_MKL;ONNX_ML=1;ONNX_NAMESPACE=onnx_torch;IDEEP_USE_MKL;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1
-- CMAKE_PREFIX_PATH : /home/semantics/python-tf/lib/python2.7/site-packages;/home/work/cuda-10.0
-- CMAKE_INSTALL_PREFIX : /ssd1/xuezhao/2d_detection/pytorch/torch
--
-- TORCH_VERSION : 1.4.0
-- CAFFE2_VERSION : 1.4.0
-- BUILD_CAFFE2_MOBILE : ON
-- USE_STATIC_DISPATCH : OFF
-- BUILD_BINARY : OFF
-- BUILD_CUSTOM_PROTOBUF : ON
-- Link local protobuf : ON
-- BUILD_DOCS : OFF
-- BUILD_PYTHON : True
-- Python version : 2.7.13
-- Python executable : /home/semantics/python-tf/bin/python
-- Pythonlibs version : 2.7.13
-- Python library : /home/users/huangkaiwen/xdevel/output/xdevel/lib/libpython2.7.so.1.0
-- Python includes : /home/semantics/python-tf/include/python2.7
-- Python site-packages: lib/python2.7/site-packages
-- BUILD_CAFFE2_OPS : ON
-- BUILD_SHARED_LIBS : ON
-- BUILD_TEST : True
-- INTERN_BUILD_MOBILE :
-- USE_ASAN : OFF
-- USE_CUDA : True
-- CUDA static link : OFF
-- USE_CUDNN : ON
-- CUDA version : 10.0
-- cuDNN version : 7.4.2
-- CUDA root directory : /home/work/cuda-10.0
-- CUDA library : /home/work/cuda-10.0/lib64/stubs/libcuda.so
-- cudart library : /home/work/cuda-10.0/lib64/libcudart.so
-- cublas library : /home/work/cuda-10.0/lib64/libcublas.so
-- cufft library : /home/work/cuda-10.0/lib64/libcufft.so
-- curand library : /home/work/cuda-10.0/lib64/libcurand.so
-- cuDNN library : /home/work/cudnn/cudnn_v7.4/cuda/lib64/libcudnn.so
-- nvrtc : /home/work/cuda-10.0/lib64/libnvrtc.so
-- CUDA include path : /home/work/cuda-10.0/include
-- NVCC executable : /home/work/cuda-10.0/bin/nvcc
-- CUDA host compiler : /usr/local/bin/gcc
-- USE_TENSORRT : OFF
-- USE_ROCM : OFF
-- USE_EIGEN_FOR_BLAS :
-- USE_FBGEMM : ON
-- USE_FFMPEG : OFF
-- USE_GFLAGS : OFF
-- USE_GLOG : ON
-- USE_LEVELDB : OFF
-- USE_LITE_PROTO : OFF
-- USE_LMDB : OFF
-- USE_METAL : OFF
-- USE_MKL : ON
-- USE_MKLDNN : ON
-- USE_MKLDNN_CBLAS : OFF
-- USE_NCCL : ON
-- USE_SYSTEM_NCCL : OFF
-- USE_NNPACK : ON
-- USE_NUMPY : ON
-- USE_OBSERVERS : ON
-- USE_OPENCL : OFF
-- USE_OPENCV : OFF
-- USE_OPENMP : ON
-- USE_TBB : OFF
-- USE_PROF : OFF
-- USE_QNNPACK : ON
-- USE_REDIS : OFF
-- USE_ROCKSDB : OFF
-- USE_ZMQ : OFF
-- USE_DISTRIBUTED : ON
-- USE_MPI : OFF
-- USE_GLOO : ON
-- BUILD_NAMEDTENSOR : OFF
-- Public Dependencies : Threads::Threads;caffe2::mkl;glog::glog;caffe2::mkldnn
-- Private Dependencies : qnnpack;pytorch_qnnpack;nnpack;cpuinfo;fbgemm;fp16;gloo;aten_op_header_gen;foxi_loader;rt;gcc_s;gcc;dl
-- Configuring done
-- Generating done
-- Build files have been written to: /ssd1/xuezhao/2d_detection/pytorch/build
[393/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonelist.cpp.o
[394/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithIm2Col.cc.o
[395/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zone.cpp.o
[396/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rastack.cpp.o
[397/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonetree.cpp.o
[398/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/virtmem.cpp.o
[399/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonestack.cpp.o
[400/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForConv.cc.o
[401/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86operand.cpp.o
[402/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86features.cpp.o
[403/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o
../third_party/fbgemm/third_party/asmjit/src/asmjit/core/ralocal.cpp:833:79: warning: unused parameter βcontβ [-Wunused-parameter]
Error RALocalAllocator::allocBranch(InstNode* node, RABlock* target, RABlock* cont) noexcept {
^
[404/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512.cc.o
[405/3429] Generating src/x86_64-fma/2d-fourier-8x8.py.o
[406/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o
[407/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o
[408/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16.cc.o
[409/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o
[410/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86logging.cpp.o
../third_party/fbgemm/third_party/asmjit/src/asmjit/x86/x86logging.cpp: In function βasmjit::Error asmjit::x86::LoggingInternal::formatInstruction(asmjit::String&, uint32_t, const asmjit::BaseEmitter*, uint32_t, const asmjit::BaseInst&, const asmjit::Operand_*, uint32_t)β:
../third_party/fbgemm/third_party/asmjit/src/asmjit/x86/x86logging.cpp:677:29: warning: unused variable βinstInfoβ [-Wunused-variable]
const InstDB::InstInfo& instInfo = InstDB::infoById(instId);
^
[411/3429] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o
[412/3429] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o
[413/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmConv.cc.o
[414/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32.cc.o
[415/3429] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o
[1513/3429] Generating ../aten/src/ATen/CPUType.cpp, ../aten/src/ATen/CPUType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/LegacyTHFunctionsCPU.cpp, ../aten/src/ATen/LegacyTHFunctionsCPU.h, ../aten/src/ATen/MkldnnCPUType.cpp, ../aten/src/ATen/MkldnnCPUType.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/QuantizedCPUType.cpp, ../aten/src/ATen/QuantizedCPUType.h, ../aten/src/ATen/RegistrationDeclarations.h, ../aten/src/ATen/SparseCPUType.cpp, ../aten/src/ATen/SparseCPUType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/CUDAType.cpp, ../aten/src/ATen/CUDAType.h, ../aten/src/ATen/LegacyTHFunctionsCUDA.cpp, ../aten/src/ATen/LegacyTHFunctionsCUDA.h, ../aten/src/ATen/SparseCUDAType.cpp, ../aten/src/ATen/SparseCUDAType.h, ../aten/src/ATen/core/OpsAlreadyMovedToC10.cpp, ../aten/src/ATen/core/TensorBody.h, ../aten/src/ATen/core/TensorMethods.h
[1514/3429] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm/f32/jit_avx512_core_f32_copy_at_kern.cpp.o
[1515/3429] Linking CXX static library lib/libmkldnn.a
[1516/3429] Building CXX object c10/test/CMakeFiles/c10_intrusive_ptr_test.dir/util/intrusive_ptr_test.cpp.o
[1517/3429] Linking CXX executable bin/c10_intrusive_ptr_test
[1518/3429] Generating contrib/aten/aten_op.h
Skipping rename Because of Arg: c10::optional<DimnameList> (DimnameList)
Skipping align_to Because of Arg: DimnameList (DimnameList)
Skipping align_to Because of Arg: DimnameList (DimnameList)
Skipping refine_names Because of Arg: DimnameList (DimnameList)
Skipping unflatten Because of Arg: Dimname (Dimname)
Skipping unflatten Because of Arg: DimnameList (DimnameList)
Skipping _cudnn_rnn_backward Because of Arg: std::array<bool,4> (std::array<bool,4>)
Skipping _cudnn_init_dropout_state because it is a factory method
Skipping _fused_dropout Because of Arg: Generator * (Generator *)
Skipping _sobol_engine_draw Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping all Because of Arg: Dimname (Dimname)
Skipping all Because of Arg: Dimname (Dimname)
Skipping any Because of Arg: Dimname (Dimname)
Skipping any Because of Arg: Dimname (Dimname)
Skipping arange because it is a factory method
Skipping argmax Because of Arg: c10::optional<int64_t> (int64_t)
Skipping argmax Because of Arg: c10::optional<int64_t> (int64_t)
Skipping argmin Because of Arg: c10::optional<int64_t> (int64_t)
Skipping argmin Because of Arg: c10::optional<int64_t> (int64_t)
Skipping as_strided Because of Arg: c10::optional<int64_t> (int64_t)
Skipping bartlett_window because it is a factory method
Skipping bernoulli Because of Arg: Generator * (Generator *)
Skipping bernoulli Because of Arg: Generator * (Generator *)
Skipping blackman_window because it is a factory method
Skipping cat Because of Arg: Dimname (Dimname)
Skipping clamp Because of Arg: c10::optional<Scalar> (Scalar)
Skipping clamp Because of Arg: c10::optional<Scalar> (Scalar)
Skipping contiguous Because of Arg: MemoryFormat (MemoryFormat)
Skipping cumsum Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping cumsum Because of Arg: Dimname (Dimname)
Skipping cumsum Because of Arg: Dimname (Dimname)
Skipping cumprod Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping cumprod Because of Arg: Dimname (Dimname)
Skipping cumprod Because of Arg: Dimname (Dimname)
Skipping einsum Because of Arg: std::string (std::string)
Skipping empty because it is a factory method
Skipping new_empty because it is a factory method
Skipping new_full because it is a factory method
Skipping new_zeros because it is a factory method
Skipping _empty_affine_quantized because it is a factory method
Skipping _empty_per_channel_affine_quantized because it is a factory method
Skipping empty_like because it is a factory method
Skipping empty_strided because it is a factory method
Skipping eye because it is a factory method
Skipping flatten Because of Arg: Dimname (Dimname)
Skipping flatten Because of Arg: Dimname (Dimname)
Skipping flatten Because of Arg: DimnameList (DimnameList)
Skipping full because it is a factory method
Skipping full_like because it is a factory method
Skipping from_file because it is a factory method
Skipping hann_window because it is a factory method
Skipping hamming_window because it is a factory method
Skipping index_copy Because of Arg: Dimname (Dimname)
Skipping kthvalue Because of Arg: Dimname (Dimname)
Skipping kthvalue Because of Arg: Dimname (Dimname)
Skipping fbgemm_linear_quantize_weight Because of Ret: double (double)
Skipping linspace because it is a factory method
Skipping logspace because it is a factory method
Skipping log_softmax Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping log_softmax Because of Arg: Dimname (Dimname)
Skipping log_softmax Because of Arg: Dimname (Dimname)
Skipping logsumexp Because of Arg: DimnameList (DimnameList)
Skipping logsumexp Because of Arg: DimnameList (DimnameList)
Skipping max Because of Arg: Dimname (Dimname)
Skipping max Because of Arg: Dimname (Dimname)
Skipping max_values Because of Arg: DimnameList (DimnameList)
Skipping max_values Because of Arg: DimnameList (DimnameList)
Skipping mean Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping mean Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping mean Because of Arg: DimnameList (DimnameList)
Skipping mean Because of Arg: DimnameList (DimnameList)
Skipping mean Because of Arg: DimnameList (DimnameList)
Skipping median Because of Arg: Dimname (Dimname)
Skipping median Because of Arg: Dimname (Dimname)
Skipping min Because of Arg: Dimname (Dimname)
Skipping min Because of Arg: Dimname (Dimname)
Skipping min_values Because of Arg: DimnameList (DimnameList)
Skipping min_values Because of Arg: DimnameList (DimnameList)
Skipping miopen_rnn_backward Because of Arg: std::array<bool,4> (std::array<bool,4>)
Skipping mode Because of Arg: Dimname (Dimname)
Skipping mode Because of Arg: Dimname (Dimname)
Skipping ones because it is a factory method
Skipping ones_like because it is a factory method
Skipping cdist Because of Arg: c10::optional<int64_t> (int64_t)
Skipping scalar_tensor because it is a factory method
Skipping rand because it is a factory method
Skipping rand_like because it is a factory method
Skipping randint because it is a factory method
Skipping randint_like because it is a factory method
Skipping randn because it is a factory method
Skipping randn_like because it is a factory method
Skipping randperm because it is a factory method
Skipping range because it is a factory method
Skipping repeat_interleave Because of Arg: c10::optional<int64_t> (int64_t)
Skipping repeat_interleave Because of Arg: c10::optional<int64_t> (int64_t)
Skipping rrelu Because of Arg: Generator * (Generator *)
Skipping select Because of Arg: Dimname (Dimname)
Skipping size Because of Arg: Dimname (Dimname)
Skipping softmax Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping softmax Because of Arg: Dimname (Dimname)
Skipping softmax Because of Arg: Dimname (Dimname)
Skipping squeeze Because of Arg: Dimname (Dimname)
Skipping stft Because of Arg: c10::optional<int64_t> (int64_t)
Skipping stft Because of Arg: c10::optional<int64_t> (int64_t)
Skipping stft Because of Arg: c10::optional<int64_t> (int64_t)
Skipping stft Because of Arg: c10::optional<int64_t> (int64_t)
Skipping stft Because of Arg: c10::optional<int64_t> (int64_t)
Skipping stride Because of Arg: Dimname (Dimname)
Skipping sum Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping sum Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping sum Because of Arg: DimnameList (DimnameList)
Skipping sum Because of Arg: DimnameList (DimnameList)
Skipping sum Because of Arg: DimnameList (DimnameList)
Skipping std_mean Because of Arg: DimnameList (DimnameList)
Skipping std_mean Because of Arg: DimnameList (DimnameList)
Skipping std_mean Because of Arg: DimnameList (DimnameList)
Skipping std Because of Arg: DimnameList (DimnameList)
Skipping std Because of Arg: DimnameList (DimnameList)
Skipping std Because of Arg: DimnameList (DimnameList)
Skipping prod Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping prod Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping prod Because of Arg: Dimname (Dimname)
Skipping prod Because of Arg: Dimname (Dimname)
Skipping prod Because of Arg: Dimname (Dimname)
Skipping transpose Because of Arg: Dimname (Dimname)
Skipping unique_consecutive Because of Arg: c10::optional<int64_t> (int64_t)
Skipping var Because of Arg: DimnameList (DimnameList)
Skipping var Because of Arg: DimnameList (DimnameList)
Skipping var Because of Arg: DimnameList (DimnameList)
Skipping var_mean Because of Arg: DimnameList (DimnameList)
Skipping var_mean Because of Arg: DimnameList (DimnameList)
Skipping var_mean Because of Arg: DimnameList (DimnameList)
Skipping zeros because it is a factory method
Skipping zeros_like because it is a factory method
Skipping _standard_gamma Because of Arg: Generator * (Generator *)
Skipping _sample_dirichlet Because of Arg: Generator * (Generator *)
Skipping poisson Because of Arg: Generator * (Generator *)
Skipping _sparse_sum Because of Arg: ScalarType (ScalarType)
Skipping _sparse_sum Because of Arg: ScalarType (ScalarType)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping norm Because of Arg: c10::optional<Scalar> (Scalar)
Skipping clone Because of Arg: c10::optional<MemoryFormat> (MemoryFormat)
Skipping sparse_coo_tensor because it is a factory method
Skipping _sparse_coo_tensor_unsafe because it is a factory method
Skipping _sparse_coo_tensor_with_dims because it is a factory method
Skipping _sparse_coo_tensor_with_dims_and_tensors because it is a factory method
Skipping unbind Because of Arg: Dimname (Dimname)
Skipping quantize_per_tensor Because of Arg: ScalarType (ScalarType)
Skipping quantize_per_channel Because of Arg: ScalarType (ScalarType)
Skipping q_scale Because of Ret: double (double)
Skipping qscheme Because of Ret: QScheme (QScheme)
Skipping to because it is a factory method
Skipping result_type Because of Ret: ScalarType (ScalarType)
Skipping result_type Because of Ret: ScalarType (ScalarType)
Skipping result_type Because of Ret: ScalarType (ScalarType)
Skipping result_type Because of Ret: ScalarType (ScalarType)
Skipping can_cast Because of Arg: ScalarType (ScalarType)
Skipping promote_types Because of Ret: ScalarType (ScalarType)
Skipping quantized_lstm Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping quantized_lstm Because of Arg: c10::optional<ScalarType> (ScalarType)
Skipping index_add Because of Arg: Dimname (Dimname)
Skipping index_fill Because of Arg: Dimname (Dimname)
Skipping index_fill Because of Arg: Dimname (Dimname)
Skipping scatter Because of Arg: Dimname (Dimname)
Skipping scatter Because of Arg: Dimname (Dimname)
Skipping scatter_add Because of Arg: Dimname (Dimname)
Skipping cross Because of Arg: c10::optional<int64_t> (int64_t)
Skipping tril_indices because it is a factory method
Skipping triu_indices because it is a factory method
Skipping index_select Because of Arg: Dimname (Dimname)
Skipping gather Because of Arg: Dimname (Dimname)
Skipping gather Because of Arg: Dimname (Dimname)
Skipping multinomial Because of Arg: Generator * (Generator *)
Skipping _multinomial_alias_draw Because of Arg: Generator * (Generator *)
Skipping sort Because of Arg: Dimname (Dimname)
Skipping sort Because of Arg: Dimname (Dimname)
Skipping argsort Because of Arg: Dimname (Dimname)
Skipping argsort Because of Arg: Dimname (Dimname)
Skipping normal because it is a factory method
Skipping rrelu_with_noise Because of Arg: Generator * (Generator *)
Skipping avg_pool2d Because of Arg: c10::optional<int64_t> (int64_t)
Skipping avg_pool2d_backward Because of Arg: c10::optional<int64_t> (int64_t)
Skipping avg_pool3d Because of Arg: c10::optional<int64_t> (int64_t)
Skipping avg_pool3d_backward Because of Arg: c10::optional<int64_t> (int64_t)
[1519/3429] Generating ../../../torch/__init__.pyi, ../../../torch/nn/functional.pyi
Writing ./torch/__init__.pyi
Writing ./torch/nn/functional.pyi
[1520/3429] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/jit/generated/register_aten_ops_0.cpp, ../../torch/csrc/jit/generated/register_aten_ops_1.cpp, ../../torch/csrc/jit/generated/register_aten_ops_2.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/autograd/generated/python_functions.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/csrc/autograd/generated/python_variable_methods_dispatch.h, ../../torch/csrc/autograd/generated/python_torch_functions_dispatch.h, ../../torch/csrc/autograd/generated/python_nn_functions.h, ../../torch/csrc/autograd/generated/python_nn_functions_dispatch.h
Writing torch/csrc/autograd/generated/python_functions.h
Writing torch/csrc/autograd/generated/python_functions.cpp
Writing torch/csrc/autograd/generated/python_variable_methods.cpp
Writing torch/csrc/autograd/generated/python_variable_methods_dispatch.h
Writing torch/csrc/autograd/generated/python_torch_functions.cpp
Writing torch/csrc/autograd/generated/python_torch_functions_dispatch.h
Writing torch/csrc/autograd/generated/python_nn_functions.cpp
Writing torch/csrc/autograd/generated/python_nn_functions.h
Writing torch/csrc/autograd/generated/python_nn_functions_dispatch.h
Writing torch/csrc/autograd/generated/VariableType.h
Writing torch/csrc/autograd/generated/VariableType_0.cpp
Writing torch/csrc/autograd/generated/VariableType_1.cpp
Writing torch/csrc/autograd/generated/VariableType_2.cpp
Writing torch/csrc/autograd/generated/VariableType_3.cpp
Writing torch/csrc/autograd/generated/VariableType_4.cpp
Writing torch/csrc/autograd/generated/VariableTypeEverything.cpp
Writing torch/csrc/autograd/generated/Functions.h
Writing torch/csrc/autograd/generated/Functions.cpp
Writing torch/csrc/autograd/generated/variable_factories.h
Writing torch/csrc/jit/generated/register_aten_ops_0.cpp
Writing torch/csrc/jit/generated/register_aten_ops_1.cpp
Writing torch/csrc/jit/generated/register_aten_ops_2.cpp
[1521/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o
[1522/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3x3Avx2.cc.o
[1523/3429] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o
[1524/3429] Linking CXX static library lib/libfbgemm.a
[1525/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCSleep.cu.o
[1526/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCStorage.cu.o
[1527/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCBlas.cu.o
[1528/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCReduceApplyUtils.cu.o
[1529/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCSortUtils.cu.o
[1530/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareChar.cu.o
[1531/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensor.cu.o
[1532/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTByte.cu.o
[1533/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCStorageCopy.cu.o
[1534/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMathMagma.cu.o
/ssd1/xuezhao/2d_detection/pytorch/aten/src/THC/generic/THCTensorMathMagma.cu(208): warning: variable "uplo" was declared but never referenced
/ssd1/xuezhao/2d_detection/pytorch/aten/src/THC/generic/THCTensorMathMagma.cu(208): warning: variable "uplo" was declared but never referenced
[1535/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMathBlas.cu.o
[1536/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorSort.cu.o
[1537/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMathReduce.cu.o
[1538/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorRandom.cu.o
[1539/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorCopy.cu.o
[1540/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cosine_embedding_criterion_op.cu.o
[1541/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_LeakyReLU.cu.o
[1542/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_replace_nan_op.cu.o
[1543/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceChar.cu.o
[1544/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceByte.cu.o
[1545/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_local_response_normalization_op.cu.o
[1546/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_channel_shuffle_op.cu.o
[1547/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorScatterGather.cu.o
[1548/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_pow_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1549/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedFloat.cu.o
[1550/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedChar.cu.o
[1551/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTChar.cu.o
[1552/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMath.cu.o
[1553/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortShort.cu.o
[1554/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortByte.cu.o
[1555/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortChar.cu.o
[1556/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMathScan.cu.o
[1557/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseShort.cu.o
[1558/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseInt.cu.o
[1559/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareShort.cu.o
[1560/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareByte.cu.o
[1561/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTFloat.cu.o
[1562/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTBool.cu.o
[1563/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedByte.cu.o
[1564/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTShort.cu.o
[1565/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTInt.cu.o
[1566/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTLong.cu.o
[1567/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_roi_align_gradient_op.cu.o
[1568/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Loss.cu.o
[1569/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_relu_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1570/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTDouble.cu.o
[1571/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_perplexity_op.cu.o
[1572/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_DilatedMaxPool2d.cu.o
[1573/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceShort.cu.o
[1574/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareInt.cu.o
[1575/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedBool.cu.o
[1576/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedInt.cu.o
[1577/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareHalf.cu.o
[1578/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseByte.cu.o
[1579/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Lerp.cu.o
[1580/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseChar.cu.o
[1581/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedShort.cu.o
[1582/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareLong.cu.o
[1583/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortLong.cu.o
[1584/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceInt.cu.o
[1585/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortInt.cu.o
[1586/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareTHalf.cu.o
[1587/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedLong.cu.o
[1588/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseHalf.cu.o
[1589/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorTopK.cu.o
[1590/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMathPairwise.cu.o
[1591/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceFloat.cu.o
[1592/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedHalf.cu.o
[1593/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceLong.cu.o
[1594/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseLong.cu.o
[1595/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortHalf.cu.o
[1596/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Im2Col.cu.o
[1597/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortFloat.cu.o
[1598/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_moments_op.cu.o
[1599/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareBool.cu.o
[1600/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_GridSampler.cu.o
[1601/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareFloat.cu.o
[1602/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathCompareDouble.cu.o
[1603/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Embedding.cu.o
[1604/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorSortDouble.cu.o
[1605/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reduce_front_back_max_ops.cu.o
[1606/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Indexing.cu.o
[1607/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceBool.cu.o
[1608/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_pool_op.cu.o
[1609/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_TensorFactories.cu.o
[1610/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_ClassNLLCriterion.cu.o
[1611/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseFloat.cu.o
[1612/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_GatedLinearUnit.cu.o
[1613/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_ELU.cu.o
[1614/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMaskedDouble.cu.o
[1615/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseBool.cu.o
[1616/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SmoothL1Criterion.cu.o
[1617/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_MultiLabelMarginCriterion.cu.o
[1618/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_MultiMarginCriterion.cu.o
[1619/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AdaptiveMaxPooling3d.cu.o
[1620/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_HardTanh.cu.o
[1621/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_RReLU.cu.o
[1622/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SpatialClassNLLCriterion.cu.o
[1623/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_Sigmoid.cu.o
[1624/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_LogSigmoid.cu.o
[1625/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_AbsCriterion.cu.o
[1626/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_MSECriterion.cu.o
[1627/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SoftShrink.cu.o
[1628/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathPointwiseDouble.cu.o
[1629/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SpatialConvolutionMM.cu.o
[1630/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_Tanh.cu.o
[1631/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AdaptiveAveragePooling3d.cu.o
[1632/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AdaptiveAveragePooling.cu.o
[1633/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SpatialDepthwiseConvolution.cu.o
[1634/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SoftPlus.cu.o
[1635/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/cuda/detail/torch_generated_IndexUtils.cu.o
[1636/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_CUDAScalar.cu.o
[1637/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_CrossKernel.cu.o
[1638/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_FractionalMaxPool3d.cu.o
[1639/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AveragePool3d.cu.o
[1640/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_BatchLinearAlgebra.cu.o
[1641/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_BCECriterion.cu.o
[1642/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AdaptiveMaxPooling2d.cu.o
[1643/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THCUNN/torch_generated_SoftMarginCriterion.cu.o
[1644/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_AveragePool2d.cu.o
[1645/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Col2Im.cu.o
[1646/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_FillKernel.cu.o
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = unsigned char; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char> >; typename traits::result_type = unsigned char]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:10:472: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = unsigned char; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char> >; typename traits::result_type = unsigned char]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 1u>, unsigned char(), unsigned char>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:10:472: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = signed char; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char> >; typename traits::result_type = signed char]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:12:464: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = signed char; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char> >; typename traits::result_type = signed char]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 2u>, signed char(), signed char>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:12:464: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = double; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double> >; typename traits::result_type = double]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:14:444: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = double; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double> >; typename traits::result_type = double]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 3u>, double(), double>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:14:444: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = float; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float> >; typename traits::result_type = float]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:16:440: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = float; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float> >; typename traits::result_type = float]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 4u>, float(), float>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:16:440: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int> >; typename traits::result_type = int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:18:432: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int> >; typename traits::result_type = int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 5u>, int(), int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:18:432: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = long int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int> >; typename traits::result_type = long int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:20:436: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = long int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int> >; typename traits::result_type = long int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 6u>, long int(), long int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:20:436: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = short int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int> >; typename traits::result_type = short int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:22:440: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = short int; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int> >; typename traits::result_type = short int]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 7u>, short int(), short int>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:22:440: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = bool; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool> >; typename traits::result_type = bool]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:24:436: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = bool; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool> >; typename traits::result_type = bool]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 8u>, bool(), bool>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:24:436: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>; index_t = int; long unsigned int ...I = {}; typename traits::result_type = c10::Half; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>; index_t = int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half> >; typename traits::result_type = c10::Half]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:145:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:143:369: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:26:468: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh: In instantiation of βtypename traits::result_type at::native::invoke_impl(const func_t&, char* const __restrict__*, const index_t*, int, c10::guts::index_sequence<I ...>) [with traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half> >; func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>; index_t = unsigned int; long unsigned int ...I = {}; typename traits::result_type = c10::Half; c10::guts::index_sequence<I ...> = c10::guts::integer_sequence<long unsigned int>]β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:116:29: required from βtypename traits::result_type at::native::invoke(const func_t&, char* const __restrict__*, const index_t*, int) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>; index_t = unsigned int; traits = function_traits<__nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half> >; typename traits::result_type = c10::Half]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:16: required from βat::native::gpu_kernel_impl(at::TensorIterator&, const func_t&)::<lambda(int)> [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:152:17: required from βstruct at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]::<lambda(int)>β
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:149:385: required from βvoid at::native::gpu_kernel_impl(at::TensorIterator&, const func_t&) [with func_t = __nv_hdl_wrapper_t<false, false, __nv_dl_tag<void (*)(at::TensorIterator&, c10::Scalar), at::native::fill_kernel_cuda, 9u>, c10::Half(), c10::Half>]β
/tmp/tmpxft_0000e788_00000000-5_FillKernel.cudafe1.stub.c:26:468: required from here
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:60: warning: parameter βdataβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:85: warning: parameter βstridesβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/Loops.cuh:107:92: warning: parameter βiβ set but not used [-Wunused-but-set-parameter]
invoke_impl(const func_t &f, char *const C10_RESTRICT data[], const index_t strides[], int i,
^
[1647/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_LinearAlgebra.cu.o
[1648/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorMode.cu.o
[1649/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceHalf.cu.o
[1650/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_FractionalMaxPool2d.cu.o
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:26: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:26: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:26: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:26: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:25: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:25: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:25: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:42:25: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
int poolSizeH, int poolSizeW) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:100:8: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<int64_t, 4> indices) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:249: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:310: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:371: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = long int; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:439: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 3ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:781: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:841: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:902: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = long int; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:969: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 3ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:1317: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = c10::Half; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:1381: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = c10::Half; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:1442: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = long int; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:198:1513: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = c10::Half; long unsigned int N = 3ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In function βvoid at::native::_GLOBAL__N__54_tmpxft_0000ecd8_00000000_6_FractionalMaxPool2d_cpp1_ii_aedcad55::fractional_max_pool2d_backward_out_cuda_template(at::Tensor&, const at::Tensor&, const at::Tensor&, c10::IntArrayRef, c10::IntArrayRef, const at::Tensor&)β:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:269:56: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = long int; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
auto devIndices = indices.packed_accessor<int64_t, 4>();
^
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:262: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:331: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:664: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:732: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu: In lambda function:
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:1071: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = c10::Half; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu:270:1143: warning: βat::GenericPackedTensorAccessor<T, N, PtrTraits, index_t> at::Tensor::packed_accessor() const & [with T = c10::Half; long unsigned int N = 4ul; PtrTraits = at::DefaultPtrTraits; index_t = long int]β is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/build/aten/src/ATen/core/TensorBody.h:363:1: note: declared here
GenericPackedTensorAccessor<T,N,PtrTraits,index_t> packed_accessor() const & {
^
[1651/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_SummaryOps.cu.o
[1652/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleBilinear2d.cu.o
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu:34:6: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<scalar_t, 4> odata) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu:34:6: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu:34:6: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
PackedTensorAccessor<scalar_t, 4> odata) {
^
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu:34:6: warning: βPackedTensorAccessorβ is deprecated [-Wdeprecated-declarations]
/ssd1/xuezhao/2d_detection/pytorch/aten/src/ATen/core/TensorAccessor.h:160:7: note: declared here
class GenericPackedTensorAccessor : public GenericPackedTensorAccessorBase<T,N,PtrTraits,index_t> {
^
[1653/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_DilatedMaxPool3d.cu.o
[1654/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_MaxUnpooling.cu.o
[1655/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_DistanceKernel.cu.o
[1656/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_layer_norm_op.cu.o
[1657/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/torch_generated_THCTensorIndex.cu.o
[1658/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_RangeFactories.cu.o
[1659/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_multi_class_accuracy_op.cu.o
[1660/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_IndexKernel.cu.o
[1661/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Dropout.cu.o
[1662/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_EmbeddingBackwardKernel.cu.o
[1663/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/THC/generated/torch_generated_THCTensorMathReduceDouble.cu.o
[1664/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_mem_query_op.cu.o
[1665/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_one_hot_ops.cu.o
[1666/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_prelu_op.cu.o
[1667/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_NaiveConvolutionTranspose3d.cu.o
[1668/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_EmbeddingBag.cu.o
[1669/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_LossCTC.cu.o
[1670/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_NaiveConvolutionTranspose2d.cu.o
[1671/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_MultinomialKernel.cu.o
[1672/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_roi_align_op.cu.o
[1673/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_NaiveDilatedConvolution.cu.o
[1674/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_relu_n_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1675/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Activation.cu.o
[1676/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_SparseMM.cu.o
[1677/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Normalization.cu.o
[1678/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_ReflectionPad.cu.o
[1679/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Reduce.cu.o
[1680/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Repeat.cu.o
[1681/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_PointwiseOpsKernel.cu.o
[1682/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Resize.cu.o
[1683/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_ReplicationPadding.cu.o
[1684/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_RNN.cu.o
[1685/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleLinear1d.cu.o
[1686/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/sparse/cuda/torch_generated_SparseCUDABlas.cu.o
[1687/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleNearest2d.cu.o
[1688/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleNearest1d.cu.o
[1689/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_TensorTransformations.cu.o
[1690/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleBicubic2d.cu.o
[1691/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleNearest3d.cu.o
[1692/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_WeightNorm.cu.o
[1693/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Copy.cu.o
[1694/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_batch_matmul_op.cu.o
[1695/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_SpectralOps.cu.o
[1696/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/quantized/cuda/torch_generated_fake_quantize_per_tensor_affine.cu.o
[1697/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/sparse/cuda/torch_generated_SparseCUDATensor.cu.o
[1698/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_layer_norm_kernel.cu.o
[1699/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UpSampleTrilinear3d.cu.o
[1700/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_boolean_mask_ops.cu.o
[1701/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_SoftMax.cu.o
[1702/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/quantized/cuda/torch_generated_fake_quantize_core.cu.o
[1703/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/utils/math/torch_generated_broadcast.cu.o
[1704/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/quantized/cuda/torch_generated_fake_quantize_per_channel_affine.cu.o
[1705/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/core/torch_generated_context_gpu.cu.o
[1706/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_copy_op.cu.o
[1707/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/utils/math/torch_generated_transpose.cu.o
[1708/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_depthwise_3x3_conv_op_cudnn.cu.o
[1709/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/sparse/cuda/torch_generated_SparseCUDATensorMath.cu.o
[1710/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_SortingKthValue.cu.o
[1711/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/utils/math/torch_generated_reduce.cu.o
[1712/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_channelwise_conv3d_op_cudnn.cu.o
[1713/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/utils/math/torch_generated_elementwise.cu.o
[1714/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_batch_moments_op.cu.o
[1715/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_accumulate_op.cu.o
[1716/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_abs_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1717/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cast_op.cu.o
[1718/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_accuracy_op.cu.o
[1719/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_ReduceOpsKernel.cu.o
[1720/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_spatial_batch_norm_op_cudnn.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1721/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_arg_ops.cu.o
[1722/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_batch_gather_ops.cu.o
[1723/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_affine_channel_op.cu.o
[1724/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_acos_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1725/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_assert_op.cu.o
[1726/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_channel_stats_op.cu.o
[1727/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_asin_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1728/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_boolean_unmask_ops.cu.o
[1729/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_dropout_op.cu.o
[1730/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_atan_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1731/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_deform_conv_op.cu.o
[1732/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_PowKernel.cu.o
[1733/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_bucketize_op.cu.o
[1734/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_ceil_op.cu.o
[1735/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_channel_backprop_stats_op.cu.o
[1736/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cbrt_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1737/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_find_op.cu.o
[1738/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_clip_op.cu.o
[1739/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cos_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1740/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cube_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1741/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_elementwise_linear_op.cu.o
[1742/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_UnaryOpsKernel.cu.o
[1743/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cosh_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1744/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_cross_entropy_op.cu.o
[1745/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_data_couple_gpu.cu.o
[1746/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_elementwise_mul_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1747/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_elementwise_div_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1748/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_generate_proposals_op_util_nms_gpu.cu.o
[1749/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_given_tensor_byte_string_to_uint8_fill_op.cu.o
[1750/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_distance_op.cu.o
[1751/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_enforce_finite_op.cu.o
[1752/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_gru_unit_op_gpu.cu.o
[1753/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_filler_op.cu.o
[1754/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_ensure_cpu_output_op.cu.o
[1755/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/utils/torch_generated_math_gpu.cu.o
[1756/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_elu_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1757/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_gather_op.cu.o
[1758/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_floor_op.cu.o
[1759/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_half_float_ops.cu.o
[1760/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_gelu_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1761/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_instance_norm_op.cu.o
[1762/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_lengths_tile_op.cu.o
[1763/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_erf_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1764/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_margin_ranking_criterion_op.cu.o
[1765/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_elementwise_ops.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1766/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_glu_op.cu.o
[1767/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_given_tensor_fill_op.cu.o
[1768/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_generate_proposals_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1769/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_group_norm_op.cu.o
[1770/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_TensorCompare.cu.o
[1771/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_lengths_pad_op.cu.o
[1772/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_hard_sigmoid_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1773/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_loss_op.cu.o
[1774/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_integral_image_op.cu.o
[1775/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_normalize_ops.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1776/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_leaky_relu_op.cu.o
[1777/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_lstm_unit_op_gpu.cu.o
[1778/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_logit_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1779/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_minmax_ops.cu.o
[1780/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_mean_op.cu.o
[1781/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_lp_pool_op.cu.o
[1782/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_pad_op_gpu.cu.o
[1783/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_piecewise_linear_transform_op.cu.o
[1784/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_max_pool_with_index.cu.o
[1785/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_roi_align_rotated_gradient_op.cu.o
[1786/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reverse_packed_segs_op.cu.o
[1787/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_pack_segments.cu.o
[1788/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_selu_op.cu.o
[1789/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reduction_ops.cu.o
[1790/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_resize_op.cu.o
[1791/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_resize_3d_op.cu.o
[1792/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_roi_pool_op.cu.o
[1793/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_rmac_regions_op.cu.o
[1794/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reciprocal_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1795/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_softmax_ops.cu.o
[1796/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reduce_front_back_sum_mean_ops.cu.o
[1797/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_reduce_ops.cu.o
[1798/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_scale_blobs_op.cu.o
[1799/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_roi_align_rotated_op.cu.o
[1800/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_rsqrt_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1801/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sequence_ops.cu.o
[1802/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sigmoid_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1803/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_softsign_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1804/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_softplus_op.cu.o
[1805/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sinh_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1806/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_slice_op.cu.o
[1807/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_segment_reduction_op_gpu.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1808/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sparse_normalize_op_gpu.cu.o
[1809/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sin_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1810/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_sparse_to_dense_op.cu.o
[1811/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_space_batch_op_gpu.cu.o
[1812/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_upsample_op.cu.o
[1813/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_stump_func_op.cu.o
[1814/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_spatial_batch_norm_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1815/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Unique.cu.o
[1816/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_tan_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1817/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_swish_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1818/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_weighted_sample_op.cu.o
[1819/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_thresholded_relu_op.cu.o
[1820/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_transpose_op.cu.o
[1821/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_tanh_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1822/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_summarize_op.cu.o
[1823/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_adadelta_op_gpu.cu.o
[1824/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_rmsprop_op_gpu.cu.o
[1825/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_adagrad_op_gpu.cu.o
[1826/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_fp16_momentum_sgd_op.cu.o
[1827/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_fp32_momentum_sgd_op.cu.o
[1828/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/rnn/torch_generated_recurrent_network_op_gpu.cu.o
[1829/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_adam_op_gpu.cu.o
[1830/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_momentum_sgd_op_gpu.cu.o
[1831/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_yellowfin_op_gpu.cu.o
[1832/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/sgd/torch_generated_lars_op_gpu.cu.o
[1833/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_tile_op.cu.o
/ssd1/xuezhao/2d_detection/pytorch/cmake/../third_party/eigen/Eigen/src/Core/arch/GPU/PacketMathHalf.h(149): warning: missing return statement at end of non-void function "Eigen::internal::ptrue(const Packet &) [with Packet=half2]"
[1834/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_utility_ops.cu.o
[1835/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_top_k.cu.o
[1836/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/operators/torch_generated_unique_ops.cu.o
[1837/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_Distributions.cu.o
[1838/3429] Building NVCC (Device) object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/cuda/torch_generated_BinaryOpsKernel.cu.o
[1839/3429] Building CXX object caffe2/CMakeFiles/fixed_divisor_test.dir/utils/fixed_divisor_test.cc.o
[1840/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_registry.cc.o
[1841/3429] Building CXX object caffe2/CMakeFiles/mobile_test.dir/opt/mobile_test.cc.o
[1842/3429] Building CXX object caffe2/CMakeFiles/device_test.dir/opt/device_test.cc.o
[1843/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/Context.cpp.o
[1844/3429] Building CXX object caffe2/CMakeFiles/cuda_cudnn_test.dir/__/aten/src/ATen/test/cuda_cudnn_test.cpp.o
[1845/3429] Building CXX object caffe2/CMakeFiles/cuda_apply_test.dir/__/aten/src/ATen/test/cuda_apply_test.cpp.o
[1846/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_dlpack.cc.o
[1847/3429] Building CXX object caffe2/CMakeFiles/dead_code_elim_test.dir/opt/dead_code_elim_test.cc.o
[1848/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/DLConvertor.cpp.o
[1849/3429] Building CXX object caffe2/CMakeFiles/cuda_stream_test.dir/__/aten/src/ATen/test/cuda_stream_test.cpp.o
[1850/3429] Building CXX object caffe2/CMakeFiles/conv_to_nnpack_transform_test.dir/transforms/conv_to_nnpack_transform_test.cc.o
[1851/3429] Building CXX object caffe2/CMakeFiles/converter_nomigraph_test.dir/opt/converter_nomigraph_test.cc.o
[1852/3429] Building CXX object caffe2/CMakeFiles/operator_gpu_test.dir/core/operator_gpu_test.cc.o
[1853/3429] Building CXX object caffe2/CMakeFiles/depthwise3x3_conv_op_test.dir/share/contrib/depthwise/depthwise3x3_conv_op_test.cc.o
[1854/3429] Building CXX object caffe2/CMakeFiles/batch_matmul_op_gpu_test.dir/operators/batch_matmul_op_gpu_test.cc.o
[1855/3429] Building CXX object caffe2/CMakeFiles/utility_ops_gpu_test.dir/operators/utility_ops_gpu_test.cc.o
[1856/3429] Building CXX object caffe2/CMakeFiles/nnpack_test.dir/share/contrib/nnpack/nnpack_test.cc.o
[1857/3429] Building CXX object caffe2/CMakeFiles/torch.dir/operators/channel_stats_op.cc.o
[1858/3429] Building CXX object caffe2/CMakeFiles/bound_shape_inference_test.dir/opt/bound_shape_inference_test.cc.o
[1859/3429] Building CXX object caffe2/CMakeFiles/torch.dir/operators/clip_op.cc.o
[1860/3429] Building CXX object caffe2/CMakeFiles/net_gpu_test.dir/core/net_gpu_test.cc.o
[1861/3429] Building CXX object caffe2/CMakeFiles/generate_proposals_op_gpu_test.dir/operators/generate_proposals_op_gpu_test.cc.o
[1862/3429] Building CXX object caffe2/CMakeFiles/math_gpu_test.dir/utils/math_gpu_test.cc.o
[1863/3429] Building CXX object caffe2/CMakeFiles/roi_align_op_gpu_test.dir/operators/roi_align_op_gpu_test.cc.o
[1864/3429] Building CXX object caffe2/CMakeFiles/operator_fallback_gpu_test.dir/operators/operator_fallback_gpu_test.cc.o
[1865/3429] Building CXX object caffe2/CMakeFiles/pattern_net_transform_test.dir/transforms/pattern_net_transform_test.cc.o
[1866/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_registry.cc.o
[1867/3429] Building CXX object caffe2/CMakeFiles/blob_gpu_test.dir/core/blob_gpu_test.cc.o
[1868/3429] Building CXX object caffe2/CMakeFiles/scalar_test.dir/__/aten/src/ATen/test/scalar_test.cpp.o
[1869/3429] Building CXX object caffe2/CMakeFiles/fatal_signal_asan_no_sig_test.dir/utils/fatal_signal_asan_no_sig_test.cc.o
[1870/3429] Building CXX object caffe2/CMakeFiles/elementwise_op_gpu_test.dir/operators/elementwise_op_gpu_test.cc.o
[1871/3429] Building CXX object caffe2/CMakeFiles/NeuralNetTest.dir/core/nomnigraph/tests/NeuralNetTest.cc.o
[1872/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_int8.cc.o
[1873/3429] Building CXX object caffe2/CMakeFiles/cuda_tensor_interop_test.dir/__/aten/src/ATen/test/cuda_tensor_interop_test.cpp.o
[1874/3429] Building CXX object caffe2/CMakeFiles/text_file_reader_utils_test.dir/operators/text_file_reader_utils_test.cc.o
[1875/3429] Building CXX object caffe2/CMakeFiles/transform_test.dir/core/transform_test.cc.o
[1876/3429] Building CXX object caffe2/CMakeFiles/generate_proposals_op_test.dir/operators/generate_proposals_op_test.cc.o
[1877/3429] Building CXX object caffe2/CMakeFiles/TensorImpl_test.dir/__/aten/src/ATen/core/TensorImpl_test.cpp.o
[1878/3429] Building CXX object caffe2/CMakeFiles/KernelFunction_test.dir/__/aten/src/ATen/core/boxing/KernelFunction_test.cpp.o
[1879/3429] Building CXX object caffe2/CMakeFiles/generate_proposals_op_util_nms_gpu_test.dir/operators/generate_proposals_op_util_nms_gpu_test.cc.o
[1880/3429] Building CXX object caffe2/CMakeFiles/torch.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o
[1881/3429] Building CXX object caffe2/CMakeFiles/xla_tensor_test.dir/__/aten/src/ATen/test/xla_tensor_test.cpp.o
[1882/3429] Building CXX object caffe2/CMakeFiles/dlconvertor_test.dir/__/aten/src/ATen/test/dlconvertor_test.cpp.o
[1883/3429] Building CXX object caffe2/CMakeFiles/context_test.dir/core/context_test.cc.o
[1884/3429] Building CXX object caffe2/CMakeFiles/List_test.dir/__/aten/src/ATen/core/List_test.cpp.o
[1885/3429] Building CXX object caffe2/CMakeFiles/wrapdim_test.dir/__/aten/src/ATen/test/wrapdim_test.cpp.o
[1886/3429] Building CXX object caffe2/CMakeFiles/inline_container_test.dir/serialize/inline_container_test.cc.o
[1887/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_dlpack.cc.o
[1888/3429] Building CXX object caffe2/CMakeFiles/conv_transpose_op_mobile_test.dir/operators/conv_transpose_op_mobile_test.cc.o
[1889/3429] Building CXX object caffe2/CMakeFiles/common_test.dir/core/common_test.cc.o
[1890/3429] Building CXX object caffe2/CMakeFiles/kernel_stackbased_test.dir/__/aten/src/ATen/core/boxing/kernel_stackbased_test.cpp.o
[1891/3429] Building CXX object caffe2/CMakeFiles/context_gpu_test.dir/core/context_gpu_test.cc.o
[1892/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/CPUGenerator.cpp.o
[1893/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_gpu.cc.o
[1894/3429] Building CXX object caffe2/CMakeFiles/weakref_test.dir/__/aten/src/ATen/test/weakref_test.cpp.o
[1895/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ParallelNative.cpp.o
[1896/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ParallelNativeTBB.cpp.o
[1897/3429] Building CXX object caffe2/CMakeFiles/common_subexpression_elimination_test.dir/transforms/common_subexpression_elimination_test.cc.o
[1898/3429] Building CXX object caffe2/CMakeFiles/boxed_fallback_test.dir/__/aten/src/ATen/test/boxed_fallback_test.cpp.o
[1899/3429] Building CXX object caffe2/CMakeFiles/NamedTensor_test.dir/__/aten/src/ATen/test/NamedTensor_test.cpp.o
[1900/3429] Building CXX object caffe2/CMakeFiles/thread_init_test.dir/__/aten/src/ATen/test/thread_init_test.cpp.o
[1901/3429] Building CXX object caffe2/CMakeFiles/utility_ops_test.dir/operators/utility_ops_test.cc.o
[1902/3429] Building CXX object caffe2/CMakeFiles/kernel_functor_test.dir/__/aten/src/ATen/core/boxing/kernel_functor_test.cpp.o
[1903/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ThreadLocalDebugInfo.cpp.o
[1904/3429] Building CXX object caffe2/CMakeFiles/half_test.dir/__/aten/src/ATen/test/half_test.cpp.o
[1905/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/DynamicLibrary.cpp.o
[1906/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ExpandUtils.cpp.o
[1907/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_int8.cc.o
[1908/3429] Building CXX object caffe2/CMakeFiles/native_test.dir/__/aten/src/ATen/test/native_test.cpp.o
[1909/3429] Building CXX object caffe2/CMakeFiles/extension_backend_test.dir/__/aten/src/ATen/test/extension_backend_test.cpp.o
[1910/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o
[1911/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o
[1912/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o
[1913/3429] Building CXX object caffe2/CMakeFiles/event_gpu_test.dir/core/event_gpu_test.cc.o
[1914/3429] Building CXX object caffe2/CMakeFiles/scalar_tensor_test.dir/__/aten/src/ATen/test/scalar_tensor_test.cpp.o
[1915/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o
[1916/3429] Building CXX object caffe2/CMakeFiles/smart_tensor_printer_test.dir/utils/smart_tensor_printer_test.cc.o
[1917/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o
[1918/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o
[1919/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/Dimname.cpp.o
[1920/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/Generator.cpp.o
[1921/3429] Building CXX object caffe2/CMakeFiles/reshape_op_gpu_test.dir/operators/reshape_op_gpu_test.cc.o
[1922/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o
[1923/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/MemoryOverlap.cpp.o
[1924/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/Range.cpp.o
[1925/3429] Building CXX object caffe2/CMakeFiles/ssa_test.dir/onnx/ssa_test.cc.o
[1926/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/grad_mode.cpp.o
[1927/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/LegacyDeviceTypeInit.cpp.o
[1928/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_ideep.cc.o
[1929/3429] Building CXX object caffe2/CMakeFiles/generate_proposals_op_util_nms_test.dir/operators/generate_proposals_op_util_nms_test.cc.o
[1930/3429] Building CXX object caffe2/CMakeFiles/graph_test.dir/core/graph_test.cc.o
[1931/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/blob.cpp.o
[1932/3429] Building CXX object caffe2/CMakeFiles/Dict_test.dir/__/aten/src/ATen/test/Dict_test.cpp.o
[1933/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/Utils.cpp.o
[1934/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_nomni.cc.o
[1935/3429] Building CXX object caffe2/CMakeFiles/kernel_function_test.dir/__/aten/src/ATen/core/boxing/kernel_function_test.cpp.o
[1936/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/script/strtod.cpp.o
[1937/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ParallelCommon.cpp.o
[1938/3429] Building CXX object caffe2/CMakeFiles/tensor_interop_test.dir/__/aten/src/ATen/test/tensor_interop_test.cpp.o
[1939/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/TensorGeometry.cpp.o
[1940/3429] Building CXX object caffe2/CMakeFiles/net_async_tracing_test.dir/core/net_async_tracing_test.cc.o
[1941/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/register_symbols.cpp.o
[1942/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/ATenDispatch.cpp.o
[1943/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/interned_strings.cpp.o
[1944/3429] Building CXX object caffe2/CMakeFiles/tensor_iterator_test.dir/__/aten/src/ATen/test/tensor_iterator_test.cpp.o
[1945/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/LegacyTypeDispatch.cpp.o
[1946/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/script/error_report.cpp.o
[1947/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o
[1948/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/source_range.cpp.o
[1949/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o
[1950/3429] Building CXX object caffe2/CMakeFiles/half_float_ops_test.dir/operators/half_float_ops_test.cc.o
[1951/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/script/lexer.cpp.o
[1952/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/NamedTensor.cpp.o
[1953/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o
[1954/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o
[1955/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/Tensor.cpp.o
[1956/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o
[1957/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/TensorUtils.cpp.o
[1958/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/Formatting.cpp.o
[1959/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/Version.cpp.o
[1960/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o
[1961/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/DispatchStub.cpp.o
[1962/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o
[1963/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o
[1964/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/script/function_schema_parser.cpp.o
[1965/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/torch/csrc/jit/script/schema_type_parser.cpp.o
[1966/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/ivalue.cpp.o
[1967/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/core/type.cpp.o
[1968/3429] Building CXX object caffe2/CMakeFiles/kernel_lambda_legacy_test.dir/__/aten/src/ATen/core/boxing/kernel_lambda_legacy_test.cpp.o
[1969/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o
[1970/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o
[1971/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o
[1972/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o
[1973/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o
[1974/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o
[1975/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Activation.cpp.o
[1976/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/ConstantPadNd.cpp.o
[1977/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Col2Im.cpp.o
[1978/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_nomni.cc.o
[1979/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o
[1980/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o
[1981/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_ideep.cc.o
[1982/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o
[1983/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Cross.cpp.o
[1984/3429] Building CXX object caffe2/CMakeFiles/blob_test.dir/core/blob_test.cc.o
[1985/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Copy.cpp.o
[1986/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/BinaryOps.cpp.o
[1987/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Convolution.cpp.o
[1988/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o
[1989/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o
[1990/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Fill.cpp.o
[1991/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Dropout.cpp.o
[1992/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Distance.cpp.o
[1993/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Embedding.cpp.o
[1994/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o
[1995/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o
[1996/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Im2Col.cpp.o
[1997/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o
[1998/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o
[1999/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/GridSampler.cpp.o
[2000/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LegacyDefinitions.cpp.o
[2001/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Integration.cpp.o
[2002/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Itertools.cpp.o
[2003/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Lerp.cpp.o
[2004/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Distributions.cpp.o
[2005/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LegacyNNDefinitions.cpp.o
[2006/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o
[2007/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NamedTensor.cpp.o
FAILED: caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NamedTensor.cpp.o
/usr/local/bin/c++ -DAT_PARALLEL_OPENMP=1 -DCAFFE2_BUILD_MAIN_LIB -DCPUINFO_SUPPORTED_PLATFORM=1 -DGOOGLE_GLOG_DLL_DECL="" -DGOOGLE_GLOG_DLL_DECL_FOR_UNITTESTS="" -DHAVE_MALLOC_USABLE_SIZE=1 -DHAVE_MMAP=1 -DHAVE_SHM_OPEN=1 -DHAVE_SHM_UNLINK=1 -DIDEEP_USE_MKL -DNNP_CONVOLUTION_ONLY=0 -DNNP_INFERENCE_ONLY=0 -DONNX_ML=1 -DONNX_NAMESPACE=onnx_torch -DTH_BLAS_MKL -DUSE_CUDA -DUSE_NCCL -D_FILE_OFFSET_BITS=64 -D_THP_CORE -Dtorch_EXPORTS -Iaten/src -I../aten/src -I. -I../ -isystem third_party/gloo -isystem ../cmake/../third_party/gloo -isystem ../cmake/../third_party/googletest/googlemock/include -isystem ../cmake/../third_party/googletest/googletest/include -isystem ../third_party/protobuf/src -I/home/work/nccl/nccl2.4.2_cuda10.0/include -isystem include -isystem /usr/local/include -isystem ../third_party/gemmlowp -isystem ../third_party/neon2sse -I../cmake/../third_party/benchmark/include -isystem ../third_party -isystem ../cmake/../third_party/eigen -isystem /home/semantics/python-tf/include/python2.7 -isystem /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include -isystem /home/semantics/python-tf/include/python2.7/pybind11 -isystem /opt/rocm/hip/include -isystem /include -isystem ../cmake/../third_party/cub -Icaffe2/contrib/aten -I../third_party/onnx -Ithird_party/onnx -I../third_party/foxi -Ithird_party/foxi -isystem /home/work/cudnn/cudnn_v7.4/cuda/include -isystem ../third_party/ideep/mkl-dnn/include -isystem ../third_party/ideep/include -isystem /home/work/cuda-10.0/include -I../caffe2/../torch/csrc/api -I../caffe2/../torch/csrc/api/include -I../caffe2/aten/src/TH -Icaffe2/aten/src/TH -I../caffe2/../torch/../aten/src -Icaffe2/aten/src -Icaffe2/../aten/src -Icaffe2/../aten/src/ATen -I../caffe2/../torch/csrc -I../caffe2/../torch/../third_party/miniz-2.0.8 -I../aten/src/TH -I../aten/../third_party/catch/single_include -I../aten/src/ATen/.. -Icaffe2/aten/src/ATen -I../third_party/miniz-2.0.8 -I../caffe2/core/nomnigraph/include -Icaffe2/aten/src/THC -I../aten/src/THC -I../aten/src/THCUNN -I../aten/src/ATen/cuda -Inccl/include -I../c10/.. -Ithird_party/ideep/mkl-dnn/include -I../third_party/ideep/mkl-dnn/src/../include -I../third_party/QNNPACK/include -I../third_party/pthreadpool/include -I../aten/src/ATen/native/quantized/cpu/qnnpack/include -I../aten/src/ATen/native/quantized/cpu/qnnpack/src -I../third_party/QNNPACK/deps/clog/include -I../third_party/NNPACK/include -I../third_party/cpuinfo/include -I../third_party/fbgemm/include -I../third_party/fbgemm -I../third_party/fbgemm/third_party/asmjit/src -I../third_party/FP16/include -I../c10/cuda/../.. -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -DHAVE_AVX_CPU_DEFINITION -DHAVE_AVX2_CPU_DEFINITION -O3 -fPIC -DCAFFE2_USE_GLOO -DCUDA_HAS_FP16=1 -DHAVE_GCC_GET_CPUID -DUSE_AVX -DUSE_AVX2 -DTH_HAVE_THREAD -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-write-strings -Wno-unknown-pragmas -Wno-missing-braces -Wno-maybe-uninitialized -fvisibility=hidden -DCAFFE2_BUILD_MAIN_LIB -O2 -DASMJIT_STATIC -std=gnu++11 -MD -MT caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NamedTensor.cpp.o -MF caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NamedTensor.cpp.o.d -o caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NamedTensor.cpp.o -c ../aten/src/ATen/native/NamedTensor.cpp
../aten/src/ATen/native/NamedTensor.cpp: In function βat::Tensor at::native::index_copy(const at::Tensor&, at::Dimname, const at::Tensor&, const at::Tensor&)β:
../aten/src/ATen/native/NamedTensor.cpp:420:2: internal compiler error: in expand_thunk, at cgraphunit.c:1700
}} // namespace at::native
^
0x7dd826 cgraph_node::expand_thunk(bool, bool)
../../gcc/cgraphunit.c:1699
0x7df3bb cgraph_node::create_wrapper(cgraph_node*)
../../gcc/cgraphunit.c:2517
0x10255e9 ipa_icf::sem_function::merge(ipa_icf::sem_item*)
../../gcc/ipa-icf.c:1133
0x101d61f ipa_icf::sem_item_optimizer::merge_classes(unsigned int)
../../gcc/ipa-icf.c:3232
0x1024f9c ipa_icf::sem_item_optimizer::execute()
../../gcc/ipa-icf.c:2436
0x1026716 ipa_icf_driver
../../gcc/ipa-icf.c:3309
0x1026716 ipa_icf::pass_ipa_icf::execute(function*)
../../gcc/ipa-icf.c:3356
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
[2008/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Loss.cpp.o
[2009/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NNPACK.cpp.o
[2010/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Memory.cpp.o
[2011/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Indexing.cpp.o
[2012/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o
[2013/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Linear.cpp.o
[2014/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o
[2015/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o
[2016/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Onehot.cpp.o
[2017/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o
[2018/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LossCTC.cpp.o
[2019/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/PackedSequence.cpp.o
[2020/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Pooling.cpp.o
[2021/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o
[2022/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o
[2023/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Pow.cpp.o
[2024/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/RangeFactories.cpp.o
[2025/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o
[2026/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o
[2027/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Resize.cpp.o
[2028/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Normalization.cpp.o
[2029/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Repeat.cpp.o
[2030/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o
[2031/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Scalar.cpp.o
[2032/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o
[2033/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o
[2034/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/SoftMax.cpp.o
[2035/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/ReduceOps.cpp.o
[2036/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/SpectralOps.cpp.o
[2037/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/SummaryOps.cpp.o
[2038/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/Sorting.cpp.o
[2039/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/RNN.cpp.o
[2040/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/native/TensorCompare.cpp.o
[2041/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state.cc.o
In file included from ../torch/csrc/autograd/variable.h:10:0,
from ../caffe2/python/pybind_state.cc:35:
../aten/src/ATen/ATen.h:2:0: warning: "__STDC_FORMAT_MACROS" redefined
#define __STDC_FORMAT_MACROS
^
In file included from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/numpyconfig.h:4:0,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/npy_common.h:5,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:4,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:18,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
from ../caffe2/python/pybind_state.h:27,
from ../caffe2/python/pybind_state.cc:1:
/home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/_numpyconfig.h:31:0: note: this is the location of the previous definition
#define __STDC_FORMAT_MACROS 1
^
[2042/3429] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state.cc.o
In file included from ../torch/csrc/autograd/variable.h:10:0,
from ../caffe2/python/pybind_state.cc:35:
../aten/src/ATen/ATen.h:2:0: warning: "__STDC_FORMAT_MACROS" redefined
#define __STDC_FORMAT_MACROS
^
In file included from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/numpyconfig.h:4:0,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/npy_common.h:5,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:4,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:18,
from /home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
from ../caffe2/python/pybind_state.h:27,
from ../caffe2/python/pybind_state.cc:1:
/home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include/numpy/_numpyconfig.h:31:0: note: this is the location of the previous definition
#define __STDC_FORMAT_MACROS 1
^
[2043/3429] Building CXX object caffe2/CMakeFiles/torch.dir/__/aten/src/ATen/CPUType.cpp.o
ninja: build stopped: subcommand failed.
Building wheel torch-1.4.0a0+b05d0fa
-- Building version 1.4.0a0+b05d0fa
cmake -GNinja -DBUILD_PYTHON=True -DBUILD_TEST=True -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS=-lutil -DCMAKE_INSTALL_PREFIX=/ssd1/xuezhao/2d_detection/pytorch/torch -DCMAKE_PREFIX_PATH=/home/semantics/python-tf/lib/python2.7/site-packages -DNUMPY_INCLUDE_DIR=/home/semantics/python-tf/lib/python2.7/site-packages/numpy/core/include -DPYTHON_EXECUTABLE=/home/semantics/python-tf/bin/python -DPYTHON_INCLUDE_DIR=/home/semantics/python-tf/include/python2.7 -DPYTHON_LIBRARY=/home/users/huangkaiwen/xdevel/output/xdevel/lib/libpython2.7.so.1.0 -DTORCH_BUILD_VERSION=1.4.0a0+b05d0fa -DUSE_CUDA=True -DUSE_NUMPY=True /ssd1/xuezhao/2d_detection/pytorch
cmake --build . --target install --config Release -- -j 37
Traceback (most recent call last):
File "setup.py", line 751, in <module>
build_deps()
File "setup.py", line 310, in build_deps
cmake=cmake)
File "/ssd1/xuezhao/2d_detection/pytorch/tools/build_pytorch_libs.py", line 59, in build_caffe2
cmake.build(my_env)
File "/ssd1/xuezhao/2d_detection/pytorch/tools/setup_helpers/cmake.py", line 334, in build
self.run(build_args, my_env)
File "/ssd1/xuezhao/2d_detection/pytorch/tools/setup_helpers/cmake.py", line 142, in run
check_call(command, cwd=self.build_dir, env=env)
File "/home/semantics/python-tf/lib/python2.7/subprocess.py", line 186, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--target', 'install', '--config', 'Release', '--', '-j', '37']' returned non-zero exit status 1
## Expected behavior
install successfully
## Environment
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
OS: CentOS release 6.3 (Final)
GCC version: (GCC) 5.2.0
CMake version: version 3.10.3
Python version: 2.7
Is CUDA available: N/A
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: Tesla V100-SXM2-32GB
GPU 1: Tesla V100-SXM2-32GB
GPU 2: Tesla V100-SXM2-32GB
GPU 3: Tesla V100-SXM2-32GB
GPU 4: Tesla V100-SXM2-32GB
GPU 5: Tesla V100-SXM2-32GB
GPU 6: Tesla V100-SXM2-32GB
GPU 7: Tesla V100-SXM2-32GB
Nvidia driver version: 418.39
cuDNN version: Could not collect
Versions of relevant libraries:
[pip] numpy==1.15.1
[conda] Could not collect
## Additional context
Thank you very much !
| module: build,triaged | low | Critical |
511,237,002 | go | cmd/link: DWARF CFI rejected when function does not allocate stack space on ARM64 | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.1 linux/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</summary><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/gawen/.cache/go-build"
GOENV="/home/gawen/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/opt/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/opt/src/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/opt/src/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build297764674=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
On a Android phone, with the following Go code compiled for the target `android/arm64` with `-ldflags="-compressdwarf=false"`.
```go
// file: crash.go
//go:noinline
func CrashNilPointer() {
var i2 *int
*i2 = 0 // segmentation fault
}
//go:noinline
func CrashDelayed() {
go func() {
time.Sleep(1 * time.Second)
CrashNilPointer()
}()
}
```
We made a small Android app which lets the user call `CrashNilPointer` and `CrashDelayed`.
We're using [Crashlytics](https://firebase.google.com/products/crashlytics/) which uses [Google Breakpad](https://chromium.googlesource.com/breakpad/breakpad) to generate minidumps when a native crash happens.
Using Breakpad's [`minidump_stackwalk`](https://chromium.googlesource.com/breakpad/breakpad/+/db1cda26539c711c3da7ed4d410dfe8190e89b8f/src/processor/minidump_stackwalk.cc), we are able to unwind the stack of the minidumps.
The `minidump_stackwalk` output for the crashing thread when `CrashDelayed` is called is:
```
Operating system: Android
0.0.0 Linux 3.10.73-g89fd15db99aa #1 SMP PREEMPT Thu Oct 11 19:31:31 UTC 2018 aarch64
CPU: arm64
6 CPUs
GPU: UNKNOWN
Crash reason: SIGABRT
Crash address: 0x277f00007cd1
Process uptime: not available
Thread 28 (crashed)
0 libgojni.so!runtime.raise [sys_linux_arm64.s : 156 + 0x0]
x0 = 0x0000000000000000 x1 = 0x0000000000007cf9
x2 = 0x0000000000000006 x3 = 0x00000074112b9fcf
x4 = 0x000000000000001f x5 = 0x0000007411194f79
x6 = 0x000000000000003f x7 = 0x0000000000000030
x8 = 0x0000000000000083 x9 = 0x000000000000001f
x10 = 0x000000005da9ad30 x11 = 0x000000001495a96e
x12 = 0x0000000000000018 x13 = 0x0000000000000000
x14 = 0x0000000000000000 x15 = 0x001495a96ead900c
x16 = 0x0000007411153613 x17 = 0x0000007411153610
x18 = 0x00000074ab628000 x19 = 0x0000000000007cd1
x20 = 0x000000400003ac80 x21 = 0x0000004000056380
x22 = 0x0000000000007cd1 x23 = 0x0000000000007cf7
x24 = 0x000000741118fb74 x25 = 0x000000740e406000
x26 = 0x000000400003ae18 x27 = 0x0000000000000000
x28 = 0x0000004000058a80 fp = 0x0000000000000000
lr = 0x000000741113d604 sp = 0x000000400003adb0
pc = 0x00000074111540d8
Found by: given as instruction pointer in context
1 libgojni.so!runtime.dieFromSignal [signal_unix.go : 437 + 0x0]
fp = 0x0000000000000000 lr = 0x0000000000000000
sp = 0x000000400003adb0 pc = 0x000000741113d604
Found by: previous frame's frame pointer
2 libgojni.so!runtime.crash [signal_unix.go : 540 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003add0
pc = 0x000000741113d900
Found by: call frame info
3 libgojni.so!runtime.fatalpanic [panic.go : 877 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003adf0
pc = 0x0000007411129acc
Found by: call frame info
4 libgojni.so!runtime.gopanic [panic.go : 723 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003ae50
pc = 0x0000007411129530
Found by: call frame info
5 libgojni.so!runtime.sigpanic [panic.go : 199 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003aee0
pc = 0x000000741113d4c8
Found by: call frame info
6 libgojni.so!github.com/.../crashtest/crash.CrashNilPointer [crash.go : 24 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003af10
pc = 0x000000741118a56c
Found by: call frame info
7 libgojni.so!github.com/.../crashtest/crash.CrashNilPointer [print.go : 274 + 0x0]
fp = 0x0000000000000000 sp = 0x000000400003afa0
pc = 0x000000741118a568
Found by: call frame info
8 0x40000b8004
fp = 0x0000000000000000 sp = 0x000000400003b030
pc = 0x00000040000b8008
Found by: call frame info
```
The `minidump_stackwalk` output for the crashing thread when `CrashNilPointer` is called is:
```
Operating system: Android
0.0.0 Linux 3.10.73-g89fd15db99aa #1 SMP PREEMPT Thu Oct 11 19:31:31 UTC 2018 aarch64
CPU: arm64
6 CPUs
GPU: UNKNOWN
Crash reason: SIGABRT
Crash address: 0x277f00007b69
Process uptime: not available
Thread 0 (crashed)
0 libgojni.so!runtime.raise [sys_linux_arm64.s : 156 + 0x0]
x0 = 0x0000000000000000 x1 = 0x0000000000007b69
x2 = 0x0000000000000006 x3 = 0x0000007411179fcf
x4 = 0x000000000000001f x5 = 0x0000007411054f79
x6 = 0x000000000000003f x7 = 0x0000000000000030
x8 = 0x0000000000000083 x9 = 0x000000000000001f
x10 = 0x000000005da9ac96 x11 = 0x0000000004e331cc
x12 = 0x0000000000000018 x13 = 0x0000000000000000
x14 = 0x0000000000000000 x15 = 0x0004e331ccc7e1d2
x16 = 0x0000007411013613 x17 = 0x0000007411013610
x18 = 0x0000000000000008 x19 = 0x0000000000007b69
x20 = 0x000000400003cad0 x21 = 0x000000400002e000
x22 = 0x0000007fee94d91c x23 = 0x0000007412255636
x24 = 0x0000000000000000 x25 = 0x00000074ad3c9a40
x26 = 0x000000400003cc68 x27 = 0x0000000000000000
x28 = 0x0000004000000600 fp = 0x0000007fee94d670
lr = 0x0000007410ffd604 sp = 0x000000400003cc00
pc = 0x00000074110140d8
Found by: given as instruction pointer in context
1 libgojni.so!runtime.crash [signal_unix.go : 540 + 0x0]
sp = 0x000000400003cc08 pc = 0x0000007410ffd900
Found by: stack scanning
2 0x7400000002
sp = 0x000000400003cc28 pc = 0x0000007400000006
Found by: call frame info
```
The stacktrace when `CrashDelayed` is called is correct, as it unwinds until the user's code, yet does not unwind until `CrashDelayed` which spawns the goroutine calling `CrashNilPointer`. Note all stack frames are discovered with the "call frame information" (DWARF's CFI).
However, the stack when `CrashNilPointer` is called is not correct, as it stops at `runtime.crash`. Note also that the stack frame of `runtime.crash` is discovered by "stack scanning".
The way Breakpad gets a stack frame from an ARM64 minidump is to first check if a CFI exists and is correct, and if not, falls back on extracting the stack frame from the frame pointer, or (if fails again) scanning the stack trace (see [`breakpad/src/process/stackwalker_arm64.cc:251`](https://chromium.googlesource.com/breakpad/breakpad/+/db1cda26539c711c3da7ed4d410dfe8190e89b8f/src/processor/stackwalker_arm64.cc#251)).
The stacktrace from `CrashDelayed` is unwinded thanks to DWARF CFIs, in particular for `runtime.crash` (stack level 2). But the `CrashNilPointer`'s stacktrace unwinds to `runtime.crash` (stack level 1) with stack scanning and then fails, which means Breakpad didn't find any CFI for it. Plus, [`runtime.dieFromSignal`](https://github.com/golang/go/blob/b17fd8e49d24eb298c53de5cd0a8923f1e0270ba/src/runtime/signal_unix.go#L424-L449), which is [called by `runtime.crash`](https://github.com/golang/go/blob/b17fd8e49d24eb298c53de5cd0a8923f1e0270ba/src/runtime/signal_unix.go#L520), is not detected by the stack scanner.
Note that Android Studio's LLDB is able to unwind a proper stacktrace for both `CrashDelayed` and `CrashNilPointer` when the segmentation fault happens.
### What did you expect to see?
We expected to see the full stacktrace for a segmentation fault not happening in a goroutine (`CrashNilPointer`), where `runtime.dieFromSignal` is properly unwinded with DWARF's CFI.
### What did you see instead?
The stacktrace for `CrashNilPointer` is truncated and incorrect. | NeedsInvestigation,compiler/runtime | low | Critical |
511,247,107 | godot | add_child command gives errors in script without extends command | Version : 3.2-alpha2
Windows 10
Create an empty project. Add a node to it of any type. Attach a script to the node that includes the add_child function, but don't have an "extends" line in the script.
e.g.
func testfunc():
var nodeTest = Node.new()
add_child(nodeTest)
The IDE will complain that "The method "add_child" isn't declared in the current class." but doesn't error that the "extends Node" line is missing.
I would suggest that either the IDE should error that an "extends" line is missing from the top of the script, or failing that, the error should be "The method "add_child" isn't declared in the current class - did you miss adding an extends line to your script?" | enhancement,topic:gdscript,usability | low | Critical |
511,343,958 | angular | Using AnimationBuilder makes element unresponsive | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
Oh hi there! π
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
-->
# π bug report
### Affected Package
<!-- Can you pin-point one or more @angular/* packages as the source of the bug? -->
<!-- βοΈedit: --> The issue is caused by package @angular/animations
### Is this a regression?
<!-- Did this behavior use to work in the previous version? -->
<!-- βοΈ--> No
### Description
<!-- βοΈ--> When I am using AnimationBuilder with AnimationPlayer element becomes unresponsive. This happens when animating width or height
## π¬ Minimal Reproduction
<!--
Please create and share minimal reproduction of the issue starting with this template: https://stackblitz.com/fork/angular-issue-repro2
-->
<!-- βοΈ-->
[https://stackblitz.com/edit/angular-animation-builder-issue](https://stackblitz.com/edit/angular-animation-builder-issue)
<!--
If StackBlitz is not suitable for reproduction of your issue, please create a minimal GitHub repository with the reproduction of the issue.
A good way to make a minimal reproduction is to create a new app via `ng new repro-app` and add the minimum possible code to show the problem.
Share the link to the repo below along with step-by-step instructions to reproduce the problem, as well as expected and actual behavior.
Issues that don't have enough info and can't be reproduced will be closed.
You can read more about issue submission guidelines here: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-submitting-an-issue
-->
## π₯ Exception or Error
<!-- If the issue is accompanied by an exception or an error, please share it below: -->
<!-- βοΈ-->n/a
## π Your Environment
**Angular Version:**
<pre><code>
Angular CLI: 8.1.3
Node: 10.16.1
OS: win32 x64
Angular: 8.1.3
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
------------------------------------------------------------
@angular-devkit/architect 0.801.3
@angular-devkit/build-angular 0.801.3
@angular-devkit/build-ng-packagr 0.801.3
@angular-devkit/build-optimizer 0.801.3
@angular-devkit/core 8.1.3
@angular-devkit/schematics 8.1.3
@angular/cdk 8.1.2
@angular/flex-layout 8.0.0-beta.26
@angular/material 8.1.4
@schematics/angular 8.1.3
@schematics/update 0.801.3
ng-packagr 5.4.3
rxjs 6.4.0
typescript 3.4.5
webpack 4.39.2
</code></pre>
**Anything else relevant?**
<!-- βοΈIs this a browser specific issue? If so, please specify the browser and version. -->
<!-- βοΈDo any of these matter: operating system, IDE, package manager, HTTP server, ...? If so, please mention it below. -->
| type: bug/fix,area: animations,freq2: medium,state: confirmed,P3 | low | Critical |
511,398,352 | flutter | macOS AOT mode doesn't use bundle path | I was trying to figure out why https://github.com/google/flutter-desktop-embedding/issues/599 was running the linked App.framework's AOT code instead of just failing outright, and realized that we're not actually doing anything in the macOS version of `FlutterDartProject` that would control the AOT code being used (i.e., the equivalent of the iOS `FlutterDartProject`'s `settings.application_library_path` code).
I believe this means it's impossible to run two different AOT compilations in the same app in an add-to-app scenario, for instance.
@chinmaygarde What's the right way to do the equivalent of `application_library_path` via the embedder API? `vm_snapshot_data`? (And if so, why is this currently working at all?)
/cc @jonahwilliams maybe you know since you wired this up. | platform-mac,a: desktop,P2,team-macos,triaged-macos | low | Major |
511,413,339 | youtube-dl | Option for Thumbnail Filename | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## 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 2019.10.22. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Search the bugtracker for similar feature requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2019.10.22**
- [x] I've searched the bugtracker for similar feature requests including closed ones
## Description
<!--
Provide an explanation of your issue in an arbitrary form. Please make sure the description is worded well enough to be understood, see https://github.com/ytdl-org/youtube-dl#is-the-description-of-the-issue-itself-sufficient. Provide any additional information, suggested solution and as much context and examples as possible.
-->
With the --write-thumbnail option, it would be great to have a Filenamen that differs from the video.
At the moment, you'd get `videoname.mkv` and `videoname.jpg` for the Video and Thumbnail. I'd like to have the option for something like `videoname.mkv` and `videoname-thumbnail.jpg`
| request | low | Critical |
511,443,030 | TypeScript | Feature request: support `static enum` | ## Search Terms
enum reflection, const enum, const enum literal, const enum reference, const enum export
## Suggestion
Add a new type of enum, say `static enum`, that works similar to `const enum`, but instead of inlining `const enum`, exporting enum values as constants, and emit code that refers to it.
## Use Cases
<!--
What do you want to use this for?
What shortcomings exist with current approaches?
-->
1. Long string enum values
In case long strings are present in a `const enum`, using such enum in various places will emit code that is way too large. It would be nice to emit code that uses references to the constants instead of literals.
2. Non-literal enum values
More than often, we want to export a set of constants of certain types that can be passed to a function as an enum. For instance, in a base64 module, an enum representing the charset to use for encoding and decoding. In an icon module for react, an enum representing possible svg icons to display.
Some existing alternatives:
- `enum`
`enum` emits clumsy code with runtime reflection support. However, when being used statically reflection is not needed, which makes performing dead code elimination really hard (unless closure compiler is used, which is almost infeasible when npm packages are used.)
- `export const ENUM_VALUE;`
Practically, exporting a const works. However, there is no way to declare a type for those `ENUM_*` constants. This makes it difficult to design an API that can enforce the typing on the enum (or at least let code editor provide sensible autocompletion when a non-literal type is used.)
## Examples
icons.ts
```ts
export static enum Icons {
SMILY_FACE = "some long svg path";
SAD_FACE = "some long svg path";
OBJECT = { name: "object literal", path: "some long svg path" }; // as we are just exporting consts, non literals are also ok.
}
```
app.tsx
```tsx
import { Icons } from './icons';
<Icon icon={Icons.SMILY_FACE} />
<Icon icon={Icons.OBJECT} />
```
Transpilied into:
icons.js
```js
export const Icons_SMILY_FACE = "some long svg path";
export const Icons_SAD_FACE = "some long svg path";
export const Icons_OBJECT = { name: "object literal", path: "some long svg path" };
// N.B. this is just named exports, so any current bundler will take care of unused ones.
```
app.js
```js
import { Icons_SMILY_FACE, Icons_OBJECT } from './icons';
react.createElement(Icon, { icon: Icons_SMILY_FACE });
react.createElement(Icon, { icon: Icons_OBJECT });
```
## Checklist
My suggestion meets these guidelines:
* [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Suggestion,Awaiting More Feedback | low | Major |
511,449,006 | pytorch | Get rid of libc10.so | I finally have a good reason to merge libc10.so into libtorch.so (and corresponding libc10_cuda.so into libtorch_cuda.so, etc.): I am trying to devirtualize access to AutogradMeta, but because TensorImpl lives in c10 and AutogradMeta lives in torch, I cannot do this as the destructor would have to cross a dynamic library boundary. By absorbing c10 into torch I will be able to do this.
Some dangers: putting c10 into libtorch might push Windows build over max library size. See https://github.com/pytorch/pytorch/issues/27215
Other alternatives I thought of:
* Move TensorImpl back to ATen/core
* Keep the virtual interface to AutogradMeta
Some alternatives that don't work
* Move AutogradMeta into c10. AutogradMeta must be declared after Tensor as it contains a field Tensor, and we cannot replace that field with an `intrusive_ptr<TensorImpl>` as the public API of tensor `x.grad()` returns a mutable `Tensor&` reference. (Though, it might be possible to fix this up by just moving TensorImpl out of c10)
cc @ezyang @gchanan @zou3519 @jerryzh168 @dzhulgakov @smessmer | module: build,triaged | low | Minor |
511,450,517 | rust | std::io::Stdout does not implement Clone | `std::io::Stdout` is currently not `Clone`, but there is no reason that I can see that it shouldn't be | C-enhancement,T-libs-api,A-io | low | Minor |
511,458,171 | pytorch | [JIT] __repr__ support for ScriptModules | It would be nice if we could preserve original module `__repr__`s while scripting. e.g.:
```
import torch, io
class ScriptWithAttr(torch.nn.Module):
def __init__(self):
super().__init__()
self.attr = 3
def forward(self, x):
return x + self.attr
@torch.jit.export
def __repr__(self):
return 'foo ' + str(self.attr)
mod = ScriptWithAttr()
print(mod)
scripted = torch.jit.script(ScriptWithAttr())
print(scripted)
b = io.BytesIO()
torch.jit.save(scripted, b)
b.seek(0)
loaded = torch.jit.load(b)
print(loaded.__repr__())
```
Prints
```
foo 3
RecursiveScriptModule(original_name=ScriptWithAttr)
RecursiveScriptModule(original_name=ScriptWithAttr)
```
whereas it would be nice if it would print `foo 3` every time.
This has been confusing for users, e.g. https://github.com/pytorch/pytorch/issues/28331
cc @suo | oncall: jit,low priority,triaged,jit-backlog | low | Minor |
511,464,035 | pytorch | [jit] C++ Documentation | Things like `script::Module` have no user facing documentation
`IValue` also doesn't have any user facing docs (things like custom classes are hard to guess at)
cc @suo | oncall: jit,triaged,jit-backlog | low | Minor |
511,471,939 | pytorch | Unified management of thread local variables | We should add a centralized thread local handling (in c10).
This would have two main advantages:
- Make the code cleaner as all thread local elements can easily be identified and worked with.
- Allow improvement for example in `at::parallel_for` where it will be able to handle any Tensor operation within the loop.
(Setting high priority only to be discussed for triage)
cc @ezyang @gchanan @zou3519 @jerryzh168 @SsnL @albanD @gqchen @VitalyFedyunin @ngimel @mruberry | high priority,module: performance,module: internals,feature,triaged,module: multithreading | low | Major |
511,485,742 | youtube-dl | National Geographic url not recognized / [generic] / Unsupported URL | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## 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 2019.10.22. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that all URLs and arguments with special characters are properly quoted or escaped as explained in http://yt-dl.org/escape.
- Search the bugtracker for similar issues: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [X] I'm reporting a broken site support
- [X] I've verified that I'm running youtube-dl version **2019.10.22**
- [X] I've checked that all provided URLs are alive and playable in a browser
- [X] I've checked that all URLs and arguments with special characters are properly quoted or escaped
- [X] I've searched the bugtracker for similar issues including closed ones
## Verbose log
<!--
Provide the complete verbose output of youtube-dl that clearly demonstrates the problem.
Add the `-v` flag to your command line you run youtube-dl with (`youtube-dl -v <your command line>`), copy the WHOLE output and insert it below. It should look similar to this:
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj']
[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251
[debug] youtube-dl version 2019.10.22
[debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2
[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4
[debug] Proxy map: {}
<more lines>
-->
```
E:\USER\temp_ytdl>youtube-dl.exe --all-subs --cookies cookies.txt --verbose "htt
ps://www.nationalgeographic.com/tv/shows/dr-t-lone-star-vet/episode-guide/season
-01/episode-02-mother-of-dragons/vdka13590590"
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['--all-subs', '--cookies', 'cookies.txt', '--verbose
', 'https://www.nationalgeographic.com/tv/shows/dr-t-lone-star-vet/episode-guide
/season-01/episode-02-mother-of-dragons/vdka13590590']
[debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252
[debug] youtube-dl version 2019.10.22
[debug] Python version 3.4.4 (CPython) - Windows-2008ServerR2-6.1.7601-SP1
[debug] exe versions: ffmpeg 4.1.3, ffprobe N-89595-g40d4b13228, rtmpdump 2.4-20
151223-gfa8646d-OpenSSL_1.0.2n-x86_64-static
[debug] Proxy map: {}
[generic] vdka13590590: Requesting header
WARNING: Falling back on generic information extractor.
[generic] vdka13590590: Downloading webpage
[generic] vdka13590590: Extracting information
ERROR: Unsupported URL: https://www.nationalgeographic.com/tv/shows/dr-t-lone-st
ar-vet/episode-guide/season-01/episode-02-mother-of-dragons/vdka13590590
Traceback (most recent call last):
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy
0p\build\youtube_dl\YoutubeDL.py", line 796, in extract_info
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy
0p\build\youtube_dl\extractor\common.py", line 530, in extract
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpifszpy
0p\build\youtube_dl\extractor\generic.py", line 3353, in _real_extract
youtube_dl.utils.UnsupportedError: Unsupported URL: https://www.nationalgeograph
ic.com/tv/shows/dr-t-lone-star-vet/episode-guide/season-01/episode-02-mother-of-
dragons/vdka13590590
```
## Description
<!--
Provide an explanation of your issue in an arbitrary form. Provide any additional information, suggested solution and as much context and examples as possible.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
My understanding is National Geographic is supported. [This was reported in January](https://github.com/ytdl-org/youtube-dl/issues/18759), but it was immediately closed as "Duplicate" and I cannot find what it's a duplicate of. It appears to be the same issue. I was therefor unable to find if there is any kind of workaround.
| geo-restricted | medium | Critical |
511,492,660 | godot | BaseButton's button_mask does not affect focus | **Godot version:**
Godot_v3.1.1-stable_win64
**Issue description:**
BaseButton's button_mask changes which mouse button is used to trigger "pressed" on a UI button. However, it does not change which mouse button makes the UI button grab the focus (that seems to be fixed as the left button).
Thus, if one sets button_mask = BUTTON_MASK_LEFT, left-clicking a UI button moves the focus (e.g. changes the button texture to "focused") and also triggers the function connected to the "pressed" signal, while right-clicking does nothing.
But, if one sets button_mask = BUTTON_MASK_RIGHT, right-clicking only triggers the function connected to the "pressed" signal, while left-clicking moves the focus without triggering anything.
I believe this would be confusing to players. I believe button_mask should affect focus grabbing in the same way it does button pressing.
BTW, is there some way to forego this button mask altogether and get the mouse button from InputMap["ui_accept"], as is done for the keyboard?
| bug,confirmed,usability,topic:gui | low | Major |
511,499,361 | godot | Can't compare INF or NAN reliably when used on an int var | **Godot version:**
3.1.1.stable.official
**OS/device including version:**
Windows 7
**Issue description:**
If you assign an `int var` with `INF`, it gets initialized as the min `int` (-9223372036854775808) which is not useful as it is a negative value. If we are not meant to assign `INF` to an `int` then the docs should have a warning on it.
I haven't tested this using floats btw.
**Steps to reproduce:**
```
var int_inf : int = INF
var casted_int_inf = int(INF)
var as_inf = INF as int
var untyped_inf = INF
print(int_inf) # -9223372036854775808
print(casted_int_inf) # -9223372036854775808
print(as_inf) # -9223372036854775808
print(untyped_inf) # 1.#INF
print(1 > INF) # False. Ok
print(1 > int_inf) # True. Not ok.
print(1 > casted_int_inf) # True. Not ok.
print(1 > as_inf) # True. Not ok.
print(1 > untyped_inf) # False. Ok.
print(INF == INF) # True. Duh :P
print(INF == int_inf) # True. But what about if I wanted to check a negative INF ?
print(INF == casted_int_inf) # True. Same as above.
print(INF == as_inf) # True. Same as above.
print(INF == untyped_inf) # False. Huh?
``` | bug,discussion,topic:core | low | Minor |
511,503,808 | pytorch | TestTorch.test_c10_layer_norm fails if you run it on a build of PyTorch with BUILD_CAFFE2_OPS=0 | Failure:
```
======================================================================
ERROR: test_c10_layer_norm (__main__.TestTorch)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/test_torch.py", line 5580, in test_c10_layer_norm
torch.ops._caffe2.LayerNorm(torch.tensor(X), torch.tensor(
File "/data/users/ezyang/pytorch-tmp/torch/_ops.py", line 61, in __getattr__
op = torch._C._jit_get_operation(qualified_op_name)
RuntimeError: No such operator _caffe2::LayerNorm
``` | triaged,module: dispatch | low | Critical |
511,505,877 | flutter | Cupertino Mac OS Focus Highlight | On Mac OS, when form fields/controls are focused, they also receive a visual highlight effect. This looks like a light blue outline that animates in. The animation starts larger than the widget and out of focus, and ends up sharp and just on the outside of the field.
We'll need to add this effect to our Cupertino widgets when running on the Mac OS platform. Some design details that need to be thought out include:
* How do we easily include this effect in all related Cupertino widgets without duplicating code? Can we just write a widget and use composition inside these widgets' build methods?
* If this outline effect is drawn at the same level as the widget, it will be obscured by sibling widgets, since it is larger than the widget it is applied to. Can we put it in the top level Overlay? Or, will that cause ugliness when the app bar is scrolled over the top of a focused widget? We may need to add an intermediate Overlay that is below the CupertinoNavigationBar.
* How will this code know the size **and shape** of the widget it is applied to? For example, a slider thumb is not a perfect rectangle and the highlight must follow its specific shape, not just its bounding box.
CC @gspencergoog | framework,platform-mac,f: cupertino,a: desktop,P3,team-macos,triaged-macos | low | Major |
511,534,880 | svelte | scrollX/Y for things other than window | Is there a reason why there's no `bind:scrollX` for dom nodes ? I see there are for window. I rolled my own solution, but it felt like it should be supported! | feature request | medium | Major |
511,551,073 | rust | Misleading error message with Trait and unimplemented std::marker::Sized | When doing something like this
``` rust
use std::path::{Path, PathBuf};
pub trait Control {
type Output;
fn open<P: AsRef<Path>>(path: P) -> Result<Self::Output, String>;
}
#[derive(Debug)]
pub struct Foo {
path: Path,
}
impl Control for Foo {
type Output = Self;
fn open<P: AsRef<Path>>(path: P) -> Result<Self, String> {
Ok(Foo {
path: path.as_ref().into(),
})
}
}
fn main() {
let path = Path::new("/test");
let c = Foo::open(path);
print!("{:?}", c);
}
```
> [Playground Link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4f343d8cacd8c0d40e889a389c17d42c)
you get an error like this
```
Compiling playground v0.0.1 (/playground)
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
--> src/main.rs:14:6
|
14 | impl Control for Foo {
| ^^^^^^^ doesn't have a size known at compile-time
|
= help: within `Foo`, the trait `std::marker::Sized` is not implemented for `[u8]`
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
= note: required because it appears within the type `Foo`
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
--> src/main.rs:17:5
|
17 | / fn open<P: AsRef<Path>>(path: P) -> Result<Self, String> {
18 | | Ok(Foo {
19 | | path: path.as_ref(),
20 | | })
21 | | }
| |_____^ doesn't have a size known at compile-time
|
= help: within `Foo`, the trait `std::marker::Sized` is not implemented for `[u8]`
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
= note: required because it appears within the type `Foo`
= note: required by `std::result::Result`
```
---
I would expect an error like the one from this code
``` rust
use std::path::{Path, PathBuf};
pub trait Control<'a> {
type Output;
fn open<P: 'a + AsRef<Path>>(path: P) -> Result<Self::Output, String>;
}
pub struct Foo<'a> {
path: &'a Path,
}
impl<'a> Control<'a> for Foo<'a> {
type Output = Self;
fn open<P: 'a + AsRef<Path>>(path: P) -> Result<Self, String> {
Ok(Foo {
path: path.as_ref(),
})
}
}
fn main() {
let path = PathBuf::from("/test");
let c = Foo::open(path );
}
```
> [Playground Link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=49205816abdac866ddf01a7bd33499d5)
```
error[E0515]: cannot return value referencing function parameter `path`
--> src/main.rs:16:9
|
16 | / Ok(Foo {
17 | | path: path.as_ref(),
| | ---- `path` is borrowed here
18 | | })
| |__________^ returns a value referencing data owned by the current function
```
*Edit:* Sorry, had the wrong error output and playground link on the first example | C-enhancement,A-diagnostics,A-trait-system,T-compiler | low | Critical |
511,581,665 | pytorch | Expose DifferentiableGraphBackward to python | ## π Feature
Currently, there is no easy way of visualizing the graph generated by autodiff in jit. We want something that could do
```python
import torch
@torch.jit.script
def f(a):
return (a + 100) * 5
a = torch.tensor(0., requires_grad=True)
result = f(a)
print(result.grad_fn.graph)
```
## Additional context
In autograd, the `Node` for `grad_fn` of a JIT graph is defined as
```
struct DifferentiableGraphBackward : public autograd::Node
```
in `torch/csrc/jit/graph_executor.cpp`
This class does not have python correspondence, therefore python only views it as a general `CppFunction`. We need to create a Python class for it so that we could access additional information.
**Please confirm if this feature sounds useful and if yes, assign me to this issue and I will work on it.**
cc @suo @ezyang @SsnL @albanD @zou3519 @gqchen | oncall: jit,feature,module: autograd,triaged | low | Major |
511,590,737 | pytorch | Doing rendezvous twice can cause hangs | ## π Bug
Rendezvous twice using the same file path, could cause version mismatch and hanging.
## To Reproduce
```
rendezvous_iterator = torch.distributed.rendezvous(init_method, self_rank, world_size)
store, self_rank, world_size = next(rendezvous_iterator)
# Might need to insert random delay.
rendezvous_iterator = torch.distributed.rendezvous(init_method, self_rank, world_size)
store, self_rank, world_size = next(rendezvous_iterator)
```
## Fix
Should put some special key in the store to mark the rendezvous has reached, and the same store path could be not used for rendezvous again.
Might need to use `PrefixStore` to supports versioning. Currently, `PrefixStore` is only used to create sub process group.
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 | oncall: distributed,triaged | low | Critical |
511,616,409 | pytorch | We should suggest using as_strided_ instead of set_ | ## π Documentation
Here in the description of resize:
`
This is a low-level method. The storage is reinterpreted as C-contiguous, ignoring the current strides (unless the target size equals the current size, in which case the tensor is left unchanged). For most purposes, you will instead want to use view(), which checks for contiguity, or reshape(), which copies data if needed. To change the size in-place with custom strides, see set_().
`
`as_strided_` has clearer semantics than `set_` (which can also change the storage, which isn't relevant for the situation in question. | module: docs,triaged | low | Minor |
511,624,685 | rust | Feature gate for `dyn_compatible_for_dispatch` not suggested | Code:
```rust
struct S(Box<dyn Copy>);
```
errors with:
```rust
error[E0038]: the trait `std::marker::Copy` cannot be made into an object
--> f.rs:1:10
|
1 | struct S(Box<dyn Copy>);
| ^^^^^^^^^^^^^ the trait `std::marker::Copy` cannot be made into an object
|
= note: the trait cannot require that `Self : Sized`
```
But it does not suggest adding the feature gate. | T-compiler,C-bug,F-dyn_compatible_for_dispatch | low | Critical |
511,648,684 | vscode | Enteraction appending text before the new line | [EnterAction](https://code.visualstudio.com/api/references/vscode-api#EnterAction) Should allow appending text before the new line as well.
What I want to do is when a user press enter in the middle of a string to break it into two lines and concat the string with +
eg:
convert this,
```ballerina
string s = "Press enter here -> <- there"
```
to
```ballerina
string s = "Press enter here ->"
+ " <- there"
```
But I can only append `+ "` to the string below. No way to add `"` to the string above :( | feature-request,editor-commands | low | Minor |
511,665,271 | TypeScript | Enhance members of literal type like const array type (e.g. string literal types should have literal length property) | The const array type, its principle members are also be the constant. When define a const array `[number, string, boolean]`, its `length` type be `3`. Also, when access to special index, the type also points the exact const type.
```typescript
function const_array(): void
{
let elements: [number, string, false] = [3, "something", false];
let length: 3 = elements.length;
let first: number = elements[0];
let second: string = elements[1];
let third: false = elements[2];
}
```
However, the literal type is not like the const array. When define a literal type "something", its `length` be not `9` but `number`. Also, when access to a special index, the type is not a special literal type but a `string` type.
```typescript
function literal(): void
{
let word: "something" = "something" as const;
let length: number = something.length; // not 9 but number
let first: string = word[0]; // not "s" but string
let second: string = word[1]; // not "o" but string
let third: string = word[2]; // not "m" but string
}
```
What about enhancing the literal type to be like the const array type? | Suggestion,Awaiting More Feedback | medium | Major |
511,685,619 | create-react-app | react-scripts test does not fail when coverage threshold is not met |
### Describe the bug
Utilizing create-react-app, when running tests,
### Did you try recovering your dependencies?
Yes.
### Which terms did you search for in User Guide?
Tests. Coverage.
### Environment
```
System:
OS: macOS 10.14.6
CPU: (12) x64 Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz
Binaries:
Node: 10.15.3 - ~/.nvm/versions/node/v10.15.3/bin/node
Yarn: Not Found
npm: 6.4.1 - ~/.nvm/versions/node/v10.15.3/bin/npm
Browsers:
Chrome: 77.0.3865.120
Firefox: 69.0.2
Safari: 13.0.2
npmPackages:
react: ^16.8.6 => 16.9.0
react-dom: ^16.8.6 => 16.9.0
react-scripts: 3.0.1 => 3.0.1
npmGlobalPackages:
create-react-app: 3.0.1
```
### Steps to reproduce
**package.json**
```
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm run test -- --coverage --watchAll=false",
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.js",
"src/state/**/*.js",
"src/templates/**/*.js",
"src/routes/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
```
Run `test:coverage`, the console shows a message that test coverage failed, but the test passes.
### Expected behavior
If the code coverage thresholds are not met, the console returns a non-zero response.
### Actual behavior
 | issue: bug | low | Critical |
511,695,420 | TypeScript | Source Map includes mapping for line ending characters | <!-- π¨ 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 logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ
Please fill in the *entire* template below.
-->
<!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: `typescript@next`
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
**TypeScript Version:** Version 3.8.0-dev.20191023
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
source map, source map new line
**Code**
```shell
tsc --inlineSourceMap test.ts
```
test.ts
```ts
console.log('hello');
console.log('world');
```
test.js
```
console.log('hello');
console.log('world');
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsQ0FBQztBQUNyQixPQUFPLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDIn0=
```
Source map breaks down into:
```
"console": test.ts:1:0
".": test.ts:1:7
"log": test.ts:1:8
"(": test.ts:1:11
"'hello'": test.ts:1:12
")": test.ts:1:19
";": test.ts:1:20
"\n": test.ts:1:21 <-- line end
"console": test.ts:2:0
".": test.ts:2:7
"log": test.ts:2:8
"(": test.ts:2:11
"'world'": test.ts:2:12
")": test.ts:2:19
";": test.ts:2:20
"": test.ts:2:21 <-- line end
```
**Expected behavior:**
Line end characters left unmapped.
**Actual behavior:**
Line end characters are included in the mapping, with the column number that equals to the length of the line -- which exceeds the boundary, given that column number is 0-based in a source map.
The [spec](https://sourcemaps.info/spec.html) doesn't cover if mappings for line ending characters should be included. But this behavior breaks some tools (eg. source-map-explorer) with strict boundary checks.
**Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior -->
**Related Issues:** <!-- Did you find other bugs that looked similar? -->
| Bug | low | Critical |
511,702,132 | rust | How can you disable stack checking? | On Windows-MSCV-x86_64 I am attempting to create a `no_std` binary with Stable (1.38). I'm getting an unresolved symbol for `__chkstk`:
```
D:\dev\quixotic>cargo run
Compiling quixotic v0.0.0 (D:\dev\quixotic)
error: linking with `link.exe` failed: exit code: 1120
|
= note: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.13.26128\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "/NXCOMPAT" "/LIBPATH:C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "D:\\dev\\quixotic\\target\\debug\\deps\\main-13addd73d3845cd6.1z81p1fkccyc5iby.rcgu.o" "D:\\dev\\quixotic\\target\\debug\\deps\\main-13addd73d3845cd6.22n4xq61sdy0azbs.rcgu.o" "D:\\dev\\quixotic\\target\\debug\\deps\\main-13addd73d3845cd6.255oap8fzr2s5w11.rcgu.o" "D:\\dev\\quixotic\\target\\debug\\deps\\main-13addd73d3845cd6.2u5094on6j0uypp3.rcgu.o" "/OUT:D:\\dev\\quixotic\\target\\debug\\deps\\main-13addd73d3845cd6.exe" "/SUBSYSTEM:console" "/OPT:REF,NOICF" "/DEBUG" "/NATVIS:C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\libcore.natvis" "/LIBPATH:D:\\dev\\quixotic\\target\\debug\\deps" "/LIBPATH:C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "D:\\dev\\quixotic\\target\\debug\\deps\\libwinapi-f9a577440f324f5e.rlib" "C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_core-6391a360e3eeafba.rlib" "C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcore-6c8df881cdc2afb2.rlib" "C:\\Users\\Daniel\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcompiler_builtins-f998976453a15b70.rlib" "advapi32.lib" "cfgmgr32.lib" "gdi32.lib" "kernel32.lib" "msimg32.lib" "opengl32.lib" "user32.lib" "winspool.lib"
= note: main-13addd73d3845cd6.1z81p1fkccyc5iby.rcgu.o : error LNK2019: unresolved external symbol
__chkstk referenced in function mainCRTStartup
main-13addd73d3845cd6.255oap8fzr2s5w11.rcgu.o : error LNK2001: unresolved external symbol
__chkstk
D:\dev\quixotic\target\debug\deps\main-13addd73d3845cd6.exe : fatal error LNK1120: 1 unresolved externals
error: aborting due to previous error
error: Could not compile `quixotic`.
To learn more, run the command again with --verbose.
```
Normally, you resolve this in the C/C++ MSVC compiler with `/GS-` to disable stack security checks, `/Gs999999999` to disable stack probes, and telling the linker `/STACK:0x100000,0x100000` to force it to commit the entire 1MB of stack right away instead of using all the pages individually.
I can pass the linker arg to `link.exe` easily enough, but what would the rustc equivalents to disable stack checking and stack probing be? | T-lang,T-compiler,C-feature-request | low | Critical |
511,715,078 | go | x/crypto/ssh: newChannel leak after Reject() | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.7 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Most likely.
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/ziyan/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/ziyan/go"
GOPROXY=""
GORACE=""
GOROOT="/home/ziyan/software/go"
GOTMPDIR=""
GOTOOLDIR="/home/ziyan/software/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build414841088=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
```go
conn, channels, requests, err := ssh.NewServerConn(...)
for channel := range channels {
channel.Reject(ssh.ConnectionFailed, "rejecting channel")
}
```
Then keep trying to open new `direct-tcpip` channel on a SSH connection:
```
ssh -N gosshserver -L 9999:name:9999
telnet localhost 9999
telnet localhost 9999
telnet localhost 9999
```
### What did you expect to see?
No memory leak over time.
### What did you see instead?
Unconstrained memory leak.
```
112.52MB 68.69% 68.69% 155.30MB 94.81% golang.org/x/crypto/ssh.(*mux).newChannel
23.50MB 14.35% 83.04% 23.50MB 14.35% sync.NewCond
15.50MB 9.46% 92.50% 36MB 21.98% golang.org/x/crypto/ssh.newBuffer
7MB 4.27% 96.77% 7MB 4.27% golang.org/x/crypto/ssh.(*connectionState).readPacket
2.50MB 1.53% 98.30% 26MB 15.87% golang.org/x/crypto/ssh.newCond
1.28MB 0.78% 99.08% 1.28MB 0.78% golang.org/x/crypto/ssh.(*chanList).add
```
| NeedsInvestigation | low | Critical |
511,744,290 | go | cmd/compile: minimally align variables in memory when -d=checkptr is used | -d=checkptr should report a warning for:
var x [4]byte
p := (*uint32)(unsafe.Pointer(&x[0]))
In general, this is unsafe because `x` only requires 1-byte alignment, but `*uint32` requires 4-byte alignment.
Currently, this isn't reliably reported, because efficiently allocating variables often results in over alignment. But when -d=checkptr is in use, cmd/compile and the runtime could burn a few bytes of memory to intentionally *minimally* align things in the heap and on the stack (e.g., 1-byte-alignment variables always on an odd address).
Relatedly, when the runtime allocates a chunk of memory for a heap variable allocation, it could align the variable as close to the *end* of the allocation (rather than at the beginning), so that we can more easily detect pointer arithmetic overflows (at the expense of pointer arithmetic underflows, which seem less common).
These both would have helped catch issues that I've noticed in CLs to address errors reported by -d=checkptr.
(Prior art: I think OpenBSD's malloc used to prefer aligning allocations towards the end of an mmap'ed page so that buffer overflows were more likely to trigger a segmentation fault. Not sure if it still does that. I don't see it mentioned specifically in the man page.) | help wanted,NeedsInvestigation,compiler/runtime | low | Critical |
511,811,185 | go | syscall: treat ENFILE as a temporary error, like EMFILE | ### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Linux
### What did you do?
One of our servers ran out of file handles (/proc/sys/fs/file-max). This led net.Listener.Accept() to return ENFILE (not EMFILE). Since ENFILE is not considered a temporary error, http.Server.Serve exited it's accept loop and returned ENFILE.
### What did you expect to see?
ENFILE should be treated as temporary if returned by accept (and possible others). http.Server should not abort its accept loop when encountering ENFILE.
### What did you see instead?
The application which received ENFILE logged the error, and continued running without a working listener / http server. If the application had followed the common `log.Fatalln(http.Serve(...))` it would have crashed. | help wanted,OS-Windows,NeedsFix | medium | Critical |
511,831,873 | youtube-dl | Please add support for new BBC sounds (etc) onion site | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## 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 2019.10.22. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.10.22**
- [x] I've checked that all provided URLs are alive and playable in a browser
- [x] I've checked that none of provided URLs violate any copyrights
- [x] I've searched the bugtracker for similar site support requests including closed ones
## Example URLs
<!--
Provide all kinds of example URLs support for which should be included. Replace following example URLs by yours.
-->
- Example BBC sounds onion https://www.bbcnewsv2vjtpsuy.onion/sounds/play/b01jqjl5
- Non-onion example of above https://www.bbc.co.uk/sounds/play/b01jqjl5
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
The [BBC has launched](https://www.bbc.com/news/technology-50150981) a new onion service.
Proxying youtube-dl over Tor Browser's tor connection fails with
```
$ youtube-dl -4 --geo-bypass --proxy "socks4a://127.0.0.1:9150" -F https://www.bbcnewsv2vjtpsuy.onion/sounds/play/b01jqjl5
[generic] b01jqjl5: Requesting header
WARNING: Falling back on generic information extractor.
[generic] b01jqjl5: Downloading webpage
[generic] b01jqjl5: Extracting information
ERROR: Unsupported URL: https://www.bbcnewsv2vjtpsuy.onion/sounds/play/b01jqjl5
```
Proxying over Tor Browser to the regular BBC sounds site works.
There are other sub-sites on the BBC that are related, that host radio programs etc.
These produce the same "Unsupported URL" error:
BBC Radio 4
https://www.bbcnewsv2vjtpsuy.onion/radio4
BBC Radio 4 Extra
https://www.bbcnewsv2vjtpsuy.onion/radio4extra
BBC Work Service Radio
https://www.bbcnewsv2vjtpsuy.onion/worldserviceradio
Cheers
Edit: For clarity, you need Tor Browser open when your are proxying over its Tor connection, then you just run youtube-dl with the proxy command above. | site-support-request | low | Critical |
511,848,806 | opencv | Strange results of matchTemplate using TM_CCORR_NORMED with mask | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest developer build.
* Check if other person has already created the same issue to avoid duplicates. You can comment on it if there already is an issue.
* Try to be as detailed as possible in your report.
* Report only one problem per created issue.
This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.
-->
##### System information (version)
<!-- Example
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2015
-->
- OpenCV => 4.1.1 (opencv-python)
- Operating System / Platform => Windows 10 x64
- Compiler => Visual Studio 14 2015 Win64
##### Detailed description
<!-- your description -->
Results of `cv.matchTemplate(image, needle, cv.TM_CCORR_NORMED, mask=mask)`
sometimes contains many values larger than 1 at stange position.
It happens only for TM_CCORR_NORMED with mask.
Also, it seems if the `image` has odd width the problem will not be triggered.
##### Steps to reproduce
This only happens with some special shapes of `image`, it seems odd width never trigger the bug.
[opencvtest.zip](https://github.com/opencv/opencv/files/3766894/opencvtest.zip)
`out.txt` shows the result produced by `python cvtest.py` on my machine, including output of `cv.getBuildInformation()`.
I'm not sure what causes this problem.
Opencv 3.4.4 on windows and 3.1.0 on mac has the same problem, but the err_count varies.
Another build of 4.1.1 on linux doesn't has this problem.
<!-- to add code example fence it with triple backticks and optional file extension
```.cpp
// C++ code example
```
or attach as .txt or .zip file
-->
| category: imgproc | low | Critical |
511,859,693 | pytorch | `Tensor.__reversed__` breaks protocol for reversible objects | ## π Bug
<!-- A clear and concise description of what the bug is. -->
The `__reversed__` method of `Tensor` (https://github.com/pytorch/pytorch/blob/master/torch/tensor.py#L292) does not follow the protocol specified in https://docs.python.org/3/reference/datamodel.html#object.__reversed__. It should return an iterator that iterates in reverse, not a reversed `Tensor`.
## To Reproduce
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
<!-- A clear and concise description of what you expected to happen. -->
## Environment
## Additional context
<!-- Add any other context about the problem here. -->
| module: internals,triaged,module: pybind | low | Critical |
511,874,084 | rust | musl staticlib builds include all of the musl symbols | ## Observed Behaviour
If I produce a simple `staticlib` crate for the `x86_64-unknown-linux-musl` target, I get a `.a` file that includes all the symbols from musl, including standard libc symbols like (for example) `readlink`. This makes it impossible to link this library into a C program that links against libc itself (or another Rust staticlib) as the linker will fail with duplicate symbol errors.
## Reproduction
A test repository is at https://github.com/Twey/musl-staticlib-test, along with a Nix description of the relevant build environment for those so inclined. You can execute `rustc -omusl-staticlib-test.a --target=x86_64-unknown-linux-musl --crate-type=staticlib lib.rs` to get a library, and use a tool such as `nm` to view the symbols in the resulting binary. For example:
```
[twey@uruz:/tmp/musl-staticlib-test]$ nm musl_staticlib_test.a | grep readlink
U readlink
0000000000000000 T _ZN3std3sys4unix2fs8readlink17h4d68afd72996b214E
U readlink
readlink.lo:
0000000000000000 T readlink
readlinkat.lo:
0000000000000000 T readlinkat
U readlink
```
## Expected Behaviour
Normally, static libraries for consumption by C, like `rlib`s, contain only symbols from the project itself, not symbols from dependencies. Certainly symbols from libc should never make it into the binary, as these will always conflict.
For example, here's `libev`, also built statically against musl:
```
[twey@uruz:/tmp/musl-staticlib-test]$ nm /nix/store/6r9z7a007vrla17paac35c968fmbzilq-libev-4.27-x86_64-unknown-linux-musl/lib/libev.a | grep readlink
[twey@uruz:/tmp/musl-staticlib-test]$
``` | A-linkage,T-compiler,O-musl,C-bug | low | Critical |
511,889,202 | opencv | CMake Error on Termux, Android SDK: specify path to Android SDK via ANDROID_SDK_ROOT / ANDROID_HOME / ANDROID_SDK variables | ##### System information (version)
- OpenCV = 3.4.2
- Phone Brand = Mi Max 2
- Operating System / Platform = Termux aarch64 Android
##### Detailed description
as the official website say ,
[https://wiki.termux.com/wiki/Instructions_for_installing_python_packages#opencv](https://wiki.termux.com/wiki/Instructions_for_installing_python_packages#opencv),
step by step,
when configure the package part,
> LDFLAGS=" -llog -lpython3" cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=$PREFIX -DBUILD_opencv_python3=on -DBUILD_opencv_python2=off -DWITH_QT=OFF -DWITH_GTK=OFF ..
got the result,
> CMake Error at cmake/android/OpenCVDetectAndroidSDK.cmake:30 (message):
Android SDK: specify path to Android SDK via ANDROID_SDK_ROOT /
ANDROID_HOME / ANDROID_SDK variables
Call Stack (most recent call first):
cmake/android/OpenCVDetectAndroidSDK.cmake:153 (ocv_detect_android_sdk)
CMakeLists.txt:645 (include)
-- Configuring incomplete, errors occurred!
and i found the source code ,the path is
>cmake/android/OpenCVDetectAndroidSDK.cmake
Are there any workarounds?
Thanks. | priority: low,category: build/install,platform: android | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.