Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 844 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 12 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 248k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
11,045 | 3,163,971,776 | IssuesEvent | 2015-09-20 19:42:11 | sass/sass-spec | https://api.github.com/repos/sass/sass-spec | closed | selector functions type checks / error checks | error-test | While implementing the 3.4 selector functions, I know how sensitive they can be to bad input.
Currently our test (https://github.com/sass/sass-spec/tree/master/spec/libsass-todo-issues/issue_963/selector-functions), are only being passed ideal input values.
Can we add checks to make sure the passed in types are correct (for example passing in "12" in some functions is considered bad.
The ruby sass test suite has some methods for that, but i'm not sure what the format would be to translate those here.
For example:
```
assert_error_message("$selectors: At least one selector must be passed for `selector-append'",
"selector-append()")
assert_error_message("Can't append \"> .bar\" to \".foo\" for `selector-append'",
"selector-append('.foo', '> .bar')")
assert_error_message("Can't append \"*.bar\" to \".foo\" for `selector-append'",
"selector-append('.foo', '*.bar')")
assert_error_message("Can't append \"ns|suffix\" to \".foo\" for `selector-append'",
"selector-append('.foo', 'ns|suffix')")
``` | 1.0 | selector functions type checks / error checks - While implementing the 3.4 selector functions, I know how sensitive they can be to bad input.
Currently our test (https://github.com/sass/sass-spec/tree/master/spec/libsass-todo-issues/issue_963/selector-functions), are only being passed ideal input values.
Can we add checks to make sure the passed in types are correct (for example passing in "12" in some functions is considered bad.
The ruby sass test suite has some methods for that, but i'm not sure what the format would be to translate those here.
For example:
```
assert_error_message("$selectors: At least one selector must be passed for `selector-append'",
"selector-append()")
assert_error_message("Can't append \"> .bar\" to \".foo\" for `selector-append'",
"selector-append('.foo', '> .bar')")
assert_error_message("Can't append \"*.bar\" to \".foo\" for `selector-append'",
"selector-append('.foo', '*.bar')")
assert_error_message("Can't append \"ns|suffix\" to \".foo\" for `selector-append'",
"selector-append('.foo', 'ns|suffix')")
``` | non_priority | selector functions type checks error checks while implementing the selector functions i know how sensitive they can be to bad input currently our test are only being passed ideal input values can we add checks to make sure the passed in types are correct for example passing in in some functions is considered bad the ruby sass test suite has some methods for that but i m not sure what the format would be to translate those here for example assert error message selectors at least one selector must be passed for selector append selector append assert error message can t append bar to foo for selector append selector append foo bar assert error message can t append bar to foo for selector append selector append foo bar assert error message can t append ns suffix to foo for selector append selector append foo ns suffix | 0 |
4,981 | 4,744,580,653 | IssuesEvent | 2016-10-21 01:53:29 | explosion/spaCy | https://api.github.com/repos/explosion/spaCy | closed | nlp = English() , wont load in a Script | performance | from spacy.en import English
nlp = English()
when called in a python script it never loads and the process has to be killed to continue.
I installed spacy using conda, could never get it to work using pip. | True | nlp = English() , wont load in a Script - from spacy.en import English
nlp = English()
when called in a python script it never loads and the process has to be killed to continue.
I installed spacy using conda, could never get it to work using pip. | non_priority | nlp english wont load in a script from spacy en import english nlp english when called in a python script it never loads and the process has to be killed to continue i installed spacy using conda could never get it to work using pip | 0 |
114,038 | 24,535,566,137 | IssuesEvent | 2022-10-11 20:24:24 | gwhittemore-veracode/Veracode-GW-Training-demo | https://api.github.com/repos/gwhittemore-veracode/Veracode-GW-Training-demo | opened | Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Response Splitting') [VID:113:com/veracode/verademo/controller/UserController.java:173] | VeracodeFlaw: Medium Veracode Pipeline Scan | https://github.com/gwhittemore-veracode/Veracode-GW-Training-demo/blob/2add22ec1b5a85a51e5134a9af33bf2e99488d44/com/veracode/verademo/controller/UserController.java#L168-L178
**Filename:** com/veracode/verademo/controller/UserController.java
**Line:** 173
**CWE:** 113 (Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Response Splitting'))
<span>This call to javax.servlet.http.HttpServletResponse.addCookie() contains an HTTP response splitting flaw. Writing untrusted input into an HTTP header allows an attacker to manipulate the HTTP response rendered by the browser, to inject additional headers or an entire response body into the response stream. Injecting headers can be used to trick various security mechanisms in browsers into allowing XSS style attacks. Injecting entire response bodies can not only cause XSS attacks to succeed but may even poison the cache of any intermediary proxies between the clients and the application server. The first argument to addCookie() contains tainted data from the variables (new Cookie(...)). The tainted data originated from an earlier call to AnnotationVirtualController.vc_annotation_entry.</span> <span>Escape, encode, or remove carriage return and line feed characters from untrusted data before inclusion in HTTP response headers. Whenever possible, use a security library such as ESAPI that provides safe versions of addHeader(), etc. that will automatically remove unexpected carriage returns and line feeds and can be configured to use HTML entity encoding for non-alphanumeric data. Alternatively, some of the XSS escaping functions from the OWASP Java Encoder project will also sanitize CRLF sequences. Only create a custom blocklist when absolutely necessary. Always validate untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible.</span> <span>References: <a href="https://cwe.mitre.org/data/definitions/113.html">CWE</a> <a href="https://owasp.org/www-community/attacks/HTTP_Response_Splitting">OWASP</a> <a href="https://docs.veracode.com/r/review_cleansers">Supported Cleansers</a></span> | 2.0 | Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Response Splitting') [VID:113:com/veracode/verademo/controller/UserController.java:173] - https://github.com/gwhittemore-veracode/Veracode-GW-Training-demo/blob/2add22ec1b5a85a51e5134a9af33bf2e99488d44/com/veracode/verademo/controller/UserController.java#L168-L178
**Filename:** com/veracode/verademo/controller/UserController.java
**Line:** 173
**CWE:** 113 (Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Response Splitting'))
<span>This call to javax.servlet.http.HttpServletResponse.addCookie() contains an HTTP response splitting flaw. Writing untrusted input into an HTTP header allows an attacker to manipulate the HTTP response rendered by the browser, to inject additional headers or an entire response body into the response stream. Injecting headers can be used to trick various security mechanisms in browsers into allowing XSS style attacks. Injecting entire response bodies can not only cause XSS attacks to succeed but may even poison the cache of any intermediary proxies between the clients and the application server. The first argument to addCookie() contains tainted data from the variables (new Cookie(...)). The tainted data originated from an earlier call to AnnotationVirtualController.vc_annotation_entry.</span> <span>Escape, encode, or remove carriage return and line feed characters from untrusted data before inclusion in HTTP response headers. Whenever possible, use a security library such as ESAPI that provides safe versions of addHeader(), etc. that will automatically remove unexpected carriage returns and line feeds and can be configured to use HTML entity encoding for non-alphanumeric data. Alternatively, some of the XSS escaping functions from the OWASP Java Encoder project will also sanitize CRLF sequences. Only create a custom blocklist when absolutely necessary. Always validate untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible.</span> <span>References: <a href="https://cwe.mitre.org/data/definitions/113.html">CWE</a> <a href="https://owasp.org/www-community/attacks/HTTP_Response_Splitting">OWASP</a> <a href="https://docs.veracode.com/r/review_cleansers">Supported Cleansers</a></span> | non_priority | improper neutralization of crlf sequences in http headers http response splitting filename com veracode verademo controller usercontroller java line cwe improper neutralization of crlf sequences in http headers http response splitting this call to javax servlet http httpservletresponse addcookie contains an http response splitting flaw writing untrusted input into an http header allows an attacker to manipulate the http response rendered by the browser to inject additional headers or an entire response body into the response stream injecting headers can be used to trick various security mechanisms in browsers into allowing xss style attacks injecting entire response bodies can not only cause xss attacks to succeed but may even poison the cache of any intermediary proxies between the clients and the application server the first argument to addcookie contains tainted data from the variables new cookie the tainted data originated from an earlier call to annotationvirtualcontroller vc annotation entry escape encode or remove carriage return and line feed characters from untrusted data before inclusion in http response headers whenever possible use a security library such as esapi that provides safe versions of addheader etc that will automatically remove unexpected carriage returns and line feeds and can be configured to use html entity encoding for non alphanumeric data alternatively some of the xss escaping functions from the owasp java encoder project will also sanitize crlf sequences only create a custom blocklist when absolutely necessary always validate untrusted input to ensure that it conforms to the expected format using centralized data validation routines when possible references | 0 |
185,311 | 21,786,155,889 | IssuesEvent | 2022-05-14 06:44:07 | classicvalues/AA-ionic-login | https://api.github.com/repos/classicvalues/AA-ionic-login | closed | CVE-2022-23437 (Medium) detected in xercesImpl-2.12.0.jar - autoclosed | security vulnerability | ## CVE-2022-23437 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>xercesImpl-2.12.0.jar</b></p></summary>
<p>Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program.
The Apache Xerces2 parser is the reference implementation of XNI but other parser components, configurations, and parsers can be written using the Xerces Native Interface. For complete design and implementation documents, refer to the XNI Manual.
Xerces2 is a fully conforming XML Schema 1.0 processor. A partial experimental implementation of the XML Schema 1.1 Structures and Datatypes Working Drafts (December 2009) and an experimental implementation of the XML Schema Definition Language (XSD): Component Designators (SCD) Candidate Recommendation (January 2010) are provided for evaluation. For more information, refer to the XML Schema page.
Xerces2 also provides a complete implementation of the Document Object Model Level 3 Core and Load/Save W3C Recommendations and provides a complete implementation of the XML Inclusions (XInclude) W3C Recommendation. It also provides support for OASIS XML Catalogs v1.1.
Xerces2 is able to parse documents written according to the XML 1.1 Recommendation, except that it does not yet provide an option to enable normalization checking as described in section 2.13 of this specification. It also handles namespaces according to the XML Namespaces 1.1 Recommendation, and will correctly serialize XML 1.1 documents if the DOM level 3 load/save APIs are in use.</p>
<p>Library home page: <a href="https://xerces.apache.org/xerces2-j/">https://xerces.apache.org/xerces2-j/</a></p>
<p>Path to dependency file: /node_modules/@capacitor/app/android/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar</p>
<p>
Dependency Hierarchy:
- lint-gradle-27.2.1.jar (Root Library)
- sdk-common-27.2.1.jar
- :x: **xercesImpl-2.12.0.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/classicvalues/AA-ionic-login/commit/5e5d7114289131524d0ba838d28e2ac25198461a">5e5d7114289131524d0ba838d28e2ac25198461a</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
There's a vulnerability within the Apache Xerces Java (XercesJ) XML parser when handling specially crafted XML document payloads. This causes, the XercesJ XML parser to wait in an infinite loop, which may sometimes consume system resources for prolonged duration. This vulnerability is present within XercesJ version 2.12.1 and the previous versions.
<p>Publish Date: 2022-01-24
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23437>CVE-2022-23437</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-h65f-jvqw-m9fj">https://github.com/advisories/GHSA-h65f-jvqw-m9fj</a></p>
<p>Release Date: 2022-01-24</p>
<p>Fix Resolution: xerces:xercesImpl:2.12.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-23437 (Medium) detected in xercesImpl-2.12.0.jar - autoclosed - ## CVE-2022-23437 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>xercesImpl-2.12.0.jar</b></p></summary>
<p>Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program.
The Apache Xerces2 parser is the reference implementation of XNI but other parser components, configurations, and parsers can be written using the Xerces Native Interface. For complete design and implementation documents, refer to the XNI Manual.
Xerces2 is a fully conforming XML Schema 1.0 processor. A partial experimental implementation of the XML Schema 1.1 Structures and Datatypes Working Drafts (December 2009) and an experimental implementation of the XML Schema Definition Language (XSD): Component Designators (SCD) Candidate Recommendation (January 2010) are provided for evaluation. For more information, refer to the XML Schema page.
Xerces2 also provides a complete implementation of the Document Object Model Level 3 Core and Load/Save W3C Recommendations and provides a complete implementation of the XML Inclusions (XInclude) W3C Recommendation. It also provides support for OASIS XML Catalogs v1.1.
Xerces2 is able to parse documents written according to the XML 1.1 Recommendation, except that it does not yet provide an option to enable normalization checking as described in section 2.13 of this specification. It also handles namespaces according to the XML Namespaces 1.1 Recommendation, and will correctly serialize XML 1.1 documents if the DOM level 3 load/save APIs are in use.</p>
<p>Library home page: <a href="https://xerces.apache.org/xerces2-j/">https://xerces.apache.org/xerces2-j/</a></p>
<p>Path to dependency file: /node_modules/@capacitor/app/android/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.12.0/f02c844149fd306601f20e0b34853a670bef7fa2/xercesImpl-2.12.0.jar</p>
<p>
Dependency Hierarchy:
- lint-gradle-27.2.1.jar (Root Library)
- sdk-common-27.2.1.jar
- :x: **xercesImpl-2.12.0.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/classicvalues/AA-ionic-login/commit/5e5d7114289131524d0ba838d28e2ac25198461a">5e5d7114289131524d0ba838d28e2ac25198461a</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
There's a vulnerability within the Apache Xerces Java (XercesJ) XML parser when handling specially crafted XML document payloads. This causes, the XercesJ XML parser to wait in an infinite loop, which may sometimes consume system resources for prolonged duration. This vulnerability is present within XercesJ version 2.12.1 and the previous versions.
<p>Publish Date: 2022-01-24
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23437>CVE-2022-23437</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-h65f-jvqw-m9fj">https://github.com/advisories/GHSA-h65f-jvqw-m9fj</a></p>
<p>Release Date: 2022-01-24</p>
<p>Fix Resolution: xerces:xercesImpl:2.12.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in xercesimpl jar autoclosed cve medium severity vulnerability vulnerable library xercesimpl jar is the next generation of high performance fully compliant xml parsers in the apache xerces family this new version of xerces introduces the xerces native interface xni a complete framework for building parser components and configurations that is extremely modular and easy to program the apache parser is the reference implementation of xni but other parser components configurations and parsers can be written using the xerces native interface for complete design and implementation documents refer to the xni manual is a fully conforming xml schema processor a partial experimental implementation of the xml schema structures and datatypes working drafts december and an experimental implementation of the xml schema definition language xsd component designators scd candidate recommendation january are provided for evaluation for more information refer to the xml schema page also provides a complete implementation of the document object model level core and load save recommendations and provides a complete implementation of the xml inclusions xinclude recommendation it also provides support for oasis xml catalogs is able to parse documents written according to the xml recommendation except that it does not yet provide an option to enable normalization checking as described in section of this specification it also handles namespaces according to the xml namespaces recommendation and will correctly serialize xml documents if the dom level load save apis are in use library home page a href path to dependency file node modules capacitor app android build gradle path to vulnerable library home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar home wss scanner gradle caches modules files xerces xercesimpl xercesimpl jar dependency hierarchy lint gradle jar root library sdk common jar x xercesimpl jar vulnerable library found in head commit a href found in base branch master vulnerability details there s a vulnerability within the apache xerces java xercesj xml parser when handling specially crafted xml document payloads this causes the xercesj xml parser to wait in an infinite loop which may sometimes consume system resources for prolonged duration this vulnerability is present within xercesj version and the previous versions publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution xerces xercesimpl step up your open source security game with whitesource | 0 |
340,375 | 24,651,616,184 | IssuesEvent | 2022-10-17 19:09:38 | AlaskaAirlines/auro-combobox | https://api.github.com/repos/AlaskaAirlines/auro-combobox | closed | This example is very confusing | Type: Bug Type: Documentation auro-combobox | This example is very confusing.

_Originally posted by @blackfalcon in https://github.com/AlaskaAirlines/auro-combobox/issues/90#issuecomment-1259007275_
| 1.0 | This example is very confusing - This example is very confusing.

_Originally posted by @blackfalcon in https://github.com/AlaskaAirlines/auro-combobox/issues/90#issuecomment-1259007275_
| non_priority | this example is very confusing this example is very confusing originally posted by blackfalcon in | 0 |
41,508 | 5,343,184,016 | IssuesEvent | 2017-02-17 10:33:15 | wellcometrust/wellcomecollection.org | https://api.github.com/repos/wellcometrust/wellcomecollection.org | opened | Article hero image | design | [RED]
Make large hero image on article page full edge to edge now that we are publishing images based on the 16x9 ration | 1.0 | Article hero image - [RED]
Make large hero image on article page full edge to edge now that we are publishing images based on the 16x9 ration | non_priority | article hero image make large hero image on article page full edge to edge now that we are publishing images based on the ration | 0 |
109,045 | 23,702,961,324 | IssuesEvent | 2022-08-29 20:54:48 | sourcegraph/sourcegraph | https://api.github.com/repos/sourcegraph/sourcegraph | opened | insights: reduce historical enqueuer delay | team/code-insights backend | Until we make substantial improvements to our queueing mechanism, there is a quick win to reduce [the delay between iterations](https://sourcegraph.sourcegraph.com/github.com/sourcegraph/sourcegraph/-/blob/enterprise/internal/insights/background/historical_enqueuer.go?L124&subtree=true) of the `historical_enqueuer` to something quite small. This is safe now because:
1. All of the work is now processed in this queue and effectively rate limited
2. Work is blocked while the historical enqueuer is processing, so this will not double up.
I propose 30 seconds between cycles for this job.
This will substantially improve the experience for smaller customers that are making all repo insights. | 1.0 | insights: reduce historical enqueuer delay - Until we make substantial improvements to our queueing mechanism, there is a quick win to reduce [the delay between iterations](https://sourcegraph.sourcegraph.com/github.com/sourcegraph/sourcegraph/-/blob/enterprise/internal/insights/background/historical_enqueuer.go?L124&subtree=true) of the `historical_enqueuer` to something quite small. This is safe now because:
1. All of the work is now processed in this queue and effectively rate limited
2. Work is blocked while the historical enqueuer is processing, so this will not double up.
I propose 30 seconds between cycles for this job.
This will substantially improve the experience for smaller customers that are making all repo insights. | non_priority | insights reduce historical enqueuer delay until we make substantial improvements to our queueing mechanism there is a quick win to reduce of the historical enqueuer to something quite small this is safe now because all of the work is now processed in this queue and effectively rate limited work is blocked while the historical enqueuer is processing so this will not double up i propose seconds between cycles for this job this will substantially improve the experience for smaller customers that are making all repo insights | 0 |
276,584 | 30,495,969,804 | IssuesEvent | 2023-07-18 10:50:27 | SonarSource/sonar-dotnet | https://api.github.com/repos/SonarSource/sonar-dotnet | opened | Migrate S2053: Hardening | Type: False Negative Area: CFG/SE Area: VB.NET Area: C# Area: Security Sprint: SE | This is a followup to the rule migration. Once the C# version of S2053 was migrated and the VB version was added:
- [x] Handle Encoding.GetBytes("hardcodedText")
- [x] Handle ToArray() from LINQ: should transfer the existing byte collection constraints
- [x] Add more test cases for different control flows (conditional, try-catch-finally) | True | Migrate S2053: Hardening - This is a followup to the rule migration. Once the C# version of S2053 was migrated and the VB version was added:
- [x] Handle Encoding.GetBytes("hardcodedText")
- [x] Handle ToArray() from LINQ: should transfer the existing byte collection constraints
- [x] Add more test cases for different control flows (conditional, try-catch-finally) | non_priority | migrate hardening this is a followup to the rule migration once the c version of was migrated and the vb version was added handle encoding getbytes hardcodedtext handle toarray from linq should transfer the existing byte collection constraints add more test cases for different control flows conditional try catch finally | 0 |
346,238 | 30,878,185,271 | IssuesEvent | 2023-08-03 15:35:28 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | kv/kvprober: TestProberDoesReadsAndWrites failed | C-bug C-test-failure O-robot A-testing branch-master T-kv | kv/kvprober.TestProberDoesReadsAndWrites [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/11123352?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/11123352?buildTab=artifacts#/) on master @ [e57e9742146b7fac7f7530fa6224e11121ada92f](https://github.com/cockroachdb/cockroach/commits/e57e9742146b7fac7f7530fa6224e11121ada92f):
```
=== RUN TestProberDoesReadsAndWrites
test_log_scope.go:167: test logs captured to: /artifacts/tmp/_tmp/7488ece35d8e2b094bc887ed1c580125/logTestProberDoesReadsAndWrites299555206
test_log_scope.go:81: use -show-logs to present logs inline
=== CONT TestProberDoesReadsAndWrites
kvprober_integration_test.go:233: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/7488ece35d8e2b094bc887ed1c580125/logTestProberDoesReadsAndWrites299555206
--- FAIL: TestProberDoesReadsAndWrites (18.72s)
=== RUN TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only
test_server_shim.go:98:
Test server was configured to route SQL queries to a secondary tenant (virtual cluster).
If you are only seeing a test failure when this message appears, there may be a problem
specific to cluster virtualization or multi-tenancy.
To investigate, consider using "COCKROACH_TEST_TENANT=true" to force-enable just
the secondary tenant in all runs (or, alternatively, "false" to force-disable), or use
"COCKROACH_INTERNAL_DISABLE_METAMORPHIC_TESTING=false" to disable all random test variables altogether.
*
* WARNING: test tenant requested by configuration, but code organization prevents start!
* OSS binaries do not include enterprise features
*
kvprober_integration_test.go:224:
Error Trace: github.com/cockroachdb/cockroach/pkg/kv/kvprober_test/pkg/kv/kvprober/kvprober_integration_test.go:224
Error: Not equal:
expected: 11
actual : 10
Test: TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only
--- FAIL: TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only (1.30s)
```
<p>Parameters: <code>TAGS=bazel,gss</code>
, <code>stress=true</code>
</p>
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/kv
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestProberDoesReadsAndWrites.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-30235 | 2.0 | kv/kvprober: TestProberDoesReadsAndWrites failed - kv/kvprober.TestProberDoesReadsAndWrites [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/11123352?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/11123352?buildTab=artifacts#/) on master @ [e57e9742146b7fac7f7530fa6224e11121ada92f](https://github.com/cockroachdb/cockroach/commits/e57e9742146b7fac7f7530fa6224e11121ada92f):
```
=== RUN TestProberDoesReadsAndWrites
test_log_scope.go:167: test logs captured to: /artifacts/tmp/_tmp/7488ece35d8e2b094bc887ed1c580125/logTestProberDoesReadsAndWrites299555206
test_log_scope.go:81: use -show-logs to present logs inline
=== CONT TestProberDoesReadsAndWrites
kvprober_integration_test.go:233: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/7488ece35d8e2b094bc887ed1c580125/logTestProberDoesReadsAndWrites299555206
--- FAIL: TestProberDoesReadsAndWrites (18.72s)
=== RUN TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only
test_server_shim.go:98:
Test server was configured to route SQL queries to a secondary tenant (virtual cluster).
If you are only seeing a test failure when this message appears, there may be a problem
specific to cluster virtualization or multi-tenancy.
To investigate, consider using "COCKROACH_TEST_TENANT=true" to force-enable just
the secondary tenant in all runs (or, alternatively, "false" to force-disable), or use
"COCKROACH_INTERNAL_DISABLE_METAMORPHIC_TESTING=false" to disable all random test variables altogether.
*
* WARNING: test tenant requested by configuration, but code organization prevents start!
* OSS binaries do not include enterprise features
*
kvprober_integration_test.go:224:
Error Trace: github.com/cockroachdb/cockroach/pkg/kv/kvprober_test/pkg/kv/kvprober/kvprober_integration_test.go:224
Error: Not equal:
expected: 11
actual : 10
Test: TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only
--- FAIL: TestProberDoesReadsAndWrites/all_ranges_are_unavailable_for_Puts_only (1.30s)
```
<p>Parameters: <code>TAGS=bazel,gss</code>
, <code>stress=true</code>
</p>
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/kv
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestProberDoesReadsAndWrites.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-30235 | non_priority | kv kvprober testproberdoesreadsandwrites failed kv kvprober testproberdoesreadsandwrites with on master run testproberdoesreadsandwrites test log scope go test logs captured to artifacts tmp tmp test log scope go use show logs to present logs inline cont testproberdoesreadsandwrites kvprober integration test go test log scope end test logs left over in artifacts tmp tmp fail testproberdoesreadsandwrites run testproberdoesreadsandwrites all ranges are unavailable for puts only test server shim go test server was configured to route sql queries to a secondary tenant virtual cluster if you are only seeing a test failure when this message appears there may be a problem specific to cluster virtualization or multi tenancy to investigate consider using cockroach test tenant true to force enable just the secondary tenant in all runs or alternatively false to force disable or use cockroach internal disable metamorphic testing false to disable all random test variables altogether warning test tenant requested by configuration but code organization prevents start oss binaries do not include enterprise features kvprober integration test go error trace github com cockroachdb cockroach pkg kv kvprober test pkg kv kvprober kvprober integration test go error not equal expected actual test testproberdoesreadsandwrites all ranges are unavailable for puts only fail testproberdoesreadsandwrites all ranges are unavailable for puts only parameters tags bazel gss stress true help see also cc cockroachdb kv jira issue crdb | 0 |
131,698 | 28,008,132,056 | IssuesEvent | 2023-03-27 16:33:49 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | [4.3] guided tours - tour permissions | No Code Attached Yet | ### Steps to reproduce the issue
try to change the permissions of a tour
### Expected result

### Actual result

### System information (as much as possible)
### Additional comments
| 1.0 | [4.3] guided tours - tour permissions - ### Steps to reproduce the issue
try to change the permissions of a tour
### Expected result

### Actual result

### System information (as much as possible)
### Additional comments
| non_priority | guided tours tour permissions steps to reproduce the issue try to change the permissions of a tour expected result actual result system information as much as possible additional comments | 0 |
240,009 | 19,987,177,687 | IssuesEvent | 2022-01-30 20:50:36 | Pyxsys/ttg-healthcheck | https://api.github.com/repos/Pyxsys/ttg-healthcheck | closed | [User Story] As a user I want to ensure that all pages will load quickly and can still be performant under load. | User Story Tests performance | ### **Is your user story related to a problem? Please describe.**
As a developer I want do not want the pages to take a long time for the pages to load especially when there are multiple users accessing these pages.
### **Describe the solution you'd like**
I would like to see test which demonstrate the the sites ability to perform under load.
### **Describe alternatives you've considered**
Test could be neglected but as the program evolves it would be ideal to be able to measure when the it begins to slow down and by how much.
| 1.0 | [User Story] As a user I want to ensure that all pages will load quickly and can still be performant under load. - ### **Is your user story related to a problem? Please describe.**
As a developer I want do not want the pages to take a long time for the pages to load especially when there are multiple users accessing these pages.
### **Describe the solution you'd like**
I would like to see test which demonstrate the the sites ability to perform under load.
### **Describe alternatives you've considered**
Test could be neglected but as the program evolves it would be ideal to be able to measure when the it begins to slow down and by how much.
| non_priority | as a user i want to ensure that all pages will load quickly and can still be performant under load is your user story related to a problem please describe as a developer i want do not want the pages to take a long time for the pages to load especially when there are multiple users accessing these pages describe the solution you d like i would like to see test which demonstrate the the sites ability to perform under load describe alternatives you ve considered test could be neglected but as the program evolves it would be ideal to be able to measure when the it begins to slow down and by how much | 0 |
298,165 | 22,466,540,377 | IssuesEvent | 2022-06-22 02:38:29 | UnBArqDsw2022-1/2022_1_grupo5 | https://api.github.com/repos/UnBArqDsw2022-1/2022_1_grupo5 | opened | [decision] Levantamento dos requisitos funcionais | documentation help wanted | ### Contact Details (optional)
_No response_
### Summary
Levantamento dos requisitos funcionais essenciais para o planejamento, a construção, a verificação e a validação do MVP que será desenvolvido. Utilizar as ideias esboçadas em #6, #7 e #7 . Possível questionário também pode ser realizado.
### Motivation
Essencial para o andamento do projeto e para a visualização do que precisamos desenvolver.
### Alternatives
_No response_
### Additional Context
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | 1.0 | [decision] Levantamento dos requisitos funcionais - ### Contact Details (optional)
_No response_
### Summary
Levantamento dos requisitos funcionais essenciais para o planejamento, a construção, a verificação e a validação do MVP que será desenvolvido. Utilizar as ideias esboçadas em #6, #7 e #7 . Possível questionário também pode ser realizado.
### Motivation
Essencial para o andamento do projeto e para a visualização do que precisamos desenvolver.
### Alternatives
_No response_
### Additional Context
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | non_priority | levantamento dos requisitos funcionais contact details optional no response summary levantamento dos requisitos funcionais essenciais para o planejamento a construção a verificação e a validação do mvp que será desenvolvido utilizar as ideias esboçadas em e possível questionário também pode ser realizado motivation essencial para o andamento do projeto e para a visualização do que precisamos desenvolver alternatives no response additional context no response code of conduct i agree to follow this project s code of conduct | 0 |
19,769 | 27,418,079,114 | IssuesEvent | 2023-03-01 15:01:28 | Yoast/wordpress-seo | https://api.github.com/repos/Yoast/wordpress-seo | closed | Not detect All in one seo plugin | compatibility severity: major | <!-- Please use this template when creating an issue.
- Please check the boxes after you've created your issue.
- Please use the latest version of Yoast SEO.-->
Hello,
On Wordpress site with theme :
– I activate module All in one seo.
– I add meta description on the page.
– I activate Yoast seo and in tools, I have this message : Yoast SEO did not detect any plugin data from plugins it can import from.
This support reproduce this problem.
Thanks
### Technical info
* WordPress version: 5.2.4
* Yoast SEO version: 15.5
* All in one SEO version: 4.9.11
Thanks | True | Not detect All in one seo plugin - <!-- Please use this template when creating an issue.
- Please check the boxes after you've created your issue.
- Please use the latest version of Yoast SEO.-->
Hello,
On Wordpress site with theme :
– I activate module All in one seo.
– I add meta description on the page.
– I activate Yoast seo and in tools, I have this message : Yoast SEO did not detect any plugin data from plugins it can import from.
This support reproduce this problem.
Thanks
### Technical info
* WordPress version: 5.2.4
* Yoast SEO version: 15.5
* All in one SEO version: 4.9.11
Thanks | non_priority | not detect all in one seo plugin please use this template when creating an issue please check the boxes after you ve created your issue please use the latest version of yoast seo hello on wordpress site with theme – i activate module all in one seo – i add meta description on the page – i activate yoast seo and in tools i have this message yoast seo did not detect any plugin data from plugins it can import from this support reproduce this problem thanks technical info wordpress version yoast seo version all in one seo version thanks | 0 |
51,332 | 12,702,058,453 | IssuesEvent | 2020-06-22 19:23:58 | tensorflow/tensorflow | https://api.github.com/repos/tensorflow/tensorflow | closed | Can not build //tensorflow/core/kernels:cwise_ops_test | stalled stat:awaiting response subtype: ubuntu/linux type:build/install | **System information**
- OS Platform and Distribution ( Linux Ubuntu 18.04):
- TensorFlow installed from (source ):
- TensorFlow version: r2.0
- Python version: Python 3.6.8 (default, Jan 14 2019, 11:02:34)
- Installed using virtualenv? pip? conda?: build test binary with bazel
- Bazel version (if compiling from source):Build label: 0.24.1
- GCC/Compiler version (if compiling from source): gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
- CUDA/cuDNN version: cuda 10.0/ cudnn 7.6
- GPU model and memory: GeForce GTX 1050 / 2000M
**Describe the problem**
I am trying to build cwise_ops_test with bazel test -c opt --strip=never --config=cuda_clang -s //tensorflow/core/kernels:cwise_ops_test command , but failed with below error message.
How to add --expt-relaxed-constexpr for clang? I saw this compiler option added with nvcc, so I guess clang also need a similar option, where I can add this option?
```
WARNING: The following configs were expanded more than once: [cuda_clang, using_cuda]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior.
INFO: Options provided by the client:
Inherited 'common' options: --isatty=0 --terminal_columns=80
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.bazelrc:
Inherited 'build' options: --apple_platform_type=macos --define framework_shared_object=true --define=use_fast_cpp_protos=true --define=allow_oversize_protos=true --spawn_strategy=standalone --strategy=Genrule=standalone -c opt --announce_rc --define=grpc_no_ares=true --define=PREFIX=/usr --define=LIBDIR=$(PREFIX)/lib --define=INCLUDEDIR=$(PREFIX)/include
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.tf_configure.bazelrc:
Inherited 'build' options: --action_env PYTHON_BIN_PATH=/usr/bin/python3 --action_env PYTHON_LIB_PATH=/usr/lib/python3/dist-packages --python_path=/usr/bin/python3 --action_env CUDA_TOOLKIT_PATH=/usr/local/cuda --action_env TF_CUDA_COMPUTE_CAPABILITIES=6.1 --config=cuda_clang --action_env CLANG_CUDA_COMPILER_PATH=/usr/bin/clang --config=cuda_clang --action_env TF_CONFIGURE_IOS=0
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.tf_configure.bazelrc:
'test' options: --flaky_test_attempts=3 --test_size_filters=small,medium --test_tag_filters=-benchmark-test,-no_oss,-oss_serial --build_tag_filters=-benchmark-test,-no_oss --test_tag_filters=-gpu --build_tag_filters=-gpu
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
Loading:
Loading: 0 packages loaded
Analyzing: target //tensorflow/core/kernels:cwise_ops_test (0 packages loaded, 0 targets configured)
INFO: Analysed target //tensorflow/core/kernels:cwise_ops_test (2 packages loaded, 143 targets configured).
INFO: Found 1 test target...
[0 / 4] [-----] BazelWorkspaceStatusAction stable-status.txt
SUBCOMMAND: # //tensorflow/stream_executor:plugin_registry [action 'Linking tensorflow/stream_executor/libplugin_registry.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libplugin_registry.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libplugin_registry.so-2.params)
SUBCOMMAND: # //tensorflow/stream_executor:dnn [action 'Linking tensorflow/stream_executor/libdnn.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libdnn.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libdnn.so-2.params)
SUBCOMMAND: # //tensorflow/stream_executor:blas [action 'Linking tensorflow/stream_executor/libblas.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libblas.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libblas.so-2.params)
SUBCOMMAND: # //tensorflow/core/grappler/optimizers:loop_optimizer [action 'Linking tensorflow/core/grappler/optimizers/libloop_optimizer.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/core/grappler/optimizers/libloop_optimizer.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/core/grappler/optimizers/libloop_optimizer.so-2.params)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.o)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_double.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_double.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_common.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_common.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_shuffle.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_shuffle.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_rnn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_rnn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/ref_rnn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/ref_rnn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_softmax.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_softmax.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/rnn_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/rnn_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/simple_concat.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/simple_concat.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.o)
[25 / 42] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 1s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/simple_sum.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/simple_sum.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:
external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:45:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:104:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_lrn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_lrn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:44:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:85:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:113:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_eltwise.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_eltwise.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_inner_product.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_inner_product.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_lrn_kernel_f32.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_lrn_kernel_f32.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_softmax.cpp:
external/mkl_dnn/src/cpu/ref_softmax.cpp:146:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_softmax.cpp:151:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_softmax.cpp:181:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD(reduction(+ : tsum))
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_shuffle.cpp:
external/mkl_dnn/src/cpu/ref_shuffle.cpp:96:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_shuffle.cpp:104:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
[31 / 48] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 2s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/simple_sum.cpp:
external/mkl_dnn/src/cpu/simple_sum.cpp:53:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:58:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:69:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:74:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/inner_product.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/inner_product.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_lrn.cpp:
external/mkl_dnn/src/cpu/ref_lrn.cpp:124:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_lrn.cpp:215:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
INFO: From Compiling external/mkl_dnn/src/cpu/simple_concat.cpp:
external/mkl_dnn/src/cpu/simple_concat.cpp:98:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/gemm_x8s8s32x_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/gemm_x8s8s32x_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/nhwc_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/nhwc_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_reorder_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_reorder_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.o)
[35 / 52] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 3s local ... (12 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/nchw_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/nchw_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/primitive_attr.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/primitive_attr.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.o)
[41 / 58] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 4s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/memory_desc_wrapper.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/memory_desc_wrapper.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/nhwc_pooling.cpp:
In file included from external/mkl_dnn/src/cpu/nhwc_pooling.cpp:26:0:
external/mkl_dnn/src/cpu/nhwc_pooling.hpp:115:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/nhwc_pooling.cpp:336:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/nhwc_pooling.cpp:372:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_eltwise.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_eltwise.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_transpose_src_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_transpose_src_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_i8i8_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_i8i8_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_avx512_core_x8s8s32x_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_avx512_core_x8s8s32x_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.o)
[46 / 63] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 6s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_dw_conv_kernel_f32.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_dw_conv_kernel_f32.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.o)
[47 / 64] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 7s local ... (12 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/deconvolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/deconvolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.o)
INFO: From Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc:
./tensorflow/core/lib/bfloat16/bfloat16.h(74): warning: calling a constexpr __host__ function("real") from a __host__ __device__ function("bfloat16") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(74): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(77): warning: calling a constexpr __host__ function("real") from a __host__ __device__ function("bfloat16") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(77): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(166): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(170): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
external/com_google_absl/absl/strings/string_view.h(495): warning: expression has no effect
./tensorflow/core/util/tensor_format.h(127): warning: missing return statement at end of non-void function "tensorflow::GetTensorSpatialDims"
./tensorflow/core/util/tensor_format.h(151): warning: missing return statement at end of non-void function "tensorflow::GetTensorDimsFromSpatialDims"
./tensorflow/core/util/gpu_device_functions.h(480): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(490): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(648): error: calling a constexpr __host__ function("real") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(649): error: calling a constexpr __host__ function("imag") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(655): error: calling a constexpr __host__ function("real") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(656): error: calling a constexpr __host__ function("imag") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(826): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(826): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(827): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(827): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(833): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(833): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(834): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(834): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(840): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(840): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(841): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(841): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(847): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(847): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(848): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(848): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(854): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(854): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(855): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(855): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(861): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(861): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(862): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(862): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(868): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(868): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(869): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(869): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(875): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(875): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(876): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(876): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
external/com_google_absl/absl/types/optional.h(425): warning: expression has no effect
detected during instantiation of "const T &absl::optional<T>::operator*() const & [with T=stream_executor::dnn::AlgorithmDesc]"
./tensorflow/stream_executor/dnn.h(802): here
36 errors detected in the compilation of "/tmp/tmpxft_00001be0_00000000-6_depthwise_conv_op_gpu_half.cu.cpp1.ii".
ERROR: /home/chengleiwang/code/tensorflow/tensorflow/core/kernels/BUILD:4094:1: output 'tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o' was not created
ERROR: /home/chengleiwang/code/tensorflow/tensorflow/core/kernels/BUILD:4094:1: not all outputs were created or valid
Target //tensorflow/core/kernels:cwise_ops_test failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 9.246s, Critical Path: 8.82s
INFO: 28 processes: 28 local.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
``` | 1.0 | Can not build //tensorflow/core/kernels:cwise_ops_test - **System information**
- OS Platform and Distribution ( Linux Ubuntu 18.04):
- TensorFlow installed from (source ):
- TensorFlow version: r2.0
- Python version: Python 3.6.8 (default, Jan 14 2019, 11:02:34)
- Installed using virtualenv? pip? conda?: build test binary with bazel
- Bazel version (if compiling from source):Build label: 0.24.1
- GCC/Compiler version (if compiling from source): gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
- CUDA/cuDNN version: cuda 10.0/ cudnn 7.6
- GPU model and memory: GeForce GTX 1050 / 2000M
**Describe the problem**
I am trying to build cwise_ops_test with bazel test -c opt --strip=never --config=cuda_clang -s //tensorflow/core/kernels:cwise_ops_test command , but failed with below error message.
How to add --expt-relaxed-constexpr for clang? I saw this compiler option added with nvcc, so I guess clang also need a similar option, where I can add this option?
```
WARNING: The following configs were expanded more than once: [cuda_clang, using_cuda]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior.
INFO: Options provided by the client:
Inherited 'common' options: --isatty=0 --terminal_columns=80
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.bazelrc:
Inherited 'build' options: --apple_platform_type=macos --define framework_shared_object=true --define=use_fast_cpp_protos=true --define=allow_oversize_protos=true --spawn_strategy=standalone --strategy=Genrule=standalone -c opt --announce_rc --define=grpc_no_ares=true --define=PREFIX=/usr --define=LIBDIR=$(PREFIX)/lib --define=INCLUDEDIR=$(PREFIX)/include
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.tf_configure.bazelrc:
Inherited 'build' options: --action_env PYTHON_BIN_PATH=/usr/bin/python3 --action_env PYTHON_LIB_PATH=/usr/lib/python3/dist-packages --python_path=/usr/bin/python3 --action_env CUDA_TOOLKIT_PATH=/usr/local/cuda --action_env TF_CUDA_COMPUTE_CAPABILITIES=6.1 --config=cuda_clang --action_env CLANG_CUDA_COMPILER_PATH=/usr/bin/clang --config=cuda_clang --action_env TF_CONFIGURE_IOS=0
INFO: Reading rc options for 'test' from /home/chengleiwang/code/tensorflow/.tf_configure.bazelrc:
'test' options: --flaky_test_attempts=3 --test_size_filters=small,medium --test_tag_filters=-benchmark-test,-no_oss,-oss_serial --build_tag_filters=-benchmark-test,-no_oss --test_tag_filters=-gpu --build_tag_filters=-gpu
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
INFO: Found applicable config definition build:cuda_clang in file /home/chengleiwang/code/tensorflow/.bazelrc: --config=using_cuda --define=using_cuda_clang=true --define=using_clang=true
INFO: Found applicable config definition build:using_cuda in file /home/chengleiwang/code/tensorflow/.bazelrc: --define=using_cuda=true --action_env TF_NEED_CUDA=1 --crosstool_top=@local_config_cuda//crosstool:toolchain
Loading:
Loading: 0 packages loaded
Analyzing: target //tensorflow/core/kernels:cwise_ops_test (0 packages loaded, 0 targets configured)
INFO: Analysed target //tensorflow/core/kernels:cwise_ops_test (2 packages loaded, 143 targets configured).
INFO: Found 1 test target...
[0 / 4] [-----] BazelWorkspaceStatusAction stable-status.txt
SUBCOMMAND: # //tensorflow/stream_executor:plugin_registry [action 'Linking tensorflow/stream_executor/libplugin_registry.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libplugin_registry.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libplugin_registry.so-2.params)
SUBCOMMAND: # //tensorflow/stream_executor:dnn [action 'Linking tensorflow/stream_executor/libdnn.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libdnn.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libdnn.so-2.params)
SUBCOMMAND: # //tensorflow/stream_executor:blas [action 'Linking tensorflow/stream_executor/libblas.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/stream_executor/libblas.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/stream_executor/libblas.so-2.params)
SUBCOMMAND: # //tensorflow/core/grappler/optimizers:loop_optimizer [action 'Linking tensorflow/core/grappler/optimizers/libloop_optimizer.so']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -shared -o bazel-out/k8-opt/bin/tensorflow/core/grappler/optimizers/libloop_optimizer.so -Wl,-no-as-needed -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -fno-canonical-system-headers -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/tensorflow/core/grappler/optimizers/libloop_optimizer.so-2.params)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_float.cu.pic.o)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o)
SUBCOMMAND: # //tensorflow/core/kernels:depthwise_conv_op_gpu [action 'Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_double.cu.cc']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.o' -D__CLANG_SUPPORT_DYN_ANNOTATION__ -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DEIGEN_HAS_TYPE_TRAITS=0' -DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL -DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL -DTF_USE_SNAPPY -DCURL_STATICLIB -DPLATFORM_LINUX -DENABLE_CURL_CLIENT -DENABLE_NO_ENCRYPTION -iquote . -iquote bazel-out/k8-opt/genfiles -iquote bazel-out/k8-opt/bin -iquote external/com_google_absl -iquote bazel-out/k8-opt/genfiles/external/com_google_absl -iquote bazel-out/k8-opt/bin/external/com_google_absl -iquote external/eigen_archive -iquote bazel-out/k8-opt/genfiles/external/eigen_archive -iquote bazel-out/k8-opt/bin/external/eigen_archive -iquote external/local_config_sycl -iquote bazel-out/k8-opt/genfiles/external/local_config_sycl -iquote bazel-out/k8-opt/bin/external/local_config_sycl -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -iquote external/nsync -iquote bazel-out/k8-opt/genfiles/external/nsync -iquote bazel-out/k8-opt/bin/external/nsync -iquote external/gif_archive -iquote bazel-out/k8-opt/genfiles/external/gif_archive -iquote bazel-out/k8-opt/bin/external/gif_archive -iquote external/jpeg -iquote bazel-out/k8-opt/genfiles/external/jpeg -iquote bazel-out/k8-opt/bin/external/jpeg -iquote external/protobuf_archive -iquote bazel-out/k8-opt/genfiles/external/protobuf_archive -iquote bazel-out/k8-opt/bin/external/protobuf_archive -iquote external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/genfiles/external/com_googlesource_code_re2 -iquote bazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquote external/farmhash_archive -iquote bazel-out/k8-opt/genfiles/external/farmhash_archive -iquote bazel-out/k8-opt/bin/external/farmhash_archive -iquote external/fft2d -iquote bazel-out/k8-opt/genfiles/external/fft2d -iquote bazel-out/k8-opt/bin/external/fft2d -iquote external/highwayhash -iquote bazel-out/k8-opt/genfiles/external/highwayhash -iquote bazel-out/k8-opt/bin/external/highwayhash -iquote external/zlib_archive -iquote bazel-out/k8-opt/genfiles/external/zlib_archive -iquote bazel-out/k8-opt/bin/external/zlib_archive -iquote external/local_config_cuda -iquote bazel-out/k8-opt/genfiles/external/local_config_cuda -iquote bazel-out/k8-opt/bin/external/local_config_cuda -iquote external/double_conversion -iquote bazel-out/k8-opt/genfiles/external/double_conversion -iquote bazel-out/k8-opt/bin/external/double_conversion -iquote external/curl -iquote bazel-out/k8-opt/genfiles/external/curl -iquote bazel-out/k8-opt/bin/external/curl -iquote external/boringssl -iquote bazel-out/k8-opt/genfiles/external/boringssl -iquote bazel-out/k8-opt/bin/external/boringssl -iquote external/jsoncpp_git -iquote bazel-out/k8-opt/genfiles/external/jsoncpp_git -iquote bazel-out/k8-opt/bin/external/jsoncpp_git -iquote external/aws -iquote bazel-out/k8-opt/genfiles/external/aws -iquote bazel-out/k8-opt/bin/external/aws -iquote external/cub_archive -iquote bazel-out/k8-opt/genfiles/external/cub_archive -iquote bazel-out/k8-opt/bin/external/cub_archive -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header -Ibazel-out/k8-opt/bin/external/cub_archive/_virtual_includes/cub -isystem external/eigen_archive -isystem bazel-out/k8-opt/genfiles/external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak -isystem external/nsync/public -isystem bazel-out/k8-opt/genfiles/external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem external/gif_archive/lib -isystem bazel-out/k8-opt/genfiles/external/gif_archive/lib -isystem bazel-out/k8-opt/bin/external/gif_archive/lib -isystem external/protobuf_archive/src -isystem bazel-out/k8-opt/genfiles/external/protobuf_archive/src -isystem bazel-out/k8-opt/bin/external/protobuf_archive/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/genfiles/external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib_archive -isystem bazel-out/k8-opt/genfiles/external/zlib_archive -isystem bazel-out/k8-opt/bin/external/zlib_archive -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/genfiles/external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/double_conversion -isystem bazel-out/k8-opt/genfiles/external/double_conversion -isystem bazel-out/k8-opt/bin/external/double_conversion -isystem external/curl/include -isystem bazel-out/k8-opt/genfiles/external/curl/include -isystem bazel-out/k8-opt/bin/external/curl/include -isystem external/boringssl/src/include -isystem bazel-out/k8-opt/genfiles/external/boringssl/src/include -isystem bazel-out/k8-opt/bin/external/boringssl/src/include -isystem external/jsoncpp_git/include -isystem bazel-out/k8-opt/genfiles/external/jsoncpp_git/include -isystem bazel-out/k8-opt/bin/external/jsoncpp_git/include -isystem external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-core/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-core/include -isystem external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-kinesis/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-kinesis/include -isystem external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/genfiles/external/aws/aws-cpp-sdk-s3/include -isystem bazel-out/k8-opt/bin/external/aws/aws-cpp-sdk-s3/include '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -DEIGEN_AVOID_STL_ARRAY -Iexternal/gemmlowp -Wno-sign-compare -fno-exceptions '-ftemplate-depth=900' '-DGOOGLE_CUDA=1' -msse3 -pthread -x cuda '-DGOOGLE_CUDA=1' -fcuda-flush-denormals-to-zero -c tensorflow/core/kernels/depthwise_conv_op_gpu_double.cu.cc -o bazel-out/k8-opt/bin/tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_double.cu.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_common.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_common.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_common.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_gru_lbr.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_shuffle.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_shuffle.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_shuffle.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_rnn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_rnn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_rnn.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/cell_lstm.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/ref_rnn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/ref_rnn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_rnn.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_softmax.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_softmax.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_softmax.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/rnn/rnn_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/rnn/rnn_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/rnn_utils.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/simple_concat.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/simple_concat.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_concat.pic.o)
[25 / 42] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 1s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/simple_sum.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/simple_sum.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/simple_sum.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:
external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:45:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_gru_lbr.cpp:104:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_lrn.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_lrn.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_lrn.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:44:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:85:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/rnn/cell_lstm.cpp:113:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_eltwise.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_eltwise.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_eltwise.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_inner_product.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_inner_product.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_inner_product.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_lrn_kernel_f32.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_lrn_kernel_f32.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_lrn_kernel_f32.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_softmax.cpp:
external/mkl_dnn/src/cpu/ref_softmax.cpp:146:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_softmax.cpp:151:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_softmax.cpp:181:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD(reduction(+ : tsum))
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_convolution.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_shuffle.cpp:
external/mkl_dnn/src/cpu/ref_shuffle.cpp:96:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_shuffle.cpp:104:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
[31 / 48] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 2s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/ref_batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/ref_batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/ref_batch_normalization.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/simple_sum.cpp:
external/mkl_dnn/src/cpu/simple_sum.cpp:53:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:58:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:69:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/simple_sum.cpp:74:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/inner_product.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/inner_product.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/inner_product.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/ref_lrn.cpp:
external/mkl_dnn/src/cpu/ref_lrn.cpp:124:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/ref_lrn.cpp:215:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
INFO: From Compiling external/mkl_dnn/src/cpu/simple_concat.cpp:
external/mkl_dnn/src/cpu/simple_concat.cpp:98:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/gemm_x8s8s32x_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/gemm_x8s8s32x_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/gemm_x8s8s32x_convolution.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/nhwc_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/nhwc_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nhwc_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_reorder_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_reorder_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_reorder_utils.pic.o)
[35 / 52] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 3s local ... (12 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/nchw_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/nchw_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/nchw_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/batch_normalization.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/primitive_attr.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/primitive_attr.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/primitive_attr.pic.o)
[41 / 58] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 4s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/memory_desc_wrapper.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/memory_desc_wrapper.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/memory_desc_wrapper.pic.o)
INFO: From Compiling external/mkl_dnn/src/cpu/nhwc_pooling.cpp:
In file included from external/mkl_dnn/src/cpu/nhwc_pooling.cpp:26:0:
external/mkl_dnn/src/cpu/nhwc_pooling.hpp:115:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/nhwc_pooling.cpp:336:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
external/mkl_dnn/src/cpu/nhwc_pooling.cpp:372:0: warning: ignoring #pragma omp simd [-Wunknown-pragmas]
PRAGMA_OMP_SIMD()
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_eltwise.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_eltwise.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_eltwise.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_transpose_src_utils.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_transpose_src_utils.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_transpose_src_utils.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_i8i8_pooling.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_i8i8_pooling.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_i8i8_pooling.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_avx512_core_x8s8s32x_convolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_avx512_core_x8s8s32x_convolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_avx512_core_x8s8s32x_convolution.pic.o)
[46 / 63] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 6s local ... (11 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_dw_conv_kernel_f32.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_dw_conv_kernel_f32.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_dw_conv_kernel_f32.pic.o)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/cpu/jit_uni_batch_normalization.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/cpu/jit_uni_batch_normalization.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/jit_uni_batch_normalization.pic.o)
[47 / 64] Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_float.cu.cc; 7s local ... (12 actions running)
SUBCOMMAND: # @mkl_dnn//:mkldnn_single_threaded [action 'Compiling external/mkl_dnn/src/common/deconvolution.cpp']
(cd /home/chengleiwang/.cache/bazel/_bazel_chengleiwang/2f444a5606241cb2da19b329364d6093/execroot/org_tensorflow && \
exec env - \
CLANG_CUDA_COMPILER_PATH=/usr/bin/clang \
CUDA_TOOLKIT_PATH=/usr/local/cuda \
PATH=/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/home/chengleiwang/.local/bin:/home/chengleiwang/bin:/home/chengleiwang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF_CONFIGURE_IOS=0 \
TF_CUDA_COMPUTE_CAPABILITIES=6.1 \
TF_NEED_CUDA=1 \
external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.d '-frandom-seed=bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.o' -iquote external/mkl_dnn -iquote bazel-out/k8-opt/genfiles/external/mkl_dnn -iquote bazel-out/k8-opt/bin/external/mkl_dnn -isystem external/mkl_dnn/include -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/include -isystem bazel-out/k8-opt/bin/external/mkl_dnn/include -isystem external/mkl_dnn/src -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src -isystem external/mkl_dnn/src/common -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/common -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/common -isystem external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu -isystem external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/gemm -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/gemm -isystem external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/genfiles/external/mkl_dnn/src/cpu/xbyak -isystem bazel-out/k8-opt/bin/external/mkl_dnn/src/cpu/xbyak '-std=c++11' -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -fPIC -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -fno-omit-frame-pointer -no-canonical-prefixes -fno-canonical-system-headers -DNDEBUG -g0 -O2 -ffunction-sections -fdata-sections -fexceptions '-DMKLDNN_THR=MKLDNN_THR_SEQ' -c external/mkl_dnn/src/common/deconvolution.cpp -o bazel-out/k8-opt/bin/external/mkl_dnn/_objs/mkldnn_single_threaded/deconvolution.pic.o)
INFO: From Compiling tensorflow/core/kernels/depthwise_conv_op_gpu_half.cu.cc:
./tensorflow/core/lib/bfloat16/bfloat16.h(74): warning: calling a constexpr __host__ function("real") from a __host__ __device__ function("bfloat16") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(74): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(77): warning: calling a constexpr __host__ function("real") from a __host__ __device__ function("bfloat16") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(77): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(166): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/lib/bfloat16/bfloat16.h(170): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
external/com_google_absl/absl/strings/string_view.h(495): warning: expression has no effect
./tensorflow/core/util/tensor_format.h(127): warning: missing return statement at end of non-void function "tensorflow::GetTensorSpatialDims"
./tensorflow/core/util/tensor_format.h(151): warning: missing return statement at end of non-void function "tensorflow::GetTensorDimsFromSpatialDims"
./tensorflow/core/util/gpu_device_functions.h(480): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(490): warning: calling a constexpr __host__ function from a __host__ __device__ function is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(648): error: calling a constexpr __host__ function("real") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(649): error: calling a constexpr __host__ function("imag") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(655): error: calling a constexpr __host__ function("real") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(656): error: calling a constexpr __host__ function("imag") from a __device__ function("GpuAtomicAdd") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(826): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(826): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(827): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(827): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(833): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(833): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(834): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(834): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(840): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(840): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(841): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(841): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(847): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(847): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(848): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(848): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(854): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(854): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(855): error: calling a constexpr __host__ function("real") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(855): error: calling a constexpr __host__ function("imag") from a __device__ function("operator+") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(861): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(861): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(862): error: calling a constexpr __host__ function("real") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(862): error: calling a constexpr __host__ function("imag") from a __device__ function("operator-") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(868): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(868): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(869): error: calling a constexpr __host__ function("real") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(869): error: calling a constexpr __host__ function("imag") from a __device__ function("operator*") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(875): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(875): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(876): error: calling a constexpr __host__ function("real") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
./tensorflow/core/util/gpu_device_functions.h(876): error: calling a constexpr __host__ function("imag") from a __device__ function("operator/") is not allowed. The experimental flag '--expt-relaxed-constexpr' can be used to allow this.
external/com_google_absl/absl/types/optional.h(425): warning: expression has no effect
detected during instantiation of "const T &absl::optional<T>::operator*() const & [with T=stream_executor::dnn::AlgorithmDesc]"
./tensorflow/stream_executor/dnn.h(802): here
36 errors detected in the compilation of "/tmp/tmpxft_00001be0_00000000-6_depthwise_conv_op_gpu_half.cu.cpp1.ii".
ERROR: /home/chengleiwang/code/tensorflow/tensorflow/core/kernels/BUILD:4094:1: output 'tensorflow/core/kernels/_objs/depthwise_conv_op_gpu/depthwise_conv_op_gpu_half.cu.pic.o' was not created
ERROR: /home/chengleiwang/code/tensorflow/tensorflow/core/kernels/BUILD:4094:1: not all outputs were created or valid
Target //tensorflow/core/kernels:cwise_ops_test failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 9.246s, Critical Path: 8.82s
INFO: 28 processes: 28 local.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
``` | non_priority | can not build tensorflow core kernels cwise ops test system information os platform and distribution linux ubuntu tensorflow installed from source tensorflow version python version python default jan installed using virtualenv pip conda build test binary with bazel bazel version if compiling from source build label gcc compiler version if compiling from source gcc version ubuntu cuda cudnn version cuda cudnn gpu model and memory geforce gtx describe the problem i am trying to build cwise ops test with bazel test c opt strip never config cuda clang s tensorflow core kernels cwise ops test command but failed with below error message how to add expt relaxed constexpr for clang i saw this compiler option added with nvcc so i guess clang also need a similar option where i can add this option warning the following configs were expanded more than once for repeatable flags repeats are counted twice and may lead to unexpected behavior info options provided by the client inherited common options isatty terminal columns info reading rc options for test from home chengleiwang code tensorflow bazelrc inherited build options apple platform type macos define framework shared object true define use fast cpp protos true define allow oversize protos true spawn strategy standalone strategy genrule standalone c opt announce rc define grpc no ares true define prefix usr define libdir prefix lib define includedir prefix include info reading rc options for test from home chengleiwang code tensorflow tf configure bazelrc inherited build options action env python bin path usr bin action env python lib path usr lib dist packages python path usr bin action env cuda toolkit path usr local cuda action env tf cuda compute capabilities config cuda clang action env clang cuda compiler path usr bin clang config cuda clang action env tf configure ios info reading rc options for test from home chengleiwang code tensorflow tf configure bazelrc test options flaky test attempts test size filters small medium test tag filters benchmark test no oss oss serial build tag filters benchmark test no oss test tag filters gpu build tag filters gpu info found applicable config definition build cuda clang in file home chengleiwang code tensorflow bazelrc config using cuda define using cuda clang true define using clang true info found applicable config definition build using cuda in file home chengleiwang code tensorflow bazelrc define using cuda true action env tf need cuda crosstool top local config cuda crosstool toolchain info found applicable config definition build cuda clang in file home chengleiwang code tensorflow bazelrc config using cuda define using cuda clang true define using clang true info found applicable config definition build using cuda in file home chengleiwang code tensorflow bazelrc define using cuda true action env tf need cuda crosstool top local config cuda crosstool toolchain info found applicable config definition build cuda clang in file home chengleiwang code tensorflow bazelrc config using cuda define using cuda clang true define using clang true info found applicable config definition build using cuda in file home chengleiwang code tensorflow bazelrc define using cuda true action env tf need cuda crosstool top local config cuda crosstool toolchain loading loading packages loaded analyzing target tensorflow core kernels cwise ops test packages loaded targets configured info analysed target tensorflow core kernels cwise ops test packages loaded targets configured info found test target bazelworkspacestatusaction stable status txt subcommand tensorflow stream executor plugin registry cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc shared o bazel out opt bin tensorflow stream executor libplugin registry so wl no as needed wl z relro z now wl build id wl hash style gnu no canonical prefixes fno canonical system headers b usr bin wl gc sections wl bazel out opt bin tensorflow stream executor libplugin registry so params subcommand tensorflow stream executor dnn cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc shared o bazel out opt bin tensorflow stream executor libdnn so wl no as needed wl z relro z now wl build id wl hash style gnu no canonical prefixes fno canonical system headers b usr bin wl gc sections wl bazel out opt bin tensorflow stream executor libdnn so params subcommand tensorflow stream executor blas cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc shared o bazel out opt bin tensorflow stream executor libblas so wl no as needed wl z relro z now wl build id wl hash style gnu no canonical prefixes fno canonical system headers b usr bin wl gc sections wl bazel out opt bin tensorflow stream executor libblas so params subcommand tensorflow core grappler optimizers loop optimizer cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc shared o bazel out opt bin tensorflow core grappler optimizers libloop optimizer so wl no as needed wl z relro z now wl build id wl hash style gnu no canonical prefixes fno canonical system headers b usr bin wl gc sections wl bazel out opt bin tensorflow core grappler optimizers libloop optimizer so params subcommand tensorflow core kernels depthwise conv op gpu cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu float cu pic d frandom seed bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu float cu pic o d clang support dyn annotation deigen only deigen max align bytes deigen has type traits dtensorflow use custom contraction kernel dtensorflow use mkldnn contraction kernel dtf use snappy dcurl staticlib dplatform linux denable curl client denable no encryption iquote iquote bazel out opt genfiles iquote bazel out opt bin iquote external com google absl iquote bazel out opt genfiles external com google absl iquote bazel out opt bin external com google absl iquote external eigen archive iquote bazel out opt genfiles external eigen archive iquote bazel out opt bin external eigen archive iquote external local config sycl iquote bazel out opt genfiles external local config sycl iquote bazel out opt bin external local config sycl iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn iquote external nsync iquote bazel out opt genfiles external nsync iquote bazel out opt bin external nsync iquote external gif archive iquote bazel out opt genfiles external gif archive iquote bazel out opt bin external gif archive iquote external jpeg iquote bazel out opt genfiles external jpeg iquote bazel out opt bin external jpeg iquote external protobuf archive iquote bazel out opt genfiles external protobuf archive iquote bazel out opt bin external protobuf archive iquote external com googlesource code iquote bazel out opt genfiles external com googlesource code iquote bazel out opt bin external com googlesource code iquote external farmhash archive iquote bazel out opt genfiles external farmhash archive iquote bazel out opt bin external farmhash archive iquote external iquote bazel out opt genfiles external iquote bazel out opt bin external iquote external highwayhash iquote bazel out opt genfiles external highwayhash iquote bazel out opt bin external highwayhash iquote external zlib archive iquote bazel out opt genfiles external zlib archive iquote bazel out opt bin external zlib archive iquote external local config cuda iquote bazel out opt genfiles external local config cuda iquote bazel out opt bin external local config cuda iquote external double conversion iquote bazel out opt genfiles external double conversion iquote bazel out opt bin external double conversion iquote external curl iquote bazel out opt genfiles external curl iquote bazel out opt bin external curl iquote external boringssl iquote bazel out opt genfiles external boringssl iquote bazel out opt bin external boringssl iquote external jsoncpp git iquote bazel out opt genfiles external jsoncpp git iquote bazel out opt bin external jsoncpp git iquote external aws iquote bazel out opt genfiles external aws iquote bazel out opt bin external aws iquote external cub archive iquote bazel out opt genfiles external cub archive iquote bazel out opt bin external cub archive ibazel out opt bin external local config cuda cuda virtual includes cuda headers virtual ibazel out opt bin external local config cuda cuda virtual includes cudnn header ibazel out opt bin external cub archive virtual includes cub isystem external eigen archive isystem bazel out opt genfiles external eigen archive isystem bazel out opt bin external eigen archive isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak isystem external nsync public isystem bazel out opt genfiles external nsync public isystem bazel out opt bin external nsync public isystem external gif archive lib isystem bazel out opt genfiles external gif archive lib isystem bazel out opt bin external gif archive lib isystem external protobuf archive src isystem bazel out opt genfiles external protobuf archive src isystem bazel out opt bin external protobuf archive src isystem external farmhash archive src isystem bazel out opt genfiles external farmhash archive src isystem bazel out opt bin external farmhash archive src isystem external zlib archive isystem bazel out opt genfiles external zlib archive isystem bazel out opt bin external zlib archive isystem external local config cuda cuda isystem bazel out opt genfiles external local config cuda cuda isystem bazel out opt bin external local config cuda cuda isystem external local config cuda cuda cuda include isystem bazel out opt genfiles external local config cuda cuda cuda include isystem bazel out opt bin external local config cuda cuda cuda include isystem external double conversion isystem bazel out opt genfiles external double conversion isystem bazel out opt bin external double conversion isystem external curl include isystem bazel out opt genfiles external curl include isystem bazel out opt bin external curl include isystem external boringssl src include isystem bazel out opt genfiles external boringssl src include isystem bazel out opt bin external boringssl src include isystem external jsoncpp git include isystem bazel out opt genfiles external jsoncpp git include isystem bazel out opt bin external jsoncpp git include isystem external aws aws cpp sdk core include isystem bazel out opt genfiles external aws aws cpp sdk core include isystem bazel out opt bin external aws aws cpp sdk core include isystem external aws aws cpp sdk kinesis include isystem bazel out opt genfiles external aws aws cpp sdk kinesis include isystem bazel out opt bin external aws aws cpp sdk kinesis include isystem external aws aws cpp sdk include isystem bazel out opt genfiles external aws aws cpp sdk include isystem bazel out opt bin external aws aws cpp sdk include std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections deigen avoid stl array iexternal gemmlowp wno sign compare fno exceptions ftemplate depth dgoogle cuda pthread x cuda dgoogle cuda fcuda flush denormals to zero c tensorflow core kernels depthwise conv op gpu float cu cc o bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu float cu pic o subcommand tensorflow core kernels depthwise conv op gpu cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu half cu pic d frandom seed bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu half cu pic o d clang support dyn annotation deigen only deigen max align bytes deigen has type traits dtensorflow use custom contraction kernel dtensorflow use mkldnn contraction kernel dtf use snappy dcurl staticlib dplatform linux denable curl client denable no encryption iquote iquote bazel out opt genfiles iquote bazel out opt bin iquote external com google absl iquote bazel out opt genfiles external com google absl iquote bazel out opt bin external com google absl iquote external eigen archive iquote bazel out opt genfiles external eigen archive iquote bazel out opt bin external eigen archive iquote external local config sycl iquote bazel out opt genfiles external local config sycl iquote bazel out opt bin external local config sycl iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn iquote external nsync iquote bazel out opt genfiles external nsync iquote bazel out opt bin external nsync iquote external gif archive iquote bazel out opt genfiles external gif archive iquote bazel out opt bin external gif archive iquote external jpeg iquote bazel out opt genfiles external jpeg iquote bazel out opt bin external jpeg iquote external protobuf archive iquote bazel out opt genfiles external protobuf archive iquote bazel out opt bin external protobuf archive iquote external com googlesource code iquote bazel out opt genfiles external com googlesource code iquote bazel out opt bin external com googlesource code iquote external farmhash archive iquote bazel out opt genfiles external farmhash archive iquote bazel out opt bin external farmhash archive iquote external iquote bazel out opt genfiles external iquote bazel out opt bin external iquote external highwayhash iquote bazel out opt genfiles external highwayhash iquote bazel out opt bin external highwayhash iquote external zlib archive iquote bazel out opt genfiles external zlib archive iquote bazel out opt bin external zlib archive iquote external local config cuda iquote bazel out opt genfiles external local config cuda iquote bazel out opt bin external local config cuda iquote external double conversion iquote bazel out opt genfiles external double conversion iquote bazel out opt bin external double conversion iquote external curl iquote bazel out opt genfiles external curl iquote bazel out opt bin external curl iquote external boringssl iquote bazel out opt genfiles external boringssl iquote bazel out opt bin external boringssl iquote external jsoncpp git iquote bazel out opt genfiles external jsoncpp git iquote bazel out opt bin external jsoncpp git iquote external aws iquote bazel out opt genfiles external aws iquote bazel out opt bin external aws iquote external cub archive iquote bazel out opt genfiles external cub archive iquote bazel out opt bin external cub archive ibazel out opt bin external local config cuda cuda virtual includes cuda headers virtual ibazel out opt bin external local config cuda cuda virtual includes cudnn header ibazel out opt bin external cub archive virtual includes cub isystem external eigen archive isystem bazel out opt genfiles external eigen archive isystem bazel out opt bin external eigen archive isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak isystem external nsync public isystem bazel out opt genfiles external nsync public isystem bazel out opt bin external nsync public isystem external gif archive lib isystem bazel out opt genfiles external gif archive lib isystem bazel out opt bin external gif archive lib isystem external protobuf archive src isystem bazel out opt genfiles external protobuf archive src isystem bazel out opt bin external protobuf archive src isystem external farmhash archive src isystem bazel out opt genfiles external farmhash archive src isystem bazel out opt bin external farmhash archive src isystem external zlib archive isystem bazel out opt genfiles external zlib archive isystem bazel out opt bin external zlib archive isystem external local config cuda cuda isystem bazel out opt genfiles external local config cuda cuda isystem bazel out opt bin external local config cuda cuda isystem external local config cuda cuda cuda include isystem bazel out opt genfiles external local config cuda cuda cuda include isystem bazel out opt bin external local config cuda cuda cuda include isystem external double conversion isystem bazel out opt genfiles external double conversion isystem bazel out opt bin external double conversion isystem external curl include isystem bazel out opt genfiles external curl include isystem bazel out opt bin external curl include isystem external boringssl src include isystem bazel out opt genfiles external boringssl src include isystem bazel out opt bin external boringssl src include isystem external jsoncpp git include isystem bazel out opt genfiles external jsoncpp git include isystem bazel out opt bin external jsoncpp git include isystem external aws aws cpp sdk core include isystem bazel out opt genfiles external aws aws cpp sdk core include isystem bazel out opt bin external aws aws cpp sdk core include isystem external aws aws cpp sdk kinesis include isystem bazel out opt genfiles external aws aws cpp sdk kinesis include isystem bazel out opt bin external aws aws cpp sdk kinesis include isystem external aws aws cpp sdk include isystem bazel out opt genfiles external aws aws cpp sdk include isystem bazel out opt bin external aws aws cpp sdk include std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections deigen avoid stl array iexternal gemmlowp wno sign compare fno exceptions ftemplate depth dgoogle cuda pthread x cuda dgoogle cuda fcuda flush denormals to zero c tensorflow core kernels depthwise conv op gpu half cu cc o bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu half cu pic o subcommand tensorflow core kernels depthwise conv op gpu cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu double cu pic d frandom seed bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu double cu pic o d clang support dyn annotation deigen only deigen max align bytes deigen has type traits dtensorflow use custom contraction kernel dtensorflow use mkldnn contraction kernel dtf use snappy dcurl staticlib dplatform linux denable curl client denable no encryption iquote iquote bazel out opt genfiles iquote bazel out opt bin iquote external com google absl iquote bazel out opt genfiles external com google absl iquote bazel out opt bin external com google absl iquote external eigen archive iquote bazel out opt genfiles external eigen archive iquote bazel out opt bin external eigen archive iquote external local config sycl iquote bazel out opt genfiles external local config sycl iquote bazel out opt bin external local config sycl iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn iquote external nsync iquote bazel out opt genfiles external nsync iquote bazel out opt bin external nsync iquote external gif archive iquote bazel out opt genfiles external gif archive iquote bazel out opt bin external gif archive iquote external jpeg iquote bazel out opt genfiles external jpeg iquote bazel out opt bin external jpeg iquote external protobuf archive iquote bazel out opt genfiles external protobuf archive iquote bazel out opt bin external protobuf archive iquote external com googlesource code iquote bazel out opt genfiles external com googlesource code iquote bazel out opt bin external com googlesource code iquote external farmhash archive iquote bazel out opt genfiles external farmhash archive iquote bazel out opt bin external farmhash archive iquote external iquote bazel out opt genfiles external iquote bazel out opt bin external iquote external highwayhash iquote bazel out opt genfiles external highwayhash iquote bazel out opt bin external highwayhash iquote external zlib archive iquote bazel out opt genfiles external zlib archive iquote bazel out opt bin external zlib archive iquote external local config cuda iquote bazel out opt genfiles external local config cuda iquote bazel out opt bin external local config cuda iquote external double conversion iquote bazel out opt genfiles external double conversion iquote bazel out opt bin external double conversion iquote external curl iquote bazel out opt genfiles external curl iquote bazel out opt bin external curl iquote external boringssl iquote bazel out opt genfiles external boringssl iquote bazel out opt bin external boringssl iquote external jsoncpp git iquote bazel out opt genfiles external jsoncpp git iquote bazel out opt bin external jsoncpp git iquote external aws iquote bazel out opt genfiles external aws iquote bazel out opt bin external aws iquote external cub archive iquote bazel out opt genfiles external cub archive iquote bazel out opt bin external cub archive ibazel out opt bin external local config cuda cuda virtual includes cuda headers virtual ibazel out opt bin external local config cuda cuda virtual includes cudnn header ibazel out opt bin external cub archive virtual includes cub isystem external eigen archive isystem bazel out opt genfiles external eigen archive isystem bazel out opt bin external eigen archive isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak isystem external nsync public isystem bazel out opt genfiles external nsync public isystem bazel out opt bin external nsync public isystem external gif archive lib isystem bazel out opt genfiles external gif archive lib isystem bazel out opt bin external gif archive lib isystem external protobuf archive src isystem bazel out opt genfiles external protobuf archive src isystem bazel out opt bin external protobuf archive src isystem external farmhash archive src isystem bazel out opt genfiles external farmhash archive src isystem bazel out opt bin external farmhash archive src isystem external zlib archive isystem bazel out opt genfiles external zlib archive isystem bazel out opt bin external zlib archive isystem external local config cuda cuda isystem bazel out opt genfiles external local config cuda cuda isystem bazel out opt bin external local config cuda cuda isystem external local config cuda cuda cuda include isystem bazel out opt genfiles external local config cuda cuda cuda include isystem bazel out opt bin external local config cuda cuda cuda include isystem external double conversion isystem bazel out opt genfiles external double conversion isystem bazel out opt bin external double conversion isystem external curl include isystem bazel out opt genfiles external curl include isystem bazel out opt bin external curl include isystem external boringssl src include isystem bazel out opt genfiles external boringssl src include isystem bazel out opt bin external boringssl src include isystem external jsoncpp git include isystem bazel out opt genfiles external jsoncpp git include isystem bazel out opt bin external jsoncpp git include isystem external aws aws cpp sdk core include isystem bazel out opt genfiles external aws aws cpp sdk core include isystem bazel out opt bin external aws aws cpp sdk core include isystem external aws aws cpp sdk kinesis include isystem bazel out opt genfiles external aws aws cpp sdk kinesis include isystem bazel out opt bin external aws aws cpp sdk kinesis include isystem external aws aws cpp sdk include isystem bazel out opt genfiles external aws aws cpp sdk include isystem bazel out opt bin external aws aws cpp sdk include std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections deigen avoid stl array iexternal gemmlowp wno sign compare fno exceptions ftemplate depth dgoogle cuda pthread x cuda dgoogle cuda fcuda flush denormals to zero c tensorflow core kernels depthwise conv op gpu double cu cc o bazel out opt bin tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu double cu pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded cell common pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded cell common pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn cell common cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded cell common pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded cell gru lbr pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded cell gru lbr pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn cell gru lbr cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded cell gru lbr pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref shuffle pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref shuffle pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref shuffle cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref shuffle pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded cell rnn pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded cell rnn pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn cell rnn cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded cell rnn pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded cell lstm pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded cell lstm pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn cell lstm cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded cell lstm pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref rnn pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref rnn pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn ref rnn cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref rnn pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref softmax pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref softmax pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref softmax cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref softmax pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded rnn utils pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded rnn utils pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu rnn rnn utils cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded rnn utils pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded simple concat pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded simple concat pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu simple concat cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded simple concat pic o compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded simple sum pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded simple sum pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu simple sum cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded simple sum pic o info from compiling external mkl dnn src cpu rnn cell gru lbr cpp external mkl dnn src cpu rnn cell gru lbr cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu rnn cell gru lbr cpp warning ignoring pragma omp simd pragma omp simd subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref lrn pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref lrn pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref lrn cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref lrn pic o info from compiling external mkl dnn src cpu rnn cell lstm cpp external mkl dnn src cpu rnn cell lstm cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu rnn cell lstm cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu rnn cell lstm cpp warning ignoring pragma omp simd pragma omp simd subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref eltwise pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref eltwise pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref eltwise cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref eltwise pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref inner product pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref inner product pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref inner product cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref inner product pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni lrn kernel pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni lrn kernel pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni lrn kernel cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni lrn kernel pic o info from compiling external mkl dnn src cpu ref softmax cpp external mkl dnn src cpu ref softmax cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu ref softmax cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu ref softmax cpp warning ignoring pragma omp simd pragma omp simd reduction tsum subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref convolution pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref convolution pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref convolution cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref convolution pic o info from compiling external mkl dnn src cpu ref shuffle cpp external mkl dnn src cpu ref shuffle cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu ref shuffle cpp warning ignoring pragma omp simd pragma omp simd compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded ref batch normalization pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded ref batch normalization pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu ref batch normalization cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded ref batch normalization pic o info from compiling external mkl dnn src cpu simple sum cpp external mkl dnn src cpu simple sum cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu simple sum cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu simple sum cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu simple sum cpp warning ignoring pragma omp simd pragma omp simd subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded inner product pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded inner product pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src common inner product cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded inner product pic o info from compiling external mkl dnn src cpu ref lrn cpp external mkl dnn src cpu ref lrn cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu ref lrn cpp warning ignoring pragma omp simd pragma omp simd info from compiling external mkl dnn src cpu simple concat cpp external mkl dnn src cpu simple concat cpp warning ignoring pragma omp simd pragma omp simd subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded gemm convolution pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded gemm convolution pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu gemm convolution cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded gemm convolution pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded nhwc pooling pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded nhwc pooling pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu nhwc pooling cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded nhwc pooling pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni reorder utils pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni reorder utils pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni reorder utils cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni reorder utils pic o compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded nchw pooling pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded nchw pooling pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu nchw pooling cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded nchw pooling pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni pooling cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded batch normalization pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded batch normalization pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src common batch normalization cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded batch normalization pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded primitive attr pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded primitive attr pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src common primitive attr cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded primitive attr pic o compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded memory desc wrapper pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded memory desc wrapper pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src common memory desc wrapper cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded memory desc wrapper pic o info from compiling external mkl dnn src cpu nhwc pooling cpp in file included from external mkl dnn src cpu nhwc pooling cpp external mkl dnn src cpu nhwc pooling hpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu nhwc pooling cpp warning ignoring pragma omp simd pragma omp simd external mkl dnn src cpu nhwc pooling cpp warning ignoring pragma omp simd pragma omp simd subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni eltwise pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni eltwise pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni eltwise cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni eltwise pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit transpose src utils pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit transpose src utils pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit transpose src utils cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit transpose src utils pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni pooling cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni pooling pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit core convolution pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit core convolution pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit core convolution cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit core convolution pic o compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni dw conv kernel pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni dw conv kernel pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni dw conv kernel cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni dw conv kernel pic o subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni batch normalization pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni batch normalization pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src cpu jit uni batch normalization cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded jit uni batch normalization pic o compiling tensorflow core kernels depthwise conv op gpu float cu cc local actions running subcommand mkl dnn mkldnn single threaded cd home chengleiwang cache bazel bazel chengleiwang execroot org tensorflow exec env clang cuda compiler path usr bin clang cuda toolkit path usr local cuda path home chengleiwang vscode server bin bin home chengleiwang local bin home chengleiwang bin home chengleiwang vscode server bin bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games usr local games snap bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages tf configure ios tf cuda compute capabilities tf need cuda external local config cuda crosstool clang bin crosstool wrapper driver is not gcc md mf bazel out opt bin external mkl dnn objs mkldnn single threaded deconvolution pic d frandom seed bazel out opt bin external mkl dnn objs mkldnn single threaded deconvolution pic o iquote external mkl dnn iquote bazel out opt genfiles external mkl dnn iquote bazel out opt bin external mkl dnn isystem external mkl dnn include isystem bazel out opt genfiles external mkl dnn include isystem bazel out opt bin external mkl dnn include isystem external mkl dnn src isystem bazel out opt genfiles external mkl dnn src isystem bazel out opt bin external mkl dnn src isystem external mkl dnn src common isystem bazel out opt genfiles external mkl dnn src common isystem bazel out opt bin external mkl dnn src common isystem external mkl dnn src cpu isystem bazel out opt genfiles external mkl dnn src cpu isystem bazel out opt bin external mkl dnn src cpu isystem external mkl dnn src cpu gemm isystem bazel out opt genfiles external mkl dnn src cpu gemm isystem bazel out opt bin external mkl dnn src cpu gemm isystem external mkl dnn src cpu xbyak isystem bazel out opt genfiles external mkl dnn src cpu xbyak isystem bazel out opt bin external mkl dnn src cpu xbyak std c wno builtin macro redefined d date redacted d timestamp redacted d time redacted fpic u fortify source d fortify source fstack protector wall fno omit frame pointer no canonical prefixes fno canonical system headers dndebug ffunction sections fdata sections fexceptions dmkldnn thr mkldnn thr seq c external mkl dnn src common deconvolution cpp o bazel out opt bin external mkl dnn objs mkldnn single threaded deconvolution pic o info from compiling tensorflow core kernels depthwise conv op gpu half cu cc tensorflow core lib h warning calling a constexpr host function real from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core lib h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core lib h warning calling a constexpr host function real from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core lib h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core lib h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core lib h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this external com google absl absl strings string view h warning expression has no effect tensorflow core util tensor format h warning missing return statement at end of non void function tensorflow gettensorspatialdims tensorflow core util tensor format h warning missing return statement at end of non void function tensorflow gettensordimsfromspatialdims tensorflow core util gpu device functions h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h warning calling a constexpr host function from a host device function is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function gpuatomicadd is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function gpuatomicadd is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function gpuatomicadd is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function gpuatomicadd is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function real from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this tensorflow core util gpu device functions h error calling a constexpr host function imag from a device function operator is not allowed the experimental flag expt relaxed constexpr can be used to allow this external com google absl absl types optional h warning expression has no effect detected during instantiation of const t absl optional operator const tensorflow stream executor dnn h here errors detected in the compilation of tmp tmpxft depthwise conv op gpu half cu ii error home chengleiwang code tensorflow tensorflow core kernels build output tensorflow core kernels objs depthwise conv op gpu depthwise conv op gpu half cu pic o was not created error home chengleiwang code tensorflow tensorflow core kernels build not all outputs were created or valid target tensorflow core kernels cwise ops test failed to build use verbose failures to see the command lines of failed build steps info elapsed time critical path info processes local failed build did not complete successfully failed build did not complete successfully | 0 |
83,974 | 10,345,624,710 | IssuesEvent | 2019-09-04 13:49:49 | scionproto/scion | https://api.github.com/repos/scionproto/scion | closed | The antonym of "core" is "non-core" | documentation | Until now we've been using "local" to mean 3 things:
- Local to this ISD-AS
- Local to this ISD
- Non-core AS
This leads to confusion. Proposal:
- "local" is the opposite of "remote".
- "non-core" is the opposite of "core".
- "local" on its own means "this ISD-AS"
- "isd-local" or "local ISD" means "this ISD"
- "sciond queries the local PS" (meaning the PS in this IA, regardless of whether it's a core or non-core AS). | 1.0 | The antonym of "core" is "non-core" - Until now we've been using "local" to mean 3 things:
- Local to this ISD-AS
- Local to this ISD
- Non-core AS
This leads to confusion. Proposal:
- "local" is the opposite of "remote".
- "non-core" is the opposite of "core".
- "local" on its own means "this ISD-AS"
- "isd-local" or "local ISD" means "this ISD"
- "sciond queries the local PS" (meaning the PS in this IA, regardless of whether it's a core or non-core AS). | non_priority | the antonym of core is non core until now we ve been using local to mean things local to this isd as local to this isd non core as this leads to confusion proposal local is the opposite of remote non core is the opposite of core local on its own means this isd as isd local or local isd means this isd sciond queries the local ps meaning the ps in this ia regardless of whether it s a core or non core as | 0 |
3,559 | 6,009,050,745 | IssuesEvent | 2017-06-06 09:31:09 | Kitzi/crawler | https://api.github.com/repos/Kitzi/crawler | closed | Show reviews for each ASIN | new requirement | @Product grid --> put link behind every ASIN --> links to new page which displays all reviews for this ASIN | 1.0 | Show reviews for each ASIN - @Product grid --> put link behind every ASIN --> links to new page which displays all reviews for this ASIN | non_priority | show reviews for each asin product grid put link behind every asin links to new page which displays all reviews for this asin | 0 |
8,768 | 11,885,536,640 | IssuesEvent | 2020-03-27 19:49:32 | googleapis/google-cloud-cpp | https://api.github.com/repos/googleapis/google-cloud-cpp | closed | Consider: Which CI tests should run with -fno-exceptions | type: process | We [decided](https://github.com/googleapis/google-cloud-cpp/blob/master/doc/adr/2019-01-04-error-reporting-with-statusor.md) that our libraries will not require exceptions to work. That is, a user should be able to compile with `-fno-exceptions` and still be able to use our library just fine. All of our error reporting is done via `Status` or `StatusOr<T>` objects instead of throwing exceptions. This decision does not *prohibit* our users from using exceptions themselves, it simply gives them the choice about whether or not they use exceptions.
So since our library must work whether it's compiled with `-fexceptions` (the default) or with `-fno-exceptions` we should think about what flags our tests should use. The options I see are:
1. (Status Quo) **Compile and run most tests with `-fexceptions`, and one (or a small few) with `-fno-exceptions`**. This is the default setting for compilers, it is the setting used by most C++ users ([50+%](https://isocpp.org/blog/2018/03/results-summary-cpp-foundation-developer-survey-lite-2018-02) of users compile with exceptions enabled), and it is the setting required for proper/standard C++ (i.e., C++ is only defined **with** exceptions enabled; disabling exceptions is a compiler-supported non-standard dialect of C++).
2. **Compile and run most tests with `-fno-exceptions` and one (or a small few) with `-fexceptions`**. This puts most of our testing in the no-exceptions world, which we claim our library supports. One could argue that if the library works with `-fno-exceptions`, then it will work with exceptions because that's just adding features (throw, try, catch, etc) that we're not using. To a rough approximation, that reasoning makes some sense, but there are cases that it doesn't cover.
3. **Run *all tests* both with and without exceptions**. This is the most thorough testing and likely the ideal situation. However, it will close to double our testing requirements. However, if we can "afford" to run all these tests, it may be worth it. | 1.0 | Consider: Which CI tests should run with -fno-exceptions - We [decided](https://github.com/googleapis/google-cloud-cpp/blob/master/doc/adr/2019-01-04-error-reporting-with-statusor.md) that our libraries will not require exceptions to work. That is, a user should be able to compile with `-fno-exceptions` and still be able to use our library just fine. All of our error reporting is done via `Status` or `StatusOr<T>` objects instead of throwing exceptions. This decision does not *prohibit* our users from using exceptions themselves, it simply gives them the choice about whether or not they use exceptions.
So since our library must work whether it's compiled with `-fexceptions` (the default) or with `-fno-exceptions` we should think about what flags our tests should use. The options I see are:
1. (Status Quo) **Compile and run most tests with `-fexceptions`, and one (or a small few) with `-fno-exceptions`**. This is the default setting for compilers, it is the setting used by most C++ users ([50+%](https://isocpp.org/blog/2018/03/results-summary-cpp-foundation-developer-survey-lite-2018-02) of users compile with exceptions enabled), and it is the setting required for proper/standard C++ (i.e., C++ is only defined **with** exceptions enabled; disabling exceptions is a compiler-supported non-standard dialect of C++).
2. **Compile and run most tests with `-fno-exceptions` and one (or a small few) with `-fexceptions`**. This puts most of our testing in the no-exceptions world, which we claim our library supports. One could argue that if the library works with `-fno-exceptions`, then it will work with exceptions because that's just adding features (throw, try, catch, etc) that we're not using. To a rough approximation, that reasoning makes some sense, but there are cases that it doesn't cover.
3. **Run *all tests* both with and without exceptions**. This is the most thorough testing and likely the ideal situation. However, it will close to double our testing requirements. However, if we can "afford" to run all these tests, it may be worth it. | non_priority | consider which ci tests should run with fno exceptions we that our libraries will not require exceptions to work that is a user should be able to compile with fno exceptions and still be able to use our library just fine all of our error reporting is done via status or statusor objects instead of throwing exceptions this decision does not prohibit our users from using exceptions themselves it simply gives them the choice about whether or not they use exceptions so since our library must work whether it s compiled with fexceptions the default or with fno exceptions we should think about what flags our tests should use the options i see are status quo compile and run most tests with fexceptions and one or a small few with fno exceptions this is the default setting for compilers it is the setting used by most c users of users compile with exceptions enabled and it is the setting required for proper standard c i e c is only defined with exceptions enabled disabling exceptions is a compiler supported non standard dialect of c compile and run most tests with fno exceptions and one or a small few with fexceptions this puts most of our testing in the no exceptions world which we claim our library supports one could argue that if the library works with fno exceptions then it will work with exceptions because that s just adding features throw try catch etc that we re not using to a rough approximation that reasoning makes some sense but there are cases that it doesn t cover run all tests both with and without exceptions this is the most thorough testing and likely the ideal situation however it will close to double our testing requirements however if we can afford to run all these tests it may be worth it | 0 |
268,296 | 20,266,370,397 | IssuesEvent | 2022-02-15 12:28:14 | sparrowwallet/sparrow | https://api.github.com/repos/sparrowwallet/sparrow | closed | Feature Request: PSBTs with QR code support | documentation | Hello, thanks for providing such amazing software to the community!
I noticed I’m not able to use sparrow as a co-signer when using PSBTs. I’m forced to either use sparrow as the sender or export the signed transaction to a file. I was expecting to see an option to use a QR code to sign a transaction similar to how blue wallet does.
Am I missing something from my end or is this just a feature that isn’t there yet? | 1.0 | Feature Request: PSBTs with QR code support - Hello, thanks for providing such amazing software to the community!
I noticed I’m not able to use sparrow as a co-signer when using PSBTs. I’m forced to either use sparrow as the sender or export the signed transaction to a file. I was expecting to see an option to use a QR code to sign a transaction similar to how blue wallet does.
Am I missing something from my end or is this just a feature that isn’t there yet? | non_priority | feature request psbts with qr code support hello thanks for providing such amazing software to the community i noticed i’m not able to use sparrow as a co signer when using psbts i’m forced to either use sparrow as the sender or export the signed transaction to a file i was expecting to see an option to use a qr code to sign a transaction similar to how blue wallet does am i missing something from my end or is this just a feature that isn’t there yet | 0 |
58,627 | 14,333,369,633 | IssuesEvent | 2020-11-27 05:37:24 | toonarmycaptain/toonarmycaptain_blog_posts | https://api.github.com/repos/toonarmycaptain/toonarmycaptain_blog_posts | closed | CVE-2020-7598 (Medium) detected in minimist-1.2.0.tgz - autoclosed | security vulnerability | ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>Path to dependency file: toonarmycaptain_blog_posts/package.json</p>
<p>Path to vulnerable library: toonarmycaptain_blog_posts/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- dev-to-git-1.1.0.tgz (Root Library)
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/toonarmycaptain/toonarmycaptain_blog_posts/commit/7e5fd47e383a199b17ab193fab101fbae07d443e">7e5fd47e383a199b17ab193fab101fbae07d443e</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-7598 (Medium) detected in minimist-1.2.0.tgz - autoclosed - ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>Path to dependency file: toonarmycaptain_blog_posts/package.json</p>
<p>Path to vulnerable library: toonarmycaptain_blog_posts/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- dev-to-git-1.1.0.tgz (Root Library)
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/toonarmycaptain/toonarmycaptain_blog_posts/commit/7e5fd47e383a199b17ab193fab101fbae07d443e">7e5fd47e383a199b17ab193fab101fbae07d443e</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in minimist tgz autoclosed cve medium severity vulnerability vulnerable library minimist tgz parse argument options library home page a href path to dependency file toonarmycaptain blog posts package json path to vulnerable library toonarmycaptain blog posts node modules minimist package json dependency hierarchy dev to git tgz root library x minimist tgz vulnerable library found in head commit a href found in base branch master vulnerability details minimist before could be tricked into adding or modifying properties of object prototype using a constructor or proto payload publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution minimist step up your open source security game with whitesource | 0 |
213,917 | 16,545,640,471 | IssuesEvent | 2021-05-27 23:26:26 | WormBase/wormcells-viz | https://api.github.com/repos/WormBase/wormcells-viz | closed | FEATURE: Checkbox selection for cell types on heatmap with clear/select all button | ready_to_test | For the cell types, rather than a text box, let's make it like a checkbox list with a "clear all"/ "select all" button | 1.0 | FEATURE: Checkbox selection for cell types on heatmap with clear/select all button - For the cell types, rather than a text box, let's make it like a checkbox list with a "clear all"/ "select all" button | non_priority | feature checkbox selection for cell types on heatmap with clear select all button for the cell types rather than a text box let s make it like a checkbox list with a clear all select all button | 0 |
70,223 | 9,383,058,478 | IssuesEvent | 2019-04-05 01:20:39 | grpc-ecosystem/grpc-gateway | https://api.github.com/repos/grpc-ecosystem/grpc-gateway | closed | Documentation: 'base_path' Swagger attribute confuses users | documentation good first issue help wanted | ### Steps you follow to reproduce the error:
1. I start with a working REST API and with properly generating Swagger definitions
2. I added a 'base_path' attribute to the 'openapiv2_swagger' annotation in my proto file
3. I removed the equivalent base_path prefix from each 'google.api.http' annotation (base_path = "/api/v1")
4. I regenerated my Go code and restarted my API
5. All my REST APIs now return 404 errors
### What did you expect to happen instead:
I expected the API to remain working
### What's your theory on why it isn't working:
The generated code was previously generating this:
```go
pattern_Provider_EncryptClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"api", "v1", "provider", "client_secret_encrypter"}, ""))
```
It is now generating this:
```go
pattern_Provider_EncryptClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"provider", "client_secret_encrypter"}, ""))
```
It seems like the generator is not aware of the 'base_path' attribute and expects the 'google.api.http' to hold the entire path. However, adding this path back on (while retaining 'base_path' attribute) has the impact of:
1) Adding that path to all endpoints displayed in the Swagger UI which makes it very 'noisy' and hard to read
2) Breaking the Swagger UI "try it out" feature which doubles up the 'base_path' be prefixing base_path to all operations
| 1.0 | Documentation: 'base_path' Swagger attribute confuses users - ### Steps you follow to reproduce the error:
1. I start with a working REST API and with properly generating Swagger definitions
2. I added a 'base_path' attribute to the 'openapiv2_swagger' annotation in my proto file
3. I removed the equivalent base_path prefix from each 'google.api.http' annotation (base_path = "/api/v1")
4. I regenerated my Go code and restarted my API
5. All my REST APIs now return 404 errors
### What did you expect to happen instead:
I expected the API to remain working
### What's your theory on why it isn't working:
The generated code was previously generating this:
```go
pattern_Provider_EncryptClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"api", "v1", "provider", "client_secret_encrypter"}, ""))
```
It is now generating this:
```go
pattern_Provider_EncryptClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"provider", "client_secret_encrypter"}, ""))
```
It seems like the generator is not aware of the 'base_path' attribute and expects the 'google.api.http' to hold the entire path. However, adding this path back on (while retaining 'base_path' attribute) has the impact of:
1) Adding that path to all endpoints displayed in the Swagger UI which makes it very 'noisy' and hard to read
2) Breaking the Swagger UI "try it out" feature which doubles up the 'base_path' be prefixing base_path to all operations
| non_priority | documentation base path swagger attribute confuses users steps you follow to reproduce the error i start with a working rest api and with properly generating swagger definitions i added a base path attribute to the swagger annotation in my proto file i removed the equivalent base path prefix from each google api http annotation base path api i regenerated my go code and restarted my api all my rest apis now return errors what did you expect to happen instead i expected the api to remain working what s your theory on why it isn t working the generated code was previously generating this go pattern provider encryptclientsecret runtime mustpattern runtime newpattern int string api provider client secret encrypter it is now generating this go pattern provider encryptclientsecret runtime mustpattern runtime newpattern int string provider client secret encrypter it seems like the generator is not aware of the base path attribute and expects the google api http to hold the entire path however adding this path back on while retaining base path attribute has the impact of adding that path to all endpoints displayed in the swagger ui which makes it very noisy and hard to read breaking the swagger ui try it out feature which doubles up the base path be prefixing base path to all operations | 0 |
44,271 | 23,536,802,956 | IssuesEvent | 2022-08-19 22:04:32 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | Check if TypedDataSpecializer misses any important cases on internal apps due to UnmodifiableUint8ListView instantiation | area-vm type-performance | Turns out `UnmodifiableUint8ListView` is used internally as an immutable wrapper around embedded data.
This means `TypedDataSpecializer` would not inline any virtual accesses through `Uint8List` interface - because `UnmodifiableUint8ListView` introduces a third-party implementor which does not follow uniform `_TypedData` layout.
We should check if we leaving calls on any hot code paths due to this - and look into potentials ways to mitigate it.
/cc @mkustermann | True | Check if TypedDataSpecializer misses any important cases on internal apps due to UnmodifiableUint8ListView instantiation - Turns out `UnmodifiableUint8ListView` is used internally as an immutable wrapper around embedded data.
This means `TypedDataSpecializer` would not inline any virtual accesses through `Uint8List` interface - because `UnmodifiableUint8ListView` introduces a third-party implementor which does not follow uniform `_TypedData` layout.
We should check if we leaving calls on any hot code paths due to this - and look into potentials ways to mitigate it.
/cc @mkustermann | non_priority | check if typeddataspecializer misses any important cases on internal apps due to instantiation turns out is used internally as an immutable wrapper around embedded data this means typeddataspecializer would not inline any virtual accesses through interface because introduces a third party implementor which does not follow uniform typeddata layout we should check if we leaving calls on any hot code paths due to this and look into potentials ways to mitigate it cc mkustermann | 0 |
262,330 | 19,783,362,313 | IssuesEvent | 2022-01-18 01:34:48 | platform-edn/kubby | https://api.github.com/repos/platform-edn/kubby | opened | Create Better Exanple | documentation | There's an example in the readme but it doesn't work so probably should fix that. It'd be good to move it to its own example folder. | 1.0 | Create Better Exanple - There's an example in the readme but it doesn't work so probably should fix that. It'd be good to move it to its own example folder. | non_priority | create better exanple there s an example in the readme but it doesn t work so probably should fix that it d be good to move it to its own example folder | 0 |
7,183 | 6,792,760,402 | IssuesEvent | 2017-11-01 02:39:44 | AOSC-Dev/aosc-os-abbs | https://api.github.com/repos/AOSC-Dev/aosc-os-abbs | opened | openjpeg: security update to 2.3.0 | security upgrade | Please update in staging.
```
- -------------------------------------------------------------------------
Debian Security Advisory DSA-4013-1 security@debian.org
https://www.debian.org/security/ Moritz Muehlenhoff
October 31, 2017 https://www.debian.org/security/faq
- -------------------------------------------------------------------------
Package : openjpeg2
CVE ID : CVE-2016-1628 CVE-2016-5152 CVE-2016-5157 CVE-2016-9118
CVE-2016-10504 CVE-2017-14039 CVE-2017-14040
CVE-2017-14041 CVE-2017-14151 CVE-2017-14152
Multiple vulnerabilities in OpenJPEG, a JPEG 2000 image compression /
decompression library, may result in denial of service or the execution
of arbitrary code if a malformed JPEG 2000 file is processed.
```
CVE-2017-14152 fixed in #764. | True | openjpeg: security update to 2.3.0 - Please update in staging.
```
- -------------------------------------------------------------------------
Debian Security Advisory DSA-4013-1 security@debian.org
https://www.debian.org/security/ Moritz Muehlenhoff
October 31, 2017 https://www.debian.org/security/faq
- -------------------------------------------------------------------------
Package : openjpeg2
CVE ID : CVE-2016-1628 CVE-2016-5152 CVE-2016-5157 CVE-2016-9118
CVE-2016-10504 CVE-2017-14039 CVE-2017-14040
CVE-2017-14041 CVE-2017-14151 CVE-2017-14152
Multiple vulnerabilities in OpenJPEG, a JPEG 2000 image compression /
decompression library, may result in denial of service or the execution
of arbitrary code if a malformed JPEG 2000 file is processed.
```
CVE-2017-14152 fixed in #764. | non_priority | openjpeg security update to please update in staging debian security advisory dsa security debian org moritz muehlenhoff october package cve id cve cve cve cve cve cve cve cve cve cve multiple vulnerabilities in openjpeg a jpeg image compression decompression library may result in denial of service or the execution of arbitrary code if a malformed jpeg file is processed cve fixed in | 0 |
215,792 | 24,196,517,947 | IssuesEvent | 2022-09-24 01:11:09 | tlkh/transformers-benchmarking | https://api.github.com/repos/tlkh/transformers-benchmarking | opened | CVE-2022-1941 (Medium) detected in protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl | security vulnerability | ## CVE-2022-1941 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Protocol Buffers</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/41/c8/649a298f247305010c57ef2fffd8416686fbdb9e8d3754393ab4ee64f8cf/protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/41/c8/649a298f247305010c57ef2fffd8416686fbdb9e8d3754393ab4ee64f8cf/protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt</p>
<p>
Dependency Hierarchy:
- streamlit-0.55.2-py2.py3-none-any.whl (Root Library)
- :x: **protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A parsing vulnerability for the MessageSet type in the ProtocolBuffers versions prior to and including 3.16.1, 3.17.3, 3.18.2, 3.19.4, 3.20.1 and 3.21.5 for protobuf-cpp, and versions prior to and including 3.16.1, 3.17.3, 3.18.2, 3.19.4, 3.20.1 and 4.21.5 for protobuf-python can lead to out of memory failures. A specially crafted message with multiple key-value per elements creates parsing issues, and can lead to a Denial of Service against services receiving unsanitized input. We recommend upgrading to versions 3.18.3, 3.19.5, 3.20.2, 3.21.6 for protobuf-cpp and 3.18.3, 3.19.5, 3.20.2, 4.21.6 for protobuf-python. Versions for 3.16 and 3.17 are no longer updated.
<p>Publish Date: 2022-09-22
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1941>CVE-2022-1941</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cloud.google.com/support/bulletins#GCP-2022-019">https://cloud.google.com/support/bulletins#GCP-2022-019</a></p>
<p>Release Date: 2022-09-22</p>
<p>Fix Resolution: Google.Protobuf - 3.18.3,3.19.5,3.20.2,3.21.6;protobuf-python - 3.18.3,3.19.5,3.20.2,4.21.6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-1941 (Medium) detected in protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl - ## CVE-2022-1941 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Protocol Buffers</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/41/c8/649a298f247305010c57ef2fffd8416686fbdb9e8d3754393ab4ee64f8cf/protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/41/c8/649a298f247305010c57ef2fffd8416686fbdb9e8d3754393ab4ee64f8cf/protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt</p>
<p>
Dependency Hierarchy:
- streamlit-0.55.2-py2.py3-none-any.whl (Root Library)
- :x: **protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A parsing vulnerability for the MessageSet type in the ProtocolBuffers versions prior to and including 3.16.1, 3.17.3, 3.18.2, 3.19.4, 3.20.1 and 3.21.5 for protobuf-cpp, and versions prior to and including 3.16.1, 3.17.3, 3.18.2, 3.19.4, 3.20.1 and 4.21.5 for protobuf-python can lead to out of memory failures. A specially crafted message with multiple key-value per elements creates parsing issues, and can lead to a Denial of Service against services receiving unsanitized input. We recommend upgrading to versions 3.18.3, 3.19.5, 3.20.2, 3.21.6 for protobuf-cpp and 3.18.3, 3.19.5, 3.20.2, 4.21.6 for protobuf-python. Versions for 3.16 and 3.17 are no longer updated.
<p>Publish Date: 2022-09-22
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1941>CVE-2022-1941</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cloud.google.com/support/bulletins#GCP-2022-019">https://cloud.google.com/support/bulletins#GCP-2022-019</a></p>
<p>Release Date: 2022-09-22</p>
<p>Fix Resolution: Google.Protobuf - 3.18.3,3.19.5,3.20.2,3.21.6;protobuf-python - 3.18.3,3.19.5,3.20.2,4.21.6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in protobuf whl cve medium severity vulnerability vulnerable library protobuf whl protocol buffers library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy streamlit none any whl root library x protobuf whl vulnerable library found in base branch main vulnerability details a parsing vulnerability for the messageset type in the protocolbuffers versions prior to and including and for protobuf cpp and versions prior to and including and for protobuf python can lead to out of memory failures a specially crafted message with multiple key value per elements creates parsing issues and can lead to a denial of service against services receiving unsanitized input we recommend upgrading to versions for protobuf cpp and for protobuf python versions for and are no longer updated publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution google protobuf protobuf python step up your open source security game with mend | 0 |
256,054 | 22,034,293,550 | IssuesEvent | 2022-05-28 10:15:17 | TEAMMATES/teammates | https://api.github.com/repos/TEAMMATES/teammates | opened | Add unit tests for `SubmitFeedbackResponsesAction` | good first issue a-Testing c.Task | `SubmitFeedbackResponsesAction` is by far the most important and the most used state-changing API of the system, and yet there are no unit tests for it. | 1.0 | Add unit tests for `SubmitFeedbackResponsesAction` - `SubmitFeedbackResponsesAction` is by far the most important and the most used state-changing API of the system, and yet there are no unit tests for it. | non_priority | add unit tests for submitfeedbackresponsesaction submitfeedbackresponsesaction is by far the most important and the most used state changing api of the system and yet there are no unit tests for it | 0 |
262,102 | 27,850,892,522 | IssuesEvent | 2023-03-20 18:36:22 | jgeraigery/mongo-csfl-encryption-java-demo | https://api.github.com/repos/jgeraigery/mongo-csfl-encryption-java-demo | opened | CVE-2020-15250 (Medium) detected in junit-4.12.jar | Mend: dependency security vulnerability | ## CVE-2020-15250 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>junit-4.12.jar</b></p></summary>
<p>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</p>
<p>Library home page: <a href="http://junit.org">http://junit.org</a></p>
<p>Path to dependency file: /mongo-csfle-community/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/junit/junit/4.12/2973d150c0dc1fefe998f834810d68f278ea58ec/junit-4.12.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/junit/junit/4.12/2973d150c0dc1fefe998f834810d68f278ea58ec/junit-4.12.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-test-2.2.2.RELEASE.jar (Root Library)
- junit-vintage-engine-5.5.2.jar
- :x: **junit-4.12.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/mongo-csfl-encryption-java-demo/commit/150ebafe98b79ad815eb383fce217cc50a3a9c48">150ebafe98b79ad815eb383fce217cc50a3a9c48</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In JUnit4 from version 4.7 and before 4.13.1, the test rule TemporaryFolder contains a local information disclosure vulnerability. On Unix like systems, the system's temporary directory is shared between all users on that system. Because of this, when files and directories are written into this directory they are, by default, readable by other users on that same system. This vulnerability does not allow other users to overwrite the contents of these directories or files. This is purely an information disclosure vulnerability. This vulnerability impacts you if the JUnit tests write sensitive information, like API keys or passwords, into the temporary folder, and the JUnit tests execute in an environment where the OS has other untrusted users. Because certain JDK file system APIs were only added in JDK 1.7, this this fix is dependent upon the version of the JDK you are using. For Java 1.7 and higher users: this vulnerability is fixed in 4.13.1. For Java 1.6 and lower users: no patch is available, you must use the workaround below. If you are unable to patch, or are stuck running on Java 1.6, specifying the `java.io.tmpdir` system environment variable to a directory that is exclusively owned by the executing user will fix this vulnerability. For more information, including an example of vulnerable code, see the referenced GitHub Security Advisory.
<p>Publish Date: 2020-10-12
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-15250>CVE-2020-15250</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp">https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp</a></p>
<p>Release Date: 2020-10-12</p>
<p>Fix Resolution (junit:junit): 4.13.1</p>
<p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter-test): 2.4.0</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | True | CVE-2020-15250 (Medium) detected in junit-4.12.jar - ## CVE-2020-15250 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>junit-4.12.jar</b></p></summary>
<p>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</p>
<p>Library home page: <a href="http://junit.org">http://junit.org</a></p>
<p>Path to dependency file: /mongo-csfle-community/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/junit/junit/4.12/2973d150c0dc1fefe998f834810d68f278ea58ec/junit-4.12.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/junit/junit/4.12/2973d150c0dc1fefe998f834810d68f278ea58ec/junit-4.12.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-test-2.2.2.RELEASE.jar (Root Library)
- junit-vintage-engine-5.5.2.jar
- :x: **junit-4.12.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/mongo-csfl-encryption-java-demo/commit/150ebafe98b79ad815eb383fce217cc50a3a9c48">150ebafe98b79ad815eb383fce217cc50a3a9c48</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In JUnit4 from version 4.7 and before 4.13.1, the test rule TemporaryFolder contains a local information disclosure vulnerability. On Unix like systems, the system's temporary directory is shared between all users on that system. Because of this, when files and directories are written into this directory they are, by default, readable by other users on that same system. This vulnerability does not allow other users to overwrite the contents of these directories or files. This is purely an information disclosure vulnerability. This vulnerability impacts you if the JUnit tests write sensitive information, like API keys or passwords, into the temporary folder, and the JUnit tests execute in an environment where the OS has other untrusted users. Because certain JDK file system APIs were only added in JDK 1.7, this this fix is dependent upon the version of the JDK you are using. For Java 1.7 and higher users: this vulnerability is fixed in 4.13.1. For Java 1.6 and lower users: no patch is available, you must use the workaround below. If you are unable to patch, or are stuck running on Java 1.6, specifying the `java.io.tmpdir` system environment variable to a directory that is exclusively owned by the executing user will fix this vulnerability. For more information, including an example of vulnerable code, see the referenced GitHub Security Advisory.
<p>Publish Date: 2020-10-12
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-15250>CVE-2020-15250</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp">https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp</a></p>
<p>Release Date: 2020-10-12</p>
<p>Fix Resolution (junit:junit): 4.13.1</p>
<p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter-test): 2.4.0</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | non_priority | cve medium detected in junit jar cve medium severity vulnerability vulnerable library junit jar junit is a unit testing framework for java created by erich gamma and kent beck library home page a href path to dependency file mongo csfle community build gradle path to vulnerable library home wss scanner gradle caches modules files junit junit junit jar home wss scanner gradle caches modules files junit junit junit jar dependency hierarchy spring boot starter test release jar root library junit vintage engine jar x junit jar vulnerable library found in head commit a href found in base branch master vulnerability details in from version and before the test rule temporaryfolder contains a local information disclosure vulnerability on unix like systems the system s temporary directory is shared between all users on that system because of this when files and directories are written into this directory they are by default readable by other users on that same system this vulnerability does not allow other users to overwrite the contents of these directories or files this is purely an information disclosure vulnerability this vulnerability impacts you if the junit tests write sensitive information like api keys or passwords into the temporary folder and the junit tests execute in an environment where the os has other untrusted users because certain jdk file system apis were only added in jdk this this fix is dependent upon the version of the jdk you are using for java and higher users this vulnerability is fixed in for java and lower users no patch is available you must use the workaround below if you are unable to patch or are stuck running on java specifying the java io tmpdir system environment variable to a directory that is exclusively owned by the executing user will fix this vulnerability for more information including an example of vulnerable code see the referenced github security advisory publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution junit junit direct dependency fix resolution org springframework boot spring boot starter test rescue worker helmet automatic remediation is available for this issue | 0 |
101,696 | 12,701,114,463 | IssuesEvent | 2020-06-22 17:32:51 | triplea-game/triplea | https://api.github.com/repos/triplea-game/triplea | closed | JavaFx Settings Menu / Co-existing in Swing | Design Discussion | The settings window is perhaps the only component that is both visible from the staging screens and the game-proper. Currently we have duplicated the settings code to enable the JavaFX variant and have two versions, one in swing and another in JavaFX.
How do we get it so we only have one version?
It looks like Swing content [can be embedded](https://docs.oracle.com/javafx/8/embed_swing/jfxpub-embed_swing.htm) in JavaFX applications. Perhaps we can just keep the settings window in swing and render it from JavaFX.
I don't think there is a good option to convert the settings window to JavaFX and have it be rendered from JavaFX and Swing (it seems to be a one-way street).
| 1.0 | JavaFx Settings Menu / Co-existing in Swing - The settings window is perhaps the only component that is both visible from the staging screens and the game-proper. Currently we have duplicated the settings code to enable the JavaFX variant and have two versions, one in swing and another in JavaFX.
How do we get it so we only have one version?
It looks like Swing content [can be embedded](https://docs.oracle.com/javafx/8/embed_swing/jfxpub-embed_swing.htm) in JavaFX applications. Perhaps we can just keep the settings window in swing and render it from JavaFX.
I don't think there is a good option to convert the settings window to JavaFX and have it be rendered from JavaFX and Swing (it seems to be a one-way street).
| non_priority | javafx settings menu co existing in swing the settings window is perhaps the only component that is both visible from the staging screens and the game proper currently we have duplicated the settings code to enable the javafx variant and have two versions one in swing and another in javafx how do we get it so we only have one version it looks like swing content in javafx applications perhaps we can just keep the settings window in swing and render it from javafx i don t think there is a good option to convert the settings window to javafx and have it be rendered from javafx and swing it seems to be a one way street | 0 |
72,340 | 8,723,306,871 | IssuesEvent | 2018-12-09 20:39:24 | rtfd/readthedocs.org | https://api.github.com/repos/rtfd/readthedocs.org | closed | allow specifying extras instead of requirements.txt | Improvement Needed: design decision | Our projects rely on `setup.py` instead of `requirements.txt` for specifying requirements. I'd like to be able to add an `extras_require` named "docs" and tell RTD about it so that it can do `pip install .[docs]` when building, instead of creating a separate `docs-require.txt` file. | 1.0 | allow specifying extras instead of requirements.txt - Our projects rely on `setup.py` instead of `requirements.txt` for specifying requirements. I'd like to be able to add an `extras_require` named "docs" and tell RTD about it so that it can do `pip install .[docs]` when building, instead of creating a separate `docs-require.txt` file. | non_priority | allow specifying extras instead of requirements txt our projects rely on setup py instead of requirements txt for specifying requirements i d like to be able to add an extras require named docs and tell rtd about it so that it can do pip install when building instead of creating a separate docs require txt file | 0 |
139,243 | 12,839,923,068 | IssuesEvent | 2020-07-07 20:08:28 | mak3r/turnkey | https://api.github.com/repos/mak3r/turnkey | opened | User instruction guide | documentation | Create a minimal user instruction guide - ideally could fit on a business card | 1.0 | User instruction guide - Create a minimal user instruction guide - ideally could fit on a business card | non_priority | user instruction guide create a minimal user instruction guide ideally could fit on a business card | 0 |
41,532 | 8,998,720,501 | IssuesEvent | 2019-02-03 00:52:12 | MadeMadeDane/castle_o_puzzles | https://api.github.com/repos/MadeMadeDane/castle_o_puzzles | closed | [IOEntity] Timer Relay | code ioEntity mapping | A timer relay that takes an input signal, delays for a given time, and then outputs the signal. Will both DigitalState and AnalogState relay values which will be set after a co-routine delay. | 1.0 | [IOEntity] Timer Relay - A timer relay that takes an input signal, delays for a given time, and then outputs the signal. Will both DigitalState and AnalogState relay values which will be set after a co-routine delay. | non_priority | timer relay a timer relay that takes an input signal delays for a given time and then outputs the signal will both digitalstate and analogstate relay values which will be set after a co routine delay | 0 |
36,328 | 5,048,260,181 | IssuesEvent | 2016-12-20 12:16:58 | driftyco/ionic | https://api.github.com/repos/driftyco/ionic | closed | this.enteringView.pageRef(...) is null | needs:devicetesting v2 | #### Short description of the problem:
I have a login page with Ionic Segments, one is Sign in, the other one is Create Account (first load of the page is Sign in).
After creating an account, the method is changing the segment to Sign in.
Then if I try to sign in with the created account (or any other), I have a `this.enteringView.pageRef(...) is null` in Firefox console.
On IE : `Unable to get property 'nativeElement' of undefined or null reference`
#### What behavior are you expecting?
Expected behaviour is after successfully register to the app and changing to sign in page, user should be able to sign in without an error.
**Steps to reproduce:**
1. Open app on login page (first page of the app)
2. Click on Create Account (Popup confirming the creation and opening Sign in segment)
3. Try to sign in with the previous created account
https://github.com/paoesco/walkingdog/blob/master/walkingdog-mobile/src/pages/login/login.ts
```
signup(value: string) {
this.loader.present();
console.log(`Submitted values : email = ${value.email}, password = ${value.password}`);
let details: UserDetails = {'email': value.email, 'password': value.password};
this.auth.signup(details).then(() => {
alert('Signed up')
this.segments = 'login';
this.loader.dismiss();
}, (err: IDetailedError<string[]>) => {
for (let e of err.details) {
if (e === 'conflict_email') {
alert('Email already exists.');
} else {
alert(e);
}
}
this.loader.dismiss();
});
}
```
https://github.com/paoesco/walkingdog/blob/master/walkingdog-mobile/src/pages/login/login.html
```
<ion-content padding>
<div padding>
<ion-segment [(ngModel)]="segments">
<ion-segment-button value="login">
Sign in
</ion-segment-button>
<ion-segment-button value="signup">
Create account
</ion-segment-button>
</ion-segment>
</div>
<div [ngSwitch]="segments">
<ion-list *ngSwitchCase="'login'">
<form [formGroup]="loginForm" (ngSubmit)="login(loginForm.value)">
<ion-item>
<ion-input type="email" placeholder="Email" [formControl]="loginForm.controls['email']"></ion-input>
</ion-item>
<ion-item>
<ion-input type="password" placeholder="Password" [formControl]="loginForm.controls['password']"></ion-input>
</ion-item>
<button ion-button block type="submit">
Sign in
</button>
</form>
<button ion-button block color="danger" (click)="loginWithGoogle()">
Sign in with Google+
</button>
</ion-list>
<ion-list *ngSwitchCase="'signup'">
<form [formGroup]="signupForm" (ngSubmit)="signup(signupForm.value)">
<ion-item>
<ion-input type="email" placeholder="Email" [formControl]="signupForm.controls['email']"></ion-input>
</ion-item>
<ion-item>
<ion-input type="password" placeholder="Password" [formControl]="signupForm.controls['password']"></ion-input>
</ion-item>
<button ion-button block type="submit">Create account</button>
</form>
</ion-list>
</div>
</ion-content>
```
**Other information:** (e.g. stacktraces, related issues, suggestions how to fix, stackoverflow links, forum links, etc)
Github repo : https://github.com/paoesco/walkingdog/tree/master/walkingdog-mobile
**Which Ionic Version?** 1.x or 2.x
2
**Run `ionic info` from terminal/cmd prompt:** (paste output below)
Cordova CLI: 6.3.1
Ionic Framework Version: 2.0.0-rc.1
Ionic CLI Version: 2.1.0
Ionic App Lib Version: 2.1.0-beta.1
OS: Windows 7 SP1
Node Version: v6.6.0
| 1.0 | this.enteringView.pageRef(...) is null - #### Short description of the problem:
I have a login page with Ionic Segments, one is Sign in, the other one is Create Account (first load of the page is Sign in).
After creating an account, the method is changing the segment to Sign in.
Then if I try to sign in with the created account (or any other), I have a `this.enteringView.pageRef(...) is null` in Firefox console.
On IE : `Unable to get property 'nativeElement' of undefined or null reference`
#### What behavior are you expecting?
Expected behaviour is after successfully register to the app and changing to sign in page, user should be able to sign in without an error.
**Steps to reproduce:**
1. Open app on login page (first page of the app)
2. Click on Create Account (Popup confirming the creation and opening Sign in segment)
3. Try to sign in with the previous created account
https://github.com/paoesco/walkingdog/blob/master/walkingdog-mobile/src/pages/login/login.ts
```
signup(value: string) {
this.loader.present();
console.log(`Submitted values : email = ${value.email}, password = ${value.password}`);
let details: UserDetails = {'email': value.email, 'password': value.password};
this.auth.signup(details).then(() => {
alert('Signed up')
this.segments = 'login';
this.loader.dismiss();
}, (err: IDetailedError<string[]>) => {
for (let e of err.details) {
if (e === 'conflict_email') {
alert('Email already exists.');
} else {
alert(e);
}
}
this.loader.dismiss();
});
}
```
https://github.com/paoesco/walkingdog/blob/master/walkingdog-mobile/src/pages/login/login.html
```
<ion-content padding>
<div padding>
<ion-segment [(ngModel)]="segments">
<ion-segment-button value="login">
Sign in
</ion-segment-button>
<ion-segment-button value="signup">
Create account
</ion-segment-button>
</ion-segment>
</div>
<div [ngSwitch]="segments">
<ion-list *ngSwitchCase="'login'">
<form [formGroup]="loginForm" (ngSubmit)="login(loginForm.value)">
<ion-item>
<ion-input type="email" placeholder="Email" [formControl]="loginForm.controls['email']"></ion-input>
</ion-item>
<ion-item>
<ion-input type="password" placeholder="Password" [formControl]="loginForm.controls['password']"></ion-input>
</ion-item>
<button ion-button block type="submit">
Sign in
</button>
</form>
<button ion-button block color="danger" (click)="loginWithGoogle()">
Sign in with Google+
</button>
</ion-list>
<ion-list *ngSwitchCase="'signup'">
<form [formGroup]="signupForm" (ngSubmit)="signup(signupForm.value)">
<ion-item>
<ion-input type="email" placeholder="Email" [formControl]="signupForm.controls['email']"></ion-input>
</ion-item>
<ion-item>
<ion-input type="password" placeholder="Password" [formControl]="signupForm.controls['password']"></ion-input>
</ion-item>
<button ion-button block type="submit">Create account</button>
</form>
</ion-list>
</div>
</ion-content>
```
**Other information:** (e.g. stacktraces, related issues, suggestions how to fix, stackoverflow links, forum links, etc)
Github repo : https://github.com/paoesco/walkingdog/tree/master/walkingdog-mobile
**Which Ionic Version?** 1.x or 2.x
2
**Run `ionic info` from terminal/cmd prompt:** (paste output below)
Cordova CLI: 6.3.1
Ionic Framework Version: 2.0.0-rc.1
Ionic CLI Version: 2.1.0
Ionic App Lib Version: 2.1.0-beta.1
OS: Windows 7 SP1
Node Version: v6.6.0
| non_priority | this enteringview pageref is null short description of the problem i have a login page with ionic segments one is sign in the other one is create account first load of the page is sign in after creating an account the method is changing the segment to sign in then if i try to sign in with the created account or any other i have a this enteringview pageref is null in firefox console on ie unable to get property nativeelement of undefined or null reference what behavior are you expecting expected behaviour is after successfully register to the app and changing to sign in page user should be able to sign in without an error steps to reproduce open app on login page first page of the app click on create account popup confirming the creation and opening sign in segment try to sign in with the previous created account signup value string this loader present console log submitted values email value email password value password let details userdetails email value email password value password this auth signup details then alert signed up this segments login this loader dismiss err idetailederror for let e of err details if e conflict email alert email already exists else alert e this loader dismiss sign in create account sign in sign in with google create account other information e g stacktraces related issues suggestions how to fix stackoverflow links forum links etc github repo which ionic version x or x run ionic info from terminal cmd prompt paste output below cordova cli ionic framework version rc ionic cli version ionic app lib version beta os windows node version | 0 |
159,460 | 24,995,108,654 | IssuesEvent | 2022-11-02 22:56:03 | mozilla/foundation.mozilla.org | https://api.github.com/repos/mozilla/foundation.mozilla.org | opened | [PNI] Explore homepage updates | design Buyer's Guide 🛍 | Currently we are hiding parts of the homepage as part of a quick fix to move the product review grid up. @nancyt1 had come up with a previous design that we said we would look into possibly implementing post launch (see below). The goal of this ticket is to explore design solutions for updating the homepage using our current components and minimal dev work.
**Goals:**
- [ ] Explore ways to update design so that we can feature the previous editorial content that we hid, with special emphasis on the CTA because that effects whether it shows on other pages
- [ ] Get feedback from design
- [ ] Get feedback from stakeholders and devs
- [ ] Refine design
- [ ] Create implementation ticket

| 1.0 | [PNI] Explore homepage updates - Currently we are hiding parts of the homepage as part of a quick fix to move the product review grid up. @nancyt1 had come up with a previous design that we said we would look into possibly implementing post launch (see below). The goal of this ticket is to explore design solutions for updating the homepage using our current components and minimal dev work.
**Goals:**
- [ ] Explore ways to update design so that we can feature the previous editorial content that we hid, with special emphasis on the CTA because that effects whether it shows on other pages
- [ ] Get feedback from design
- [ ] Get feedback from stakeholders and devs
- [ ] Refine design
- [ ] Create implementation ticket

| non_priority | explore homepage updates currently we are hiding parts of the homepage as part of a quick fix to move the product review grid up had come up with a previous design that we said we would look into possibly implementing post launch see below the goal of this ticket is to explore design solutions for updating the homepage using our current components and minimal dev work goals explore ways to update design so that we can feature the previous editorial content that we hid with special emphasis on the cta because that effects whether it shows on other pages get feedback from design get feedback from stakeholders and devs refine design create implementation ticket | 0 |
186,811 | 15,084,779,921 | IssuesEvent | 2021-02-05 17:39:30 | ZupIT/ritchie-cli | https://api.github.com/repos/ZupIT/ritchie-cli | closed | Make to easier to contribute to other formulas repositories | :books: documentation :hammer: improvement | <!-- Please only use this template for submitting new feature or enhancement requests -->
**What would you like to be added**:
- I would like a specific command to build a formula I'm updating from an existing repository I cloned on my machine (and have also been imported with the `rit add repo` command). Currently, if I cloned a repository locally that I also imported, I can't test the code I update on the cloned repository. Even after creating a workspace from it.
**Why is this needed**:
- This has a big impact on Ritchie usability, has it makes it difficult for any user to contribute to someone else repository.
### Example
<img width="1159" alt="Screen Shot 2021-02-01 at 10 27 47" src="https://user-images.githubusercontent.com/22433243/106465337-985cbe00-6478-11eb-8175-e3eedd0e286a.png">
Here, we have a `local-formulas-github` and a `formulas-github` which are both the same repository (the first one is cloned and has been added as a workspace, and the other have been imported through the `rit add repo` command).
I can't test a formula from the `local-formulas-github`repository, as when I execute a command from the repo which have already been used locally, Ritchie doesn't build the formula again, even if the priority of the `local-formulas-github` repository is higher.
To test a new implementation, I have to use the Makefile `make build` command and move the binary from the /dist folder to the .rit folder, which isn't practical.
- Version: 2.7.0
- OS: MacOS
- [X] Check this box if this issue needs a documentation update
| 1.0 | Make to easier to contribute to other formulas repositories - <!-- Please only use this template for submitting new feature or enhancement requests -->
**What would you like to be added**:
- I would like a specific command to build a formula I'm updating from an existing repository I cloned on my machine (and have also been imported with the `rit add repo` command). Currently, if I cloned a repository locally that I also imported, I can't test the code I update on the cloned repository. Even after creating a workspace from it.
**Why is this needed**:
- This has a big impact on Ritchie usability, has it makes it difficult for any user to contribute to someone else repository.
### Example
<img width="1159" alt="Screen Shot 2021-02-01 at 10 27 47" src="https://user-images.githubusercontent.com/22433243/106465337-985cbe00-6478-11eb-8175-e3eedd0e286a.png">
Here, we have a `local-formulas-github` and a `formulas-github` which are both the same repository (the first one is cloned and has been added as a workspace, and the other have been imported through the `rit add repo` command).
I can't test a formula from the `local-formulas-github`repository, as when I execute a command from the repo which have already been used locally, Ritchie doesn't build the formula again, even if the priority of the `local-formulas-github` repository is higher.
To test a new implementation, I have to use the Makefile `make build` command and move the binary from the /dist folder to the .rit folder, which isn't practical.
- Version: 2.7.0
- OS: MacOS
- [X] Check this box if this issue needs a documentation update
| non_priority | make to easier to contribute to other formulas repositories what would you like to be added i would like a specific command to build a formula i m updating from an existing repository i cloned on my machine and have also been imported with the rit add repo command currently if i cloned a repository locally that i also imported i can t test the code i update on the cloned repository even after creating a workspace from it why is this needed this has a big impact on ritchie usability has it makes it difficult for any user to contribute to someone else repository example img width alt screen shot at src here we have a local formulas github and a formulas github which are both the same repository the first one is cloned and has been added as a workspace and the other have been imported through the rit add repo command i can t test a formula from the local formulas github repository as when i execute a command from the repo which have already been used locally ritchie doesn t build the formula again even if the priority of the local formulas github repository is higher to test a new implementation i have to use the makefile make build command and move the binary from the dist folder to the rit folder which isn t practical version os macos check this box if this issue needs a documentation update | 0 |
36,557 | 9,821,724,695 | IssuesEvent | 2019-06-14 08:02:22 | cytopiateam/Cytopia | https://api.github.com/repos/cytopiateam/Cytopia | opened | Split up TileData Editor into seperate repository | build | Remove the TileData Editor from the Cytopia Repository and put it into a seperate Repo. | 1.0 | Split up TileData Editor into seperate repository - Remove the TileData Editor from the Cytopia Repository and put it into a seperate Repo. | non_priority | split up tiledata editor into seperate repository remove the tiledata editor from the cytopia repository and put it into a seperate repo | 0 |
111,208 | 11,726,808,689 | IssuesEvent | 2020-03-10 15:02:29 | exercism/v3 | https://api.github.com/repos/exercism/v3 | closed | [Docs] Giving credit and citing sources | discussion documentation | This is a write-up of an [AMA question](https://exercism-team.slack.com/archives/CR91YFNG3/p1579275473054100) on Slack, which itself was a follow-up question to a [previous discussion](https://exercism-team.slack.com/archives/CR91YFNG3/p1579125573041000). It's meant as a discussion starter.
@NobbZ, @Stargator, @iHiD, @ErikSchierboom, @SleeplessByte, @kotp thanks for engaging in the discussion around my question. Please edit the post and correct me if you feel that I've misrepresented one of your points in this write-up. Despite the topic, I chose to not cite everyone individually to keep it more concise, I hope that's okay with you.
---
Right now, the [concept docs](https://github.com/exercism/v3/tree/master/reference) lack any kind of consistency when it comes to citing the sources they're based on. [Some](https://github.com/exercism/v3/blob/master/reference/concepts/ascii.md) are direct quotes but lack any kind of source, [others](https://github.com/exercism/v3/blob/master/reference/concepts/multiple-dispatch.md) have an APA style citation, and some are original works not based on an existing source.
There seemed to be a consensus that if sources are used, they should be properly attributed. However, what "properly attributed" means is unclear. Therefore it would be useful to agree on a minimum standard.
Sidenote: This is primarily about the concept documents used "internally", not the docs exposed to students.
**Why should sources be cited?**
- Legal reasons (although the documents are for "internal" purposes, they're still publicly available).
- A way to thank the original creator for creating a wonderful resource.
- The documents are a source of truth and need to be verifiable.
- They can help understand the concept/problem better.
- The docs can also contain info that can be readily copy-pasted into exercise READMEs.
**How should they be cited?**
There was no consensus on this. The following ways were brought up:
- Link dump (a list of links used while creating the source)
- Only adding sources for direct quotes, otherwise adding links where one can find more but not directly citing non-quoted content.
- Deep-linking could be hard to maintain in the long run.
- Cite the original author, URL, date of creation/last modification (explicitely state if those are not available), publisher.
- Putting the citation in a comment.
This brings up further questions that need to be considered:
- Does every document **need** to have sources or are documents written purely from pre-existing knowledge okay, too?
- Are the citations purely for giving attribution or do they also serve as a way to verify the contents of the doc?
- Do we even want a citation guide to refer to, or do we leave it up to whomever submits and reviews the PR? | 1.0 | [Docs] Giving credit and citing sources - This is a write-up of an [AMA question](https://exercism-team.slack.com/archives/CR91YFNG3/p1579275473054100) on Slack, which itself was a follow-up question to a [previous discussion](https://exercism-team.slack.com/archives/CR91YFNG3/p1579125573041000). It's meant as a discussion starter.
@NobbZ, @Stargator, @iHiD, @ErikSchierboom, @SleeplessByte, @kotp thanks for engaging in the discussion around my question. Please edit the post and correct me if you feel that I've misrepresented one of your points in this write-up. Despite the topic, I chose to not cite everyone individually to keep it more concise, I hope that's okay with you.
---
Right now, the [concept docs](https://github.com/exercism/v3/tree/master/reference) lack any kind of consistency when it comes to citing the sources they're based on. [Some](https://github.com/exercism/v3/blob/master/reference/concepts/ascii.md) are direct quotes but lack any kind of source, [others](https://github.com/exercism/v3/blob/master/reference/concepts/multiple-dispatch.md) have an APA style citation, and some are original works not based on an existing source.
There seemed to be a consensus that if sources are used, they should be properly attributed. However, what "properly attributed" means is unclear. Therefore it would be useful to agree on a minimum standard.
Sidenote: This is primarily about the concept documents used "internally", not the docs exposed to students.
**Why should sources be cited?**
- Legal reasons (although the documents are for "internal" purposes, they're still publicly available).
- A way to thank the original creator for creating a wonderful resource.
- The documents are a source of truth and need to be verifiable.
- They can help understand the concept/problem better.
- The docs can also contain info that can be readily copy-pasted into exercise READMEs.
**How should they be cited?**
There was no consensus on this. The following ways were brought up:
- Link dump (a list of links used while creating the source)
- Only adding sources for direct quotes, otherwise adding links where one can find more but not directly citing non-quoted content.
- Deep-linking could be hard to maintain in the long run.
- Cite the original author, URL, date of creation/last modification (explicitely state if those are not available), publisher.
- Putting the citation in a comment.
This brings up further questions that need to be considered:
- Does every document **need** to have sources or are documents written purely from pre-existing knowledge okay, too?
- Are the citations purely for giving attribution or do they also serve as a way to verify the contents of the doc?
- Do we even want a citation guide to refer to, or do we leave it up to whomever submits and reviews the PR? | non_priority | giving credit and citing sources this is a write up of an on slack which itself was a follow up question to a it s meant as a discussion starter nobbz stargator ihid erikschierboom sleeplessbyte kotp thanks for engaging in the discussion around my question please edit the post and correct me if you feel that i ve misrepresented one of your points in this write up despite the topic i chose to not cite everyone individually to keep it more concise i hope that s okay with you right now the lack any kind of consistency when it comes to citing the sources they re based on are direct quotes but lack any kind of source have an apa style citation and some are original works not based on an existing source there seemed to be a consensus that if sources are used they should be properly attributed however what properly attributed means is unclear therefore it would be useful to agree on a minimum standard sidenote this is primarily about the concept documents used internally not the docs exposed to students why should sources be cited legal reasons although the documents are for internal purposes they re still publicly available a way to thank the original creator for creating a wonderful resource the documents are a source of truth and need to be verifiable they can help understand the concept problem better the docs can also contain info that can be readily copy pasted into exercise readmes how should they be cited there was no consensus on this the following ways were brought up link dump a list of links used while creating the source only adding sources for direct quotes otherwise adding links where one can find more but not directly citing non quoted content deep linking could be hard to maintain in the long run cite the original author url date of creation last modification explicitely state if those are not available publisher putting the citation in a comment this brings up further questions that need to be considered does every document need to have sources or are documents written purely from pre existing knowledge okay too are the citations purely for giving attribution or do they also serve as a way to verify the contents of the doc do we even want a citation guide to refer to or do we leave it up to whomever submits and reviews the pr | 0 |
146,637 | 23,097,902,851 | IssuesEvent | 2022-07-26 21:38:56 | Azure/azure-functions-host | https://api.github.com/repos/Azure/azure-functions-host | closed | Add support to gracefully shutdown language worker | feature:language-extensibility out-of-proc design | FunctionRpc proto file defines: [WorkerTerminate ](https://github.com/Azure/azure-functions-host/blob/a32a63925c9e67a4ce1af4a49ae1dd3b16d7f7e2/src/WebJobs.Script.Grpc/azure-functions-language-worker-protobuf/src/proto/FunctionRpc.proto#L160-L162). Need to update host to send WorkerTerminate message with a grace period. | 1.0 | Add support to gracefully shutdown language worker - FunctionRpc proto file defines: [WorkerTerminate ](https://github.com/Azure/azure-functions-host/blob/a32a63925c9e67a4ce1af4a49ae1dd3b16d7f7e2/src/WebJobs.Script.Grpc/azure-functions-language-worker-protobuf/src/proto/FunctionRpc.proto#L160-L162). Need to update host to send WorkerTerminate message with a grace period. | non_priority | add support to gracefully shutdown language worker functionrpc proto file defines need to update host to send workerterminate message with a grace period | 0 |
12,800 | 4,539,806,244 | IssuesEvent | 2016-09-09 12:35:13 | peritext/peritext | https://api.github.com/repos/peritext/peritext | opened | Remove radium | code quality | As peritext does not handle anymore any UI-related elements that are not supposed to be stylizable through user-generated css, inline styling is not necessary anymore. | 1.0 | Remove radium - As peritext does not handle anymore any UI-related elements that are not supposed to be stylizable through user-generated css, inline styling is not necessary anymore. | non_priority | remove radium as peritext does not handle anymore any ui related elements that are not supposed to be stylizable through user generated css inline styling is not necessary anymore | 0 |
168,635 | 20,773,232,794 | IssuesEvent | 2022-03-16 07:58:08 | Agoric/agoric-sdk | https://api.github.com/repos/Agoric/agoric-sdk | closed | Error return value of `am.PushAction` is not checked (errcheck) | bug security agoric-cosmos audit-restival | ## Describe the bug
```
x/vbank/module.go:192:16: Error return value of `am.PushAction` is not checked (errcheck)
am.PushAction(ctx, action) ^
```
https://github.com/Agoric/agoric-sdk/blob/adfdf3638f56e8f37d34661f033f42843354db26/golang/cosmos/x/vbank/module.go#L191-L193
the error from `am.PushAction` is not handled currently | True | Error return value of `am.PushAction` is not checked (errcheck) - ## Describe the bug
```
x/vbank/module.go:192:16: Error return value of `am.PushAction` is not checked (errcheck)
am.PushAction(ctx, action) ^
```
https://github.com/Agoric/agoric-sdk/blob/adfdf3638f56e8f37d34661f033f42843354db26/golang/cosmos/x/vbank/module.go#L191-L193
the error from `am.PushAction` is not handled currently | non_priority | error return value of am pushaction is not checked errcheck describe the bug x vbank module go error return value of am pushaction is not checked errcheck am pushaction ctx action the error from am pushaction is not handled currently | 0 |
266,664 | 28,432,780,775 | IssuesEvent | 2023-04-15 01:09:47 | hshivhare67/kernel_v4.19.72_CVE-2022-42896_new | https://api.github.com/repos/hshivhare67/kernel_v4.19.72_CVE-2022-42896_new | opened | CVE-2023-26545 (High) detected in linuxlinux-4.19.279 | Mend: dependency security vulnerability | ## CVE-2023-26545 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.279</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/mpls/af_mpls.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/mpls/af_mpls.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In the Linux kernel before 6.1.13, there is a double free in net/mpls/af_mpls.c upon an allocation failure (for registering the sysctl table under a new location) during the renaming of a device.
<p>Publish Date: 2023-02-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-26545>CVE-2023-26545</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-26545">https://www.linuxkernelcves.com/cves/CVE-2023-26545</a></p>
<p>Release Date: 2023-02-25</p>
<p>Fix Resolution: v4.14.306,v4.19.273,v5.4.232,v5.10.169,v5.15.95,v6.1.13,v6.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2023-26545 (High) detected in linuxlinux-4.19.279 - ## CVE-2023-26545 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.279</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/mpls/af_mpls.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/mpls/af_mpls.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In the Linux kernel before 6.1.13, there is a double free in net/mpls/af_mpls.c upon an allocation failure (for registering the sysctl table under a new location) during the renaming of a device.
<p>Publish Date: 2023-02-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-26545>CVE-2023-26545</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-26545">https://www.linuxkernelcves.com/cves/CVE-2023-26545</a></p>
<p>Release Date: 2023-02-25</p>
<p>Fix Resolution: v4.14.306,v4.19.273,v5.4.232,v5.10.169,v5.15.95,v6.1.13,v6.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in base branch master vulnerable source files net mpls af mpls c net mpls af mpls c vulnerability details in the linux kernel before there is a double free in net mpls af mpls c upon an allocation failure for registering the sysctl table under a new location during the renaming of a device publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
118,862 | 11,994,693,575 | IssuesEvent | 2020-04-08 14:05:48 | gingeleski/sitecopy | https://api.github.com/repos/gingeleski/sitecopy | closed | Translate README to English | documentation | The README as originally forked is in Chinese.
This issue covers translation work to make it more accessible. | 1.0 | Translate README to English - The README as originally forked is in Chinese.
This issue covers translation work to make it more accessible. | non_priority | translate readme to english the readme as originally forked is in chinese this issue covers translation work to make it more accessible | 0 |
325,366 | 24,045,529,408 | IssuesEvent | 2022-09-16 07:58:49 | yugabyte/yb-voyager | https://api.github.com/repos/yugabyte/yb-voyager | opened | [Documentation] Modify the Performance page on docs with new Guidelines | documentation | Need to modify the Performance page with new Guidelines about perf numbers for the better perfomance in Migration. | 1.0 | [Documentation] Modify the Performance page on docs with new Guidelines - Need to modify the Performance page with new Guidelines about perf numbers for the better perfomance in Migration. | non_priority | modify the performance page on docs with new guidelines need to modify the performance page with new guidelines about perf numbers for the better perfomance in migration | 0 |
281,246 | 24,375,572,406 | IssuesEvent | 2022-10-04 00:22:07 | eclipse-openj9/openj9 | https://api.github.com/repos/eclipse-openj9/openj9 | closed | JDK8 aarch64_linux LambdaLoadTest_special_J9_5m_0_FAILED net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces | test failure | Failure link
------------
From [an internal build](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_special.system_aarch64_linux_testList_0/306/)(`cent7-aarch64-6`):
```
openjdk version "1.8.0_352"
IBM Semeru Runtime Open Edition (build 1.8.0_352-b06)
Eclipse OpenJ9 VM (build openj9-0.35.0-m2b, JRE 1.8.0 Linux aarch64-64-Bit Compressed References 20221002_460 (JIT enabled, AOT enabled)
OpenJ9 - 2e24c0da7
OMR - 447afc0f0
JCL - fa9321797d based on jdk8u352-b06)
```
[Rerun in Grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?SDK_RESOURCE=upstream&TARGET=LambdaLoadTest_special_J9_5m_0&TEST_FLAG=&UPSTREAM_TEST_JOB_NAME=Test_openjdk8_j9_special.system_aarch64_linux&DOCKER_REQUIRED=false&ACTIVE_NODE_TIMEOUT=0&VENDOR_TEST_DIRS=&EXTRA_DOCKER_ARGS=&TKG_OWNER_BRANCH=adoptium%3Amaster&OPENJ9_SYSTEMTEST_OWNER_BRANCH=eclipse%3Amaster&PLATFORM=aarch64_linux&GENERATE_JOBS=false&KEEP_REPORTDIR=false&PERSONAL_BUILD=false&ADOPTOPENJDK_REPO=https%3A%2F%2Fgithub.com%2Fadoptium%2Faqa-tests.git&DOCKER_REGISTRY_URL_CREDENTIAL_ID=&LABEL=&EXTRA_OPTIONS=&CUSTOMIZED_SDK_URL=+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-jdk_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-testimage_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-debugimage_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-jre_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz&BUILD_IDENTIFIER=&ADOPTOPENJDK_BRANCH=master&LIGHT_WEIGHT_CHECKOUT=false&USE_JRE=false&ARTIFACTORY_SERVER=na.artifactory.swg-devops&KEEP_WORKSPACE=false&USER_CREDENTIALS_ID=&JDK_VERSION=8&DOCKER_REGISTRY_URL=&ITERATIONS=1&VENDOR_TEST_REPOS=&JDK_REPO=https%3A%2F%2Fgithub.com%2Fibmruntimes%2Fopenj9-openjdk-jdk8&RELEASE_TAG=v0.35.0-release&OPENJ9_BRANCH=v0.35.0-release&OPENJ9_SHA=&JCK_GIT_REPO=&VENDOR_TEST_BRANCHES=&OPENJ9_REPO=https%3A%2F%2Fgithub.com%2Feclipse-openj9%2Fopenj9.git&UPSTREAM_JOB_NAME=&CLOUD_PROVIDER=&CUSTOM_TARGET=&VENDOR_TEST_SHAS=&JDK_BRANCH=v0.35.0-release&LABEL_ADDITION=&ARTIFACTORY_REPO=&ARTIFACTORY_ROOT_DIR=&UPSTREAM_TEST_JOB_NUMBER=324&DOCKERIMAGE_TAG=&JDK_IMPL=openj9&TEST_TIME=&SSH_AGENT_CREDENTIAL=83181e25-eea4-4f55-8b3e-e79615733226&AUTO_DETECT=true&SLACK_CHANNEL=&DYNAMIC_COMPILE=false&ADOPTOPENJDK_SYSTEMTEST_OWNER_BRANCH=adoptium%3Amaster&CUSTOMIZED_SDK_URL_CREDENTIAL_ID=4e18ffe7-b1b1-4272-9979-99769b68bcc2&ARCHIVE_TEST_RESULTS=false&NUM_MACHINES=&OPENJDK_SHA=&TRSS_URL=http%3A%2F%2Ftrss1.fyre.ibm.com&USE_TESTENV_PROPERTIES=false&BUILD_LIST=system&UPSTREAM_JOB_NUMBER=&STF_OWNER_BRANCH=adoptium%3Amaster&TIME_LIMIT=20&JVM_OPTIONS=&PARALLEL=None) - Change TARGET to run only the failed test targets.
Optional info
-------------
Failure output (captured from console output)
---------------------------------------------
```
[2022-10-02T09:31:20.245Z] variation: Mode101
[2022-10-02T09:31:20.245Z] JVM_OPTIONS: -Xdump:system:events=user
[2022-10-02T09:31:48.368Z] LT 05:31:44.806 - Test failed
[2022-10-02T09:31:48.368Z] LT Failure num. = 1
[2022-10-02T09:31:48.368Z] LT Test number = 5
[2022-10-02T09:31:48.368Z] LT Test details = 'JUnit[net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces]'
[2022-10-02T09:31:48.368Z] LT Suite number = 0
[2022-10-02T09:31:48.368Z] LT Thread number = 3
[2022-10-02T09:31:48.368Z] LT >>> Captured test output >>>
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierMotorbike(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testSupplierMotorbike(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testComparatorString(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testComparatorString(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierPerson(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testSupplierPerson(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierString(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface)
[2022-10-02T09:31:48.368Z] LT testFailure: testSupplierString(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface): Method "testSupplierString" not found
[2022-10-02T09:31:48.368Z] LT junit.framework.AssertionFailedError: Method "testSupplierString" not found
[2022-10-02T09:31:48.368Z] LT at junit.framework.Assert.fail(Assert.java:57)
[2022-10-02T09:31:48.368Z] LT at junit.framework.TestCase.fail(TestCase.java:227)
[2022-10-02T09:31:48.368Z] LT at junit.framework.TestCase.runTest(TestCase.java:169)
[2022-10-02T09:31:48.368Z] LT testFailure: testFunctionMotorbike(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface): Method "testFunctionMotorbike" not found
[2022-10-02T09:31:48.368Z] LT junit.framework.AssertionFailedError: Method "testFunctionMotorbike" not found
[2022-10-02T09:31:48.370Z] LT JUnit Test Results for: net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces
[2022-10-02T09:31:48.370Z] LT Ran : 13
[2022-10-02T09:31:48.370Z] LT Passed : 3
[2022-10-02T09:31:48.370Z] LT Failed : 10
[2022-10-02T09:31:48.370Z] LT Ignored: 0
[2022-10-02T09:31:48.370Z] LT Result : FAILED
[2022-10-02T09:32:06.881Z] LambdaLoadTest_special_J9_5m_0_FAILED
```
[15x internal grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/28316) - passed | 1.0 | JDK8 aarch64_linux LambdaLoadTest_special_J9_5m_0_FAILED net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces - Failure link
------------
From [an internal build](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_special.system_aarch64_linux_testList_0/306/)(`cent7-aarch64-6`):
```
openjdk version "1.8.0_352"
IBM Semeru Runtime Open Edition (build 1.8.0_352-b06)
Eclipse OpenJ9 VM (build openj9-0.35.0-m2b, JRE 1.8.0 Linux aarch64-64-Bit Compressed References 20221002_460 (JIT enabled, AOT enabled)
OpenJ9 - 2e24c0da7
OMR - 447afc0f0
JCL - fa9321797d based on jdk8u352-b06)
```
[Rerun in Grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?SDK_RESOURCE=upstream&TARGET=LambdaLoadTest_special_J9_5m_0&TEST_FLAG=&UPSTREAM_TEST_JOB_NAME=Test_openjdk8_j9_special.system_aarch64_linux&DOCKER_REQUIRED=false&ACTIVE_NODE_TIMEOUT=0&VENDOR_TEST_DIRS=&EXTRA_DOCKER_ARGS=&TKG_OWNER_BRANCH=adoptium%3Amaster&OPENJ9_SYSTEMTEST_OWNER_BRANCH=eclipse%3Amaster&PLATFORM=aarch64_linux&GENERATE_JOBS=false&KEEP_REPORTDIR=false&PERSONAL_BUILD=false&ADOPTOPENJDK_REPO=https%3A%2F%2Fgithub.com%2Fadoptium%2Faqa-tests.git&DOCKER_REGISTRY_URL_CREDENTIAL_ID=&LABEL=&EXTRA_OPTIONS=&CUSTOMIZED_SDK_URL=+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-jdk_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-testimage_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-debugimage_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-linux-aarch64-openj9%2F460%2Fibm-semeru-open-jre_aarch64_linux_8u352b06_openj9-0.35.0-m2b.tar.gz&BUILD_IDENTIFIER=&ADOPTOPENJDK_BRANCH=master&LIGHT_WEIGHT_CHECKOUT=false&USE_JRE=false&ARTIFACTORY_SERVER=na.artifactory.swg-devops&KEEP_WORKSPACE=false&USER_CREDENTIALS_ID=&JDK_VERSION=8&DOCKER_REGISTRY_URL=&ITERATIONS=1&VENDOR_TEST_REPOS=&JDK_REPO=https%3A%2F%2Fgithub.com%2Fibmruntimes%2Fopenj9-openjdk-jdk8&RELEASE_TAG=v0.35.0-release&OPENJ9_BRANCH=v0.35.0-release&OPENJ9_SHA=&JCK_GIT_REPO=&VENDOR_TEST_BRANCHES=&OPENJ9_REPO=https%3A%2F%2Fgithub.com%2Feclipse-openj9%2Fopenj9.git&UPSTREAM_JOB_NAME=&CLOUD_PROVIDER=&CUSTOM_TARGET=&VENDOR_TEST_SHAS=&JDK_BRANCH=v0.35.0-release&LABEL_ADDITION=&ARTIFACTORY_REPO=&ARTIFACTORY_ROOT_DIR=&UPSTREAM_TEST_JOB_NUMBER=324&DOCKERIMAGE_TAG=&JDK_IMPL=openj9&TEST_TIME=&SSH_AGENT_CREDENTIAL=83181e25-eea4-4f55-8b3e-e79615733226&AUTO_DETECT=true&SLACK_CHANNEL=&DYNAMIC_COMPILE=false&ADOPTOPENJDK_SYSTEMTEST_OWNER_BRANCH=adoptium%3Amaster&CUSTOMIZED_SDK_URL_CREDENTIAL_ID=4e18ffe7-b1b1-4272-9979-99769b68bcc2&ARCHIVE_TEST_RESULTS=false&NUM_MACHINES=&OPENJDK_SHA=&TRSS_URL=http%3A%2F%2Ftrss1.fyre.ibm.com&USE_TESTENV_PROPERTIES=false&BUILD_LIST=system&UPSTREAM_JOB_NUMBER=&STF_OWNER_BRANCH=adoptium%3Amaster&TIME_LIMIT=20&JVM_OPTIONS=&PARALLEL=None) - Change TARGET to run only the failed test targets.
Optional info
-------------
Failure output (captured from console output)
---------------------------------------------
```
[2022-10-02T09:31:20.245Z] variation: Mode101
[2022-10-02T09:31:20.245Z] JVM_OPTIONS: -Xdump:system:events=user
[2022-10-02T09:31:48.368Z] LT 05:31:44.806 - Test failed
[2022-10-02T09:31:48.368Z] LT Failure num. = 1
[2022-10-02T09:31:48.368Z] LT Test number = 5
[2022-10-02T09:31:48.368Z] LT Test details = 'JUnit[net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces]'
[2022-10-02T09:31:48.368Z] LT Suite number = 0
[2022-10-02T09:31:48.368Z] LT Thread number = 3
[2022-10-02T09:31:48.368Z] LT >>> Captured test output >>>
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierMotorbike(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testSupplierMotorbike(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testComparatorString(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testComparatorString(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierPerson(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testFinished: testSupplierPerson(net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces)
[2022-10-02T09:31:48.368Z] LT testStarted : testSupplierString(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface)
[2022-10-02T09:31:48.368Z] LT testFailure: testSupplierString(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface): Method "testSupplierString" not found
[2022-10-02T09:31:48.368Z] LT junit.framework.AssertionFailedError: Method "testSupplierString" not found
[2022-10-02T09:31:48.368Z] LT at junit.framework.Assert.fail(Assert.java:57)
[2022-10-02T09:31:48.368Z] LT at junit.framework.TestCase.fail(TestCase.java:227)
[2022-10-02T09:31:48.368Z] LT at junit.framework.TestCase.runTest(TestCase.java:169)
[2022-10-02T09:31:48.368Z] LT testFailure: testFunctionMotorbike(net.adoptopenjdk.test.lambda.TestLambdasUserDefinedInterface): Method "testFunctionMotorbike" not found
[2022-10-02T09:31:48.368Z] LT junit.framework.AssertionFailedError: Method "testFunctionMotorbike" not found
[2022-10-02T09:31:48.370Z] LT JUnit Test Results for: net.adoptopenjdk.test.lambda.TestLambdaJavaInterfaces
[2022-10-02T09:31:48.370Z] LT Ran : 13
[2022-10-02T09:31:48.370Z] LT Passed : 3
[2022-10-02T09:31:48.370Z] LT Failed : 10
[2022-10-02T09:31:48.370Z] LT Ignored: 0
[2022-10-02T09:31:48.370Z] LT Result : FAILED
[2022-10-02T09:32:06.881Z] LambdaLoadTest_special_J9_5m_0_FAILED
```
[15x internal grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/28316) - passed | non_priority | linux lambdaloadtest special failed net adoptopenjdk test lambda testlambdajavainterfaces failure link from openjdk version ibm semeru runtime open edition build eclipse vm build jre linux bit compressed references jit enabled aot enabled omr jcl based on change target to run only the failed test targets optional info failure output captured from console output variation jvm options xdump system events user lt test failed lt failure num lt test number lt test details junit lt suite number lt thread number lt captured test output lt teststarted testsuppliermotorbike net adoptopenjdk test lambda testlambdajavainterfaces lt testfinished testsuppliermotorbike net adoptopenjdk test lambda testlambdajavainterfaces lt teststarted testcomparatorstring net adoptopenjdk test lambda testlambdajavainterfaces lt testfinished testcomparatorstring net adoptopenjdk test lambda testlambdajavainterfaces lt teststarted testsupplierperson net adoptopenjdk test lambda testlambdajavainterfaces lt testfinished testsupplierperson net adoptopenjdk test lambda testlambdajavainterfaces lt teststarted testsupplierstring net adoptopenjdk test lambda testlambdasuserdefinedinterface lt testfailure testsupplierstring net adoptopenjdk test lambda testlambdasuserdefinedinterface method testsupplierstring not found lt junit framework assertionfailederror method testsupplierstring not found lt at junit framework assert fail assert java lt at junit framework testcase fail testcase java lt at junit framework testcase runtest testcase java lt testfailure testfunctionmotorbike net adoptopenjdk test lambda testlambdasuserdefinedinterface method testfunctionmotorbike not found lt junit framework assertionfailederror method testfunctionmotorbike not found lt junit test results for net adoptopenjdk test lambda testlambdajavainterfaces lt ran lt passed lt failed lt ignored lt result failed lambdaloadtest special failed passed | 0 |
129,509 | 27,504,792,001 | IssuesEvent | 2023-03-06 01:53:35 | FerretDB/FerretDB | https://api.github.com/repos/FerretDB/FerretDB | closed | Querying for an embedded field in array does not behave correctly | code/bug | ### Versions
v0.7.1-29-gaf17fa7-dirty
### What did you do?
See repro script in #1722.
### What did you expect to see?
1 document returned.
### What did you see instead?
0 documents and an assertion.
### Environment
```markdown
- OS: Ubuntu
- Architecture: x86_64
- Version: 22.10
- Go: go1.19.3 linux/amd64
- Git: 2.37.2
- Deployment: Docker
- Deployment details: 20.10.16
```
### DoD
That should be supported by the common Go filtering code. Pushdown for such filters is not in the scope.
- [ ] Add a test data item to `Composites` to support `{a: [{}, {b: 1}]}` example (object -> array -> object)
- [ ] Use `ArrayDocuments`, it has this particular case
- [ ] Run existent test and see if smth needs to be modified because of the new test data item
- [ ] Add compat tests for find, count, findAndModify, update, delete for filter `{'a.b': 1}`
- [ ] If needed, create new issue for problems irrelevant to the current issue
- [ ] Update user docs (dot notation)
- [ ] It may also fix #1828, check it
- [ ] Don't push down queries that have dot notation
| 1.0 | Querying for an embedded field in array does not behave correctly - ### Versions
v0.7.1-29-gaf17fa7-dirty
### What did you do?
See repro script in #1722.
### What did you expect to see?
1 document returned.
### What did you see instead?
0 documents and an assertion.
### Environment
```markdown
- OS: Ubuntu
- Architecture: x86_64
- Version: 22.10
- Go: go1.19.3 linux/amd64
- Git: 2.37.2
- Deployment: Docker
- Deployment details: 20.10.16
```
### DoD
That should be supported by the common Go filtering code. Pushdown for such filters is not in the scope.
- [ ] Add a test data item to `Composites` to support `{a: [{}, {b: 1}]}` example (object -> array -> object)
- [ ] Use `ArrayDocuments`, it has this particular case
- [ ] Run existent test and see if smth needs to be modified because of the new test data item
- [ ] Add compat tests for find, count, findAndModify, update, delete for filter `{'a.b': 1}`
- [ ] If needed, create new issue for problems irrelevant to the current issue
- [ ] Update user docs (dot notation)
- [ ] It may also fix #1828, check it
- [ ] Don't push down queries that have dot notation
| non_priority | querying for an embedded field in array does not behave correctly versions dirty what did you do see repro script in what did you expect to see document returned what did you see instead documents and an assertion environment markdown os ubuntu architecture version go linux git deployment docker deployment details dod that should be supported by the common go filtering code pushdown for such filters is not in the scope add a test data item to composites to support a example object array object use arraydocuments it has this particular case run existent test and see if smth needs to be modified because of the new test data item add compat tests for find count findandmodify update delete for filter a b if needed create new issue for problems irrelevant to the current issue update user docs dot notation it may also fix check it don t push down queries that have dot notation | 0 |
66,572 | 8,032,224,601 | IssuesEvent | 2018-07-28 12:53:26 | agda/agda-stdlib | https://api.github.com/repos/agda/agda-stdlib | closed | Nat-computed levels introduce conflict with non-standard natural BUILTINs | library-design | Having Nat-computed levels makes it impossible to use huge portions of the standard library while using your own version of natural numbers, because you'll get an error from the two conflicting BUILTINs for Nat.
I'd suggest putting this code elsewhere in the standard library, say in `Level.FromNat`.
See the discussion at 3fa7e0f06dba3af2c726f8742a9a50a07341f402. | 1.0 | Nat-computed levels introduce conflict with non-standard natural BUILTINs - Having Nat-computed levels makes it impossible to use huge portions of the standard library while using your own version of natural numbers, because you'll get an error from the two conflicting BUILTINs for Nat.
I'd suggest putting this code elsewhere in the standard library, say in `Level.FromNat`.
See the discussion at 3fa7e0f06dba3af2c726f8742a9a50a07341f402. | non_priority | nat computed levels introduce conflict with non standard natural builtins having nat computed levels makes it impossible to use huge portions of the standard library while using your own version of natural numbers because you ll get an error from the two conflicting builtins for nat i d suggest putting this code elsewhere in the standard library say in level fromnat see the discussion at | 0 |
46,428 | 7,255,444,760 | IssuesEvent | 2018-02-16 14:55:02 | material-components/material-components-ios | https://api.github.com/repos/material-components/material-components-ios | closed | URLs in comments are including parentheses | Triaged is:fixit type:Documentation | The ')' at the end of the line with the URL is being included in the URL (it's blue and follows if you open the URL)

| 1.0 | URLs in comments are including parentheses - The ')' at the end of the line with the URL is being included in the URL (it's blue and follows if you open the URL)

| non_priority | urls in comments are including parentheses the at the end of the line with the url is being included in the url it s blue and follows if you open the url | 0 |
332,553 | 29,484,271,556 | IssuesEvent | 2023-06-02 08:32:34 | Cookie-AutoDelete/Cookie-AutoDelete | https://api.github.com/repos/Cookie-AutoDelete/Cookie-AutoDelete | opened | [Bug] Cookie autodelate causes firefox to hang for some seconds at startup | untested bug/issue | ### Acknowledgements
- [X] I acknowledge that I have read the above items
### Describe the bug
Recently, I am seeing CAD causing firefox to hang for some seconds when the master password dialog is prompted by the browser (i.e., typically at startup). Because the extension does not seem to have been updated in the last month, I believe that something might have changed in firefox causing the CAD extension to misbehave. I am seeing this with *Firefox 113* on Manjaro Linux.
The behaviour I am observing is the following:
- start the browser
- she browser window appears together with the master password dialog
- everything is unresponsive: you cannot type the master password in the master password dialog. Even trying to close firefox at this point fails, causing the window manager (I am using KDE) to say that the program is unresponsive and proposing to force-closing it
- after some seconds (maybe 20-30), a notification from CAD appears saying that some cookies were autodeleted
- at this point the master password dialog starts accepting text, providing the master password it goes away and the browser works.
Disabling CAD from the extension list makes the browser behave correctly.
### To Reproduce
Start the browser with the CAD extension active
### Expected Behavior
The brower should start regularly. However, the browser hangs at the master password for some seconds. Then CAD shows a notification, and only after that the browser works regularly.
### Screenshots
_No response_
### System Info - Operating System (OS)
Manjaro Linux, KDE, X11
### System Info - Browser Info
Firefox 113
### System Info - CookieAutoDelete Version
3.8.2
### Additional Context
_No response_ | 1.0 | [Bug] Cookie autodelate causes firefox to hang for some seconds at startup - ### Acknowledgements
- [X] I acknowledge that I have read the above items
### Describe the bug
Recently, I am seeing CAD causing firefox to hang for some seconds when the master password dialog is prompted by the browser (i.e., typically at startup). Because the extension does not seem to have been updated in the last month, I believe that something might have changed in firefox causing the CAD extension to misbehave. I am seeing this with *Firefox 113* on Manjaro Linux.
The behaviour I am observing is the following:
- start the browser
- she browser window appears together with the master password dialog
- everything is unresponsive: you cannot type the master password in the master password dialog. Even trying to close firefox at this point fails, causing the window manager (I am using KDE) to say that the program is unresponsive and proposing to force-closing it
- after some seconds (maybe 20-30), a notification from CAD appears saying that some cookies were autodeleted
- at this point the master password dialog starts accepting text, providing the master password it goes away and the browser works.
Disabling CAD from the extension list makes the browser behave correctly.
### To Reproduce
Start the browser with the CAD extension active
### Expected Behavior
The brower should start regularly. However, the browser hangs at the master password for some seconds. Then CAD shows a notification, and only after that the browser works regularly.
### Screenshots
_No response_
### System Info - Operating System (OS)
Manjaro Linux, KDE, X11
### System Info - Browser Info
Firefox 113
### System Info - CookieAutoDelete Version
3.8.2
### Additional Context
_No response_ | non_priority | cookie autodelate causes firefox to hang for some seconds at startup acknowledgements i acknowledge that i have read the above items describe the bug recently i am seeing cad causing firefox to hang for some seconds when the master password dialog is prompted by the browser i e typically at startup because the extension does not seem to have been updated in the last month i believe that something might have changed in firefox causing the cad extension to misbehave i am seeing this with firefox on manjaro linux the behaviour i am observing is the following start the browser she browser window appears together with the master password dialog everything is unresponsive you cannot type the master password in the master password dialog even trying to close firefox at this point fails causing the window manager i am using kde to say that the program is unresponsive and proposing to force closing it after some seconds maybe a notification from cad appears saying that some cookies were autodeleted at this point the master password dialog starts accepting text providing the master password it goes away and the browser works disabling cad from the extension list makes the browser behave correctly to reproduce start the browser with the cad extension active expected behavior the brower should start regularly however the browser hangs at the master password for some seconds then cad shows a notification and only after that the browser works regularly screenshots no response system info operating system os manjaro linux kde system info browser info firefox system info cookieautodelete version additional context no response | 0 |
192,650 | 15,354,987,669 | IssuesEvent | 2021-03-01 10:30:13 | dynatrace-oss/dynatrace-monitoring-as-code | https://api.github.com/repos/dynatrace-oss/dynatrace-monitoring-as-code | closed | Update readme to indicate support for kubernetes credentials | documentation | **Is your feature request related to a problem? Please describe.**
I saw that issue #3 was closed and I tested and it works, but the readme files table does not indicate this.
**Describe the solution you'd like**
Update README section - https://github.com/dynatrace-oss/dynatrace-monitoring-as-code#supported-configuration-types-and-token-permissions
**Describe alternatives you've considered**
None
**Additional context**
None
| 1.0 | Update readme to indicate support for kubernetes credentials - **Is your feature request related to a problem? Please describe.**
I saw that issue #3 was closed and I tested and it works, but the readme files table does not indicate this.
**Describe the solution you'd like**
Update README section - https://github.com/dynatrace-oss/dynatrace-monitoring-as-code#supported-configuration-types-and-token-permissions
**Describe alternatives you've considered**
None
**Additional context**
None
| non_priority | update readme to indicate support for kubernetes credentials is your feature request related to a problem please describe i saw that issue was closed and i tested and it works but the readme files table does not indicate this describe the solution you d like update readme section describe alternatives you ve considered none additional context none | 0 |
7,458 | 6,039,369,242 | IssuesEvent | 2017-06-10 02:19:56 | RevolutionUC/revolutionuc-website | https://api.github.com/repos/RevolutionUC/revolutionuc-website | closed | Firefox: will-change memory consumption too high | medium-fix performance | Crazy performance issues at play. Needs fixed. | True | Firefox: will-change memory consumption too high - Crazy performance issues at play. Needs fixed. | non_priority | firefox will change memory consumption too high crazy performance issues at play needs fixed | 0 |
397,091 | 27,148,501,118 | IssuesEvent | 2023-02-16 22:13:07 | microsoftgraph/microsoft-graph-docs | https://api.github.com/repos/microsoftgraph/microsoft-graph-docs | closed | Add a note for maximum length of channel displayName | area: teams request: documentation MSTeams-Developer-Support doc: enhancement | Add a note to documentation about maximum length of channel displayName.
When length exceeds 50 on Graph API call, it will fail.
[Enter feedback here]
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: c06a8a7a-b0fa-8304-84f5-9ada3b3c2ea5
* Version Independent ID: 2c33f569-87dd-68be-2048-770788eae940
* Content: [Create Channel - Microsoft Graph v1.0](https://docs.microsoft.com/en-us/graph/api/channel-post?view=graph-rest-1.0&tabs=http#feedback)
* Content Source: [api-reference/v1.0/api/channel-post.md](https://github.com/microsoftgraph/microsoft-graph-docs/blob/master/api-reference/v1.0/api/channel-post.md)
* Product: **microsoft-teams**
* Technology: **microsoft-graph**
* GitHub Login: @nkramer
* Microsoft Alias: **MSGraphDocsVteam** | 1.0 | Add a note for maximum length of channel displayName - Add a note to documentation about maximum length of channel displayName.
When length exceeds 50 on Graph API call, it will fail.
[Enter feedback here]
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: c06a8a7a-b0fa-8304-84f5-9ada3b3c2ea5
* Version Independent ID: 2c33f569-87dd-68be-2048-770788eae940
* Content: [Create Channel - Microsoft Graph v1.0](https://docs.microsoft.com/en-us/graph/api/channel-post?view=graph-rest-1.0&tabs=http#feedback)
* Content Source: [api-reference/v1.0/api/channel-post.md](https://github.com/microsoftgraph/microsoft-graph-docs/blob/master/api-reference/v1.0/api/channel-post.md)
* Product: **microsoft-teams**
* Technology: **microsoft-graph**
* GitHub Login: @nkramer
* Microsoft Alias: **MSGraphDocsVteam** | non_priority | add a note for maximum length of channel displayname add a note to documentation about maximum length of channel displayname when length exceeds on graph api call it will fail document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source product microsoft teams technology microsoft graph github login nkramer microsoft alias msgraphdocsvteam | 0 |
25,773 | 25,861,975,641 | IssuesEvent | 2022-12-13 17:37:02 | Sloeber/arduino-eclipse-plugin | https://api.github.com/repos/Sloeber/arduino-eclipse-plugin | closed | Indexer in V4.4.0 is Seriously Flakey with ESP32 Code | importance: usability OS: all domain: configuration domain: regression status: fixed in nightly | With just about any ESP32 code, will usually get tons of fake “… unresolved” errors even though the code compiles totally error-free. I’ve played with all the check boxes under Window --> Preferences --> C/C++ --> Indexer. I’ve tried deleting the errors in the “Problems” tab, Clean Project, Recompile, Build All, Close Project, Close Sloeber, etc.
Then for no apparent reason, most of the fake errors might go away. Or, they may stay permanently.
Can’t find the right Kabuki Dance to make it work all the time. | True | Indexer in V4.4.0 is Seriously Flakey with ESP32 Code - With just about any ESP32 code, will usually get tons of fake “… unresolved” errors even though the code compiles totally error-free. I’ve played with all the check boxes under Window --> Preferences --> C/C++ --> Indexer. I’ve tried deleting the errors in the “Problems” tab, Clean Project, Recompile, Build All, Close Project, Close Sloeber, etc.
Then for no apparent reason, most of the fake errors might go away. Or, they may stay permanently.
Can’t find the right Kabuki Dance to make it work all the time. | non_priority | indexer in is seriously flakey with code with just about any code will usually get tons of fake “… unresolved” errors even though the code compiles totally error free i’ve played with all the check boxes under window preferences c c indexer i’ve tried deleting the errors in the “problems” tab clean project recompile build all close project close sloeber etc then for no apparent reason most of the fake errors might go away or they may stay permanently can’t find the right kabuki dance to make it work all the time | 0 |
162,609 | 12,682,897,829 | IssuesEvent | 2020-06-19 18:26:18 | BeWelcome/rox | https://api.github.com/repos/BeWelcome/rox | closed | today's update made the profile pictures disapear | bug test on beta | The update that was pushed 3 hours ago made the profile pictures disappear. Reloading the page doesn't fix it.

| 1.0 | today's update made the profile pictures disapear - The update that was pushed 3 hours ago made the profile pictures disappear. Reloading the page doesn't fix it.

| non_priority | today s update made the profile pictures disapear the update that was pushed hours ago made the profile pictures disappear reloading the page doesn t fix it | 0 |
102,450 | 12,798,918,399 | IssuesEvent | 2020-07-02 14:37:51 | minvws/nl-covid19-notification-app-website | https://api.github.com/repos/minvws/nl-covid19-notification-app-website | closed | Browser checks | techniek & design website | I only tested the design on the latest [Firefox Nightly](https://www.mozilla.org/en-US/firefox/channel/desktop/#nightly) and stable Chrome, both on Linux.
Todo:
- [X] IE11 test *(why not IE10? well IE10 doesn't by default support TLS1.2+ and TLS1.0/1.1 is deprecated, although you can manually enable it on IE 10 I still think if we deploy to a TLS1.2+ server, IE10 testing is kind of useless)*
- [ ] Edge test
- [ ] Safari test
- [ ] iPad test
- [X] iPhone test
- [ ] Android Chrome test
- [ ] other Android browser tests
- [X] [lynx](https://en.wikipedia.org/wiki/Lynx_(web_browser)) :wink: (also to get a good A11Y/screenreader feeling!)
Find out reasonable cutoff percentages for old browsers, e.g. by using the [Statcounter Browser Version Market Share Netherlands](https://gs.statcounter.com/browser-version-market-share/all/netherlands) of the last 12 months (there are CSV exports), like [caniuse](https://caniuse.com/#search=usage_note) does too.
_iPhone update (testing with iPhone 7 on iOS 13.6 beta 2): in portrait mode (only) the completed (green) timeline doesn’t cleanly stop on a circle; in landscape mode the `min-width` on the page has an unwanted effect of horizontal scroll bar_
_IE11 update: extremely fails, because [`<details>`](https://caniuse.com/#search=details) is not supported in IE11, nor Edge 12-18! I made [a 19 line CSS fallback](https://gist.github.com/bwbroersma/d4e2332ee3d95bb7bbe6cb70319a3782) that needs 3 extra HTML nodes + copy of all inner summary nodes_ | 1.0 | Browser checks - I only tested the design on the latest [Firefox Nightly](https://www.mozilla.org/en-US/firefox/channel/desktop/#nightly) and stable Chrome, both on Linux.
Todo:
- [X] IE11 test *(why not IE10? well IE10 doesn't by default support TLS1.2+ and TLS1.0/1.1 is deprecated, although you can manually enable it on IE 10 I still think if we deploy to a TLS1.2+ server, IE10 testing is kind of useless)*
- [ ] Edge test
- [ ] Safari test
- [ ] iPad test
- [X] iPhone test
- [ ] Android Chrome test
- [ ] other Android browser tests
- [X] [lynx](https://en.wikipedia.org/wiki/Lynx_(web_browser)) :wink: (also to get a good A11Y/screenreader feeling!)
Find out reasonable cutoff percentages for old browsers, e.g. by using the [Statcounter Browser Version Market Share Netherlands](https://gs.statcounter.com/browser-version-market-share/all/netherlands) of the last 12 months (there are CSV exports), like [caniuse](https://caniuse.com/#search=usage_note) does too.
_iPhone update (testing with iPhone 7 on iOS 13.6 beta 2): in portrait mode (only) the completed (green) timeline doesn’t cleanly stop on a circle; in landscape mode the `min-width` on the page has an unwanted effect of horizontal scroll bar_
_IE11 update: extremely fails, because [`<details>`](https://caniuse.com/#search=details) is not supported in IE11, nor Edge 12-18! I made [a 19 line CSS fallback](https://gist.github.com/bwbroersma/d4e2332ee3d95bb7bbe6cb70319a3782) that needs 3 extra HTML nodes + copy of all inner summary nodes_ | non_priority | browser checks i only tested the design on the latest and stable chrome both on linux todo test why not well doesn t by default support and is deprecated although you can manually enable it on ie i still think if we deploy to a server testing is kind of useless edge test safari test ipad test iphone test android chrome test other android browser tests wink also to get a good screenreader feeling find out reasonable cutoff percentages for old browsers e g by using the of the last months there are csv exports like does too iphone update testing with iphone on ios beta in portrait mode only the completed green timeline doesn’t cleanly stop on a circle in landscape mode the min width on the page has an unwanted effect of horizontal scroll bar update extremely fails because is not supported in nor edge i made that needs extra html nodes copy of all inner summary nodes | 0 |
54,967 | 11,355,366,788 | IssuesEvent | 2020-01-24 19:51:54 | happycube/ld-decode | https://api.github.com/repos/happycube/ld-decode | closed | Move ld-decode-tools logging functionality into the library | enhancement ld-decode-tools | All of the tools currently include a local copy of the logging functionality - this should be moved into the library and all tools should use the same code from there instead. | 1.0 | Move ld-decode-tools logging functionality into the library - All of the tools currently include a local copy of the logging functionality - this should be moved into the library and all tools should use the same code from there instead. | non_priority | move ld decode tools logging functionality into the library all of the tools currently include a local copy of the logging functionality this should be moved into the library and all tools should use the same code from there instead | 0 |
43,697 | 9,479,613,929 | IssuesEvent | 2019-04-20 10:12:31 | zhaoyan346a/Blog | https://api.github.com/repos/zhaoyan346a/Blog | closed | 21. Merge Two Sorted Lists | leetcode | Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
**实现代码:**
```java
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1==null&&l2==null) return null;
if(l1==null&&l2!=null) return l2;
if(l1!=null&&l2==null) return l1;
ListNode head = null,p=null;
if(l2.val<l1.val) {
head = l2;
l2 = l2.next;
}else {
head = l1;
l1 = l1.next;
}
p = head;
while(l1!=null&&l2!=null) {
if(l2.val<l1.val) {
p.next = l2;
p = l2;
l2 = l2.next;
}else {
p.next = l1;
p = l1;
l1 = l1.next;
}
}
if(l1==null) {
p.next = l2;
}
if(l2==null) {
p.next = l1;
}
return head;
}
}
``` | 1.0 | 21. Merge Two Sorted Lists - Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
**实现代码:**
```java
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1==null&&l2==null) return null;
if(l1==null&&l2!=null) return l2;
if(l1!=null&&l2==null) return l1;
ListNode head = null,p=null;
if(l2.val<l1.val) {
head = l2;
l2 = l2.next;
}else {
head = l1;
l1 = l1.next;
}
p = head;
while(l1!=null&&l2!=null) {
if(l2.val<l1.val) {
p.next = l2;
p = l2;
l2 = l2.next;
}else {
p.next = l1;
p = l1;
l1 = l1.next;
}
}
if(l1==null) {
p.next = l2;
}
if(l2==null) {
p.next = l1;
}
return head;
}
}
``` | non_priority | merge two sorted lists merge two sorted linked lists and return it as a new list the new list should be made by splicing together the nodes of the first two lists example input output 实现代码: java definition for singly linked list public class listnode int val listnode next listnode int x val x class solution public listnode mergetwolists listnode listnode if null null return null if null null return if null null return listnode head null p null if val val head next else head next p head while null null if val val p next p next else p next p next if null p next if null p next return head | 0 |
39,754 | 6,773,199,184 | IssuesEvent | 2017-10-27 04:03:33 | andy5995/rmw | https://api.github.com/repos/andy5995/rmw | closed | Reformat AUTHORS.md | beginner documentation pri:normal | @rlyshw you can add yourself to AUTHORS.md if you like.
Also, would you be interested in reformatting that file with a table like the one at
https://github.com/andy5995/mhwkb/blob/master/CONTRIBUTORS.md
| 1.0 | Reformat AUTHORS.md - @rlyshw you can add yourself to AUTHORS.md if you like.
Also, would you be interested in reformatting that file with a table like the one at
https://github.com/andy5995/mhwkb/blob/master/CONTRIBUTORS.md
| non_priority | reformat authors md rlyshw you can add yourself to authors md if you like also would you be interested in reformatting that file with a table like the one at | 0 |
43,581 | 11,268,604,166 | IssuesEvent | 2020-01-14 06:43:47 | verdaccio/ui | https://api.github.com/repos/verdaccio/ui | closed | Getting warnings regarding props in context on build | bug build enhancement | **Describe the bug**
When I do a `yarn build`on current `master`branch the webpack build gives me the following warnings:
```shell
WARNING in ./src/pages/Version/index.ts 5:0-134
"export 'DetailContextProps' was not found in './context'
@ ./src/App/AppRoute.tsx
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in ./src/muiComponents/Text/index.ts 5:0-44
"export 'TextProps' was not found in './Text'
@ ./src/components/Link/Link.tsx
@ ./src/components/Link/index.ts
@ ./src/components/Header/styles.ts
@ ./src/components/Header/Header.tsx
@ ./src/components/Header/index.ts
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in ./src/pages/Version/index.ts 5:0-134
"export 'VersionPageConsumerProps' was not found in './context'
@ ./src/App/AppRoute.tsx
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
Assets:
vendors.73c265ce133439987c63.js (578 KiB)
WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
main (694 KiB)
manifest.73c265ce133439987c63.js
0.style.b3d2b69b057068c678ca.css
vendors.73c265ce133439987c63.js
main.73c265ce133439987c63.js
```
**To Reproduce**
Steps to reproduce the behavior:
1. Run `yarn build`
**Expected behavior**
There should not be any warnings.
| 1.0 | Getting warnings regarding props in context on build - **Describe the bug**
When I do a `yarn build`on current `master`branch the webpack build gives me the following warnings:
```shell
WARNING in ./src/pages/Version/index.ts 5:0-134
"export 'DetailContextProps' was not found in './context'
@ ./src/App/AppRoute.tsx
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in ./src/muiComponents/Text/index.ts 5:0-44
"export 'TextProps' was not found in './Text'
@ ./src/components/Link/Link.tsx
@ ./src/components/Link/index.ts
@ ./src/components/Header/styles.ts
@ ./src/components/Header/Header.tsx
@ ./src/components/Header/index.ts
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in ./src/pages/Version/index.ts 5:0-134
"export 'VersionPageConsumerProps' was not found in './context'
@ ./src/App/AppRoute.tsx
@ ./src/App/App.tsx
@ ./src/App/index.ts
@ ./src/index.tsx
@ multi babel-polyfill whatwg-fetch ./src/index.tsx
WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
Assets:
vendors.73c265ce133439987c63.js (578 KiB)
WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
main (694 KiB)
manifest.73c265ce133439987c63.js
0.style.b3d2b69b057068c678ca.css
vendors.73c265ce133439987c63.js
main.73c265ce133439987c63.js
```
**To Reproduce**
Steps to reproduce the behavior:
1. Run `yarn build`
**Expected behavior**
There should not be any warnings.
| non_priority | getting warnings regarding props in context on build describe the bug when i do a yarn build on current master branch the webpack build gives me the following warnings shell warning in src pages version index ts export detailcontextprops was not found in context src app approute tsx src app app tsx src app index ts src index tsx multi babel polyfill whatwg fetch src index tsx warning in src muicomponents text index ts export textprops was not found in text src components link link tsx src components link index ts src components header styles ts src components header header tsx src components header index ts src app app tsx src app index ts src index tsx multi babel polyfill whatwg fetch src index tsx warning in src pages version index ts export versionpageconsumerprops was not found in context src app approute tsx src app app tsx src app index ts src index tsx multi babel polyfill whatwg fetch src index tsx warning in asset size limit the following asset s exceed the recommended size limit kib this can impact web performance assets vendors js kib warning in entrypoint size limit the following entrypoint s combined asset size exceeds the recommended limit kib this can impact web performance entrypoints main kib manifest js style css vendors js main js to reproduce steps to reproduce the behavior run yarn build expected behavior there should not be any warnings | 0 |
66,076 | 7,963,874,440 | IssuesEvent | 2018-07-13 19:11:13 | phetsims/equality-explorer | https://api.github.com/repos/phetsims/equality-explorer | closed | make expanded/collapsed state of Snapshots accordion box specific to Screen | design:general | Make the expanded/collapsed state of the Snapshots accordion box specific to each _Screen_, rather than to each _Scene_. This is relevant to the _Basics_ and _Solve It!_ screens.
Email discussion:
@kathy-phet:
> When I was demoing equality explorer I noticed that snapshots menu - while default closed which I like - also closed again on the first intro screen when I switched between the different “scenes” of apples and such even if I had opened it on the first scene.
>
> I found it unexpected and a bit annoying to have to reopen the snapshots panel in each of these scenes. It seems normal to have to reopen it for different screens, but on the one screen when switching between scenes it seemed like it should remain In the state I put it.
>
> Thoughts?
@pixelzoom:
> Each scene has it’s own set of snapshots and snapshots accordion box. And each accordion box has it’s own expanded/collapsed state. If you’d like all accordion boxes on a screen to share the same expanded/collapsed state, its relatively easy to do that. But FYI, in general it is not the default implementation. Amanda, if you decide to change, please create an issue.
@amanda-phet:
> I like Kathy’s suggestion to keep the state of the snapshots consistent while on a specific screen. On the Basics screen this makes sense to me. Should we do the same for the Game screen? Within a single level, the snapshots accordion box stays open or closed as you go through challenges, but when you go to a new level it starts up minimized again.
@pixelzoom:
> +1 to do the same for Solve It screen.
@kathy-phet:
> In the game screen, I would make it universal, not reset at a different level because it seems like it would be the same user.
| 1.0 | make expanded/collapsed state of Snapshots accordion box specific to Screen - Make the expanded/collapsed state of the Snapshots accordion box specific to each _Screen_, rather than to each _Scene_. This is relevant to the _Basics_ and _Solve It!_ screens.
Email discussion:
@kathy-phet:
> When I was demoing equality explorer I noticed that snapshots menu - while default closed which I like - also closed again on the first intro screen when I switched between the different “scenes” of apples and such even if I had opened it on the first scene.
>
> I found it unexpected and a bit annoying to have to reopen the snapshots panel in each of these scenes. It seems normal to have to reopen it for different screens, but on the one screen when switching between scenes it seemed like it should remain In the state I put it.
>
> Thoughts?
@pixelzoom:
> Each scene has it’s own set of snapshots and snapshots accordion box. And each accordion box has it’s own expanded/collapsed state. If you’d like all accordion boxes on a screen to share the same expanded/collapsed state, its relatively easy to do that. But FYI, in general it is not the default implementation. Amanda, if you decide to change, please create an issue.
@amanda-phet:
> I like Kathy’s suggestion to keep the state of the snapshots consistent while on a specific screen. On the Basics screen this makes sense to me. Should we do the same for the Game screen? Within a single level, the snapshots accordion box stays open or closed as you go through challenges, but when you go to a new level it starts up minimized again.
@pixelzoom:
> +1 to do the same for Solve It screen.
@kathy-phet:
> In the game screen, I would make it universal, not reset at a different level because it seems like it would be the same user.
| non_priority | make expanded collapsed state of snapshots accordion box specific to screen make the expanded collapsed state of the snapshots accordion box specific to each screen rather than to each scene this is relevant to the basics and solve it screens email discussion kathy phet when i was demoing equality explorer i noticed that snapshots menu while default closed which i like also closed again on the first intro screen when i switched between the different “scenes” of apples and such even if i had opened it on the first scene i found it unexpected and a bit annoying to have to reopen the snapshots panel in each of these scenes it seems normal to have to reopen it for different screens but on the one screen when switching between scenes it seemed like it should remain in the state i put it thoughts pixelzoom each scene has it’s own set of snapshots and snapshots accordion box and each accordion box has it’s own expanded collapsed state if you’d like all accordion boxes on a screen to share the same expanded collapsed state its relatively easy to do that but fyi in general it is not the default implementation amanda if you decide to change please create an issue amanda phet i like kathy’s suggestion to keep the state of the snapshots consistent while on a specific screen on the basics screen this makes sense to me should we do the same for the game screen within a single level the snapshots accordion box stays open or closed as you go through challenges but when you go to a new level it starts up minimized again pixelzoom to do the same for solve it screen kathy phet in the game screen i would make it universal not reset at a different level because it seems like it would be the same user | 0 |
89,955 | 10,619,231,653 | IssuesEvent | 2019-10-13 11:47:36 | ICTman1076/bins | https://api.github.com/repos/ICTman1076/bins | closed | Give me a README to be proud of! | Beginners Only documentation enhancement good first issue hacktoberfest help wanted | I haven't put a README.md here, but to help people trying to hit their Hacktoberfest goals, I'll put it out to the public!
The README should:
- Be nicely formatted
- Tell people the purpose of this project - to be a repository of Javascript bins that you can use to help with your own projects
- Include a link to https://ictman1076.github.io/bins
- Include this markdown code near the top:
```
[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/0)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/1)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/2)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/3)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/4)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/5)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/6)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/7)
```
Other than that, the stage is yours. Have fun!
*This is beginners only - if you clearly have experience with Git or GitHub, I'll close your PR.* | 1.0 | Give me a README to be proud of! - I haven't put a README.md here, but to help people trying to hit their Hacktoberfest goals, I'll put it out to the public!
The README should:
- Be nicely formatted
- Tell people the purpose of this project - to be a repository of Javascript bins that you can use to help with your own projects
- Include a link to https://ictman1076.github.io/bins
- Include this markdown code near the top:
```
[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/0)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/1)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/2)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/3)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/4)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/5)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/6)[](https://sourcerer.io/fame/ICTman1076/ICTman1076/bins/links/7)
```
Other than that, the stage is yours. Have fun!
*This is beginners only - if you clearly have experience with Git or GitHub, I'll close your PR.* | non_priority | give me a readme to be proud of i haven t put a readme md here but to help people trying to hit their hacktoberfest goals i ll put it out to the public the readme should be nicely formatted tell people the purpose of this project to be a repository of javascript bins that you can use to help with your own projects include a link to include this markdown code near the top other than that the stage is yours have fun this is beginners only if you clearly have experience with git or github i ll close your pr | 0 |
83,917 | 10,343,089,195 | IssuesEvent | 2019-09-04 08:11:17 | X-Sharp/XSharpPublic | https://api.github.com/repos/X-Sharp/XSharpPublic | closed | Change included docs for the installer | documentation enhancement setup | The installer from now on should include only the CHM help.
The PDF help should be a download on the website
We will also stop installing the VsHelp because VS no longer installs the Helpviewer component.
We can also make the VsHelp available online as a download.
| 1.0 | Change included docs for the installer - The installer from now on should include only the CHM help.
The PDF help should be a download on the website
We will also stop installing the VsHelp because VS no longer installs the Helpviewer component.
We can also make the VsHelp available online as a download.
| non_priority | change included docs for the installer the installer from now on should include only the chm help the pdf help should be a download on the website we will also stop installing the vshelp because vs no longer installs the helpviewer component we can also make the vshelp available online as a download | 0 |
96,108 | 12,097,847,183 | IssuesEvent | 2020-04-20 09:18:48 | NK-WebDev/learning-to-code | https://api.github.com/repos/NK-WebDev/learning-to-code | opened | CSS isolation | color css design | [link to the post](https://css-tricks.com/almanac/properties/i/isolation/)
The isolation property in CSS is used to prevent elements from blending with their backdrops.
```css
.module {
isolation: isolate;
}
```
It is most commonly used when mix-blend-mode has been declared on another element. Applying isolation to the element guards that element so that it does not inherit the mix-blend-mode applied to the other elements that might be behind it.
In other words, if mix-blend-mode is telling overlapping elements to blend with one another, then isolation creates an exemption on the elements where it’s applied. It’s like a way to turn off mix-blend-mode, but from a parent element rather than needing to select the element with blending directly.
# values
- isolate: Does exactly what it says. It protects the element from blending into other elements that are in the backdrop.
- auto: Resets the isolation and allows the element to blend into its backdrop.
# A Use Case
Maria Antonietta Perna, writing for SitePoint, created a demo that drives the point home particularly well. We created this graphic to help explain her demo:

# Where it doesn’t work
You might expect isolation to isolate elements when background-blend-mode is used, but that’s not the case. Background elements are already isolated by their nature in that they do not blend with the content that is behind them.
Another spot where isolation seems to be invalidated is when it is used in conjunction with translate on the same element. You might bump into this if you attempt to center an element both vertically and horizontally using absolute positioning and translate together:
```css
.module {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
isolation: isolate;
}
```
The use of translate appears to isolate the element on its own without the use isolation. | 1.0 | CSS isolation - [link to the post](https://css-tricks.com/almanac/properties/i/isolation/)
The isolation property in CSS is used to prevent elements from blending with their backdrops.
```css
.module {
isolation: isolate;
}
```
It is most commonly used when mix-blend-mode has been declared on another element. Applying isolation to the element guards that element so that it does not inherit the mix-blend-mode applied to the other elements that might be behind it.
In other words, if mix-blend-mode is telling overlapping elements to blend with one another, then isolation creates an exemption on the elements where it’s applied. It’s like a way to turn off mix-blend-mode, but from a parent element rather than needing to select the element with blending directly.
# values
- isolate: Does exactly what it says. It protects the element from blending into other elements that are in the backdrop.
- auto: Resets the isolation and allows the element to blend into its backdrop.
# A Use Case
Maria Antonietta Perna, writing for SitePoint, created a demo that drives the point home particularly well. We created this graphic to help explain her demo:

# Where it doesn’t work
You might expect isolation to isolate elements when background-blend-mode is used, but that’s not the case. Background elements are already isolated by their nature in that they do not blend with the content that is behind them.
Another spot where isolation seems to be invalidated is when it is used in conjunction with translate on the same element. You might bump into this if you attempt to center an element both vertically and horizontally using absolute positioning and translate together:
```css
.module {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
isolation: isolate;
}
```
The use of translate appears to isolate the element on its own without the use isolation. | non_priority | css isolation the isolation property in css is used to prevent elements from blending with their backdrops css module isolation isolate it is most commonly used when mix blend mode has been declared on another element applying isolation to the element guards that element so that it does not inherit the mix blend mode applied to the other elements that might be behind it in other words if mix blend mode is telling overlapping elements to blend with one another then isolation creates an exemption on the elements where it’s applied it’s like a way to turn off mix blend mode but from a parent element rather than needing to select the element with blending directly values isolate does exactly what it says it protects the element from blending into other elements that are in the backdrop auto resets the isolation and allows the element to blend into its backdrop a use case maria antonietta perna writing for sitepoint created a demo that drives the point home particularly well we created this graphic to help explain her demo where it doesn’t work you might expect isolation to isolate elements when background blend mode is used but that’s not the case background elements are already isolated by their nature in that they do not blend with the content that is behind them another spot where isolation seems to be invalidated is when it is used in conjunction with translate on the same element you might bump into this if you attempt to center an element both vertically and horizontally using absolute positioning and translate together css module position absolute top left transform translate isolation isolate the use of translate appears to isolate the element on its own without the use isolation | 0 |
18,950 | 13,488,125,997 | IssuesEvent | 2020-09-11 12:04:20 | rabbitmq/rabbitmq-website | https://api.github.com/repos/rabbitmq/rabbitmq-website | closed | Pages with table tags are still too wide on smaller screens (e.g. iPhone 6) | bug usability | The [Highly Available (Mirrored) Queues page](https://www.rabbitmq.com/ha.html) looks like this at an iphone 6 width:

The [meta-content tags in the page](https://github.com/rabbitmq/rabbitmq-website/blob/392ac1bcc5314fb462c15c2e1293638642309c27/wordpress-theme/header.php#L10) prevent the user from being able to scale it to fit, so the only way to read it is by scrolling horizontally back and forth.
It appears that the cause of this is that the `<table>`s are not styled responsively. For example, the [JMS Client page](https://www.rabbitmq.com/jms-client.html) has the same issue. | True | Pages with table tags are still too wide on smaller screens (e.g. iPhone 6) - The [Highly Available (Mirrored) Queues page](https://www.rabbitmq.com/ha.html) looks like this at an iphone 6 width:

The [meta-content tags in the page](https://github.com/rabbitmq/rabbitmq-website/blob/392ac1bcc5314fb462c15c2e1293638642309c27/wordpress-theme/header.php#L10) prevent the user from being able to scale it to fit, so the only way to read it is by scrolling horizontally back and forth.
It appears that the cause of this is that the `<table>`s are not styled responsively. For example, the [JMS Client page](https://www.rabbitmq.com/jms-client.html) has the same issue. | non_priority | pages with table tags are still too wide on smaller screens e g iphone the looks like this at an iphone width the prevent the user from being able to scale it to fit so the only way to read it is by scrolling horizontally back and forth it appears that the cause of this is that the s are not styled responsively for example the has the same issue | 0 |
28,541 | 8,177,148,272 | IssuesEvent | 2018-08-28 09:47:20 | Microsoft/vscode | https://api.github.com/repos/Microsoft/vscode | closed | Missing gulp task return value | engineering vscode-build | https://github.com/Microsoft/vscode/blob/c24122b3fc724b5acdf7e757f57639d0b5e2f85e/build/gulpfile.vscode.js#L432:L450
These two task functions should return a stream to gulp. You can use `es.merge(streams)`. | 1.0 | Missing gulp task return value - https://github.com/Microsoft/vscode/blob/c24122b3fc724b5acdf7e757f57639d0b5e2f85e/build/gulpfile.vscode.js#L432:L450
These two task functions should return a stream to gulp. You can use `es.merge(streams)`. | non_priority | missing gulp task return value these two task functions should return a stream to gulp you can use es merge streams | 0 |
46,486 | 13,055,918,455 | IssuesEvent | 2020-07-30 03:07:05 | icecube-trac/tix2 | https://api.github.com/repos/icecube-trac/tix2 | opened | [photonics-service] Broken example scripts (Trac #1271) | Incomplete Migration Migrated from Trac combo simulation defect | Migrated from https://code.icecube.wisc.edu/ticket/1271
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:35",
"description": "resources/examples/python_photorec.py needs photonics tables.\nditto for python_level1.py and test_jacobian.py\n\nresources/examples/sampler_demo.py need docs. It runs without crashing, which is great compared to many other scripts we've come across this week.\n\nNote there's a test_jacobian.py in resources/test and also one in resources/scripts. They're not the same. Need to investigate further, but no time now.\n",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1550067215093672",
"component": "combo simulation",
"summary": "[photonics-service] Broken example scripts",
"priority": "blocker",
"keywords": "",
"time": "2015-08-21T16:13:33",
"milestone": "",
"owner": "andrii.terliuk",
"type": "defect"
}
```
| 1.0 | [photonics-service] Broken example scripts (Trac #1271) - Migrated from https://code.icecube.wisc.edu/ticket/1271
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:35",
"description": "resources/examples/python_photorec.py needs photonics tables.\nditto for python_level1.py and test_jacobian.py\n\nresources/examples/sampler_demo.py need docs. It runs without crashing, which is great compared to many other scripts we've come across this week.\n\nNote there's a test_jacobian.py in resources/test and also one in resources/scripts. They're not the same. Need to investigate further, but no time now.\n",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1550067215093672",
"component": "combo simulation",
"summary": "[photonics-service] Broken example scripts",
"priority": "blocker",
"keywords": "",
"time": "2015-08-21T16:13:33",
"milestone": "",
"owner": "andrii.terliuk",
"type": "defect"
}
```
| non_priority | broken example scripts trac migrated from json status closed changetime description resources examples python photorec py needs photonics tables nditto for python py and test jacobian py n nresources examples sampler demo py need docs it runs without crashing which is great compared to many other scripts we ve come across this week n nnote there s a test jacobian py in resources test and also one in resources scripts they re not the same need to investigate further but no time now n reporter olivas cc resolution fixed ts component combo simulation summary broken example scripts priority blocker keywords time milestone owner andrii terliuk type defect | 0 |
74,688 | 9,104,975,716 | IssuesEvent | 2019-02-20 19:33:43 | Pitastic/TeacherTab | https://api.github.com/repos/Pitastic/TeacherTab | opened | Lade Spinner in Übersicht | design enhancement | Beim Aufruf der Übersicht ein Wartesymbol/Animation für die Ladezeit anzeigen (erstellt wegen #28 ) | 1.0 | Lade Spinner in Übersicht - Beim Aufruf der Übersicht ein Wartesymbol/Animation für die Ladezeit anzeigen (erstellt wegen #28 ) | non_priority | lade spinner in übersicht beim aufruf der übersicht ein wartesymbol animation für die ladezeit anzeigen erstellt wegen | 0 |
21,805 | 3,922,755,548 | IssuesEvent | 2016-04-22 08:16:07 | Microsoft/vscode | https://api.github.com/repos/Microsoft/vscode | closed | [Localization] Missing resource string across multiple sections. | i18n v-test verified | - VSCode Version: 0.10.12-alpha
- OS Version: Windows10
Steps to Reproduce:
1. Launch an app from command line with cmd> code-alpha --locale=de-DE or >code-alpha --locale=fr-FR
2. Verify localized string across different sections.
Actual: localized string is not displaying for:
**
Error messages for extension failures:**

**Command palette : **
Message for Extensions recommendation:
In German: Show extension recommendations : Anzeigen Erweiterung Empfehlungen
In Fr: Show extension recommendations : Afficher recommandations d'extension

**Pop-up: cancel button.**
Genman: cancel: stornieren
FR: Cancel: Annuler

**Debug Window's section tags : **
For German:
Watch: - Uhr , Call Stack:- Call-Stack , Breakpoints:-Haltepunkte , Debug Console:- Debug-Konsole
Cancel: -stornieren

| 1.0 | [Localization] Missing resource string across multiple sections. - - VSCode Version: 0.10.12-alpha
- OS Version: Windows10
Steps to Reproduce:
1. Launch an app from command line with cmd> code-alpha --locale=de-DE or >code-alpha --locale=fr-FR
2. Verify localized string across different sections.
Actual: localized string is not displaying for:
**
Error messages for extension failures:**

**Command palette : **
Message for Extensions recommendation:
In German: Show extension recommendations : Anzeigen Erweiterung Empfehlungen
In Fr: Show extension recommendations : Afficher recommandations d'extension

**Pop-up: cancel button.**
Genman: cancel: stornieren
FR: Cancel: Annuler

**Debug Window's section tags : **
For German:
Watch: - Uhr , Call Stack:- Call-Stack , Breakpoints:-Haltepunkte , Debug Console:- Debug-Konsole
Cancel: -stornieren

| non_priority | missing resource string across multiple sections vscode version alpha os version steps to reproduce launch an app from command line with cmd code alpha locale de de or code alpha locale fr fr verify localized string across different sections actual localized string is not displaying for error messages for extension failures command palette message for extensions recommendation in german show extension recommendations anzeigen erweiterung empfehlungen in fr show extension recommendations afficher recommandations d extension pop up cancel button genman cancel stornieren fr cancel annuler debug window s section tags for german watch uhr call stack call stack breakpoints haltepunkte debug console debug konsole cancel stornieren | 0 |
52,397 | 6,620,932,250 | IssuesEvent | 2017-09-21 17:13:54 | dwyl/dwyl-site | https://api.github.com/repos/dwyl/dwyl-site | closed | Home page not responsive | design enhancement T25m | The homepage doesn't scale well on very large or medium sized screens. A lot of the content gets squished into tiny columns or stretched into massive text lines when the window is below or above normal HD desktop. Some sections also have really minimal padding and look pretty crowded.
Not sure if this is intentional but both are really easy to fix :+1: | 1.0 | Home page not responsive - The homepage doesn't scale well on very large or medium sized screens. A lot of the content gets squished into tiny columns or stretched into massive text lines when the window is below or above normal HD desktop. Some sections also have really minimal padding and look pretty crowded.
Not sure if this is intentional but both are really easy to fix :+1: | non_priority | home page not responsive the homepage doesn t scale well on very large or medium sized screens a lot of the content gets squished into tiny columns or stretched into massive text lines when the window is below or above normal hd desktop some sections also have really minimal padding and look pretty crowded not sure if this is intentional but both are really easy to fix | 0 |
33,919 | 6,266,869,248 | IssuesEvent | 2017-07-17 05:00:01 | langfob/tzar | https://api.github.com/repos/langfob/tzar | opened | execlocalruns is the only tzar flag that works, i.e., can only do local runs | documentation note possible bug | In run_tzar(), it calls run_tzar_java_jar(), which uses the following tzar command:
```
tzarCmd = paste ("-jar", tzar_jar_path, "execlocalruns", project_path)
```
This means that even though the tzar emulation package can run tzar without doing emulation, it can only do it locally because the option "execlocalruns" is hard-coded. If this needs to be more flexible, then there has to be a way to use other options.
Not sure if this matters, since the main use of this package is for development. Once code is robust enough to be doing real runs of tzar across multiple machines (e.g., nectar), then you're probably just going to be making direct tzar calls instead of going through this package. | 1.0 | execlocalruns is the only tzar flag that works, i.e., can only do local runs - In run_tzar(), it calls run_tzar_java_jar(), which uses the following tzar command:
```
tzarCmd = paste ("-jar", tzar_jar_path, "execlocalruns", project_path)
```
This means that even though the tzar emulation package can run tzar without doing emulation, it can only do it locally because the option "execlocalruns" is hard-coded. If this needs to be more flexible, then there has to be a way to use other options.
Not sure if this matters, since the main use of this package is for development. Once code is robust enough to be doing real runs of tzar across multiple machines (e.g., nectar), then you're probably just going to be making direct tzar calls instead of going through this package. | non_priority | execlocalruns is the only tzar flag that works i e can only do local runs in run tzar it calls run tzar java jar which uses the following tzar command tzarcmd paste jar tzar jar path execlocalruns project path this means that even though the tzar emulation package can run tzar without doing emulation it can only do it locally because the option execlocalruns is hard coded if this needs to be more flexible then there has to be a way to use other options not sure if this matters since the main use of this package is for development once code is robust enough to be doing real runs of tzar across multiple machines e g nectar then you re probably just going to be making direct tzar calls instead of going through this package | 0 |
1,142 | 28,967,298,776 | IssuesEvent | 2023-05-10 08:47:48 | Swiss-Polar-Institute/project-application | https://api.github.com/repos/Swiss-Polar-Institute/project-application | closed | group dependent on person position rather than organisation | people | A person (postition) can add a number of organisations to which they belong, but only one group / lab. It is possible that they belong to a group / lab at each organisation, therefore group / lab would need to be part of the person position organisation, rather than the person position. | 1.0 | group dependent on person position rather than organisation - A person (postition) can add a number of organisations to which they belong, but only one group / lab. It is possible that they belong to a group / lab at each organisation, therefore group / lab would need to be part of the person position organisation, rather than the person position. | non_priority | group dependent on person position rather than organisation a person postition can add a number of organisations to which they belong but only one group lab it is possible that they belong to a group lab at each organisation therefore group lab would need to be part of the person position organisation rather than the person position | 0 |
112,267 | 17,085,755,872 | IssuesEvent | 2021-07-08 11:36:58 | OxalisCommunity/Oxalis-AS4 | https://api.github.com/repos/OxalisCommunity/Oxalis-AS4 | opened | Upgrade org.apache.cxf:cxf-rt-transports-http to version 3.3.8, 3.4.1 or higher to get rid of security vulnerablity [CVE-2020-13954, CWE-79] | JDK version and library version upgrades Pri/H Security Size/M | SAST tool report vulnerability for library : cxf-rt-transports-http
network.oxalis:oxalis-as4@5.0.1
+---org.apache.cxf:cxf-rt-transports-http@3.3.6
Library "org.apache.cxf:cxf-rt-transports-http" need to upgrade to version 3.3.8, 3.4.1 or higher | True | Upgrade org.apache.cxf:cxf-rt-transports-http to version 3.3.8, 3.4.1 or higher to get rid of security vulnerablity [CVE-2020-13954, CWE-79] - SAST tool report vulnerability for library : cxf-rt-transports-http
network.oxalis:oxalis-as4@5.0.1
+---org.apache.cxf:cxf-rt-transports-http@3.3.6
Library "org.apache.cxf:cxf-rt-transports-http" need to upgrade to version 3.3.8, 3.4.1 or higher | non_priority | upgrade org apache cxf cxf rt transports http to version or higher to get rid of security vulnerablity sast tool report vulnerability for library cxf rt transports http network oxalis oxalis org apache cxf cxf rt transports http library org apache cxf cxf rt transports http need to upgrade to version or higher | 0 |
54,832 | 13,930,637,246 | IssuesEvent | 2020-10-22 03:00:10 | jtimberlake/apollo | https://api.github.com/repos/jtimberlake/apollo | opened | CVE-2019-6286 (Medium) detected in node-sass-4.14.1.tgz, node-sassv4.13.1 | security vulnerability | ## CVE-2019-6286 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.14.1.tgz</b>, <b>node-sassv4.13.1</b></p></summary>
<p>
<details><summary><b>node-sass-4.14.1.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz</a></p>
<p>Path to dependency file: apollo/modules/dreamview/frontend/package.json</p>
<p>Path to vulnerable library: apollo/modules/dreamview/frontend/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- :x: **node-sass-4.14.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/jtimberlake/apollo/commit/87080e19ea37501aaa61352468e295bd40aacb20">87080e19ea37501aaa61352468e295bd40aacb20</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::skip_over_scopes in prelexer.hpp when called from Sass::Parser::parse_import(), a similar issue to CVE-2018-11693.
<p>Publish Date: 2019-01-14
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6286>CVE-2019-6286</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6286">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6286</a></p>
<p>Release Date: 2019-08-06</p>
<p>Fix Resolution: LibSass - 3.6.0</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.14.1","isTransitiveDependency":false,"dependencyTree":"node-sass:4.14.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"LibSass - 3.6.0"}],"vulnerabilityIdentifier":"CVE-2019-6286","vulnerabilityDetails":"In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::skip_over_scopes in prelexer.hpp when called from Sass::Parser::parse_import(), a similar issue to CVE-2018-11693.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6286","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2019-6286 (Medium) detected in node-sass-4.14.1.tgz, node-sassv4.13.1 - ## CVE-2019-6286 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.14.1.tgz</b>, <b>node-sassv4.13.1</b></p></summary>
<p>
<details><summary><b>node-sass-4.14.1.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz</a></p>
<p>Path to dependency file: apollo/modules/dreamview/frontend/package.json</p>
<p>Path to vulnerable library: apollo/modules/dreamview/frontend/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- :x: **node-sass-4.14.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/jtimberlake/apollo/commit/87080e19ea37501aaa61352468e295bd40aacb20">87080e19ea37501aaa61352468e295bd40aacb20</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::skip_over_scopes in prelexer.hpp when called from Sass::Parser::parse_import(), a similar issue to CVE-2018-11693.
<p>Publish Date: 2019-01-14
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6286>CVE-2019-6286</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6286">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6286</a></p>
<p>Release Date: 2019-08-06</p>
<p>Fix Resolution: LibSass - 3.6.0</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.14.1","isTransitiveDependency":false,"dependencyTree":"node-sass:4.14.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"LibSass - 3.6.0"}],"vulnerabilityIdentifier":"CVE-2019-6286","vulnerabilityDetails":"In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::skip_over_scopes in prelexer.hpp when called from Sass::Parser::parse_import(), a similar issue to CVE-2018-11693.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6286","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_priority | cve medium detected in node sass tgz node cve medium severity vulnerability vulnerable libraries node sass tgz node node sass tgz wrapper around libsass library home page a href path to dependency file apollo modules dreamview frontend package json path to vulnerable library apollo modules dreamview frontend node modules node sass package json dependency hierarchy x node sass tgz vulnerable library found in head commit a href found in base branch master vulnerability details in libsass a heap based buffer over read exists in sass prelexer skip over scopes in prelexer hpp when called from sass parser parse import a similar issue to cve publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution libsass check this box to open an automated fix pr isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails in libsass a heap based buffer over read exists in sass prelexer skip over scopes in prelexer hpp when called from sass parser parse import a similar issue to cve vulnerabilityurl | 0 |
4,572 | 3,872,477,357 | IssuesEvent | 2016-04-11 14:01:37 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 22513959: Xcode-beta (7A192o): Refactor does not take into account casting, ObjC generics and __kindof class uses | classification:ui/usability reproducible:always status:open | #### Description
Summary:
Xcode 7 introduces ObjC generics and __kindof, however the refactoring tools have not been updated with support. Result is, when renaming a class and compiling, there are compilation errors on casting, generics, __kindof.
Steps to Reproduce:
Create a class
Cast an instance of an object to that class.
Declare an NSArray of __kindof that class objects.
Rename the class
Expected Results:
All uses of the class name should be renamed to the new name
Actual Results:
Some cases are handled, while others are not.
Regression:
This happens on all Xcode 7 betas
Notes:
N/A
-
Product Version: Xcode-beta (7A192o)
Created: 2015-09-01T05:59:52.816410
Originated: 2015-09-01T08:59:00
Open Radar Link: http://www.openradar.me/22513959 | True | 22513959: Xcode-beta (7A192o): Refactor does not take into account casting, ObjC generics and __kindof class uses - #### Description
Summary:
Xcode 7 introduces ObjC generics and __kindof, however the refactoring tools have not been updated with support. Result is, when renaming a class and compiling, there are compilation errors on casting, generics, __kindof.
Steps to Reproduce:
Create a class
Cast an instance of an object to that class.
Declare an NSArray of __kindof that class objects.
Rename the class
Expected Results:
All uses of the class name should be renamed to the new name
Actual Results:
Some cases are handled, while others are not.
Regression:
This happens on all Xcode 7 betas
Notes:
N/A
-
Product Version: Xcode-beta (7A192o)
Created: 2015-09-01T05:59:52.816410
Originated: 2015-09-01T08:59:00
Open Radar Link: http://www.openradar.me/22513959 | non_priority | xcode beta refactor does not take into account casting objc generics and kindof class uses description summary xcode introduces objc generics and kindof however the refactoring tools have not been updated with support result is when renaming a class and compiling there are compilation errors on casting generics kindof steps to reproduce create a class cast an instance of an object to that class declare an nsarray of kindof that class objects rename the class expected results all uses of the class name should be renamed to the new name actual results some cases are handled while others are not regression this happens on all xcode betas notes n a product version xcode beta created originated open radar link | 0 |
110,827 | 16,990,989,426 | IssuesEvent | 2021-06-30 20:26:45 | joshnewton31080/angular | https://api.github.com/repos/joshnewton31080/angular | opened | WS-2018-0015 (Medium) detected in angular-1.5.11.tgz | security vulnerability | ## WS-2018-0015 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-1.5.11.tgz</b></p></summary>
<p>HTML enhanced for web apps</p>
<p>Library home page: <a href="https://registry.npmjs.org/angular/-/angular-1.5.11.tgz">https://registry.npmjs.org/angular/-/angular-1.5.11.tgz</a></p>
<p>Path to dependency file: angular/package.json</p>
<p>Path to vulnerable library: angular/node_modules/angular-1.5@npm:angular</p>
<p>
Dependency Hierarchy:
- :x: **angular-1.5.11.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/joshnewton31080/angular/commit/0754f95d8686bc67f2d9e82ca6b2652dc6fd0bf3">0754f95d8686bc67f2d9e82ca6b2652dc6fd0bf3</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
On Firefox there is a XSS vulnerability in case a malicious attacker can write into the `xml:base` attribute on an SVG anchor.
<p>Publish Date: 2018-01-06
<p>URL: <a href=https://github.com/angular/angular.js/commit/b9ef6585e10477fbbf912a971fe0b390bca692a6>WS-2018-0015</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/RetireJS/retire.js/commit/ed3512729af76583b28611a4a1b6a8797d7f074c">https://github.com/RetireJS/retire.js/commit/ed3512729af76583b28611a4a1b6a8797d7f074c</a></p>
<p>Release Date: 2018-01-06</p>
<p>Fix Resolution: 1.6.9</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"angular","packageVersion":"1.5.11","packageFilePaths":["/package.json"],"isTransitiveDependency":false,"dependencyTree":"angular:1.5.11","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.6.9"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2018-0015","vulnerabilityDetails":"On Firefox there is a XSS vulnerability in case a malicious attacker can write into the `xml:base` attribute on an SVG anchor.","vulnerabilityUrl":"https://github.com/angular/angular.js/commit/b9ef6585e10477fbbf912a971fe0b390bca692a6","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | WS-2018-0015 (Medium) detected in angular-1.5.11.tgz - ## WS-2018-0015 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-1.5.11.tgz</b></p></summary>
<p>HTML enhanced for web apps</p>
<p>Library home page: <a href="https://registry.npmjs.org/angular/-/angular-1.5.11.tgz">https://registry.npmjs.org/angular/-/angular-1.5.11.tgz</a></p>
<p>Path to dependency file: angular/package.json</p>
<p>Path to vulnerable library: angular/node_modules/angular-1.5@npm:angular</p>
<p>
Dependency Hierarchy:
- :x: **angular-1.5.11.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/joshnewton31080/angular/commit/0754f95d8686bc67f2d9e82ca6b2652dc6fd0bf3">0754f95d8686bc67f2d9e82ca6b2652dc6fd0bf3</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
On Firefox there is a XSS vulnerability in case a malicious attacker can write into the `xml:base` attribute on an SVG anchor.
<p>Publish Date: 2018-01-06
<p>URL: <a href=https://github.com/angular/angular.js/commit/b9ef6585e10477fbbf912a971fe0b390bca692a6>WS-2018-0015</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/RetireJS/retire.js/commit/ed3512729af76583b28611a4a1b6a8797d7f074c">https://github.com/RetireJS/retire.js/commit/ed3512729af76583b28611a4a1b6a8797d7f074c</a></p>
<p>Release Date: 2018-01-06</p>
<p>Fix Resolution: 1.6.9</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"angular","packageVersion":"1.5.11","packageFilePaths":["/package.json"],"isTransitiveDependency":false,"dependencyTree":"angular:1.5.11","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.6.9"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2018-0015","vulnerabilityDetails":"On Firefox there is a XSS vulnerability in case a malicious attacker can write into the `xml:base` attribute on an SVG anchor.","vulnerabilityUrl":"https://github.com/angular/angular.js/commit/b9ef6585e10477fbbf912a971fe0b390bca692a6","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_priority | ws medium detected in angular tgz ws medium severity vulnerability vulnerable library angular tgz html enhanced for web apps library home page a href path to dependency file angular package json path to vulnerable library angular node modules angular npm angular dependency hierarchy x angular tgz vulnerable library found in head commit a href found in base branch master vulnerability details on firefox there is a xss vulnerability in case a malicious attacker can write into the xml base attribute on an svg anchor publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree angular isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier ws vulnerabilitydetails on firefox there is a xss vulnerability in case a malicious attacker can write into the xml base attribute on an svg anchor vulnerabilityurl | 0 |
180,042 | 13,916,490,707 | IssuesEvent | 2020-10-21 03:29:03 | thesofproject/sof-test | https://api.github.com/repos/thesofproject/sof-test | opened | ext_manifest: add new test cases for extmanifest | new test case | Now ext manifest is enabled and used in FW and Linux driver.
Need some test case to check them.
- memory usage: https://github.com/thesofproject/linux/pull/2459 | 1.0 | ext_manifest: add new test cases for extmanifest - Now ext manifest is enabled and used in FW and Linux driver.
Need some test case to check them.
- memory usage: https://github.com/thesofproject/linux/pull/2459 | non_priority | ext manifest add new test cases for extmanifest now ext manifest is enabled and used in fw and linux driver need some test case to check them memory usage | 0 |
336,073 | 24,486,845,191 | IssuesEvent | 2022-10-09 14:55:30 | cansincomert/swe573 | https://api.github.com/repos/cansincomert/swe573 | closed | Create Wiki pages for repository | documentation | Create a home page to keep SWE 573 repository informing.
Create a research page to document the following research you will perform | 1.0 | Create Wiki pages for repository - Create a home page to keep SWE 573 repository informing.
Create a research page to document the following research you will perform | non_priority | create wiki pages for repository create a home page to keep swe repository informing create a research page to document the following research you will perform | 0 |
61,439 | 7,469,005,263 | IssuesEvent | 2018-04-02 21:02:55 | PowerShell/PowerShell | https://api.github.com/repos/PowerShell/PowerShell | closed | Trap statement doesn't take effect when dot-sourced | Issue-Discussion Resolution-By Design | Defining a `Trap` statement via a dot-sourced script does not work, which is surprising, given that dot-sourcing<sup>[1]</sup> is generally equivalent to including the referenced script's content directly in a script.
Steps to reproduce
------------------
Setup:
Content of `t1.ps1`:
```powershell
. ./t2.ps1
1 / 0
'after'
```
Content of `t2.ps1`:
```powershell
Trap { 'Shame.'; exit 1 }
```
Command that reproduces the symptom:
```powershell
> ./t1.ps1`
```
Expected behavior
-----------------
```none
Shame.
```
The `Trap` handler should take effect, output the specified string, and exit with exit code `1`.
Actual behavior
---------------
```none
Attempted to divide by zero.
At /Users/jdoe/t1.ps1:5 char:1
+ 1 / 0
+ ~~~~~
+ CategoryInfo : NotSpecified: (:) [], RuntimeException
+ FullyQualifiedErrorId : RuntimeException
after
```
The `Trap` handler was ignored altogether, due to being dot-sourced rather than being included directly in the script.
Environment data
----------------
<!-- provide the output of $PSVersionTable -->
```powershell
PowerShell Core v6.0.0-beta.9 on macOS 10.13
PowerShell Core v6.0.0-beta.9 on Ubuntu 16.04.3 LTS
PowerShell Core v6.0.0-beta.9 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)
Windows PowerShell v5.1.15063.674 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)
```
---
<sup>[1] Nomenclature quibble: Why is `.` called the _dot_-sourcing operator, and not just _sourcing_ operator? Contrast this with `&`, the _call operator_, which is mercifully not called the "ampersand call operator". Including the somewhat arbitrary _syntactic form_ in the name seems unnecessary.</sup>
| 1.0 | Trap statement doesn't take effect when dot-sourced - Defining a `Trap` statement via a dot-sourced script does not work, which is surprising, given that dot-sourcing<sup>[1]</sup> is generally equivalent to including the referenced script's content directly in a script.
Steps to reproduce
------------------
Setup:
Content of `t1.ps1`:
```powershell
. ./t2.ps1
1 / 0
'after'
```
Content of `t2.ps1`:
```powershell
Trap { 'Shame.'; exit 1 }
```
Command that reproduces the symptom:
```powershell
> ./t1.ps1`
```
Expected behavior
-----------------
```none
Shame.
```
The `Trap` handler should take effect, output the specified string, and exit with exit code `1`.
Actual behavior
---------------
```none
Attempted to divide by zero.
At /Users/jdoe/t1.ps1:5 char:1
+ 1 / 0
+ ~~~~~
+ CategoryInfo : NotSpecified: (:) [], RuntimeException
+ FullyQualifiedErrorId : RuntimeException
after
```
The `Trap` handler was ignored altogether, due to being dot-sourced rather than being included directly in the script.
Environment data
----------------
<!-- provide the output of $PSVersionTable -->
```powershell
PowerShell Core v6.0.0-beta.9 on macOS 10.13
PowerShell Core v6.0.0-beta.9 on Ubuntu 16.04.3 LTS
PowerShell Core v6.0.0-beta.9 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)
Windows PowerShell v5.1.15063.674 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)
```
---
<sup>[1] Nomenclature quibble: Why is `.` called the _dot_-sourcing operator, and not just _sourcing_ operator? Contrast this with `&`, the _call operator_, which is mercifully not called the "ampersand call operator". Including the somewhat arbitrary _syntactic form_ in the name seems unnecessary.</sup>
| non_priority | trap statement doesn t take effect when dot sourced defining a trap statement via a dot sourced script does not work which is surprising given that dot sourcing is generally equivalent to including the referenced script s content directly in a script steps to reproduce setup content of powershell after content of powershell trap shame exit command that reproduces the symptom powershell expected behavior none shame the trap handler should take effect output the specified string and exit with exit code actual behavior none attempted to divide by zero at users jdoe char categoryinfo notspecified runtimeexception fullyqualifiederrorid runtimeexception after the trap handler was ignored altogether due to being dot sourced rather than being included directly in the script environment data powershell powershell core beta on macos powershell core beta on ubuntu lts powershell core beta on microsoft windows pro bit windows powershell on microsoft windows pro bit nomenclature quibble why is called the dot sourcing operator and not just sourcing operator contrast this with the call operator which is mercifully not called the ampersand call operator including the somewhat arbitrary syntactic form in the name seems unnecessary | 0 |
37,721 | 15,364,326,156 | IssuesEvent | 2021-03-01 21:50:39 | elastic/kibana | https://api.github.com/repos/elastic/kibana | closed | Failing test: Jest Tests.x-pack/plugins/reporting/server/routes - GET /api/reporting/jobs/download successful downloads when a known job-type is complete | Feature:Reporting Team:AppServices Team:Reporting Services failed-test | A test failed on a tracked branch
```
Error: thrown: "Exceeded timeout of 5000 ms for a test.
Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test."
at /dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:254:5
at _dispatchDescribe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:67:26)
at describe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:30:5)
at /dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:237:3
at _dispatchDescribe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:67:26)
at describe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:30:5)
at Object.<anonymous> (/dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:20:1)
at Runtime._execModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:1299:24)
at Runtime._loadModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:898:12)
at Runtime.requireModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:746:10)
at jestAdapter (/dev/shm/workspace/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:106:13)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
at runTestInternal (/dev/shm/workspace/kibana/node_modules/jest-runner/build/runTest.js:380:16)
at runTest (/dev/shm/workspace/kibana/node_modules/jest-runner/build/runTest.js:472:34)
at Object.worker (/dev/shm/workspace/kibana/node_modules/jest-runner/build/testWorker.js:133:12)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/11402/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.x-pack/plugins/reporting/server/routes","test.name":"GET /api/reporting/jobs/download successful downloads when a known job-type is complete","test.failCount":1}} --> | 2.0 | Failing test: Jest Tests.x-pack/plugins/reporting/server/routes - GET /api/reporting/jobs/download successful downloads when a known job-type is complete - A test failed on a tracked branch
```
Error: thrown: "Exceeded timeout of 5000 ms for a test.
Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test."
at /dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:254:5
at _dispatchDescribe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:67:26)
at describe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:30:5)
at /dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:237:3
at _dispatchDescribe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:67:26)
at describe (/dev/shm/workspace/kibana/node_modules/jest-circus/build/index.js:30:5)
at Object.<anonymous> (/dev/shm/workspace/parallel/6/kibana/x-pack/plugins/reporting/server/routes/jobs.test.ts:20:1)
at Runtime._execModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:1299:24)
at Runtime._loadModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:898:12)
at Runtime.requireModule (/dev/shm/workspace/kibana/node_modules/jest-runtime/build/index.js:746:10)
at jestAdapter (/dev/shm/workspace/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:106:13)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
at runTestInternal (/dev/shm/workspace/kibana/node_modules/jest-runner/build/runTest.js:380:16)
at runTest (/dev/shm/workspace/kibana/node_modules/jest-runner/build/runTest.js:472:34)
at Object.worker (/dev/shm/workspace/kibana/node_modules/jest-runner/build/testWorker.js:133:12)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/11402/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.x-pack/plugins/reporting/server/routes","test.name":"GET /api/reporting/jobs/download successful downloads when a known job-type is complete","test.failCount":1}} --> | non_priority | failing test jest tests x pack plugins reporting server routes get api reporting jobs download successful downloads when a known job type is complete a test failed on a tracked branch error thrown exceeded timeout of ms for a test use jest settimeout newtimeout to increase the timeout value if this is a long running test at dev shm workspace parallel kibana x pack plugins reporting server routes jobs test ts at dispatchdescribe dev shm workspace kibana node modules jest circus build index js at describe dev shm workspace kibana node modules jest circus build index js at dev shm workspace parallel kibana x pack plugins reporting server routes jobs test ts at dispatchdescribe dev shm workspace kibana node modules jest circus build index js at describe dev shm workspace kibana node modules jest circus build index js at object dev shm workspace parallel kibana x pack plugins reporting server routes jobs test ts at runtime execmodule dev shm workspace kibana node modules jest runtime build index js at runtime loadmodule dev shm workspace kibana node modules jest runtime build index js at runtime requiremodule dev shm workspace kibana node modules jest runtime build index js at jestadapter dev shm workspace kibana node modules jest circus build legacy code todo rewrite jestadapter js at processticksandrejections internal process task queues js at runtestinternal dev shm workspace kibana node modules jest runner build runtest js at runtest dev shm workspace kibana node modules jest runner build runtest js at object worker dev shm workspace kibana node modules jest runner build testworker js first failure | 0 |
178,528 | 13,782,786,180 | IssuesEvent | 2020-10-08 18:10:58 | aristanetworks/ansible-cvp | https://api.github.com/repos/aristanetworks/ansible-cvp | closed | When using cv_device and applying a configlet that does not exist to a device, there is no error message | module: cv_device state: accepted status: testing type: enhancement | ## Issue Type: Enhancement
## Summary
When using cv_device and applying a configlet that does not exist to a device, it will apply the configlets that exist to the device as expected but is there is no error message to warn about the fact that one of the configlet does not exist.
## Role or Module Name
__Module name:__ `cv_device`
## Playbook used for the test
In the playbook below the configlet named Test did not exist, yet the playbook executed successfully.
```yaml
CVP_DEVICES:
leaf1:
name: 'leaf1'
parentContainerName: Leaf
configlets:
- 'Leaf1-BGP-Lab'
- 'BaseIPv4_Leaf1'
- 'Test'
``` | 1.0 | When using cv_device and applying a configlet that does not exist to a device, there is no error message - ## Issue Type: Enhancement
## Summary
When using cv_device and applying a configlet that does not exist to a device, it will apply the configlets that exist to the device as expected but is there is no error message to warn about the fact that one of the configlet does not exist.
## Role or Module Name
__Module name:__ `cv_device`
## Playbook used for the test
In the playbook below the configlet named Test did not exist, yet the playbook executed successfully.
```yaml
CVP_DEVICES:
leaf1:
name: 'leaf1'
parentContainerName: Leaf
configlets:
- 'Leaf1-BGP-Lab'
- 'BaseIPv4_Leaf1'
- 'Test'
``` | non_priority | when using cv device and applying a configlet that does not exist to a device there is no error message issue type enhancement summary when using cv device and applying a configlet that does not exist to a device it will apply the configlets that exist to the device as expected but is there is no error message to warn about the fact that one of the configlet does not exist role or module name module name cv device playbook used for the test in the playbook below the configlet named test did not exist yet the playbook executed successfully yaml cvp devices name parentcontainername leaf configlets bgp lab test | 0 |
24,753 | 4,107,751,909 | IssuesEvent | 2016-06-06 14:05:34 | NativeScript/nativescript-cli | https://api.github.com/repos/NativeScript/nativescript-cli | closed | tns livesync ios does not work with CLI 1.7.1. | 2 - Ready For Test livesync | tns livesync ios does not work with CLI 1.7.1.
Th error message:
"Error Command failed: /bin/sh -c killall sampleGroceries.app
No matching processes belonging to you were found
while executing killall sampleGroceries.app "
When i kill sampleGroceries myself it works,but kill sampleGroceries.app doesn't work
because thats not the name of the process,its sampleGroceries.
killall "nameofapp".app shoud be killall "nameofapp"
I use mac os x 10.9.5 when running it. | 1.0 | tns livesync ios does not work with CLI 1.7.1. - tns livesync ios does not work with CLI 1.7.1.
Th error message:
"Error Command failed: /bin/sh -c killall sampleGroceries.app
No matching processes belonging to you were found
while executing killall sampleGroceries.app "
When i kill sampleGroceries myself it works,but kill sampleGroceries.app doesn't work
because thats not the name of the process,its sampleGroceries.
killall "nameofapp".app shoud be killall "nameofapp"
I use mac os x 10.9.5 when running it. | non_priority | tns livesync ios does not work with cli tns livesync ios does not work with cli th error message error command failed bin sh c killall samplegroceries app no matching processes belonging to you were found while executing killall samplegroceries app when i kill samplegroceries myself it works but kill samplegroceries app doesn t work because thats not the name of the process its samplegroceries killall nameofapp app shoud be killall nameofapp i use mac os x when running it | 0 |
36,401 | 14,987,781,737 | IssuesEvent | 2021-01-28 23:39:45 | Azure/azure-rest-api-specs | https://api.github.com/repos/Azure/azure-rest-api-specs | closed | Specs do not seem to include common storage services | Service Attention Storage customer-reported question | I'm trying to integrate these specs into an [HTTP debugging tool](https://httptoolkit.tech), to automatically do request validation & documentation by comparing the spec definitions to real HTTP requests.
In theory that all works great, but on close inspection I'm struggling to find the specs for many of the common operations in the Azure docs that I'd like more detail on. For example:
* List containers on the Blob service: https://docs.microsoft.com/en-us/rest/api/storageservices/list-containers2
* The URL should be `https://<account-name>.blob.core.windows.net/?comp=list`
* I can't find a single spec that specifies anything like that as a `host` or `x-ms-parameterized-host`
* Putting a message on a queue with the Queue Service: https://docs.microsoft.com/en-us/rest/api/storageservices/put-message
* The URL should be `https://<account-name>.queue.core.windows.net/<queue-name>/messages`
* I can't find any specs with any kind of host like this, or containing `/messages`
* I can't find any specs refering to the `visibilitytimeout` param, or the `QueueMessagesList` type of the response
Do specs for these operations exist somewhere? I've given it a good search, and I'm really surprised I can't find them, given there's so many other services that are documented here, and I would've expected these services to be very commonly used. What am I missing? | 1.0 | Specs do not seem to include common storage services - I'm trying to integrate these specs into an [HTTP debugging tool](https://httptoolkit.tech), to automatically do request validation & documentation by comparing the spec definitions to real HTTP requests.
In theory that all works great, but on close inspection I'm struggling to find the specs for many of the common operations in the Azure docs that I'd like more detail on. For example:
* List containers on the Blob service: https://docs.microsoft.com/en-us/rest/api/storageservices/list-containers2
* The URL should be `https://<account-name>.blob.core.windows.net/?comp=list`
* I can't find a single spec that specifies anything like that as a `host` or `x-ms-parameterized-host`
* Putting a message on a queue with the Queue Service: https://docs.microsoft.com/en-us/rest/api/storageservices/put-message
* The URL should be `https://<account-name>.queue.core.windows.net/<queue-name>/messages`
* I can't find any specs with any kind of host like this, or containing `/messages`
* I can't find any specs refering to the `visibilitytimeout` param, or the `QueueMessagesList` type of the response
Do specs for these operations exist somewhere? I've given it a good search, and I'm really surprised I can't find them, given there's so many other services that are documented here, and I would've expected these services to be very commonly used. What am I missing? | non_priority | specs do not seem to include common storage services i m trying to integrate these specs into an to automatically do request validation documentation by comparing the spec definitions to real http requests in theory that all works great but on close inspection i m struggling to find the specs for many of the common operations in the azure docs that i d like more detail on for example list containers on the blob service the url should be i can t find a single spec that specifies anything like that as a host or x ms parameterized host putting a message on a queue with the queue service the url should be i can t find any specs with any kind of host like this or containing messages i can t find any specs refering to the visibilitytimeout param or the queuemessageslist type of the response do specs for these operations exist somewhere i ve given it a good search and i m really surprised i can t find them given there s so many other services that are documented here and i would ve expected these services to be very commonly used what am i missing | 0 |
89,364 | 17,868,211,803 | IssuesEvent | 2021-09-06 12:12:15 | informalsystems/ibc-rs | https://api.github.com/repos/informalsystems/ibc-rs | closed | Make more use of generic types | relayer code-hygiene | ## Summary
We should make more using of generic types instead of dynamic traits to abstract over the implementation. For example, instead of a function like fn handler(chain1: Box<dyn ChainHandler>, chain2: Box<dyn ChainHandler>), it could instead be written as fn handle<Chain1: ChainHandler, Chain2: ChainHandler>(chain1: Chain1, chain2: Chain2). The chain implementations could then have associated types such as Height, Connection, etc. This would make it less likely to accidentally mix up the values when forwarding them from one chain to another.
(copied from @soareschen's original proposal [here](https://github.com/informalsystems/ibc-rs/discussions/1055#discussioncomment-839782))
____
#### For Admin Use
- [ ] Not duplicate issue
- [ ] Appropriate labels applied
- [ ] Appropriate milestone (priority) applied
- [ ] Appropriate contributors tagged
- [ ] Contributor assigned/self-assigned
| 1.0 | Make more use of generic types - ## Summary
We should make more using of generic types instead of dynamic traits to abstract over the implementation. For example, instead of a function like fn handler(chain1: Box<dyn ChainHandler>, chain2: Box<dyn ChainHandler>), it could instead be written as fn handle<Chain1: ChainHandler, Chain2: ChainHandler>(chain1: Chain1, chain2: Chain2). The chain implementations could then have associated types such as Height, Connection, etc. This would make it less likely to accidentally mix up the values when forwarding them from one chain to another.
(copied from @soareschen's original proposal [here](https://github.com/informalsystems/ibc-rs/discussions/1055#discussioncomment-839782))
____
#### For Admin Use
- [ ] Not duplicate issue
- [ ] Appropriate labels applied
- [ ] Appropriate milestone (priority) applied
- [ ] Appropriate contributors tagged
- [ ] Contributor assigned/self-assigned
| non_priority | make more use of generic types summary we should make more using of generic types instead of dynamic traits to abstract over the implementation for example instead of a function like fn handler box box it could instead be written as fn handle the chain implementations could then have associated types such as height connection etc this would make it less likely to accidentally mix up the values when forwarding them from one chain to another copied from soareschen s original proposal for admin use not duplicate issue appropriate labels applied appropriate milestone priority applied appropriate contributors tagged contributor assigned self assigned | 0 |
147,092 | 23,163,615,143 | IssuesEvent | 2022-07-29 20:53:13 | Facepunch/sbox-issues | https://api.github.com/repos/Facepunch/sbox-issues | opened | TypeLibrary: Allow finding non-static methods | api design | ### What it is?
Seems a bit strange to bar instance methods of a type from being found in the type library. I'm currently working on custom networking Rpcs and I can only create client-side Rpcs that are static and then accepts an instance of the type it is inside.
### What should it be?
I have two ideas for it, first is preferred but for the sake of backward compatibility the second would be fine.
1. Rename `FindStaticMethods` to `FindMethods` then edit the method to allow non-static methods.
2. Add a new method `FindInstanceMethods` that only finds non-static methods.
| 1.0 | TypeLibrary: Allow finding non-static methods - ### What it is?
Seems a bit strange to bar instance methods of a type from being found in the type library. I'm currently working on custom networking Rpcs and I can only create client-side Rpcs that are static and then accepts an instance of the type it is inside.
### What should it be?
I have two ideas for it, first is preferred but for the sake of backward compatibility the second would be fine.
1. Rename `FindStaticMethods` to `FindMethods` then edit the method to allow non-static methods.
2. Add a new method `FindInstanceMethods` that only finds non-static methods.
| non_priority | typelibrary allow finding non static methods what it is seems a bit strange to bar instance methods of a type from being found in the type library i m currently working on custom networking rpcs and i can only create client side rpcs that are static and then accepts an instance of the type it is inside what should it be i have two ideas for it first is preferred but for the sake of backward compatibility the second would be fine rename findstaticmethods to findmethods then edit the method to allow non static methods add a new method findinstancemethods that only finds non static methods | 0 |
18,693 | 6,628,929,250 | IssuesEvent | 2017-09-24 01:15:53 | grpc/grpc | https://api.github.com/repos/grpc/grpc | closed | unit._rpc_test.RPCTest.testExpiredUnaryRequestBlockingUnaryResponse failed | infra/BUILDPONY lang/Python | https://grpc-testing.appspot.com/job/gRPC_master_linux/2383/testReport/junit/(root)/python_linux_opt_native/py27_test_unit__rpc_test_RPCTest/
```
[91munit._rpc_test.RPCTest.testExpiredUnaryRequestBlockingUnaryResponse[0m
[1mtraceback:[0m
Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 329, in run
testMethod()
File "/var/local/git/grpc/src/python/grpcio_tests/tests/unit/_rpc_test.py", line 580, in testExpiredUnaryRequestBlockingUnaryResponse
exception_context.exception.code())
File "/usr/lib/python2.7/unittest/case.py", line 817, in assertIs
self.fail(self._formatMessage(msg, standardMsg))
File "/usr/lib/python2.7/unittest/case.py", line 410, in fail
raise self.failureException(msg)
AssertionError: <StatusCode.DEADLINE_EXCEEDED: (4, 'deadline exceeded')> is not <StatusCode.UNIMPLEMENTED: (12, 'unimplemented')>
``` | 1.0 | unit._rpc_test.RPCTest.testExpiredUnaryRequestBlockingUnaryResponse failed - https://grpc-testing.appspot.com/job/gRPC_master_linux/2383/testReport/junit/(root)/python_linux_opt_native/py27_test_unit__rpc_test_RPCTest/
```
[91munit._rpc_test.RPCTest.testExpiredUnaryRequestBlockingUnaryResponse[0m
[1mtraceback:[0m
Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 329, in run
testMethod()
File "/var/local/git/grpc/src/python/grpcio_tests/tests/unit/_rpc_test.py", line 580, in testExpiredUnaryRequestBlockingUnaryResponse
exception_context.exception.code())
File "/usr/lib/python2.7/unittest/case.py", line 817, in assertIs
self.fail(self._formatMessage(msg, standardMsg))
File "/usr/lib/python2.7/unittest/case.py", line 410, in fail
raise self.failureException(msg)
AssertionError: <StatusCode.DEADLINE_EXCEEDED: (4, 'deadline exceeded')> is not <StatusCode.UNIMPLEMENTED: (12, 'unimplemented')>
``` | non_priority | unit rpc test rpctest testexpiredunaryrequestblockingunaryresponse failed rpc test rpctest testexpiredunaryrequestblockingunaryresponse traceback most recent call last file usr lib unittest case py line in run testmethod file var local git grpc src python grpcio tests tests unit rpc test py line in testexpiredunaryrequestblockingunaryresponse exception context exception code file usr lib unittest case py line in assertis self fail self formatmessage msg standardmsg file usr lib unittest case py line in fail raise self failureexception msg assertionerror is not | 0 |
87,730 | 15,790,292,566 | IssuesEvent | 2021-04-02 01:02:55 | Mohib-hub/karate | https://api.github.com/repos/Mohib-hub/karate | opened | CVE-2021-21409 (Medium) detected in netty-codec-http2-4.1.32.Final.jar | security vulnerability | ## CVE-2021-21409 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-codec-http2-4.1.32.Final.jar</b></p></summary>
<p>Netty is an asynchronous event-driven network application framework for
rapid development of maintainable high performance protocol servers and
clients.</p>
<p>Library home page: <a href="http://netty.io/">http://netty.io/</a></p>
<p>Path to dependency file: karate/examples/gatling/build.gradle</p>
<p>Path to vulnerable library: /tmp/ws-ua_20200323212715/downloadResource_20478f94-1633-47a1-ad79-827f8481d3e7/20200323212750/netty-codec-http2-4.1.32.Final.jar,/tmp/ws-ua_20200323212715/downloadResource_20478f94-1633-47a1-ad79-827f8481d3e7/20200323212750/netty-codec-http2-4.1.32.Final.jar</p>
<p>
Dependency Hierarchy:
- karate-gatling-0.9.5.jar (Root Library)
- gatling-charts-highcharts-3.0.2.jar
- gatling-app-3.0.2.jar
- gatling-http-3.0.2.jar
- gatling-http-client-3.0.2.jar
- :x: **netty-codec-http2-4.1.32.Final.jar** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Netty is an open-source, asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients. In Netty (io.netty:netty-codec-http2) before version 4.1.61.Final there is a vulnerability that enables request smuggling. The content-length header is not correctly validated if the request only uses a single Http2HeaderFrame with the endStream set to to true. This could lead to request smuggling if the request is proxied to a remote peer and translated to HTTP/1.1. This is a followup of GHSA-wm47-8v5p-wjpj/CVE-2021-21295 which did miss to fix this one case. This was fixed as part of 4.1.61.Final.
<p>Publish Date: 2021-03-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-21409>CVE-2021-21409</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/netty/netty/security/advisories/GHSA-f256-j965-7f32">https://github.com/netty/netty/security/advisories/GHSA-f256-j965-7f32</a></p>
<p>Release Date: 2021-03-30</p>
<p>Fix Resolution: io.netty:netty-codec-http2:4.1.61.Final</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"io.netty","packageName":"netty-codec-http2","packageVersion":"4.1.32.Final","packageFilePaths":["/examples/gatling/build.gradle"],"isTransitiveDependency":true,"dependencyTree":"com.intuit.karate:karate-gatling:0.9.5;io.gatling.highcharts:gatling-charts-highcharts:3.0.2;io.gatling:gatling-app:3.0.2;io.gatling:gatling-http:3.0.2;io.gatling:gatling-http-client:3.0.2;io.netty:netty-codec-http2:4.1.32.Final","isMinimumFixVersionAvailable":true,"minimumFixVersion":"io.netty:netty-codec-http2:4.1.61.Final"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-21409","vulnerabilityDetails":"Netty is an open-source, asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers \u0026 clients. In Netty (io.netty:netty-codec-http2) before version 4.1.61.Final there is a vulnerability that enables request smuggling. The content-length header is not correctly validated if the request only uses a single Http2HeaderFrame with the endStream set to to true. This could lead to request smuggling if the request is proxied to a remote peer and translated to HTTP/1.1. This is a followup of GHSA-wm47-8v5p-wjpj/CVE-2021-21295 which did miss to fix this one case. This was fixed as part of 4.1.61.Final.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-21409","cvss3Severity":"medium","cvss3Score":"5.9","cvss3Metrics":{"A":"None","AC":"High","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | True | CVE-2021-21409 (Medium) detected in netty-codec-http2-4.1.32.Final.jar - ## CVE-2021-21409 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-codec-http2-4.1.32.Final.jar</b></p></summary>
<p>Netty is an asynchronous event-driven network application framework for
rapid development of maintainable high performance protocol servers and
clients.</p>
<p>Library home page: <a href="http://netty.io/">http://netty.io/</a></p>
<p>Path to dependency file: karate/examples/gatling/build.gradle</p>
<p>Path to vulnerable library: /tmp/ws-ua_20200323212715/downloadResource_20478f94-1633-47a1-ad79-827f8481d3e7/20200323212750/netty-codec-http2-4.1.32.Final.jar,/tmp/ws-ua_20200323212715/downloadResource_20478f94-1633-47a1-ad79-827f8481d3e7/20200323212750/netty-codec-http2-4.1.32.Final.jar</p>
<p>
Dependency Hierarchy:
- karate-gatling-0.9.5.jar (Root Library)
- gatling-charts-highcharts-3.0.2.jar
- gatling-app-3.0.2.jar
- gatling-http-3.0.2.jar
- gatling-http-client-3.0.2.jar
- :x: **netty-codec-http2-4.1.32.Final.jar** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Netty is an open-source, asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients. In Netty (io.netty:netty-codec-http2) before version 4.1.61.Final there is a vulnerability that enables request smuggling. The content-length header is not correctly validated if the request only uses a single Http2HeaderFrame with the endStream set to to true. This could lead to request smuggling if the request is proxied to a remote peer and translated to HTTP/1.1. This is a followup of GHSA-wm47-8v5p-wjpj/CVE-2021-21295 which did miss to fix this one case. This was fixed as part of 4.1.61.Final.
<p>Publish Date: 2021-03-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-21409>CVE-2021-21409</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/netty/netty/security/advisories/GHSA-f256-j965-7f32">https://github.com/netty/netty/security/advisories/GHSA-f256-j965-7f32</a></p>
<p>Release Date: 2021-03-30</p>
<p>Fix Resolution: io.netty:netty-codec-http2:4.1.61.Final</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"io.netty","packageName":"netty-codec-http2","packageVersion":"4.1.32.Final","packageFilePaths":["/examples/gatling/build.gradle"],"isTransitiveDependency":true,"dependencyTree":"com.intuit.karate:karate-gatling:0.9.5;io.gatling.highcharts:gatling-charts-highcharts:3.0.2;io.gatling:gatling-app:3.0.2;io.gatling:gatling-http:3.0.2;io.gatling:gatling-http-client:3.0.2;io.netty:netty-codec-http2:4.1.32.Final","isMinimumFixVersionAvailable":true,"minimumFixVersion":"io.netty:netty-codec-http2:4.1.61.Final"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-21409","vulnerabilityDetails":"Netty is an open-source, asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers \u0026 clients. In Netty (io.netty:netty-codec-http2) before version 4.1.61.Final there is a vulnerability that enables request smuggling. The content-length header is not correctly validated if the request only uses a single Http2HeaderFrame with the endStream set to to true. This could lead to request smuggling if the request is proxied to a remote peer and translated to HTTP/1.1. This is a followup of GHSA-wm47-8v5p-wjpj/CVE-2021-21295 which did miss to fix this one case. This was fixed as part of 4.1.61.Final.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-21409","cvss3Severity":"medium","cvss3Score":"5.9","cvss3Metrics":{"A":"None","AC":"High","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | non_priority | cve medium detected in netty codec final jar cve medium severity vulnerability vulnerable library netty codec final jar netty is an asynchronous event driven network application framework for rapid development of maintainable high performance protocol servers and clients library home page a href path to dependency file karate examples gatling build gradle path to vulnerable library tmp ws ua downloadresource netty codec final jar tmp ws ua downloadresource netty codec final jar dependency hierarchy karate gatling jar root library gatling charts highcharts jar gatling app jar gatling http jar gatling http client jar x netty codec final jar vulnerable library vulnerability details netty is an open source asynchronous event driven network application framework for rapid development of maintainable high performance protocol servers clients in netty io netty netty codec before version final there is a vulnerability that enables request smuggling the content length header is not correctly validated if the request only uses a single with the endstream set to to true this could lead to request smuggling if the request is proxied to a remote peer and translated to http this is a followup of ghsa wjpj cve which did miss to fix this one case this was fixed as part of final publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution io netty netty codec final isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree com intuit karate karate gatling io gatling highcharts gatling charts highcharts io gatling gatling app io gatling gatling http io gatling gatling http client io netty netty codec final isminimumfixversionavailable true minimumfixversion io netty netty codec final basebranches vulnerabilityidentifier cve vulnerabilitydetails netty is an open source asynchronous event driven network application framework for rapid development of maintainable high performance protocol servers clients in netty io netty netty codec before version final there is a vulnerability that enables request smuggling the content length header is not correctly validated if the request only uses a single with the endstream set to to true this could lead to request smuggling if the request is proxied to a remote peer and translated to http this is a followup of ghsa wjpj cve which did miss to fix this one case this was fixed as part of final vulnerabilityurl | 0 |
55,764 | 23,594,368,950 | IssuesEvent | 2022-08-23 17:52:32 | microsoft/botframework-sdk | https://api.github.com/repos/microsoft/botframework-sdk | closed | First response after bot idling is way too slow | bug customer-replied-to customer-reported Bot Services | ### [Github issues](https://github.com/microsoft/botframework-sdk) should be used for bugs and feature requests. Use [Stack Overflow](https://stackoverflow.com/questions/tagged/botframework) for general "how-to" questions.
## Version
What package version of the SDK are you using.
4.16.1 Dot net SDK
**Bot has been created using Bot Framework Composer.**
Apps are hosted in West-US region.
## Describe the bug
Initial bot replies take way too long when the bot has been idling for a while.
## To Reproduce
Steps to reproduce the behavior:
1, Set "Always On" setting in app configuration on Azure to True.
2. Send a message to the bot after nobody has used the bot for at least 1.5~2 hours (for example, during the night when everyone in the organization is sleeping)
3. Bot takes at least 15 seconds and upwards of 45 seconds to reply for the first response after idling.
## Expected behavior
Not take 45 seconds to reply.
## Additional context
I have searched several other issues on this (most of them years old) but it seems this issue still has not been resolved.
From my research all of them suggest to set the "Always On" in the app configuration to True, and I have already done this. It seems there is some sort of start-up delay when the bot has been idle for a long time.
My educated guess as to what is causing this problem :
https://blog.botframework.com/2017/11/02/optimizing-latency-bot-framework/
While this article is almost 5 years old, I believe the issue that is causing this problem is the token expiring. Some reasons as to why :
1) While the blog post is old there is a possibility periodic token refreshing was not implemented into the SDK for whatever reason and was expected that the user implement this
2) I have tried to time when the bot requires another "start-up" time, and it is always after 1.5~2 hours of idling (when nobody has been using the bot), which might be the amount of time the token takes to expire.
3) As I said above the "Always On" setting is set to True in the app configuration on Azure, and I have checked the app is definitely running before sending the message after idling (so this is a runtime issue)
4) To check if this issue is per user, I let the bot idle for ~2 hours, then sent a message. The first reply as always took ~20 seconds for a response. I then went to a colleague's machine and sent a message to the bot, and the response was near instant.
Is there a reason the periodic token refreshing seen in this blog post is not implemented into the SDK by default?
Edit :
To add, this issue is compounded by the use of skills. Because skills are essentially separate bots on their own, if nobody has used the chatbot for 1.5 ~ 2 hours both the root bot and the skill tokens expire, and the time to reply is compounded. If the first user utterance after idling the bot for a sufficient amount of time invokes a skill, the reply take takes upwards of a minute.
| 1.0 | First response after bot idling is way too slow - ### [Github issues](https://github.com/microsoft/botframework-sdk) should be used for bugs and feature requests. Use [Stack Overflow](https://stackoverflow.com/questions/tagged/botframework) for general "how-to" questions.
## Version
What package version of the SDK are you using.
4.16.1 Dot net SDK
**Bot has been created using Bot Framework Composer.**
Apps are hosted in West-US region.
## Describe the bug
Initial bot replies take way too long when the bot has been idling for a while.
## To Reproduce
Steps to reproduce the behavior:
1, Set "Always On" setting in app configuration on Azure to True.
2. Send a message to the bot after nobody has used the bot for at least 1.5~2 hours (for example, during the night when everyone in the organization is sleeping)
3. Bot takes at least 15 seconds and upwards of 45 seconds to reply for the first response after idling.
## Expected behavior
Not take 45 seconds to reply.
## Additional context
I have searched several other issues on this (most of them years old) but it seems this issue still has not been resolved.
From my research all of them suggest to set the "Always On" in the app configuration to True, and I have already done this. It seems there is some sort of start-up delay when the bot has been idle for a long time.
My educated guess as to what is causing this problem :
https://blog.botframework.com/2017/11/02/optimizing-latency-bot-framework/
While this article is almost 5 years old, I believe the issue that is causing this problem is the token expiring. Some reasons as to why :
1) While the blog post is old there is a possibility periodic token refreshing was not implemented into the SDK for whatever reason and was expected that the user implement this
2) I have tried to time when the bot requires another "start-up" time, and it is always after 1.5~2 hours of idling (when nobody has been using the bot), which might be the amount of time the token takes to expire.
3) As I said above the "Always On" setting is set to True in the app configuration on Azure, and I have checked the app is definitely running before sending the message after idling (so this is a runtime issue)
4) To check if this issue is per user, I let the bot idle for ~2 hours, then sent a message. The first reply as always took ~20 seconds for a response. I then went to a colleague's machine and sent a message to the bot, and the response was near instant.
Is there a reason the periodic token refreshing seen in this blog post is not implemented into the SDK by default?
Edit :
To add, this issue is compounded by the use of skills. Because skills are essentially separate bots on their own, if nobody has used the chatbot for 1.5 ~ 2 hours both the root bot and the skill tokens expire, and the time to reply is compounded. If the first user utterance after idling the bot for a sufficient amount of time invokes a skill, the reply take takes upwards of a minute.
| non_priority | first response after bot idling is way too slow should be used for bugs and feature requests use for general how to questions version what package version of the sdk are you using dot net sdk bot has been created using bot framework composer apps are hosted in west us region describe the bug initial bot replies take way too long when the bot has been idling for a while to reproduce steps to reproduce the behavior set always on setting in app configuration on azure to true send a message to the bot after nobody has used the bot for at least hours for example during the night when everyone in the organization is sleeping bot takes at least seconds and upwards of seconds to reply for the first response after idling expected behavior not take seconds to reply additional context i have searched several other issues on this most of them years old but it seems this issue still has not been resolved from my research all of them suggest to set the always on in the app configuration to true and i have already done this it seems there is some sort of start up delay when the bot has been idle for a long time my educated guess as to what is causing this problem while this article is almost years old i believe the issue that is causing this problem is the token expiring some reasons as to why while the blog post is old there is a possibility periodic token refreshing was not implemented into the sdk for whatever reason and was expected that the user implement this i have tried to time when the bot requires another start up time and it is always after hours of idling when nobody has been using the bot which might be the amount of time the token takes to expire as i said above the always on setting is set to true in the app configuration on azure and i have checked the app is definitely running before sending the message after idling so this is a runtime issue to check if this issue is per user i let the bot idle for hours then sent a message the first reply as always took seconds for a response i then went to a colleague s machine and sent a message to the bot and the response was near instant is there a reason the periodic token refreshing seen in this blog post is not implemented into the sdk by default edit to add this issue is compounded by the use of skills because skills are essentially separate bots on their own if nobody has used the chatbot for hours both the root bot and the skill tokens expire and the time to reply is compounded if the first user utterance after idling the bot for a sufficient amount of time invokes a skill the reply take takes upwards of a minute | 0 |
65,910 | 6,978,237,422 | IssuesEvent | 2017-12-12 16:54:16 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | teamcity: failed tests on master: Jepsen/Jepsen: JepsenBank-multitable: JepsenBank-multitable/start-kill-2, Jepsen/Jepsen: JepsenRegister: JepsenRegister/split | Robot test-failure | The following tests appear to have failed:
[#439724](https://teamcity.cockroachdb.com/viewLog.html?buildId=439724):
```
--- FAIL: Jepsen/Jepsen: JepsenBank-multitable: JepsenBank-multitable/start-kill-2 (464.677s)
None
--- FAIL: Jepsen/Jepsen: JepsenRegister: JepsenRegister/split (68.295s)
None
```
Please assign, take a look and update the issue accordingly.
| 1.0 | teamcity: failed tests on master: Jepsen/Jepsen: JepsenBank-multitable: JepsenBank-multitable/start-kill-2, Jepsen/Jepsen: JepsenRegister: JepsenRegister/split - The following tests appear to have failed:
[#439724](https://teamcity.cockroachdb.com/viewLog.html?buildId=439724):
```
--- FAIL: Jepsen/Jepsen: JepsenBank-multitable: JepsenBank-multitable/start-kill-2 (464.677s)
None
--- FAIL: Jepsen/Jepsen: JepsenRegister: JepsenRegister/split (68.295s)
None
```
Please assign, take a look and update the issue accordingly.
| non_priority | teamcity failed tests on master jepsen jepsen jepsenbank multitable jepsenbank multitable start kill jepsen jepsen jepsenregister jepsenregister split the following tests appear to have failed fail jepsen jepsen jepsenbank multitable jepsenbank multitable start kill none fail jepsen jepsen jepsenregister jepsenregister split none please assign take a look and update the issue accordingly | 0 |
326,072 | 27,975,356,806 | IssuesEvent | 2023-03-25 14:13:38 | dudykr/stc | https://api.github.com/repos/dudykr/stc | opened | Fix unit test: `tests/pass-only/conformance/controlwFlow/controlFlowForStatement/.1.ts` | tsc-unit-test |
---
Related test: https://github.com/dudykr/stc/blob/main/crates/stc_ts_file_analyzer/tests/pass-only/conformance/controlwFlow/controlFlowForStatement/.1.ts
---
This issue is created by sync script.
| 1.0 | Fix unit test: `tests/pass-only/conformance/controlwFlow/controlFlowForStatement/.1.ts` -
---
Related test: https://github.com/dudykr/stc/blob/main/crates/stc_ts_file_analyzer/tests/pass-only/conformance/controlwFlow/controlFlowForStatement/.1.ts
---
This issue is created by sync script.
| non_priority | fix unit test tests pass only conformance controlwflow controlflowforstatement ts related test this issue is created by sync script | 0 |
13,990 | 24,147,960,535 | IssuesEvent | 2022-09-21 20:39:58 | NOAA-GSL/MATS | https://api.github.com/repos/NOAA-GSL/MATS | opened | Remove unused version files | epic needs requirements | ## Problem
During work on https://github.com/NOAA-GSL/MATS/pull/778#discussion_r976629445, we discovered that the `apps/<app>/private/version` file is unused.
## Solution
Remove this file in all MATS apps
## No Go's
N/A
## Tasks
N/A
| 1.0 | Remove unused version files - ## Problem
During work on https://github.com/NOAA-GSL/MATS/pull/778#discussion_r976629445, we discovered that the `apps/<app>/private/version` file is unused.
## Solution
Remove this file in all MATS apps
## No Go's
N/A
## Tasks
N/A
| non_priority | remove unused version files problem during work on we discovered that the apps private version file is unused solution remove this file in all mats apps no go s n a tasks n a | 0 |
36,596 | 5,073,523,302 | IssuesEvent | 2016-12-27 09:11:32 | kakazuo/yimengtech | https://api.github.com/repos/kakazuo/yimengtech | closed | 测试公司整包进销存 | test 测试任务 河南 | 1 、1-进货


1级系统管理员整包进货以后,授权并入库,在新公司进销存中查询这一种类,这一时间段,供应商等的信息,得出期初和结余在进货以后结果正确
2、2-定价

在库存定价中进行整包库存定价
3、3-发货


在发货中进行整包发货,并在2级库存管理中接受发货,在新公司进销存中查询,得到商品发货信息,期初和结余结果正确
4、4-退货




在2级库存管理退货,并在1级系统管理中接受退货,在新公司进销存中查询退货信息,期初和结余结果正确。
5、5-拒绝收货



在1级系统管理向2级库房管理发货时,2级系统管理拒绝收货,并把或退回。在新公司进销存中查询可以看到信息没有变化,期初和结余结果正确。
6、6-接收发货入库


在2级库房管理接受发货入库,可以看到在新公司进销存中有收发货信息,期初和结余结果正确
7、7-拒绝退货


在2级库存管理退货,但在1级系统管理中拒绝退货,在新公司进销存中没有收退货信息,期初和结余结果正确。
8、8-收退货


在2级库存管理退货,但在1级系统管理中拒绝退货,在新公司进销存中有收退货信息,期初和结余结果正确。
9、9-转分秤

在1级系统管理中,把整包转分秤到预分秤批次,期初和结余结果正确。
10、10-转发货
分秤完毕,转发货以后,为明细发货。 | 1.0 | 测试公司整包进销存 - 1 、1-进货


1级系统管理员整包进货以后,授权并入库,在新公司进销存中查询这一种类,这一时间段,供应商等的信息,得出期初和结余在进货以后结果正确
2、2-定价

在库存定价中进行整包库存定价
3、3-发货


在发货中进行整包发货,并在2级库存管理中接受发货,在新公司进销存中查询,得到商品发货信息,期初和结余结果正确
4、4-退货




在2级库存管理退货,并在1级系统管理中接受退货,在新公司进销存中查询退货信息,期初和结余结果正确。
5、5-拒绝收货



在1级系统管理向2级库房管理发货时,2级系统管理拒绝收货,并把或退回。在新公司进销存中查询可以看到信息没有变化,期初和结余结果正确。
6、6-接收发货入库


在2级库房管理接受发货入库,可以看到在新公司进销存中有收发货信息,期初和结余结果正确
7、7-拒绝退货


在2级库存管理退货,但在1级系统管理中拒绝退货,在新公司进销存中没有收退货信息,期初和结余结果正确。
8、8-收退货


在2级库存管理退货,但在1级系统管理中拒绝退货,在新公司进销存中有收退货信息,期初和结余结果正确。
9、9-转分秤

在1级系统管理中,把整包转分秤到预分秤批次,期初和结余结果正确。
10、10-转发货
分秤完毕,转发货以后,为明细发货。 | non_priority | 测试公司整包进销存 、 进货 ,授权并入库,在新公司进销存中查询这一种类,这一时间段,供应商等的信息,得出期初和结余在进货以后结果正确 、 定价 在库存定价中进行整包库存定价 、 发货 在发货中进行整包发货, ,在新公司进销存中查询,得到商品发货信息,期初和结余结果正确 、 退货 , ,在新公司进销存中查询退货信息,期初和结余结果正确。 、 拒绝收货 , ,并把或退回。在新公司进销存中查询可以看到信息没有变化,期初和结余结果正确。 、 接收发货入库 ,可以看到在新公司进销存中有收发货信息,期初和结余结果正确 、 拒绝退货 , ,在新公司进销存中没有收退货信息,期初和结余结果正确。 、 收退货 , ,在新公司进销存中有收退货信息,期初和结余结果正确。 、 转分秤 ,把整包转分秤到预分秤批次,期初和结余结果正确。 、 转发货 分秤完毕,转发货以后,为明细发货。 | 0 |
186,856 | 15,086,094,985 | IssuesEvent | 2021-02-05 19:45:24 | kids-first/kf-lib-data-ingest | https://api.github.com/repos/kids-first/kf-lib-data-ingest | closed | Update ingest docs to incorporate new validation | documentation | - Remove old validation stuff having to do with accounting
- Update quick-start and how-to tutorial etc with new validation | 1.0 | Update ingest docs to incorporate new validation - - Remove old validation stuff having to do with accounting
- Update quick-start and how-to tutorial etc with new validation | non_priority | update ingest docs to incorporate new validation remove old validation stuff having to do with accounting update quick start and how to tutorial etc with new validation | 0 |
69,235 | 17,605,539,975 | IssuesEvent | 2021-08-17 16:34:43 | MDSplus/mdsplus | https://api.github.com/repos/MDSplus/mdsplus | closed | The current alpha has lost its version information | build&deploy | The current alpha - which I think is : `alpha_release-7-125-3` has lost its version information
This has happened before, I don't recall the cause / solution.
```
jas@mfews05:~$ mdstcl
TCL> show version
MDSplus version: 0.0.0
----------------------
Release: alpha_release_0.0.0
Browse: https://github.com/MDSplus/mdsplus/tree/alpha_release_0.0.0
Download: https://github.com/MDSplus/mdsplus/archive/alpha_release_0.0.0.tar.gz
TCL>
``` | 1.0 | The current alpha has lost its version information - The current alpha - which I think is : `alpha_release-7-125-3` has lost its version information
This has happened before, I don't recall the cause / solution.
```
jas@mfews05:~$ mdstcl
TCL> show version
MDSplus version: 0.0.0
----------------------
Release: alpha_release_0.0.0
Browse: https://github.com/MDSplus/mdsplus/tree/alpha_release_0.0.0
Download: https://github.com/MDSplus/mdsplus/archive/alpha_release_0.0.0.tar.gz
TCL>
``` | non_priority | the current alpha has lost its version information the current alpha which i think is alpha release has lost its version information this has happened before i don t recall the cause solution jas mdstcl tcl show version mdsplus version release alpha release browse download tcl | 0 |
80,954 | 7,762,159,217 | IssuesEvent | 2018-06-01 12:37:25 | nodejs/node | https://api.github.com/repos/nodejs/node | closed | Investigate flaky parallel/test-http2-multi-content-length | CI / flaky test http2 test | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Subsystem: if known, please specify affected core module name
If possible, please provide code that demonstrates the problem, keeping it as
simple and free of external dependencies as you are able.
-->
* **Version**: 10.0.0-pre (master)
* **Platform**: freebsd10-64
* **Subsystem**: test http2
<!-- Enter your issue details below this comment. -->
https://ci.nodejs.org/job/node-test-commit-freebsd/nodes=freebsd10-64/16997/console
```console
14:41:16 not ok 909 parallel/test-http2-multi-content-length
14:41:16 ---
14:41:16 duration_ms: 0.667
14:41:16 severity: fail
14:41:16 exitcode: 1
14:41:16 stack: |-
14:41:16 (node:83269) ExperimentalWarning: The http2 module is an experimental API.
14:41:16 events.js:167
14:41:16 throw er; // Unhandled 'error' event
14:41:16 ^
14:41:16
14:41:16 Error: read ECONNRESET
14:41:16 at TCP.onread (net.js:660:25)
14:41:16 Emitted 'error' event at:
14:41:16 at emitErrorNT (internal/streams/destroy.js:82:8)
14:41:16 at emitErrorAndCloseNT (internal/streams/destroy.js:50:3)
14:41:16 at process._tickCallback (internal/process/next_tick.js:174:19)
14:41:16 ...
``` | 2.0 | Investigate flaky parallel/test-http2-multi-content-length - <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Subsystem: if known, please specify affected core module name
If possible, please provide code that demonstrates the problem, keeping it as
simple and free of external dependencies as you are able.
-->
* **Version**: 10.0.0-pre (master)
* **Platform**: freebsd10-64
* **Subsystem**: test http2
<!-- Enter your issue details below this comment. -->
https://ci.nodejs.org/job/node-test-commit-freebsd/nodes=freebsd10-64/16997/console
```console
14:41:16 not ok 909 parallel/test-http2-multi-content-length
14:41:16 ---
14:41:16 duration_ms: 0.667
14:41:16 severity: fail
14:41:16 exitcode: 1
14:41:16 stack: |-
14:41:16 (node:83269) ExperimentalWarning: The http2 module is an experimental API.
14:41:16 events.js:167
14:41:16 throw er; // Unhandled 'error' event
14:41:16 ^
14:41:16
14:41:16 Error: read ECONNRESET
14:41:16 at TCP.onread (net.js:660:25)
14:41:16 Emitted 'error' event at:
14:41:16 at emitErrorNT (internal/streams/destroy.js:82:8)
14:41:16 at emitErrorAndCloseNT (internal/streams/destroy.js:50:3)
14:41:16 at process._tickCallback (internal/process/next_tick.js:174:19)
14:41:16 ...
``` | non_priority | investigate flaky parallel test multi content length thank you for reporting an issue this issue tracker is for bugs and issues found within node js core if you require more general support please file an issue on our help repo please fill in as much of the template below as you re able version output of node v platform output of uname a unix or version and or bit windows subsystem if known please specify affected core module name if possible please provide code that demonstrates the problem keeping it as simple and free of external dependencies as you are able version pre master platform subsystem test console not ok parallel test multi content length duration ms severity fail exitcode stack node experimentalwarning the module is an experimental api events js throw er unhandled error event error read econnreset at tcp onread net js emitted error event at at emiterrornt internal streams destroy js at emiterrorandclosent internal streams destroy js at process tickcallback internal process next tick js | 0 |
258,660 | 19,568,046,061 | IssuesEvent | 2022-01-04 05:23:53 | hrushikeshrv/mjxgui | https://api.github.com/repos/hrushikeshrv/mjxgui | closed | Add some usage examples to the docs | documentation enhancement good first issue hacktoberfest | It would be helpful if we added a few examples to the docs. We have [one example](https://hrus.in/mjxgui/#examples) where we create an equation and insert into the document after typesetting it. We should probably have a few more that highlight the conversion of the expression to LaTeX code. | 1.0 | Add some usage examples to the docs - It would be helpful if we added a few examples to the docs. We have [one example](https://hrus.in/mjxgui/#examples) where we create an equation and insert into the document after typesetting it. We should probably have a few more that highlight the conversion of the expression to LaTeX code. | non_priority | add some usage examples to the docs it would be helpful if we added a few examples to the docs we have where we create an equation and insert into the document after typesetting it we should probably have a few more that highlight the conversion of the expression to latex code | 0 |
91,734 | 11,569,122,081 | IssuesEvent | 2020-02-20 16:59:34 | cardstack/cardstack | https://api.github.com/repos/cardstack/cardstack | opened | Change icon for the "saving..." indicator | needs design | This looks like a warning, and it should maybe be a yellow dot, a spinner, etc. This needs design iteration before we make changes. Here's how it looks now:
<img width="637" alt="Screen Shot 2020-02-20 at 11 58 20 AM" src="https://user-images.githubusercontent.com/16627268/74959382-6f165f80-53d8-11ea-90af-dbbd6250a84f.png">
| 1.0 | Change icon for the "saving..." indicator - This looks like a warning, and it should maybe be a yellow dot, a spinner, etc. This needs design iteration before we make changes. Here's how it looks now:
<img width="637" alt="Screen Shot 2020-02-20 at 11 58 20 AM" src="https://user-images.githubusercontent.com/16627268/74959382-6f165f80-53d8-11ea-90af-dbbd6250a84f.png">
| non_priority | change icon for the saving indicator this looks like a warning and it should maybe be a yellow dot a spinner etc this needs design iteration before we make changes here s how it looks now img width alt screen shot at am src | 0 |
148,904 | 23,395,097,848 | IssuesEvent | 2022-08-11 22:10:43 | department-of-veterans-affairs/vets-design-system-documentation | https://api.github.com/repos/department-of-veterans-affairs/vets-design-system-documentation | closed | Build v3 utility classes: height-width, line-height, text-align, text-decoration | vsp-design-system-team dst-engineering | ## Description
Add the height-width, line-height, text-align, and text-decoration utility classes based on USWDS v3 to the new CSS library.
## Details
- This work should be implemented using the USWDS style functions the way the [colors](https://github.com/department-of-veterans-affairs/component-library/blob/master/packages/css-library/src/utilities/color.scss) were done.
## Tasks
- [ ] Add the USWDS v3 functions for the height-width, line-height, text-align, and text-decoration classes to the new CSS library
## Acceptance Criteria
- [ ] The height-width, line-height, text-align, and text-decoration utility classes based on USWDS v3 have been added to the new CSS library | 1.0 | Build v3 utility classes: height-width, line-height, text-align, text-decoration - ## Description
Add the height-width, line-height, text-align, and text-decoration utility classes based on USWDS v3 to the new CSS library.
## Details
- This work should be implemented using the USWDS style functions the way the [colors](https://github.com/department-of-veterans-affairs/component-library/blob/master/packages/css-library/src/utilities/color.scss) were done.
## Tasks
- [ ] Add the USWDS v3 functions for the height-width, line-height, text-align, and text-decoration classes to the new CSS library
## Acceptance Criteria
- [ ] The height-width, line-height, text-align, and text-decoration utility classes based on USWDS v3 have been added to the new CSS library | non_priority | build utility classes height width line height text align text decoration description add the height width line height text align and text decoration utility classes based on uswds to the new css library details this work should be implemented using the uswds style functions the way the were done tasks add the uswds functions for the height width line height text align and text decoration classes to the new css library acceptance criteria the height width line height text align and text decoration utility classes based on uswds have been added to the new css library | 0 |
132,464 | 10,756,566,777 | IssuesEvent | 2019-10-31 11:29:26 | ubtue/DatenProbleme | https://api.github.com/repos/ubtue/DatenProbleme | closed | ISSN 2176-8757 Perspectiva teológica Sprache (041) | Zotero_AUTO_Crawl ready for testing | Sprache wird nicht korrekt erkannt.
http://www.faje.edu.br/periodicos/index.php/perspectiva/article/view/4158
ist italienisch, nicht portugiesisch
| 1.0 | ISSN 2176-8757 Perspectiva teológica Sprache (041) - Sprache wird nicht korrekt erkannt.
http://www.faje.edu.br/periodicos/index.php/perspectiva/article/view/4158
ist italienisch, nicht portugiesisch
| non_priority | issn perspectiva teológica sprache sprache wird nicht korrekt erkannt ist italienisch nicht portugiesisch | 0 |
430,889 | 30,205,645,661 | IssuesEvent | 2023-07-05 09:15:00 | PaloAltoNetworks/prismacloud-api-python | https://api.github.com/repos/PaloAltoNetworks/prismacloud-api-python | opened | Use global `pc_api` variable cause circle-ci or github actions to fail | documentation | First of all: thanks for this SDK.
## Documentation link
README.md and all scripts examples use `pc_api` which is instantiate internally.
## Describe the problem
We use this SDK in our project, and use circle-ci and github actions to perform lint, tests and build.
One of ours tests check authentication failure. In your SDK, it raises a `SystemExit` and the test do not catch the expected exception.
Our code was as below:
```python
from prismacloud.api import pc_api
pc_api.configure(
"url": config.url,
"identity": config.client_id,
"secret": config.client_secret,
)
try:
self.prismacloud.statuses_intelligence()
except SystemExit as exc:
raise ConfigurationError("PrismaCloud invalid configuration") from exc
```
our test:
```python
if expected_error:
with pytest.raises(Exception) as excinfo: # noqa: PT011
cli_run(**kwargs)
```
The error on both circle-ci and GHA:
```
if expected_error:
> with pytest.raises(Exception) as excinfo: # noqa: PT011
E Failed: DID NOT RAISE <class 'Exception'>
```
So the test expect an Exception which he doesn't get.
:information_source: locally the tests run fine. Tests on circle-ic and GHA are run differently it seems...
This is potentially due to the use of `pc_api` as global variable.
## Suggested fix
Suggest to use the following, if user is developing something more complex than a simple script if it's supposed to be tested on circle-ci and/or GHA:
```python
from prismacloud.api import PrismaCloudAPI
pc_api = PrismaCloudApi()
```
It will save some time to find why this is failing =) | 1.0 | Use global `pc_api` variable cause circle-ci or github actions to fail - First of all: thanks for this SDK.
## Documentation link
README.md and all scripts examples use `pc_api` which is instantiate internally.
## Describe the problem
We use this SDK in our project, and use circle-ci and github actions to perform lint, tests and build.
One of ours tests check authentication failure. In your SDK, it raises a `SystemExit` and the test do not catch the expected exception.
Our code was as below:
```python
from prismacloud.api import pc_api
pc_api.configure(
"url": config.url,
"identity": config.client_id,
"secret": config.client_secret,
)
try:
self.prismacloud.statuses_intelligence()
except SystemExit as exc:
raise ConfigurationError("PrismaCloud invalid configuration") from exc
```
our test:
```python
if expected_error:
with pytest.raises(Exception) as excinfo: # noqa: PT011
cli_run(**kwargs)
```
The error on both circle-ci and GHA:
```
if expected_error:
> with pytest.raises(Exception) as excinfo: # noqa: PT011
E Failed: DID NOT RAISE <class 'Exception'>
```
So the test expect an Exception which he doesn't get.
:information_source: locally the tests run fine. Tests on circle-ic and GHA are run differently it seems...
This is potentially due to the use of `pc_api` as global variable.
## Suggested fix
Suggest to use the following, if user is developing something more complex than a simple script if it's supposed to be tested on circle-ci and/or GHA:
```python
from prismacloud.api import PrismaCloudAPI
pc_api = PrismaCloudApi()
```
It will save some time to find why this is failing =) | non_priority | use global pc api variable cause circle ci or github actions to fail first of all thanks for this sdk documentation link readme md and all scripts examples use pc api which is instantiate internally describe the problem we use this sdk in our project and use circle ci and github actions to perform lint tests and build one of ours tests check authentication failure in your sdk it raises a systemexit and the test do not catch the expected exception our code was as below python from prismacloud api import pc api pc api configure url config url identity config client id secret config client secret try self prismacloud statuses intelligence except systemexit as exc raise configurationerror prismacloud invalid configuration from exc our test python if expected error with pytest raises exception as excinfo noqa cli run kwargs the error on both circle ci and gha if expected error with pytest raises exception as excinfo noqa e failed did not raise so the test expect an exception which he doesn t get information source locally the tests run fine tests on circle ic and gha are run differently it seems this is potentially due to the use of pc api as global variable suggested fix suggest to use the following if user is developing something more complex than a simple script if it s supposed to be tested on circle ci and or gha python from prismacloud api import prismacloudapi pc api prismacloudapi it will save some time to find why this is failing | 0 |
81,050 | 15,649,516,162 | IssuesEvent | 2021-03-23 07:42:21 | Regalis11/Barotrauma | https://api.github.com/repos/Regalis11/Barotrauma | closed | Unstable - Crew AI can't weld leaks anymore | Bug Code High prio | - [x] I have searched the issue tracker to check if the issue has already been reported.
**Description**
When ordered to fix leaks, crew AI is able to move to the leaks' location but are unable to weld it. They simply stay in front of the leak and wait. If the leak is fixed, by a player for example, bots go back to their other tasks
**Steps To Reproduce**
Create leaks on a submarine, I have noticed the issue on the Dugong so you may use this submarine as well.
Order the AI to weld the leaks
Notice the AI sitting in front of the leak without doing anything.
Note: In my tests, the AI had welders and welding fuel tanks in their inventory
**Version**
Windows 10, Unstable - V0.1300.0.1


| 1.0 | Unstable - Crew AI can't weld leaks anymore - - [x] I have searched the issue tracker to check if the issue has already been reported.
**Description**
When ordered to fix leaks, crew AI is able to move to the leaks' location but are unable to weld it. They simply stay in front of the leak and wait. If the leak is fixed, by a player for example, bots go back to their other tasks
**Steps To Reproduce**
Create leaks on a submarine, I have noticed the issue on the Dugong so you may use this submarine as well.
Order the AI to weld the leaks
Notice the AI sitting in front of the leak without doing anything.
Note: In my tests, the AI had welders and welding fuel tanks in their inventory
**Version**
Windows 10, Unstable - V0.1300.0.1


| non_priority | unstable crew ai can t weld leaks anymore i have searched the issue tracker to check if the issue has already been reported description when ordered to fix leaks crew ai is able to move to the leaks location but are unable to weld it they simply stay in front of the leak and wait if the leak is fixed by a player for example bots go back to their other tasks steps to reproduce create leaks on a submarine i have noticed the issue on the dugong so you may use this submarine as well order the ai to weld the leaks notice the ai sitting in front of the leak without doing anything note in my tests the ai had welders and welding fuel tanks in their inventory version windows unstable | 0 |
113,823 | 17,154,175,899 | IssuesEvent | 2021-07-14 03:13:16 | atlslscsrv-app/atlslscsrv-app | https://api.github.com/repos/atlslscsrv-app/atlslscsrv-app | closed | CVE-2020-7793 (High) detected in ua-parser-js-0.7.19.tgz - autoclosed | security vulnerability | ## CVE-2020-7793 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ua-parser-js-0.7.19.tgz</b></p></summary>
<p>Lightweight JavaScript-based user-agent string parser</p>
<p>Library home page: <a href="https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.19.tgz">https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.19.tgz</a></p>
<p>Path to dependency file: atlslscsrv-app/dist/resources/app/package.json</p>
<p>Path to vulnerable library: atlslscsrv-app/dist/resources/app/node_modules/ua-parser-js/package.json</p>
<p>
Dependency Hierarchy:
- react-15.4.2.tgz (Root Library)
- fbjs-0.8.17.tgz
- :x: **ua-parser-js-0.7.19.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/atlslscsrv-app/atlslscsrv-app/commit/9cd1d81ea40cec233263f3f83e4afad1985f0f0d">9cd1d81ea40cec233263f3f83e4afad1985f0f0d</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package ua-parser-js before 0.7.23 are vulnerable to Regular Expression Denial of Service (ReDoS) in multiple regexes (see linked commit for more info).
<p>Publish Date: 2020-12-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7793>CVE-2020-7793</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/faisalman/ua-parser-js/commit/6d1f26df051ba681463ef109d36c9cf0f7e32b18">https://github.com/faisalman/ua-parser-js/commit/6d1f26df051ba681463ef109d36c9cf0f7e32b18</a></p>
<p>Release Date: 2020-12-11</p>
<p>Fix Resolution: 0.7.23</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-7793 (High) detected in ua-parser-js-0.7.19.tgz - autoclosed - ## CVE-2020-7793 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ua-parser-js-0.7.19.tgz</b></p></summary>
<p>Lightweight JavaScript-based user-agent string parser</p>
<p>Library home page: <a href="https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.19.tgz">https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.19.tgz</a></p>
<p>Path to dependency file: atlslscsrv-app/dist/resources/app/package.json</p>
<p>Path to vulnerable library: atlslscsrv-app/dist/resources/app/node_modules/ua-parser-js/package.json</p>
<p>
Dependency Hierarchy:
- react-15.4.2.tgz (Root Library)
- fbjs-0.8.17.tgz
- :x: **ua-parser-js-0.7.19.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/atlslscsrv-app/atlslscsrv-app/commit/9cd1d81ea40cec233263f3f83e4afad1985f0f0d">9cd1d81ea40cec233263f3f83e4afad1985f0f0d</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package ua-parser-js before 0.7.23 are vulnerable to Regular Expression Denial of Service (ReDoS) in multiple regexes (see linked commit for more info).
<p>Publish Date: 2020-12-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7793>CVE-2020-7793</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/faisalman/ua-parser-js/commit/6d1f26df051ba681463ef109d36c9cf0f7e32b18">https://github.com/faisalman/ua-parser-js/commit/6d1f26df051ba681463ef109d36c9cf0f7e32b18</a></p>
<p>Release Date: 2020-12-11</p>
<p>Fix Resolution: 0.7.23</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in ua parser js tgz autoclosed cve high severity vulnerability vulnerable library ua parser js tgz lightweight javascript based user agent string parser library home page a href path to dependency file atlslscsrv app dist resources app package json path to vulnerable library atlslscsrv app dist resources app node modules ua parser js package json dependency hierarchy react tgz root library fbjs tgz x ua parser js tgz vulnerable library found in head commit a href found in base branch master vulnerability details the package ua parser js before are vulnerable to regular expression denial of service redos in multiple regexes see linked commit for more info publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource | 0 |
178,602 | 21,509,438,620 | IssuesEvent | 2022-04-28 01:41:20 | Watemlifts/redash | https://api.github.com/repos/Watemlifts/redash | closed | CVE-2021-27290 (High) detected in ssri-5.3.0.tgz, ssri-6.0.1.tgz - autoclosed | security vulnerability | ## CVE-2021-27290 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ssri-5.3.0.tgz</b>, <b>ssri-6.0.1.tgz</b></p></summary>
<p>
<details><summary><b>ssri-5.3.0.tgz</b></p></summary>
<p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz">https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/ssri/package.json</p>
<p>
Dependency Hierarchy:
- copy-webpack-plugin-4.6.0.tgz (Root Library)
- cacache-10.0.4.tgz
- :x: **ssri-5.3.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>ssri-6.0.1.tgz</b></p></summary>
<p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/terser-webpack-plugin/node_modules/ssri/package.json</p>
<p>
Dependency Hierarchy:
- webpack-4.29.6.tgz (Root Library)
- terser-webpack-plugin-1.2.3.tgz
- cacache-11.3.2.tgz
- :x: **ssri-6.0.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/Watemlifts/redash/commit/a08cef653c8e510e1ea3d6b1a2c103a504a76033">a08cef653c8e510e1ea3d6b1a2c103a504a76033</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option.
<p>Publish Date: 2021-03-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-27290>CVE-2021-27290</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-vx3p-948g-6vhq">https://github.com/advisories/GHSA-vx3p-948g-6vhq</a></p>
<p>Release Date: 2021-03-12</p>
<p>Fix Resolution (ssri): 6.0.2</p>
<p>Direct dependency fix Resolution (copy-webpack-plugin): 5.0.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2021-27290 (High) detected in ssri-5.3.0.tgz, ssri-6.0.1.tgz - autoclosed - ## CVE-2021-27290 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ssri-5.3.0.tgz</b>, <b>ssri-6.0.1.tgz</b></p></summary>
<p>
<details><summary><b>ssri-5.3.0.tgz</b></p></summary>
<p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz">https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/ssri/package.json</p>
<p>
Dependency Hierarchy:
- copy-webpack-plugin-4.6.0.tgz (Root Library)
- cacache-10.0.4.tgz
- :x: **ssri-5.3.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>ssri-6.0.1.tgz</b></p></summary>
<p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/terser-webpack-plugin/node_modules/ssri/package.json</p>
<p>
Dependency Hierarchy:
- webpack-4.29.6.tgz (Root Library)
- terser-webpack-plugin-1.2.3.tgz
- cacache-11.3.2.tgz
- :x: **ssri-6.0.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/Watemlifts/redash/commit/a08cef653c8e510e1ea3d6b1a2c103a504a76033">a08cef653c8e510e1ea3d6b1a2c103a504a76033</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option.
<p>Publish Date: 2021-03-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-27290>CVE-2021-27290</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-vx3p-948g-6vhq">https://github.com/advisories/GHSA-vx3p-948g-6vhq</a></p>
<p>Release Date: 2021-03-12</p>
<p>Fix Resolution (ssri): 6.0.2</p>
<p>Direct dependency fix Resolution (copy-webpack-plugin): 5.0.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in ssri tgz ssri tgz autoclosed cve high severity vulnerability vulnerable libraries ssri tgz ssri tgz ssri tgz standard subresource integrity library parses serializes generates and verifies integrity metadata according to the sri spec library home page a href path to dependency file package json path to vulnerable library node modules ssri package json dependency hierarchy copy webpack plugin tgz root library cacache tgz x ssri tgz vulnerable library ssri tgz standard subresource integrity library parses serializes generates and verifies integrity metadata according to the sri spec library home page a href path to dependency file package json path to vulnerable library node modules terser webpack plugin node modules ssri package json dependency hierarchy webpack tgz root library terser webpack plugin tgz cacache tgz x ssri tgz vulnerable library found in head commit a href vulnerability details ssri fixed in processes sris using a regular expression which is vulnerable to a denial of service malicious sris could take an extremely long time to process leading to denial of service this issue only affects consumers using the strict option publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution ssri direct dependency fix resolution copy webpack plugin step up your open source security game with whitesource | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.