text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 4.5.0</li> <li>Platform: Windows 10 (replicated on Ubuntu 18.04 as well)</li> <li>Python version: 3.6.8</li> <li>PyTorch version (GPU?): n/a</li> <li>Tensorflow version (GPU?): n/a</li> <li>Using GPU in script?: no</li> <li>Using distributed or parallel set-up in script?: no</li> </ul> <p dir="auto">Full package list:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="certifi==2020.12.5 chardet==4.0.0 click==7.1.2 dataclasses==0.8 filelock==3.0.12 idna==2.10 importlib-metadata==3.10.0 joblib==1.0.1 numpy==1.19.5 packaging==20.9 protobuf==3.15.7 pyparsing==2.4.7 regex==2021.4.4 requests==2.25.1 sacremoses==0.0.44 sentencepiece==0.1.95 six==1.15.0 tokenizers==0.10.2 tqdm==4.60.0 transformers==4.5.0 typing-extensions==3.7.4.3 urllib3==1.26.4 zipp==3.4.1"><pre class="notranslate"><code class="notranslate">certifi==2020.12.5 chardet==4.0.0 click==7.1.2 dataclasses==0.8 filelock==3.0.12 idna==2.10 importlib-metadata==3.10.0 joblib==1.0.1 numpy==1.19.5 packaging==20.9 protobuf==3.15.7 pyparsing==2.4.7 regex==2021.4.4 requests==2.25.1 sacremoses==0.0.44 sentencepiece==0.1.95 six==1.15.0 tokenizers==0.10.2 tqdm==4.60.0 transformers==4.5.0 typing-extensions==3.7.4.3 urllib3==1.26.4 zipp==3.4.1 </code></pre></div> <h3 dir="auto">Who can help</h3> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LysandreJik/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LysandreJik">@LysandreJik</a></p> <h2 dir="auto">Information</h2> <p dir="auto">Model I am using (Bert, XLNet ...): n/a</p> <p dir="auto">The problem arises when using:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> the official example scripts: (give details below)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> my own modified scripts: (give details below)</li> </ul> <p dir="auto">The tasks I am working on is:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> an official GLUE/SQUaD task: (give the name)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> my own task or dataset: (give details below)</li> </ul> <h2 dir="auto">To reproduce</h2> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; tokenizer = XLMRobertaTokenizerFast.from_pretrained('xlm-roberta-base') &gt;&gt;&gt; tokenizer.save_pretrained('test') ('test\\tokenizer_config.json', 'test\\special_tokens_map.json', 'test\\sentencepiece.bpe.model', 'test\\added_tokens.json') &gt;&gt;&gt; tokenizer_loaded = XLMRobertaTokenizerFast.from_pretrained('test') &gt;&gt;&gt; tokenizer('hello world', return_offsets_mapping=True) {'input_ids': [0, 33600, 31, 8999, 2], 'attention_mask': [1, 1, 1, 1, 1], 'offset_mapping': [(0, 0), (0, 4), (4, 5), (6, 11), (0, 0)]} &gt;&gt;&gt; tokenizer_loaded('hello world', return_offsets_mapping=True) {'input_ids': [0, 33600, 31, 8999, 2], 'attention_mask': [1, 1, 1, 1, 1], 'offset_mapping': [(0, 0), (0, 4), (4, 5), (5, 11), (0, 0)]}"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">tokenizer</span> <span class="pl-c1">=</span> <span class="pl-v">XLMRobertaTokenizerFast</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s">'xlm-roberta-base'</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">tokenizer</span>.<span class="pl-en">save_pretrained</span>(<span class="pl-s">'test'</span>) (<span class="pl-s">'test<span class="pl-cce">\\</span>tokenizer_config.json'</span>, <span class="pl-s">'test<span class="pl-cce">\\</span>special_tokens_map.json'</span>, <span class="pl-s">'test<span class="pl-cce">\\</span>sentencepiece.bpe.model'</span>, <span class="pl-s">'test<span class="pl-cce">\\</span>added_tokens.json'</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">tokenizer_loaded</span> <span class="pl-c1">=</span> <span class="pl-v">XLMRobertaTokenizerFast</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s">'test'</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-en">tokenizer</span>(<span class="pl-s">'hello world'</span>, <span class="pl-s1">return_offsets_mapping</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) {<span class="pl-s">'input_ids'</span>: [<span class="pl-c1">0</span>, <span class="pl-c1">33600</span>, <span class="pl-c1">31</span>, <span class="pl-c1">8999</span>, <span class="pl-c1">2</span>], <span class="pl-s">'attention_mask'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>], <span class="pl-s">'offset_mapping'</span>: [(<span class="pl-c1">0</span>, <span class="pl-c1">0</span>), (<span class="pl-c1">0</span>, <span class="pl-c1">4</span>), (<span class="pl-c1">4</span>, <span class="pl-c1">5</span>), (<span class="pl-c1">6</span>, <span class="pl-c1">11</span>), (<span class="pl-c1">0</span>, <span class="pl-c1">0</span>)]} <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-en">tokenizer_loaded</span>(<span class="pl-s">'hello world'</span>, <span class="pl-s1">return_offsets_mapping</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) {<span class="pl-s">'input_ids'</span>: [<span class="pl-c1">0</span>, <span class="pl-c1">33600</span>, <span class="pl-c1">31</span>, <span class="pl-c1">8999</span>, <span class="pl-c1">2</span>], <span class="pl-s">'attention_mask'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>], <span class="pl-s">'offset_mapping'</span>: [(<span class="pl-c1">0</span>, <span class="pl-c1">0</span>), (<span class="pl-c1">0</span>, <span class="pl-c1">4</span>), (<span class="pl-c1">4</span>, <span class="pl-c1">5</span>), (<span class="pl-c1">5</span>, <span class="pl-c1">11</span>), (<span class="pl-c1">0</span>, <span class="pl-c1">0</span>)]}</pre></div> <h2 dir="auto">Expected behavior</h2> <p dir="auto">The loaded tokenizer should produce the same offset mapping as the original tokenizer. It seems like the tokenizer loaded from disk does not account for spaces in its offset mapping.</p>
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li>transformers` version: 4.2.1</li> <li>Platform: Linux-4.19.112+-x86_64-with-Ubuntu-18.04-bionic</li> <li>Python version: 3.6.9</li> <li>PyTorch version (GPU?): 1.7.0+cu101 (False)</li> <li>Tensorflow version (GPU?): 2.4.0 (False)</li> <li>Using GPU in script?: yes</li> <li>Using distributed or parallel set-up in script?: no</li> </ul> <h3 dir="auto">Who can help</h3> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mfuntowicz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mfuntowicz">@mfuntowicz</a><br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/stefan-it/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/stefan-it">@stefan-it</a></p> <h2 dir="auto">Information</h2> <p dir="auto">Model I am using is XLM-RoBERTa.<br> The problem arises when using XLMRobertaTokenizerFast tokenizer.</p> <p dir="auto">The tasks I am working on is token-classification. In order to align the labels with the sub-word units I have used the code snippet provided here: <a href="https://huggingface.co/transformers/custom_datasets.html" rel="nofollow">https://huggingface.co/transformers/custom_datasets.html</a> [ Fine-tuning with custom datasets/Token Classification with W-NUT Emerging Entities ].</p> <p dir="auto">When trying to align the labels with the encodings, it throws: "ValueError: NumPy boolean array indexing assignment cannot assign X input values to the Y output values where the mask is true."</p> <p dir="auto">This behavior is due to tokenizing punctuation. Moreover comma ( ' , ' ) gets tokenized into '<strong>' and ',' ( having offset values (0,1) ) Similar behavior happens with dot. However, some other punctuation marks are producing only one token (i.g. ' : ' -&gt; '</strong>:').<br> In addition, the offset_mapping value for ':' is different in different sentences resulting either in (0,0) or (0,3) tuple. The problem is that padding tokens have offset tuple with values (0,0) which are excluded from alignment, but in this case I have to preserve the punctuation since it is POS tagging problem.</p> <h2 dir="auto">To reproduce</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(&quot;Token: {} Offset_mapping: {}&quot;.format(train_encodings[338].tokens[67], train_encodings[338].offsets[67])) # Token: ▁... Offset_mapping: (0, 0) print(&quot;Token: {} Offset_mapping: {}&quot;.format(train_encodings[20].tokens[2], train_encodings[20].offsets[2])) # Token: ▁... Offset_mapping: (0, 3) "><pre class="notranslate"><code class="notranslate">print("Token: {} Offset_mapping: {}".format(train_encodings[338].tokens[67], train_encodings[338].offsets[67])) # Token: ▁... Offset_mapping: (0, 0) print("Token: {} Offset_mapping: {}".format(train_encodings[20].tokens[2], train_encodings[20].offsets[2])) # Token: ▁... Offset_mapping: (0, 3) </code></pre></div> <p dir="auto">Moreover, although I fixed this issue by writing my own masks, I found new issue: the blank space which denotes start of the word is tokenized as separate token instead of being together with the starting sub-token.</p> <h2 dir="auto">To reproduce</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tokenizer = XLMRobertaTokenizerFast.from_pretrained(&quot;xlm-roberta-base&quot;) model= XLMRobertaForTokenClassification.from_pretrained(&quot;xlm-roberta-base&quot;) s = &quot;Je često kritizirao vladu .&quot; print(tokenizer.tokenize(s)) # output: ['▁Je', '▁često', '▁krit', 'izira', 'o', '▁', 'vlad', 'u', '▁', '.']"><pre class="notranslate"><code class="notranslate">tokenizer = XLMRobertaTokenizerFast.from_pretrained("xlm-roberta-base") model= XLMRobertaForTokenClassification.from_pretrained("xlm-roberta-base") s = "Je često kritizirao vladu ." print(tokenizer.tokenize(s)) # output: ['▁Je', '▁često', '▁krit', 'izira', 'o', '▁', 'vlad', 'u', '▁', '.'] </code></pre></div> <h2 dir="auto">Expected behavior</h2> <ol dir="auto"> <li>Punctuation marks should be consistently tokenized and having offset values different from padding tokens.</li> <li>The first sub-word token should be with preceding blank space everywhere.</li> </ol>
1
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">In Preview build, I can maximize terminal window by double clicking on title bar area (white colored tittle bar area) next to minimize button. As you can see in below image if I double click on the highlighted area it doesn't maximize the window.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18693839/60075260-86665580-9742-11e9-8a18-080f577ec8fa.png"><img src="https://user-images.githubusercontent.com/18693839/60075260-86665580-9742-11e9-8a18-080f577ec8fa.png" alt="QRUlRxAdEb" style="max-width: 100%;"></a></p> <p dir="auto">It doesn't feel natural as I need to go all the way to the right almost near to the maximize button to double click to toggle size of window. If I need to go all the way to the right then I can click maximize button instead. It ultimately reduce the usability of toggling the window using double click.</p> <p dir="auto">It would be really great if I can double click on blank area anywhere on the title bar to toggle the window.</p>
<p dir="auto">I think its really nice that you can put the terminal-tabs in your titlebar but I got an issue there.</p> <p dir="auto">You can't move the window around klicking on the blank space in the the-bar to move the window around (highlighted in the screenshot).</p> <p dir="auto">Since people are moving their terminal quite often it would be nice to offer this space, so you can drag your terminal around.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/34196171/57354083-ccebfa80-716a-11e9-91ac-55747463a95c.png"><img src="https://user-images.githubusercontent.com/34196171/57354083-ccebfa80-716a-11e9-91ac-55747463a95c.png" alt="grafik" style="max-width: 100%;"></a></p>
1
<p dir="auto">Why you aren't using html tag in progress bars. It will be simply to manage it with jquery</p>
1
<p dir="auto">It is a great option to have HTML tag fieldset and legend during form builder .Is it available in the current Symfony2 version. I didn't see the option to build forms using HTML tags fieldset and legend.</p> <p dir="auto">Srinivasa Varrey</p>
<p dir="auto">I would like to add a convenience type "fieldset" which extends "form", renders as fieldset and has the "virtual" (or "inherit_data" after <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="9705925" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/6573" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/6573/hovercard" href="https://github.com/symfony/symfony/pull/6573">#6573</a>) option set by default.</p> <p dir="auto">This should be implemented after <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="9705925" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/6573" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/6573/hovercard" href="https://github.com/symfony/symfony/pull/6573">#6573</a> is merged.</p>
1
<p dir="auto">If you leave the the modal control provided by the 'Vim Mode' package in command mode and disable the package, all editor panes will be left in an un-usable state where they do not accept any input until restarting the entire app.</p> <p dir="auto">On disabling the package, the modal state should be restored to the usual input mode.</p>
<p dir="auto">Steps to reproduce:</p> <ol dir="auto"> <li>Enable vim-mode</li> <li>Go to command mode</li> <li>Disable vim-mode from the settings tab</li> <li>Try to type or escape command mode!</li> </ol>
1
<p dir="auto">One is that the CanvasRenderer was moved to a new directory. Not very clear why?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;canvas id=&quot;myCanvas&quot; width=&quot;600&quot; height=&quot;900&quot;&gt;&lt;/canvas&gt; var renderer = new THREE.CanvasRenderer({canvas: $(&quot;#myCanvas&quot;)[0]});"><pre class="notranslate"><code class="notranslate">&lt;canvas id="myCanvas" width="600" height="900"&gt;&lt;/canvas&gt; var renderer = new THREE.CanvasRenderer({canvas: $("#myCanvas")[0]}); </code></pre></div> <p dir="auto">and CanvasRenderer is not longer working but WebGLRenderer is Ok.</p>
<p dir="auto">Is the CanvasRenderer class missing in the latest build?</p>
1
<p dir="auto"><strong>Glide Version</strong>: 4.6.0<br> implementation 'com.github.bumptech.glide:glide:4.6.0'<br> kapt 'com.github.bumptech.glide:compiler:4.6.0'</p> <p dir="auto"><strong>Integration libraries</strong>:<br> implementation 'com.github.bumptech.glide:okhttp3-integration:4.6.0'</p> <p dir="auto"><strong>Issue details / Repro steps / Use case background</strong>:<br> Can't compile on Android Studio 3.1-beta1 with version 4.6.0, Glide 4.5.0 compiles fine.</p> <p dir="auto"><strong>Stack trace / LogCat</strong>:</p> <div class="highlight highlight-source-ruby notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error: incompatible types: NonExistentClass cannot be converted to Annotation @error.NonExistentClass() ^"><pre class="notranslate"><span class="pl-en">error</span>: <span class="pl-en">incompatible</span> <span class="pl-pds">types</span>: <span class="pl-v">NonExistentClass</span> <span class="pl-en">cannot</span> <span class="pl-en">be</span> <span class="pl-en">converted</span> <span class="pl-en">to</span> <span class="pl-v">Annotation</span> <span class="pl-c1">@error</span><span class="pl-kos">.</span><span class="pl-en">NonExistentClass</span><span class="pl-kos">(</span><span class="pl-kos">)</span> ^<span class="pl-en"></span></pre></div>
<p dir="auto">It's simply not there, but it used to be in 4.5.0. In fact, all four transitive dependencies found in the pom for 4.5.0 are missing in 4.6.0.</p>
1
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;div class=&quot;cell&quot; @click=&quot;linkTo&quot;&gt; &lt;div class=&quot;cell-wrapper&quot;&gt; &lt;div class=&quot;cell-title&quot;&gt; &lt;slot&gt;&lt;slot&gt; &lt;/div&gt; &lt;div class=&quot;cell-link&quot; v-if=&quot;isLink&quot;&gt; &lt;i class=&quot;iconfont&quot;&gt;&lt;i&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">cell</span>" <span class="pl-c1">@click</span>="<span class="pl-s">linkTo</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">cell-wrapper</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">cell-title</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">slot</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">slot</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">cell-link</span>" <span class="pl-c1">v-if</span>="<span class="pl-s">isLink</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">i</span> <span class="pl-c1">class</span>="<span class="pl-s">iconfont</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">i</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span></pre></div> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;vcell&gt; &lt;div class=&quot;cell-input&quot;&gt; &lt;span&gt;电话:&lt;/span&gt; &lt;input type=&quot;text&quot; name=&quot;name&quot; value=&quot;&quot; placeholder=&quot;请填写收货手机号码&quot;&gt; &lt;/div&gt; &lt;/vcell&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">vcell</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">cell-input</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">span</span><span class="pl-kos">&gt;</span>电话:<span class="pl-kos">&lt;/</span><span class="pl-ent">span</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">text</span>" <span class="pl-c1">name</span>="<span class="pl-s">name</span>" <span class="pl-c1">value</span>="" <span class="pl-c1">placeholder</span>="<span class="pl-s">请填写收货手机号码</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">vcell</span><span class="pl-kos">&gt;</span></pre></div> <h3 dir="auto">Vue.js version</h3> <p dir="auto">2.0.8</p>
<h3 dir="auto">Version</h3> <p dir="auto">2.4.2</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://jsfiddle.net/5k4ptmqg/89/" rel="nofollow">https://jsfiddle.net/5k4ptmqg/89/</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">In a component render function, return an element that contains a slot directly followed by raw text.</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">New content completely replaces the old content on re-render.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">New content is appended to the old content on re-render.</p> <hr> <p dir="auto">Seems like this was fixed for render functions compiled from templates in <a href="https://github.com/vuejs/vue/releases/tag/v2.1.5">2.1.5</a>.</p> <p dir="auto">Release notes for that version says:</p> <blockquote> <p dir="auto">Small across-the-board performance improvement for render functions compiled from templates. They now skip the normalization of nested children arrays based on information inferred from the templates at compile time.</p> </blockquote> <p dir="auto">I couldn't reproduce this in <code class="notranslate">.vue</code> files in a project generated from <code class="notranslate">vue-cli</code> Webpack template. JSX is affected, as can be seen in <a href="https://github.com/skyrpex/vue-jsx-hot-loader/issues/14" data-hovercard-type="issue" data-hovercard-url="/skyrpex/vue-jsx-hot-loader/issues/14/hovercard">this issue</a> and, render functions, as seen in the linked fiddle.</p>
0
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> 4.0.0</li> <li>Operating System / Platform =&gt; <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> Fedora 27</li> <li>Compiler =&gt; ❔ gcc 7.3</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">There was a change less than a week ago where the C interface for some modules were removed. This has caused some build errors that you should be aware. There are many errors of this sort and the build fails.</p> <p dir="auto">/usr/local/include/opencv2/imgcodecs/imgcodecs_c.h:96:28: error: redeclaration of ‘CV_IMWRITE_PXM_BINARY’<br> CV_IMWRITE_PXM_BINARY =32,<br> ^~</p> <h5 dir="auto">Steps to reproduce</h5> Build from developer sources.
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.4/master + IE 2018R5</li> <li>Operating System / Platform =&gt; Ubuntu 16.04</li> <li>Compiler =&gt; gcc</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">Must be the problem of tests termination at buildbot</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">Add memory usage check:</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="static void printMem() { std::ifstream status(&quot;/proc/self/status&quot;); std::string line, title; size_t val; while (std::getline(status, line)) { std::istringstream iss(line); iss &gt;&gt; title; if (title == &quot;VmHWM:&quot;) { iss &gt;&gt; val; std::cout &lt;&lt; &quot;peak: &quot; &lt;&lt; val &lt;&lt; std::endl; } else if (title == &quot;VmRSS:&quot;) { iss &gt;&gt; val; std::cout &lt;&lt; &quot;rss: &quot; &lt;&lt; val &lt;&lt; std::endl; } } std::cout &lt;&lt; std::endl; } void testONNXModels(const String&amp; basename, const Extension ext = npy, const double l1 = 0, const float lInf = 0) { printMem(); // ..."><pre class="notranslate"><span class="pl-k">static</span> <span class="pl-k">void</span> <span class="pl-en">printMem</span>() { std::ifstream <span class="pl-smi">status</span>(<span class="pl-s"><span class="pl-pds">"</span>/proc/self/status<span class="pl-pds">"</span></span>); std::string line, title; <span class="pl-c1">size_t</span> val; <span class="pl-k">while</span> (<span class="pl-c1">std::getline</span>(status, line)) { std::istringstream <span class="pl-smi">iss</span>(line); iss &gt;&gt; title; <span class="pl-k">if</span> (title == <span class="pl-s"><span class="pl-pds">"</span>VmHWM:<span class="pl-pds">"</span></span>) { iss &gt;&gt; val; std::cout &lt;&lt; <span class="pl-s"><span class="pl-pds">"</span>peak: <span class="pl-pds">"</span></span> &lt;&lt; val &lt;&lt; std::endl; } <span class="pl-k">else</span> <span class="pl-k">if</span> (title == <span class="pl-s"><span class="pl-pds">"</span>VmRSS:<span class="pl-pds">"</span></span>) { iss &gt;&gt; val; std::cout &lt;&lt; <span class="pl-s"><span class="pl-pds">"</span>rss: <span class="pl-pds">"</span></span> &lt;&lt; val &lt;&lt; std::endl; } } std::cout &lt;&lt; std::endl; } <span class="pl-k">void</span> <span class="pl-en">testONNXModels</span>(<span class="pl-k">const</span> String&amp; basename, <span class="pl-k">const</span> Extension ext = npy, <span class="pl-k">const</span> <span class="pl-k">double</span> l1 = <span class="pl-c1">0</span>, <span class="pl-k">const</span> <span class="pl-k">float</span> lInf = <span class="pl-c1">0</span>) { <span class="pl-c1">printMem</span>(); <span class="pl-c"><span class="pl-c">//</span> ...</span></pre></div> <p dir="auto">OpenCV tests only:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ make -j4 &amp;&amp; ./bin/opencv_test_dnn --gtest_filter=Test_ONNX_nets*/1:-Test_ONNX_nets.LResNet100E_IR* [==========] Running 19 tests from 1 test case. [----------] Global test environment set-up. [----------] 19 tests from Test_ONNX_nets [ RUN ] Test_ONNX_nets.Alexnet/1, where GetParam() = OCV/CPU [ OK ] Test_ONNX_nets.Alexnet/1 (490 ms) [ RUN ] Test_ONNX_nets.Squeezenet/1, where GetParam() = OCV/CPU peak: 820764 rss: 50532 [ OK ] Test_ONNX_nets.Squeezenet/1 (19 ms) [ RUN ] Test_ONNX_nets.Googlenet/1, where GetParam() = OCV/CPU [ OK ] Test_ONNX_nets.Googlenet/1 (87 ms) [ RUN ] Test_ONNX_nets.CaffeNet/1, where GetParam() = OCV/CPU peak: 820764 rss: 133160 [ OK ] Test_ONNX_nets.CaffeNet/1 (486 ms) [ RUN ] Test_ONNX_nets.RCNN_ILSVRC13/1, where GetParam() = OCV/CPU peak: 827032 rss: 41772 [ OK ] Test_ONNX_nets.RCNN_ILSVRC13/1 (456 ms) [ RUN ] Test_ONNX_nets.VGG16/1, where GetParam() = OCV/CPU peak: 827032 rss: 41772 [ OK ] Test_ONNX_nets.VGG16/1 (1406 ms) [ RUN ] Test_ONNX_nets.VGG16_bn/1, where GetParam() = OCV/CPU peak: 2415128 rss: 41772 [ OK ] Test_ONNX_nets.VGG16_bn/1 (1404 ms) [ RUN ] Test_ONNX_nets.ZFNet/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ZFNet/1 (670 ms) [ RUN ] Test_ONNX_nets.ResNet18v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet18v1/1 (157 ms) [ RUN ] Test_ONNX_nets.ResNet50v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet50v1/1 (330 ms) [ RUN ] Test_ONNX_nets.ResNet101_DUC_HDC/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet101_DUC_HDC/1 (7726 ms) [ RUN ] Test_ONNX_nets.TinyYolov2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 49272 [ OK ] Test_ONNX_nets.TinyYolov2/1 (198 ms) [ RUN ] Test_ONNX_nets.CNN_MNIST/1, where GetParam() = OCV/CPU peak: 2415392 rss: 47828 [ OK ] Test_ONNX_nets.CNN_MNIST/1 (1 ms) [ RUN ] Test_ONNX_nets.MobileNet_v2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 47828 [ OK ] Test_ONNX_nets.MobileNet_v2/1 (70 ms) [ RUN ] Test_ONNX_nets.Emotion_ferplus/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42092 [ OK ] Test_ONNX_nets.Emotion_ferplus/1 (84 ms) [ RUN ] Test_ONNX_nets.Inception_v2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 120788 [ OK ] Test_ONNX_nets.Inception_v2/1 (127 ms) [ RUN ] Test_ONNX_nets.DenseNet121/1, where GetParam() = OCV/CPU peak: 2415392 rss: 138504 [ OK ] Test_ONNX_nets.DenseNet121/1 (151 ms) [ RUN ] Test_ONNX_nets.Inception_v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42156 [ OK ] Test_ONNX_nets.Inception_v1/1 (76 ms) [ RUN ] Test_ONNX_nets.Shufflenet/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42156 [ OK ] Test_ONNX_nets.Shufflenet/1 (84 ms) [----------] 19 tests from Test_ONNX_nets (14023 ms total) [----------] Global test environment tear-down [==========] 19 tests from 1 test case ran. (14023 ms total) [ PASSED ] 19 tests."><pre class="notranslate"><code class="notranslate">$ make -j4 &amp;&amp; ./bin/opencv_test_dnn --gtest_filter=Test_ONNX_nets*/1:-Test_ONNX_nets.LResNet100E_IR* [==========] Running 19 tests from 1 test case. [----------] Global test environment set-up. [----------] 19 tests from Test_ONNX_nets [ RUN ] Test_ONNX_nets.Alexnet/1, where GetParam() = OCV/CPU [ OK ] Test_ONNX_nets.Alexnet/1 (490 ms) [ RUN ] Test_ONNX_nets.Squeezenet/1, where GetParam() = OCV/CPU peak: 820764 rss: 50532 [ OK ] Test_ONNX_nets.Squeezenet/1 (19 ms) [ RUN ] Test_ONNX_nets.Googlenet/1, where GetParam() = OCV/CPU [ OK ] Test_ONNX_nets.Googlenet/1 (87 ms) [ RUN ] Test_ONNX_nets.CaffeNet/1, where GetParam() = OCV/CPU peak: 820764 rss: 133160 [ OK ] Test_ONNX_nets.CaffeNet/1 (486 ms) [ RUN ] Test_ONNX_nets.RCNN_ILSVRC13/1, where GetParam() = OCV/CPU peak: 827032 rss: 41772 [ OK ] Test_ONNX_nets.RCNN_ILSVRC13/1 (456 ms) [ RUN ] Test_ONNX_nets.VGG16/1, where GetParam() = OCV/CPU peak: 827032 rss: 41772 [ OK ] Test_ONNX_nets.VGG16/1 (1406 ms) [ RUN ] Test_ONNX_nets.VGG16_bn/1, where GetParam() = OCV/CPU peak: 2415128 rss: 41772 [ OK ] Test_ONNX_nets.VGG16_bn/1 (1404 ms) [ RUN ] Test_ONNX_nets.ZFNet/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ZFNet/1 (670 ms) [ RUN ] Test_ONNX_nets.ResNet18v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet18v1/1 (157 ms) [ RUN ] Test_ONNX_nets.ResNet50v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet50v1/1 (330 ms) [ RUN ] Test_ONNX_nets.ResNet101_DUC_HDC/1, where GetParam() = OCV/CPU peak: 2415392 rss: 41772 [ OK ] Test_ONNX_nets.ResNet101_DUC_HDC/1 (7726 ms) [ RUN ] Test_ONNX_nets.TinyYolov2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 49272 [ OK ] Test_ONNX_nets.TinyYolov2/1 (198 ms) [ RUN ] Test_ONNX_nets.CNN_MNIST/1, where GetParam() = OCV/CPU peak: 2415392 rss: 47828 [ OK ] Test_ONNX_nets.CNN_MNIST/1 (1 ms) [ RUN ] Test_ONNX_nets.MobileNet_v2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 47828 [ OK ] Test_ONNX_nets.MobileNet_v2/1 (70 ms) [ RUN ] Test_ONNX_nets.Emotion_ferplus/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42092 [ OK ] Test_ONNX_nets.Emotion_ferplus/1 (84 ms) [ RUN ] Test_ONNX_nets.Inception_v2/1, where GetParam() = OCV/CPU peak: 2415392 rss: 120788 [ OK ] Test_ONNX_nets.Inception_v2/1 (127 ms) [ RUN ] Test_ONNX_nets.DenseNet121/1, where GetParam() = OCV/CPU peak: 2415392 rss: 138504 [ OK ] Test_ONNX_nets.DenseNet121/1 (151 ms) [ RUN ] Test_ONNX_nets.Inception_v1/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42156 [ OK ] Test_ONNX_nets.Inception_v1/1 (76 ms) [ RUN ] Test_ONNX_nets.Shufflenet/1, where GetParam() = OCV/CPU peak: 2415392 rss: 42156 [ OK ] Test_ONNX_nets.Shufflenet/1 (84 ms) [----------] 19 tests from Test_ONNX_nets (14023 ms total) [----------] Global test environment tear-down [==========] 19 tests from 1 test case ran. (14023 ms total) [ PASSED ] 19 tests. </code></pre></div> <p dir="auto">DLIE/CPU tests:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ make -j4 &amp;&amp; ./bin/opencv_test_dnn --gtest_filter=Test_ONNX_nets*/0:-Test_ONNX_nets.LResNet100E_IR* [==========] Running 19 tests from 1 test case. [----------] Global test environment set-up. [----------] 19 tests from Test_ONNX_nets [ RUN ] Test_ONNX_nets.Alexnet/0, where GetParam() = DLIE/CPU [ OK ] Test_ONNX_nets.Alexnet/0 (1442 ms) [ RUN ] Test_ONNX_nets.Squeezenet/0, where GetParam() = DLIE/CPU peak: 820860 rss: 84860 [ OK ] Test_ONNX_nets.Squeezenet/0 (99 ms) [ RUN ] Test_ONNX_nets.Googlenet/0, where GetParam() = DLIE/CPU [ SKIP ] [ OK ] Test_ONNX_nets.Googlenet/0 (0 ms) [ RUN ] Test_ONNX_nets.CaffeNet/0, where GetParam() = DLIE/CPU peak: 820860 rss: 94116 [ OK ] Test_ONNX_nets.CaffeNet/0 (1425 ms) [ RUN ] Test_ONNX_nets.RCNN_ILSVRC13/0, where GetParam() = DLIE/CPU peak: 864380 rss: 93272 [ OK ] Test_ONNX_nets.RCNN_ILSVRC13/0 (1339 ms) [ RUN ] Test_ONNX_nets.VGG16/0, where GetParam() = DLIE/CPU peak: 864380 rss: 93272 [ OK ] Test_ONNX_nets.VGG16/0 (3475 ms) [ RUN ] Test_ONNX_nets.VGG16_bn/0, where GetParam() = DLIE/CPU peak: 2456332 rss: 197132 [ OK ] Test_ONNX_nets.VGG16_bn/0 (3459 ms) [ RUN ] Test_ONNX_nets.ZFNet/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 234012 [ OK ] Test_ONNX_nets.ZFNet/0 (2056 ms) [ RUN ] Test_ONNX_nets.ResNet18v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 257736 [ OK ] Test_ONNX_nets.ResNet18v1/0 (334 ms) [ RUN ] Test_ONNX_nets.ResNet50v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 437168 [ OK ] Test_ONNX_nets.ResNet50v1/0 (721 ms) [ RUN ] Test_ONNX_nets.ResNet101_DUC_HDC/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 736676 [ OK ] Test_ONNX_nets.ResNet101_DUC_HDC/0 (37156 ms) [ RUN ] Test_ONNX_nets.TinyYolov2/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2148244 [ OK ] Test_ONNX_nets.TinyYolov2/0 (367 ms) [ RUN ] Test_ONNX_nets.CNN_MNIST/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2093548 [ OK ] Test_ONNX_nets.CNN_MNIST/0 (9 ms) [ RUN ] Test_ONNX_nets.MobileNet_v2/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2093932 [ OK ] Test_ONNX_nets.MobileNet_v2/0 (235 ms) [ RUN ] Test_ONNX_nets.Emotion_ferplus/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2094008 [ OK ] Test_ONNX_nets.Emotion_ferplus/0 (198 ms) [ RUN ] Test_ONNX_nets.Inception_v2/0, where GetParam() = DLIE/CPU [ SKIP ] [ OK ] Test_ONNX_nets.Inception_v2/0 (0 ms) [ RUN ] Test_ONNX_nets.DenseNet121/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2094008 [ OK ] Test_ONNX_nets.DenseNet121/0 (704 ms) [ RUN ] Test_ONNX_nets.Inception_v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2114880 [ OK ] Test_ONNX_nets.Inception_v1/0 (297 ms) [ RUN ] Test_ONNX_nets.Shufflenet/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2114880 [ OK ] Test_ONNX_nets.Shufflenet/0 (367 ms) [----------] 19 tests from Test_ONNX_nets (53684 ms total) [----------] Global test environment tear-down [==========] 19 tests from 1 test case ran. (53684 ms total) [ PASSED ] 19 tests."><pre class="notranslate"><code class="notranslate">$ make -j4 &amp;&amp; ./bin/opencv_test_dnn --gtest_filter=Test_ONNX_nets*/0:-Test_ONNX_nets.LResNet100E_IR* [==========] Running 19 tests from 1 test case. [----------] Global test environment set-up. [----------] 19 tests from Test_ONNX_nets [ RUN ] Test_ONNX_nets.Alexnet/0, where GetParam() = DLIE/CPU [ OK ] Test_ONNX_nets.Alexnet/0 (1442 ms) [ RUN ] Test_ONNX_nets.Squeezenet/0, where GetParam() = DLIE/CPU peak: 820860 rss: 84860 [ OK ] Test_ONNX_nets.Squeezenet/0 (99 ms) [ RUN ] Test_ONNX_nets.Googlenet/0, where GetParam() = DLIE/CPU [ SKIP ] [ OK ] Test_ONNX_nets.Googlenet/0 (0 ms) [ RUN ] Test_ONNX_nets.CaffeNet/0, where GetParam() = DLIE/CPU peak: 820860 rss: 94116 [ OK ] Test_ONNX_nets.CaffeNet/0 (1425 ms) [ RUN ] Test_ONNX_nets.RCNN_ILSVRC13/0, where GetParam() = DLIE/CPU peak: 864380 rss: 93272 [ OK ] Test_ONNX_nets.RCNN_ILSVRC13/0 (1339 ms) [ RUN ] Test_ONNX_nets.VGG16/0, where GetParam() = DLIE/CPU peak: 864380 rss: 93272 [ OK ] Test_ONNX_nets.VGG16/0 (3475 ms) [ RUN ] Test_ONNX_nets.VGG16_bn/0, where GetParam() = DLIE/CPU peak: 2456332 rss: 197132 [ OK ] Test_ONNX_nets.VGG16_bn/0 (3459 ms) [ RUN ] Test_ONNX_nets.ZFNet/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 234012 [ OK ] Test_ONNX_nets.ZFNet/0 (2056 ms) [ RUN ] Test_ONNX_nets.ResNet18v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 257736 [ OK ] Test_ONNX_nets.ResNet18v1/0 (334 ms) [ RUN ] Test_ONNX_nets.ResNet50v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 437168 [ OK ] Test_ONNX_nets.ResNet50v1/0 (721 ms) [ RUN ] Test_ONNX_nets.ResNet101_DUC_HDC/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 736676 [ OK ] Test_ONNX_nets.ResNet101_DUC_HDC/0 (37156 ms) [ RUN ] Test_ONNX_nets.TinyYolov2/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2148244 [ OK ] Test_ONNX_nets.TinyYolov2/0 (367 ms) [ RUN ] Test_ONNX_nets.CNN_MNIST/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2093548 [ OK ] Test_ONNX_nets.CNN_MNIST/0 (9 ms) [ RUN ] Test_ONNX_nets.MobileNet_v2/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2093932 [ OK ] Test_ONNX_nets.MobileNet_v2/0 (235 ms) [ RUN ] Test_ONNX_nets.Emotion_ferplus/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2094008 [ OK ] Test_ONNX_nets.Emotion_ferplus/0 (198 ms) [ RUN ] Test_ONNX_nets.Inception_v2/0, where GetParam() = DLIE/CPU [ SKIP ] [ OK ] Test_ONNX_nets.Inception_v2/0 (0 ms) [ RUN ] Test_ONNX_nets.DenseNet121/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2094008 [ OK ] Test_ONNX_nets.DenseNet121/0 (704 ms) [ RUN ] Test_ONNX_nets.Inception_v1/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2114880 [ OK ] Test_ONNX_nets.Inception_v1/0 (297 ms) [ RUN ] Test_ONNX_nets.Shufflenet/0, where GetParam() = DLIE/CPU peak: 2554384 rss: 2114880 [ OK ] Test_ONNX_nets.Shufflenet/0 (367 ms) [----------] 19 tests from Test_ONNX_nets (53684 ms total) [----------] Global test environment tear-down [==========] 19 tests from 1 test case ran. (53684 ms total) [ PASSED ] 19 tests. </code></pre></div> <p dir="auto">Note: <code class="notranslate">LResNet100E_IR</code> is excluded because they changed the model again <g-emoji class="g-emoji" alias="confused" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f615.png">😕</g-emoji></p>
0
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="13:41:01 Bringing down cluster 13:41:49 ERROR: (gcloud.compute.instance-groups.managed.delete) Some requests did not succeed: 13:41:49 - Internal Error 13:41:49 13:41:51 ERROR: (gcloud.compute.instance-templates.delete) Some requests did not succeed: 13:41:51 - The instance_template resource 'e2e-slow-minion-template' is already being used by 'e2e-slow-minion-group' 13:41:51 13:41:57 Updated [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/zones/us-central1-f/instances/e2e-slow-master]. 13:42:44 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/zones/us-central1-f/instances/e2e-slow-master]. 13:43:09 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/firewalls/e2e-slow-master-https]. 13:43:26 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/firewalls/e2e-slow-minion-all]. 13:43:27 Deleting routes e2e-slow-5f46aa47-79b1-11e5-bafa-42010af00002 e2e-slow-96a9332a-79b7-11e5-bafa-42010af00002 e2e-slow-a8196f66-79b0-11e5-bafa-42010af00002 13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-5f46aa47-79b1-11e5-bafa-42010af00002]. 13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-96a9332a-79b7-11e5-bafa-42010af00002]. 13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-a8196f66-79b0-11e5-bafa-42010af00002]. 13:43:57 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/regions/us-central1/addresses/e2e-slow-master-ip]."><pre class="notranslate"><span class="pl-c1">13:41:01 Bringing down cluster</span> <span class="pl-c1">13:41:49 ERROR: (gcloud.compute.instance-groups.managed.delete) Some requests did not succeed:</span> <span class="pl-c1">13:41:49 - Internal Error</span> <span class="pl-c1">13:41:49 </span> <span class="pl-c1">13:41:51 ERROR: (gcloud.compute.instance-templates.delete) Some requests did not succeed:</span> <span class="pl-c1">13:41:51 - The instance_template resource 'e2e-slow-minion-template' is already being used by 'e2e-slow-minion-group'</span> <span class="pl-c1">13:41:51 </span> <span class="pl-c1">13:41:57 Updated [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/zones/us-central1-f/instances/e2e-slow-master].</span> <span class="pl-c1">13:42:44 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/zones/us-central1-f/instances/e2e-slow-master].</span> <span class="pl-c1">13:43:09 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/firewalls/e2e-slow-master-https].</span> <span class="pl-c1">13:43:26 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/firewalls/e2e-slow-minion-all].</span> <span class="pl-c1">13:43:27 Deleting routes e2e-slow-5f46aa47-79b1-11e5-bafa-42010af00002 e2e-slow-96a9332a-79b7-11e5-bafa-42010af00002 e2e-slow-a8196f66-79b0-11e5-bafa-42010af00002</span> <span class="pl-c1">13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-5f46aa47-79b1-11e5-bafa-42010af00002].</span> <span class="pl-c1">13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-96a9332a-79b7-11e5-bafa-42010af00002].</span> <span class="pl-c1">13:43:49 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/global/routes/e2e-slow-a8196f66-79b0-11e5-bafa-42010af00002].</span> <span class="pl-c1">13:43:57 Deleted [https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce-slow/regions/us-central1/addresses/e2e-slow-master-ip].</span></pre></div>
<p dir="auto">Our <code class="notranslate">kubernetes-upgrade-gce</code> Jenkins job has been broken for quite a while now, and it looks like it's due to target pools and/or forwarding rules leaking and exceeding quota:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Sep 2 00:48:45.094: INFO: event for mutability-service-test: {service-controller } creating loadbalancer: creating loadbalancer Sep 2 00:48:45.094: INFO: event for mutability-service-test: {service-controller } creating loadbalancer failed: error creating load balancer (will retry): failed to create external load balancer for service e2e-tests-services-mrlvq/mutability-service-test: googleapi: Error 403: Quota 'TARGET_POOLS' exceeded. Limit: 50.0"><pre class="notranslate"><code class="notranslate">Sep 2 00:48:45.094: INFO: event for mutability-service-test: {service-controller } creating loadbalancer: creating loadbalancer Sep 2 00:48:45.094: INFO: event for mutability-service-test: {service-controller } creating loadbalancer failed: error creating load balancer (will retry): failed to create external load balancer for service e2e-tests-services-mrlvq/mutability-service-test: googleapi: Error 403: Quota 'TARGET_POOLS' exceeded. Limit: 50.0 </code></pre></div> <p dir="auto">I've cleared out the old rules, and I'll try to diagnose what's leaking them and why.</p>
1
<p dir="auto">useContext hook have a problem. If you for example create a context like this:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React, { createContext, useState } from 'react'; export const DummyContext = createContext(); export const DummyProvider = (props) =&gt; { const [state1, setState1] = useState(''); const [state2, setState2] = useState(''); const [state3, setState3] = useState(''); return ( &lt;DummyContext.Provider value={[ [state1, setState1], [state2, setState2], [state3, setState3] ]} &gt; {props.children} &lt;/DummyContext.Provider ) }"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-s1">createContext</span><span class="pl-kos">,</span> <span class="pl-s1">useState</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-v">DummyContext</span> <span class="pl-c1">=</span> <span class="pl-en">createContext</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-v">DummyProvider</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">state1</span><span class="pl-kos">,</span> <span class="pl-s1">setState1</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos">(</span><span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">state2</span><span class="pl-kos">,</span> <span class="pl-s1">setState2</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos">(</span><span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">state3</span><span class="pl-kos">,</span> <span class="pl-s1">setState3</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos">(</span><span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-kos">(</span> <span class="pl-c1">&lt;</span><span class="pl-v">DummyContext</span><span class="pl-kos">.</span><span class="pl-v">Provider</span> <span class="pl-c1">value</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s1">state1</span><span class="pl-kos">,</span> <span class="pl-s1">setState1</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">state2</span><span class="pl-kos">,</span> <span class="pl-s1">setState2</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">state3</span><span class="pl-kos">,</span> <span class="pl-s1">setState3</span><span class="pl-kos">]</span> <span class="pl-kos">]</span><span class="pl-kos">}</span> <span class="pl-c1">&gt;</span> <span class="pl-kos">{</span><span class="pl-s1">props</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">}</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-v">DummyContext</span><span class="pl-kos">.</span><span class="pl-v">Provider</span><span class="pl-c1"></span> <span class="pl-kos">)</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Let's say I have also wrote something like this:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function App() { return ( &lt;DummyProvider&gt; &lt;SomeComponent/&gt; &lt;/DummyProvider&gt; ); }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-v">App</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">(</span> <span class="pl-c1">&lt;</span><span class="pl-ent">DummyProvider</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">SomeComponent</span><span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">DummyProvider</span><span class="pl-c1">&gt;</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">If I want to use that context inside SomeComponent, I will have to call those states and handlers in the exact order I have wrote inside DummyContext, because it seems React is looking for states and handlers by their index, instead of the name. If I don't use those states and handlers in the exact order, values will get mixed.</p> <p dir="auto">Other issue with that is that I can't call only handler for that state, but I also have to include that state even tho I might not use that state inside that component, but only that state handler. If I only include handler, it will give me error like 'handler is not a function', if we say that handler is the name of the actual handler.</p> <p dir="auto">Wouldn't it be better if it looks for those states by their name (since there can't be duplicate states in the context), so I would be able to include only those states I want from the context? Less code and it would be easier to maintain that code.</p>
<p dir="auto">I suddenly couldn't build my react project. This error seems to appear for many people.</p> <ul dir="auto"> <li><a href="https://stackoverflow.com/questions/52339225/react-typescript-2312-14-duplicate-identifier-librarymanagedattributes" rel="nofollow">https://stackoverflow.com/questions/52339225/react-typescript-2312-14-duplicate-identifier-librarymanagedattributes</a></li> <li><a href="https://stackoverflow.com/questions/52323056/typescript-error-duplicate-identifier-librarymanagedattributes" rel="nofollow">https://stackoverflow.com/questions/52323056/typescript-error-duplicate-identifier-librarymanagedattributes</a></li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="349280754" data-permission-text="Title is private" data-url="https://github.com/ant-design/ant-design/issues/11697" data-hovercard-type="issue" data-hovercard-url="/ant-design/ant-design/issues/11697/hovercard" href="https://github.com/ant-design/ant-design/issues/11697">ant-design/ant-design#11697</a></li> <li><a href="https://stackoverflow.com/questions/52399839/typescript-duplicate-identifier-librarymanagedattributes" rel="nofollow">https://stackoverflow.com/questions/52399839/typescript-duplicate-identifier-librarymanagedattributes</a></li> </ul> <p dir="auto"><code class="notranslate">yarn build</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Failed to compile. C:/dev/project/frontend/node_modules/@types/prop-types/node_modules/@types/react/index.d.ts (2312,14): Duplicate identifier 'LibraryManagedAttributes'. error Command failed with exit code 1."><pre class="notranslate"><code class="notranslate">Failed to compile. C:/dev/project/frontend/node_modules/@types/prop-types/node_modules/@types/react/index.d.ts (2312,14): Duplicate identifier 'LibraryManagedAttributes'. error Command failed with exit code 1. </code></pre></div> <p dir="auto">It looks like <code class="notranslate">LibraryManagedAttributes</code> is defined in the following files:</p> <ul dir="auto"> <li><code class="notranslate">node_modules/@types/react/index.d.ts</code></li> <li><code class="notranslate">node_modules/@types/prop-types/node_modules/@types/react/index.d.ts</code></li> <li><code class="notranslate">node_modules/@types/react-overlays/node_modules/@types/react/index.d.ts</code></li> <li>....</li> </ul> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">No error.</p> <p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;@types/react&quot;: &quot;^16.4.14&quot;, &quot;@types/react-dom&quot;: &quot;^16.0.7&quot;, &quot;@types/prop-types&quot;: &quot;^15.5.5&quot;, &quot;react&quot;: &quot;^16.5.2&quot;, &quot;react-dom&quot;: &quot;^16.5.2&quot;, &quot;prop-types&quot;: &quot;^15.6.2&quot;,"><pre class="notranslate"><code class="notranslate">"@types/react": "^16.4.14", "@types/react-dom": "^16.0.7", "@types/prop-types": "^15.5.5", "react": "^16.5.2", "react-dom": "^16.5.2", "prop-types": "^15.6.2", </code></pre></div>
0
<p dir="auto">From another thread proposed by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thockin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thockin">@thockin</a>:</p> <p dir="auto">"make a cluster of 1 minion, create<br> an RC of 50, then ramp that up in increments of 50 until it breaks.<br> Go figure out why it broke (I already mentioned 2 node-related issues<br> in the other thread) and repeat until we can get 250 pods on a machine<br> with none of them randomly crashing or getting killed.</p> <p dir="auto">Then focus on making apiserver not suck for listing those 250.</p> <p dir="auto">Then focus on making scheduler not suck for scheduling 250 new pods quickly.</p> <p dir="auto">"</p>
0
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/center-text-with-bootstrap" rel="nofollow">Center Text with Bootstrap</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;link href=&quot;https://fonts.googleapis.com/css?family=Lobster&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; &lt;style&gt; .red-text { color: red; } h2 { font-family: Lobster, Monospace; } p { font-size: 16px; font-family: Monospace; } .thick-green-border { border-color: green; border-width: 10px; border-style: solid; border-radius: 50%; } .smaller-image { width: 100px; } &lt;/style&gt; &lt;div class=&quot;container-fluid&quot;&gt; &lt;h2 class=&quot;red-text&quot;&gt;CatPhotoApp&lt;/h2&gt; &lt;p&gt;Click here for &lt;a href=&quot;#&quot;&gt;cat photos&lt;/a&gt;.&lt;/p&gt; &lt;a href=&quot;#&quot;&gt;&lt;img class=&quot;smaller-image thick-green-border&quot; src=&quot;https://bit.ly/fcc-relaxing-cat&quot; alt=&quot;A cute orange cat lying on its back. &quot;&gt;&lt;/a&gt; &lt;img src=&quot;https://bit.ly/fcc-running-cats&quot; class=&quot;img-responsive&quot; alt=&quot;Three kittens running towards the camera. &quot;&gt; &lt;p&gt;Things cats love:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;cat nip&lt;/li&gt; &lt;li&gt;laser pointers&lt;/li&gt; &lt;li&gt;lasagna&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Top 3 things cats hate:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;flea treatment&lt;/li&gt; &lt;li&gt;thunder&lt;/li&gt; &lt;li&gt;other cats&lt;/li&gt; &lt;/ol&gt; &lt;form action=&quot;/submit-cat-photo&quot;&gt; &lt;label&gt;&lt;input type=&quot;radio&quot; name=&quot;indoor-outdoor&quot;&gt; Indoor&lt;/label&gt; &lt;label&gt;&lt;input type=&quot;radio&quot; name=&quot;indoor-outdoor&quot;&gt; Outdoor&lt;/label&gt; &lt;label&gt;&lt;input type=&quot;checkbox&quot; name=&quot;personality&quot;&gt; Loving&lt;/label&gt; &lt;label&gt;&lt;input type=&quot;checkbox&quot; name=&quot;personality&quot;&gt; Lazy&lt;/label&gt; &lt;label&gt;&lt;input type=&quot;checkbox&quot; name=&quot;personality&quot;&gt; Crazy&lt;/label&gt; &lt;input type=&quot;text&quot; placeholder=&quot;cat photo URL&quot; required&gt; &lt;button type=&quot;submit&quot;&gt;Submit&lt;/button&gt; &lt;/form&gt; &lt;/div&gt; "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">link</span> <span class="pl-c1">href</span>="<span class="pl-s">https://fonts.googleapis.com/css?family=Lobster</span>" <span class="pl-c1">rel</span>="<span class="pl-s">stylesheet</span>" <span class="pl-c1">type</span>="<span class="pl-s">text/css</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> .<span class="pl-c1">red-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> red; } <span class="pl-ent">h2</span> { <span class="pl-c1">font-family</span><span class="pl-kos">:</span> Lobster<span class="pl-kos">,</span> Monospace; } <span class="pl-ent">p</span> { <span class="pl-c1">font-size</span><span class="pl-kos">:</span> <span class="pl-c1">16<span class="pl-smi">px</span></span>; <span class="pl-c1">font-family</span><span class="pl-kos">:</span> Monospace; } .<span class="pl-c1">thick-green-border</span> { <span class="pl-c1">border-color</span><span class="pl-kos">:</span> green; <span class="pl-c1">border-width</span><span class="pl-kos">:</span> <span class="pl-c1">10<span class="pl-smi">px</span></span>; <span class="pl-c1">border-style</span><span class="pl-kos">:</span> solid; <span class="pl-c1">border-radius</span><span class="pl-kos">:</span> <span class="pl-c1">50<span class="pl-smi">%</span></span>; } .<span class="pl-c1">smaller-image</span> { <span class="pl-c1">width</span><span class="pl-kos">:</span> <span class="pl-c1">100<span class="pl-smi">px</span></span>; } <span class="pl-kos">&lt;/</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h2</span> <span class="pl-c1">class</span>="<span class="pl-s">red-text</span>"<span class="pl-kos">&gt;</span>CatPhotoApp<span class="pl-kos">&lt;/</span><span class="pl-ent">h2</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span>Click here for <span class="pl-kos">&lt;</span><span class="pl-ent">a</span> <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">&gt;</span>cat photos<span class="pl-kos">&lt;/</span><span class="pl-ent">a</span><span class="pl-kos">&gt;</span>.<span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">a</span> <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">img</span> <span class="pl-c1">class</span>="<span class="pl-s">smaller-image thick-green-border</span>" <span class="pl-c1">src</span>="<span class="pl-s">https://bit.ly/fcc-relaxing-cat</span>" <span class="pl-c1">alt</span>="<span class="pl-s">A cute orange cat lying on its back. </span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">a</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">img</span> <span class="pl-c1">src</span>="<span class="pl-s">https://bit.ly/fcc-running-cats</span>" <span class="pl-c1">class</span>="<span class="pl-s">img-responsive</span>" <span class="pl-c1">alt</span>="<span class="pl-s">Three kittens running towards the camera. </span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span>Things cats love:<span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">ul</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>cat nip<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>laser pointers<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>lasagna<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">ul</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span>Top 3 things cats hate:<span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">ol</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>flea treatment<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>thunder<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span>other cats<span class="pl-kos">&lt;/</span><span class="pl-ent">li</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">ol</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">form</span> <span class="pl-c1">action</span>="<span class="pl-s">/submit-cat-photo</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">indoor-outdoor</span>"<span class="pl-kos">&gt;</span> Indoor<span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">indoor-outdoor</span>"<span class="pl-kos">&gt;</span> Outdoor<span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">&gt;</span> Loving<span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">&gt;</span> Lazy<span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">&gt;</span> Crazy<span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">text</span>" <span class="pl-c1">placeholder</span>="<span class="pl-s">cat photo URL</span>" <span class="pl-c1">required</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">type</span>="<span class="pl-s">submit</span>"<span class="pl-kos">&gt;</span>Submit<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">form</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">Hello,</p> <p dir="auto">I can't put my cursor on the h2 element lign to modify the part to make it "text-center". My cursor goes everywhere else, but not there...</p> <p dir="auto">Thank you very much for your help.</p>
<p dir="auto">In all the exercises, we the users are forced to press the enter key before writing any code.</p> <hr> <h4 dir="auto">Update:</h4> <p dir="auto">We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon.</p> <p dir="auto">The fix can be confirmed on the beta website.</p> <p dir="auto">The workaround currently on production website is:<br> Press the <kbd>Enter</kbd> key on the challenge editor and then proceed with the challenge.</p> <p dir="auto">Apologies for the inconvenience meanwhile.</p> <p dir="auto">Reach us in the chat room if you need any assistance.</p>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.6.2951.0 Any other software?"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.6.2951.0 Any other software? </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Open any console (I'm using PowerShell for this issue submission). After you open 3 tabs you get tab scroll bar buttons on either end.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">When opening many tabs I expect them to grow across the top like in any web browser and only show tab scroll bar buttons when needed (I have more tabs than the window can display).</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">I only ever see my 3 tabs and I have to scroll. A screenshot of this issue can be seen on my twitter feed... <a href="https://twitter.com/flying_maverick/status/1192882256517324800" rel="nofollow">https://twitter.com/flying_maverick/status/1192882256517324800</a></p>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.4.2382.0 Any other software?"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.4.2382.0 Any other software? </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">I install WSL - Ubuntu in Windows 10, want setup WSL in Windows Terminal. If change profile <strong>fontFace</strong> from <strong>Consolas</strong> to <strong>Ubuntu Mono derivative Powerline</strong> (<a href="https://github.com/powerline/fonts/tree/master/UbuntuMono">https://github.com/powerline/fonts/tree/master/UbuntuMono</a>), Windows Terminal will crash and close.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;acrylicOpacity&quot; : 0.5, &quot;background&quot; : &quot;#012456&quot;, &quot;closeOnExit&quot; : true, &quot;colorScheme&quot; : &quot;Campbell&quot;, &quot;commandline&quot; : &quot;wsl.exe -d Ubuntu /bin/bash -c zsh&quot;, &quot;cursorColor&quot; : &quot;#FFFFFF&quot;, &quot;cursorShape&quot; : &quot;bar&quot;, &quot;fontFace&quot; : &quot;Ubuntu Mono derivative Powerline&quot;, &quot;fontSize&quot; : 10, &quot;guid&quot; : &quot;{d5ed219b-a9ca-4618-8250-d6b965766ba6}&quot;, &quot;historySize&quot; : 9001, &quot;icon&quot; : &quot;ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png&quot;, &quot;name&quot; : &quot;Ubuntu&quot;, &quot;padding&quot; : &quot;0, 0, 0, 0&quot;, &quot;snapOnInput&quot; : true, &quot;startingDirectory&quot; : &quot;%USERPROFILE%&quot;, &quot;useAcrylic&quot; : true },"><pre class="notranslate"><code class="notranslate">{ "acrylicOpacity" : 0.5, "background" : "#012456", "closeOnExit" : true, "colorScheme" : "Campbell", "commandline" : "wsl.exe -d Ubuntu /bin/bash -c zsh", "cursorColor" : "#FFFFFF", "cursorShape" : "bar", "fontFace" : "Ubuntu Mono derivative Powerline", "fontSize" : 10, "guid" : "{d5ed219b-a9ca-4618-8250-d6b965766ba6}", "historySize" : 9001, "icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png", "name" : "Ubuntu", "padding" : "0, 0, 0, 0", "snapOnInput" : true, "startingDirectory" : "%USERPROFILE%", "useAcrylic" : true }, </code></pre></div> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Run wsl.exe with Powerline font in Windows Terminal.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Windows Terminal crash and close.</p>
0
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I/flutter (16829): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ I/flutter (16829): The following assertion was thrown building AvailabilityDetail(dirty, state: I/flutter (16829): AvailabilityDetailPageState#3c6d4): I/flutter (16829): 'package:flutter/src/widgets/text.dart': Failed assertion: line 230 pos 15: 'data != null': is not I/flutter (16829): true. I/flutter (16829): I/flutter (16829): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter (16829): more information in this error message to help you determine and fix the underlying cause. I/flutter (16829): In either case, please report this assertion by filing a bug on GitHub: I/flutter (16829): https://github.com/flutter/flutter/issues/new I/flutter (16829): I/flutter (16829): When the exception was thrown, this was the stack: I/flutter (16829): #2 new Text (package:flutter/src/widgets/text.dart:230:15) I/flutter (16829): #3 getAppBar (package:sipaper/CustomAppBar.dart:16:12) I/flutter (16829): #4 AvailabilityDetailPageState.build (package:sipaper/pi_chart_detail_view.dart:122:15) I/flutter (16829): #5 StatefulElement.build (package:flutter/src/widgets/framework.dart:3766:27) I/flutter (16829): #6 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3678:15) I/flutter (16829): #7 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #8 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #9 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #10 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #11 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #13 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #14 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #15 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #16 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #17 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #18 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #19 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #20 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #22 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #23 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #24 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #25 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #26 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #28 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #29 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #31 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #32 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #34 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #35 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #36 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #37 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #38 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #39 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #40 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #41 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #42 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #43 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #44 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #45 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #47 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #48 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #49 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #50 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #51 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #52 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #54 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #55 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #57 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #58 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #59 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #60 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #61 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #63 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #64 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #68 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #69 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #70 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #71 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #72 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #73 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #74 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #75 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #76 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #77 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #79 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #80 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #81 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #82 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #83 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #84 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #85 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #86 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #87 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #88 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #89 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #90 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #91 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #92 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #93 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #94 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #95 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #96 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #97 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #98 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #99 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #100 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #101 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #102 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4579:32) I/flutter (16829): #103 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4911:17) I/flutter (16829): #104 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #105 _TheatreElement.update (package:flutter/src/widgets/overlay.dart:507:16) I/flutter (16829): #106 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #107 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #108 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #109 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5) I/flutter (16829): #110 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #111 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #112 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #113 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5) I/flutter (16829): #114 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #115 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #116 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #117 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #118 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #119 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5) I/flutter (16829): #120 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #121 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #122 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #123 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #124 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #125 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #126 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #127 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2273:33) I/flutter (16829): #128 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;SemanticsBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:653:20) I/flutter (16829): #129 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;SemanticsBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) I/flutter (16829): #130 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) I/flutter (16829): #131 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) I/flutter (16829): #132 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5) I/flutter (16829): #133 _invoke (dart:ui/hooks.dart:128:13) I/flutter (16829): #134 _drawFrame (dart:ui/hooks.dart:117:3) I/flutter (16829): (elided 2 frames from class _AssertionError)"><pre class="notranslate"><code class="notranslate">I/flutter (16829): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ I/flutter (16829): The following assertion was thrown building AvailabilityDetail(dirty, state: I/flutter (16829): AvailabilityDetailPageState#3c6d4): I/flutter (16829): 'package:flutter/src/widgets/text.dart': Failed assertion: line 230 pos 15: 'data != null': is not I/flutter (16829): true. I/flutter (16829): I/flutter (16829): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter (16829): more information in this error message to help you determine and fix the underlying cause. I/flutter (16829): In either case, please report this assertion by filing a bug on GitHub: I/flutter (16829): https://github.com/flutter/flutter/issues/new I/flutter (16829): I/flutter (16829): When the exception was thrown, this was the stack: I/flutter (16829): #2 new Text (package:flutter/src/widgets/text.dart:230:15) I/flutter (16829): #3 getAppBar (package:sipaper/CustomAppBar.dart:16:12) I/flutter (16829): #4 AvailabilityDetailPageState.build (package:sipaper/pi_chart_detail_view.dart:122:15) I/flutter (16829): #5 StatefulElement.build (package:flutter/src/widgets/framework.dart:3766:27) I/flutter (16829): #6 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3678:15) I/flutter (16829): #7 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #8 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #9 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #10 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #11 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #13 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #14 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #15 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #16 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #17 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #18 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #19 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #20 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #22 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #23 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #24 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #25 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #26 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #28 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #29 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #31 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #32 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #34 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #35 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #36 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #37 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #38 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #39 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #40 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #41 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #42 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #43 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #44 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #45 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #47 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #48 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #49 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #50 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #51 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #52 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #54 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #55 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #57 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #58 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #59 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #60 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #61 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #63 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #64 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #68 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #69 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #70 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #71 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #72 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #73 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #74 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #75 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #76 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #77 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #79 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4796:14) I/flutter (16829): #80 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #81 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #82 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #83 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #84 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #85 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #86 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #87 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #88 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #89 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #90 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #91 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #92 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #93 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #94 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #95 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #96 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #97 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3658:5) I/flutter (16829): #98 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3805:11) I/flutter (16829): #99 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3653:5) I/flutter (16829): #100 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2937:14) I/flutter (16829): #101 Element.updateChild (package:flutter/src/widgets/framework.dart:2740:12) I/flutter (16829): #102 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4579:32) I/flutter (16829): #103 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4911:17) I/flutter (16829): #104 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #105 _TheatreElement.update (package:flutter/src/widgets/overlay.dart:507:16) I/flutter (16829): #106 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #107 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #108 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #109 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5) I/flutter (16829): #110 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #111 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #112 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #113 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5) I/flutter (16829): #114 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #115 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #116 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #117 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #118 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #119 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5) I/flutter (16829): #120 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #121 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #122 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #123 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14) I/flutter (16829): #124 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15) I/flutter (16829): #125 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16) I/flutter (16829): #126 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5) I/flutter (16829): #127 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2273:33) I/flutter (16829): #128 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;SemanticsBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:653:20) I/flutter (16829): #129 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;SemanticsBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) I/flutter (16829): #130 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) I/flutter (16829): #131 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) I/flutter (16829): #132 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5) I/flutter (16829): #133 _invoke (dart:ui/hooks.dart:128:13) I/flutter (16829): #134 _drawFrame (dart:ui/hooks.dart:117:3) I/flutter (16829): (elided 2 frames from class _AssertionError) </code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'package:flutter/src/widgets/text.dart': Failed assertion: line 207 pos 15: 'data != null': is not I/flutter (17269): true. I/flutter (17269): I/flutter (17269): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter (17269): more information in this error message to help you determine and fix the underlying cause. I/flutter (17269): In either case, please report this assertion by filing a bug on GitHub: I/flutter (17269): https://github.com/flutter/flutter/issues/new"><pre class="notranslate"><code class="notranslate">'package:flutter/src/widgets/text.dart': Failed assertion: line 207 pos 15: 'data != null': is not I/flutter (17269): true. I/flutter (17269): I/flutter (17269): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter (17269): more information in this error message to help you determine and fix the underlying cause. I/flutter (17269): In either case, please report this assertion by filing a bug on GitHub: I/flutter (17269): https://github.com/flutter/flutter/issues/new </code></pre></div> <p dir="auto">If the text is null, then the assertion fails. This seems like something that can happen easily with new users.</p>
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ X ] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ X ] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">( dateVariable | date:'yMMMMdjm') is producing '2016May1311 AM0'</p> <p dir="auto"><strong>Expected/desired behavior</strong></p> <p dir="auto">should produce May 13, 2016 11:00 AM like it was before updating</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.2</li> <li><strong>Browser:</strong> [Chrome 51.0.2704.103 m]</li> <li><strong>Language:</strong> [TypeScript 1.8.10]</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> Date pipe keeps the order of date components when using a custom format. According to the docs (<a href="https://angular.io/docs/ts/latest/api/common/index/DatePipe-pipe.html" rel="nofollow">https://angular.io/docs/ts/latest/api/common/index/DatePipe-pipe.html</a>) this shouldn't be the case: 'In javascript, only the components specified will be respected (not the ordering, punctuations, ...) and details of the formatting will be dependent on the locale.'</p> <p dir="auto"><strong>Expected behavior</strong><br> The date pipe should ignore ordering and whitespaces etc, it should only care about the date components and format the output date according to the locale.</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> <a href="http://plnkr.co/edit/fCZ4oVcn5qsnNssvSnar?p=preview" rel="nofollow">http://plnkr.co/edit/fCZ4oVcn5qsnNssvSnar?p=preview</a></p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> To be able to use custom date formats.</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> macOS Sierra, Visual Studio Code, NPM 3.10.3</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0 (Final release)</li> <li><strong>Browser:</strong> all</li> <li><strong>Language:</strong> TypeScript 2.0.2</li> <li><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = v6.3.0</li> </ul>
1
<h3 dir="auto">Superset version</h3> <p dir="auto">{"GIT_SHA": "", "version": "0.24.0"}</p> <h3 dir="auto">Expected results</h3> <p dir="auto">I create a table from a request (sql lab) -&gt; Superset view<br> How to copy this table (with sql) without losing the filled "verbose name" fields ?<br> I would like to use the same table but on different schemas</p>
<p dir="auto">Hi, I am trying to bring up superset version 0.37.2 while using sqlLite for metadata. However, the service fails to start with an error. Can someone please help with this?<br> <code class="notranslate">sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) table sqlatable_user already exists1</code></p> <h3 dir="auto">Actual results</h3> <p dir="auto">File "/appvenv/bin/superset", line 21, in <br> superset()<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 829, in <strong>call</strong><br> return self.main(*args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/flask/cli.py", line 586, in main<br> return super(FlaskGroup, self).main(*args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 782, in main<br> rv = self.invoke(ctx)<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 1259, in invoke<br> return _process_result(sub_ctx.command.invoke(sub_ctx))<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 1259, in invoke<br> return _process_result(sub_ctx.command.invoke(sub_ctx))<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 1066, in invoke<br> return ctx.invoke(self.callback, **ctx.params)<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 610, in invoke<br> return callback(*args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/click/decorators.py", line 21, in new_func<br> return f(get_current_context(), *args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/flask/cli.py", line 426, in decorator<br> return __ctx.invoke(f, *args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/click/core.py", line 610, in invoke<br> return callback(*args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/flask_migrate/cli.py", line 134, in upgrade<br> _upgrade(directory, revision, sql, tag, x_arg)<br> File "/appvenv/lib/python3.6/site-packages/flask_migrate/<strong>init</strong>.py", line 96, in wrapped<br> f(*args, **kwargs)<br> File "/appvenv/lib/python3.6/site-packages/flask_migrate/<strong>init</strong>.py", line 271, in upgrade<br> command.upgrade(config, revision, sql=sql, tag=tag)<br> File "/appvenv/lib/python3.6/site-packages/alembic/command.py", line 298, in upgrade<br> script.run_env()<br> File "/appvenv/lib/python3.6/site-packages/alembic/script/base.py", line 489, in run_env<br> util.load_python_file(self.dir, "env.py")<br> File "/appvenv/lib/python3.6/site-packages/alembic/util/pyfiles.py", line 98, in load_python_file<br> module = load_module_py(module_id, path)<br> File "/appvenv/lib/python3.6/site-packages/alembic/util/compat.py", line 184, in load_module_py<br> spec.loader.exec_module(module)<br> File "", line 678, in exec_module<br> File "", line 219, in <em>call_with_frames_removed<br> File "/appvenv/lib/python3.6/site-packages/superset/migrations/env.py", line 124, in <br> run_migrations_online()<br> File "/appvenv/lib/python3.6/site-packages/superset/migrations/env.py", line 116, in run_migrations_online<br> context.run_migrations()<br> File "", line 8, in run_migrations<br> File "/appvenv/lib/python3.6/site-packages/alembic/runtime/environment.py", line 846, in run_migrations<br> self.get_context().run_migrations(**kw)<br> File "/appvenv/lib/python3.6/site-packages/alembic/runtime/migration.py", line 522, in run_migrations<br> step.migration_fn(**kw)<br> File "/appvenv/lib/python3.6/site-packages/superset/migrations/versions/3e1b21cd94a4_change_owner_to_m2m_relation_on</em>.py", line 75, in upgrade<br> sa.PrimaryKeyConstraint("id"),<br> File "", line 8, in create_table<br> File "", line 3, in create_table<br> File "/appvenv/lib/python3.6/site-packages/alembic/operations/ops.py", line 1252, in create_table<br> return operations.invoke(op)<br> File "/appvenv/lib/python3.6/site-packages/alembic/operations/base.py", line 373, in invoke<br> return fn(self, operation)<br> File "/appvenv/lib/python3.6/site-packages/alembic/operations/toimpl.py", line 101, in create_table<br> operations.impl.create_table(table)<br> File "/appvenv/lib/python3.6/site-packages/alembic/ddl/impl.py", line 259, in create_table<br> self._exec(schema.CreateTable(table))<br> File "/appvenv/lib/python3.6/site-packages/alembic/ddl/impl.py", line 141, in _exec<br> return conn.execute(construct, *multiparams, **params)<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1011, in execute<br> return meth(self, multiparams, params)<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection<br> return connection._execute_ddl(self, multiparams, params)<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1073, in _execute_ddl<br> compiled,<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1317, in <em>execute_context<br> e, statement, parameters, cursor, context<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1511, in <em>handle_dbapi_exception<br> sqlalchemy_exception, with_traceback=exc_info[2], from</em>=e<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 182, in raise</em><br> raise exception<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1277, in _execute_context<br> cursor, statement, parameters, context<br> File "/appvenv/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 593, in do_execute<br> cursor.execute(statement, parameters)<br> sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) table sqlatable_user already exists</p> <h4 dir="auto">How to reproduce the bug</h4> <ol dir="auto"> <li>Try to bring up superset version 0.37.2</li> <li>Configure sqlLite to store metadata info.</li> </ol> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>superset version: 0.37.2</li> <li>python version: python3.6</li> <li>node.js version: v10.23.0</li> </ul> <h3 dir="auto">Checklist</h3> <p dir="auto">Make sure to follow these steps before submitting your issue - thank you!</p> <ul dir="auto"> <li>[ Y] I have checked the superset logs for python stacktraces and included it here as text if there are any.</li> <li>[ Y] I have reproduced the issue with at least the latest released version of superset.</li> <li>[ Y] I have checked the issue tracker for the same issue and I haven't found one similar.</li> </ul> <h3 dir="auto">Additional context</h3> <p dir="auto">Add any other context about the problem here.</p>
0
<h2 dir="auto">Request</h2> <p dir="auto">I want to request an option to omit runtime dependencies when auditing dependencies using <code class="notranslate">npm audit</code>. I would expect it to work identically to <code class="notranslate">--omit dev</code>, <code class="notranslate">--omit optional</code>, and <code class="notranslate">--omit peer</code> but instead for dependencies required through the <code class="notranslate">"dependencies"</code> field of <code class="notranslate">package.json</code>.</p> <h2 dir="auto">Reasoning</h2> <p dir="auto">This may sound like a surprising request, but my reasoning is as follows:</p> <p dir="auto">As a "library" - i.e. a package of code that is never run on it's own but only as part of a larger application, ex. <a href="https://www.npmjs.com/package/lodash" rel="nofollow">lodash</a> - maintainer I don't necessarily need to worry about vulnerabilities in runtime dependencies. In particular, say my library depends on some dependency and supports <code class="notranslate">^2.0.0</code> of that dependency. For most classes of vulnerabilities<sup><a href="#user-content-fn-1-d924e899ee6d5757ef0865035f2ae7e0" id="user-content-fnref-1-d924e899ee6d5757ef0865035f2ae7e0" data-footnote-ref="" aria-describedby="footnote-label">1</a></sup>, if there's a vulnerability in <code class="notranslate">2.1.0</code> of this dependency that is not relevant to me as a library maintainer. The library itself will never run the vulnerable code in an interesting setting and users of my library can safely upgrade to <code class="notranslate">2.1.1</code> of this dependency whenever they want.</p> <p dir="auto">Now, as a library maintainer I could have <code class="notranslate">^2.0.0</code> in my manifest and depend on <code class="notranslate">2.1.1</code> in my lockfile. However, as a library maintainer I'd (personally) want to depend on exactly the minimum version that is support (<code class="notranslate">2.0.0</code> in this case) during development to ensure my library stays compatible with that version of the dependency. Additionally, I (personally) consider bumping the version of a runtime dependency, even within the <code class="notranslate">^2.0.0</code> range, a breaking change; <strong>EDIT</strong>: <a href="https://github.com/npm/cli/issues/5726#issuecomment-1284458338" data-hovercard-type="issue" data-hovercard-url="/npm/cli/issues/5726/hovercard">this statement is incorrect</a>.</p> <p dir="auto">Considering all that, I think it should be possible to omit runtime dependencies from the <code class="notranslate">npm audit</code> results - because for library maintainers they may not be directly relevant.</p> <p dir="auto">If there's anything incorrect about my assessment, please do point it out 🙂</p> <section data-footnotes="" class="footnotes"><h2 id="footnote-label" class="sr-only" dir="auto">Footnotes</h2> <ol dir="auto"> <li id="user-content-fn-1-d924e899ee6d5757ef0865035f2ae7e0"> <p dir="auto">Using a broad definition of "vulnerabilities" here, in line with what <code class="notranslate">npm audit</code> might report on. Things like malware in a dependency would constitute a problem even in the scenario I'm describing. <a href="#user-content-fnref-1-d924e899ee6d5757ef0865035f2ae7e0" data-footnote-backref="" aria-label="Back to reference 1" class="data-footnote-backref"><g-emoji class="g-emoji" alias="leftwards_arrow_with_hook" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/21a9.png">↩</g-emoji></a></p> </li> </ol> </section>
<p dir="auto">16696 silly extract [email protected] extracted to /data/data/com.termux/files/home/craze/fir&gt;16697 http fetch GET 200 <a href="https://registry.npmjs.org/firebase/-/firebase-7.5.2.tgz" rel="nofollow">https://registry.npmjs.org/firebase/-/firebase-7.5.2.tgz</a> 336498ms 16698 silly extract [email protected] extracted to /data/data/com.termux/files/home/craze/firebaseui-web/node_modules/.s&gt;16699 http fetch GET 200 <a href="https://registry.npmjs.org/google-closure-compiler-linux/-/google-closure-compiler-linux-201%3E16700" rel="nofollow">https://registry.npmjs.org/google-closure-compiler-linux/-/google-closure-compiler-linux-201&gt;16700</a> silly extract [email protected] extracted to /data/data/com.termux/files/home/craze/fi&gt;16701 http fetch GET 200 <a href="https://registry.npmjs.org/google-closure-library/-/google-closure-library-20190415.0.0.tgz" rel="nofollow">https://registry.npmjs.org/google-closure-library/-/google-closure-library-20190415.0.0.tgz</a> 316702 silly extract [email protected] extracted to /data/data/com.termux/files/home/craze/firebaseu&gt;16703 timing npm Completed in 397469ms 16704 error cb() never called! 16705 error This is an error with npm itself. Please report this error at: 16706 error <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
0
<p dir="auto">When i use <code class="notranslate">com.github.bumptech.glide:okhttp3-integration:1.4.0</code> ,then build error.And i do not find the package <code class="notranslate">glide-parent</code> in mvnrepository.<br> <em>glide version 3.7.0</em></p>
<p dir="auto">It seems like something has gone wrong while deploying the OkHttp3 integration to the Maven repos</p> <p dir="auto"><a href="http://repo1.maven.org/maven2/com/github/bumptech/glide/okhttp3-integration/1.4.0/okhttp3-integration-1.4.0.pom" rel="nofollow">http://repo1.maven.org/maven2/com/github/bumptech/glide/okhttp3-integration/1.4.0/okhttp3-integration-1.4.0.pom</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;glide-parent&lt;/groupId&gt; &lt;artifactId&gt;library&lt;/artifactId&gt; &lt;version&gt;unspecified&lt;/version&gt; &lt;scope&gt;compile&lt;/scope&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.squareup.okhttp3&lt;/groupId&gt; &lt;artifactId&gt;okhttp&lt;/artifactId&gt; &lt;version&gt;3.0.1&lt;/version&gt; &lt;scope&gt;compile&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt;"><pre class="notranslate"><code class="notranslate">&lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;glide-parent&lt;/groupId&gt; &lt;artifactId&gt;library&lt;/artifactId&gt; &lt;version&gt;unspecified&lt;/version&gt; &lt;scope&gt;compile&lt;/scope&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.squareup.okhttp3&lt;/groupId&gt; &lt;artifactId&gt;okhttp&lt;/artifactId&gt; &lt;version&gt;3.0.1&lt;/version&gt; &lt;scope&gt;compile&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt; </code></pre></div> <p dir="auto">The dependency to Glide itself is wrong and doesn't work.</p> <p dir="auto"><strike>Workaround for now:</strike></p><strike> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" compile 'com.github.bumptech.glide:glide:3.7.0' compile ('com.github.bumptech.glide:okhttp3-integration:1.4.0'){ exclude group: 'glide-parent' }"><pre class="notranslate"><code class="notranslate"> compile 'com.github.bumptech.glide:glide:3.7.0' compile ('com.github.bumptech.glide:okhttp3-integration:1.4.0'){ exclude group: 'glide-parent' } </code></pre></div> </strike> <p dir="auto"><strong>1.5.0 is released, there should be no workaround needed</strong></p>
1
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1501" rel="nofollow">http://projects.scipy.org/numpy/ticket/1501</a> on 2010-06-03 by trac user dgoldsmith, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pv">@pv</a>.</em></p> <p dir="auto">Presently, the docstring standard does not specify how to note that an object is to be deprecated; it has been proposed that this needs to be rectified.</p> <p dir="auto">Obviously, this should be an optional section in general, but required for objects once it is decided that they are to be deprecated.</p> <p dir="auto">Discussion on scipy-dev agreed that this section should be at or near the top, but at the top or between the One-line and Extended Summaries have both been proposed - we will try to reach a consensus here.</p> <p dir="auto">Proposed format is to utilize Sphinx' .. deprecated:: directive; someone please provide a concrete example of what this looks like (for example, does this directive support multi-line content, and if so, what does that look like).</p> <p dir="auto">Proposed content: summaries of deprecation schedule (in version number time, not real time) and justification for deprecation (e.g., being replaced, duplicates extant functionality elsewhere); existing alternatives to obtain the same functionality. (Feel strongly that it should contain something else? Add it below as a comment.)</p> <p dir="auto">IMO, we should try to decide on this and update the standard by June 15 at the latest.</p> <p dir="auto">Have I forgotten anything?</p>
<h3 dir="auto">Describe the issue:</h3> <p dir="auto">I have a 4D array of shape [12, 11, 18, 3]. When I use np.arange() to do advanced indexing on the first and third dimensions, and index the 4th dimension with an integer, the return shape is [12, 11, 18], as expected. However, when I use np.arange() to do advanced indexing on the second dimension, the output shape is [11, 12, 18], which has the first and second dimensions transposed.</p> <h3 dir="auto">Reproduce the code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np voxels = np.zeros((12, 11, 18, 3)) print(voxels[np.arange(12), :, :, 0].shape) print(voxels[:, np.arange(11), :, 1].shape) print(voxels[:, :, np.arange(18), 2].shape) print(np.version.version)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-s1">voxels</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">zeros</span>((<span class="pl-c1">12</span>, <span class="pl-c1">11</span>, <span class="pl-c1">18</span>, <span class="pl-c1">3</span>)) <span class="pl-en">print</span>(<span class="pl-s1">voxels</span>[<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">12</span>), :, :, <span class="pl-c1">0</span>].<span class="pl-s1">shape</span>) <span class="pl-en">print</span>(<span class="pl-s1">voxels</span>[:, <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">11</span>), :, <span class="pl-c1">1</span>].<span class="pl-s1">shape</span>) <span class="pl-en">print</span>(<span class="pl-s1">voxels</span>[:, :, <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">18</span>), <span class="pl-c1">2</span>].<span class="pl-s1">shape</span>) <span class="pl-en">print</span>(<span class="pl-s1">np</span>.<span class="pl-s1">version</span>.<span class="pl-s1">version</span>)</pre></div> <h3 dir="auto">Error message:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Expected output: (12, 11, 18) (12, 11, 18) (12, 11, 18) Actual output: (12, 11, 18) **(11, 12, 18)** (12, 11, 18)"><pre class="notranslate">Expected output: (12, 11, 18) (12, 11, 18) (12, 11, 18) Actual output: (12, 11, 18) <span class="pl-k">**</span>(11, 12, 18)<span class="pl-k">**</span> (12, 11, 18)</pre></div> <h3 dir="auto">Runtime information:</h3> <p dir="auto">numpy 1.22.3</p> <h3 dir="auto">Context for the issue:</h3> <p dir="auto"><em>No response</em></p>
0
<p dir="auto"><strong>Symfony version(s) affected</strong>: 3.4.9 onwards</p> <p dir="auto"><strong>Description</strong><br> This bug, which seems to be introduced in Cache component's version 3.4.9 does not invalidate cache by tags. How to reproduce / possible solution can be found at Stack overflow thread: <a href="https://stackoverflow.com/questions/50290019/symfony-doesnt-remove-cache-by-tags" rel="nofollow">https://stackoverflow.com/questions/50290019/symfony-doesnt-remove-cache-by-tags</a></p>
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>yes</td> </tr> <tr> <td>Feature request?</td> <td>no</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>no</td> </tr> <tr> <td>Symfony version</td> <td>^4.0</td> </tr> </tbody> </table> <p dir="auto">I am using the <code class="notranslate">TagAwareAdapter</code> so I can invalidate my REDIS cache by tag. The problem is that, while the cache item gets invalidated, this change does not persist between requests.</p> <p dir="auto">See this reproduction <a href="https://github.com/Loupax/CachingTagInvalidationBug">repo</a> , it has four commands:<br> One that populates the cache, one that invalidates the cache by tag, one that fetches the keys and one that does all three in a single command.</p> <p dir="auto">Expected behaviour:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bin/console app:add $ bin/console app:invalidate $ bin/console app:get"><pre class="notranslate"><code class="notranslate">$ bin/console app:add $ bin/console app:invalidate $ bin/console app:get </code></pre></div> <p dir="auto">The final command should output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="item-0, isHit:false item-1, isHit:false item-2, isHit:false item-3, isHit:false item-4, isHit:false"><pre class="notranslate"><code class="notranslate">item-0, isHit:false item-1, isHit:false item-2, isHit:false item-3, isHit:false item-4, isHit:false </code></pre></div> <p dir="auto">Actual output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="item-0, isHit:true item-1, isHit:true item-2, isHit:true item-3, isHit:true item-4, isHit:true"><pre class="notranslate"><code class="notranslate">item-0, isHit:true item-1, isHit:true item-2, isHit:true item-3, isHit:true item-4, isHit:true </code></pre></div> <p dir="auto">Running the command <code class="notranslate">$ bin/console app:add-invalidate-and-get</code> works as expected</p>
1
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li>[] I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <p dir="auto">Electron version: v5.0.1<br> Operating system: MaxOS 10.14.4</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">As doc <a href="https://electronjs.org/docs/api/shell#shellopenexternalurl-options" rel="nofollow">https://electronjs.org/docs/api/shell#shellopenexternalurl-options</a></p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Link opened in the browser, but the browser is not brought to the foreground.</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">Upgrade electron to v5.0.1 in <a href="https://github.com/electron/electron-api-demos">https://github.com/electron/electron-api-demos</a></p> <p dir="auto">And try "open external links" demo</p>
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <p dir="auto">Note: related but different issues:</p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="541485582" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/21603" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/21603/hovercard" href="https://github.com/electron/electron/issues/21603">#21603</a> -- that one was using the older (callback) API, but this is using the latest (promise) API (and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="543814618" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/21639" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/21639/hovercard" href="https://github.com/electron/electron/issues/21639">#21639</a> appears to be a duplicate of that)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="439209407" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/18093" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/18093/hovercard" href="https://github.com/electron/electron/issues/18093">#18093</a> -- in that case some output is produced, but here a rejection occurs (and the affected electron versions are different).</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="509162734" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/20634" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/20634/hovercard" href="https://github.com/electron/electron/issues/20634">#20634</a> -- that one never ends, but this one rejects shortly after the call occurs</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li>v8.0.0-beta.5 (also happens in 9.0.0-nightly.20191220 &amp; 9.0.0-nightly.20200108)</li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>Debian (bullseye/sid) x64, 5.3.0 kernel</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>7.1.8, 8.0.0-beta.4, See <a href="https://github.com/electron/electron/issues/21708#issuecomment-573079603" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/21708/hovercard">bisect</a></li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Calling <code class="notranslate">someBrowserWindow.webContents.printToPDF</code> should not throw exception / generate promise rejection.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Calling <code class="notranslate">someBrowserWindow.webContents.printToPDF</code> rejects with <code class="notranslate">[Error: Failed to generate PDF]</code>.</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">Fiddle: <a href="https://gist.github.com/jacobq/cc5e5e1736b88cb32604f55369afd1c7">https://gist.github.com/jacobq/cc5e5e1736b88cb32604f55369afd1c7</a><br> Repo: <a href="https://github.com/jacobq/electron-quick-start/tree/bug/print-to-pdf">https://github.com/jacobq/electron-quick-start/tree/bug/print-to-pdf</a></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="mainWindow.webContents.once('did-finish-load', async function() { try { const pdfData = await mainWindow.webContents.printToPDF({}) console.log('Got PDF data --&gt;', pdfData) // never gets here } catch(e) { // output --&gt; Call to printToPDF threw exception [Error: Failed to generate PDF] console.error('Call to printToPDF threw exception', e) } });"><pre class="notranslate"><span class="pl-s1">mainWindow</span><span class="pl-kos">.</span><span class="pl-c1">webContents</span><span class="pl-kos">.</span><span class="pl-en">once</span><span class="pl-kos">(</span><span class="pl-s">'did-finish-load'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">try</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">pdfData</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">mainWindow</span><span class="pl-kos">.</span><span class="pl-c1">webContents</span><span class="pl-kos">.</span><span class="pl-en">printToPDF</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Got PDF data --&gt;'</span><span class="pl-kos">,</span> <span class="pl-s1">pdfData</span><span class="pl-kos">)</span> <span class="pl-c">// never gets here</span> <span class="pl-kos">}</span> <span class="pl-k">catch</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// output --&gt; Call to printToPDF threw exception [Error: Failed to generate PDF]</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">error</span><span class="pl-kos">(</span><span class="pl-s">'Call to printToPDF threw exception'</span><span class="pl-kos">,</span> <span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
0
<p dir="auto">as reported here:</p> <p dir="auto"><a href="http://sourceforge.net/mailarchive/forum.php?thread_name=20110610134529.GA6992%40phare.normalesup.org&amp;forum_name=scikit-learn-general" rel="nofollow">http://sourceforge.net/mailarchive/forum.php?thread_name=20110610134529.GA6992%40phare.normalesup.org&amp;forum_name=scikit-learn-general</a></p>
<p dir="auto">I am finding test_svm.py:test_svc_clone_with_callable_kernel to be flaky. I think there is maybe some randomness sneaking in. I got this on two machines. I am getting the errors in Python3 though, so I wanted to double check whether this is possibly a python3 bug before digging in too heavily (or if this is a known flaky test)</p> <p dir="auto">These two runs are right after eachother without any code changes.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(scikit-learn) justinvf@alf:~/github/justinvf$ nosetests --exe scikit-learn/sklearn/svm/tests/test_svm.py -s I: Seeding RNGs with 1127491369 ........................[LibLinear] Cloned dual coef: [[ 0.25 -0.25]] builint dual coef: [[ 0.25 -0.25]] Cloned intercept: [-0.] builint intercept: [-0.] cloned predicted proba: [[ 0.83311448 0.16688552] [ 0.73627062 0.26372938] [ 0.83311448 0.16688552] [ 0.21446606 0.78553394] [ 0.13232847 0.86767153] [ 0.13232847 0.86767153]] builtin predicted proba: [[ 0.82938691 0.17061309] [ 0.74157903 0.25842097] [ 0.82938691 0.17061309] [ 0.25841623 0.74158377] [ 0.17053327 0.82946673] [ 0.17053327 0.82946673]] F.. ====================================================================== FAIL: sklearn.svm.tests.test_svm.test_svc_clone_with_callable_kernel ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/nose/case.py&quot;, line 198, in runTest self.test(*self.arg) File &quot;/home/justinvf/github/justinvf/scikit-learn/sklearn/svm/tests/test_svm.py&quot;, line 638, in test_svc_clone_with_callable_kernel svm_builtin.predict_proba(X)) File &quot;/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/numpy/testing/utils.py&quot;, line 812, in assert_array_almost_equal header=('Arrays are not almost equal to %d decimals' % decimal)) File &quot;/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/numpy/testing/utils.py&quot;, line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not almost equal to 6 decimals (mismatch 100.0%) x: array([[ 0.83311448, 0.16688552], [ 0.73627062, 0.26372938], [ 0.83311448, 0.16688552],... y: array([[ 0.82938691, 0.17061309], [ 0.74157903, 0.25842097], [ 0.82938691, 0.17061309],... ---------------------------------------------------------------------- Ran 27 tests in 0.193s FAILED (failures=1) (scikit-learn) justinvf@alf:~/github/justinvf$ nosetests --exe scikit-learn/sklearn/svm/tests/test_svm.py -s I: Seeding RNGs with 245319400 ........................[LibLinear] Cloned dual coef: [[ 0.25 -0.25]] builtin dual coef: [[ 0.25 -0.25]] Cloned intercept: [-0.] builtin intercept: [-0.] cloned predicted proba: [[ 0.83518712 0.16481288] [ 0.74780932 0.25219068] [ 0.83518712 0.16481288] [ 0.25796172 0.74203828] [ 0.1689573 0.8310427 ] [ 0.1689573 0.8310427 ]] builtin predicted proba: [[ 0.83518712 0.16481288] [ 0.74780932 0.25219068] [ 0.83518712 0.16481288] [ 0.25796172 0.74203828] [ 0.1689573 0.8310427 ] [ 0.1689573 0.8310427 ]] ... ---------------------------------------------------------------------- Ran 27 tests in 0.191s OK"><pre class="notranslate"><code class="notranslate">(scikit-learn) justinvf@alf:~/github/justinvf$ nosetests --exe scikit-learn/sklearn/svm/tests/test_svm.py -s I: Seeding RNGs with 1127491369 ........................[LibLinear] Cloned dual coef: [[ 0.25 -0.25]] builint dual coef: [[ 0.25 -0.25]] Cloned intercept: [-0.] builint intercept: [-0.] cloned predicted proba: [[ 0.83311448 0.16688552] [ 0.73627062 0.26372938] [ 0.83311448 0.16688552] [ 0.21446606 0.78553394] [ 0.13232847 0.86767153] [ 0.13232847 0.86767153]] builtin predicted proba: [[ 0.82938691 0.17061309] [ 0.74157903 0.25842097] [ 0.82938691 0.17061309] [ 0.25841623 0.74158377] [ 0.17053327 0.82946673] [ 0.17053327 0.82946673]] F.. ====================================================================== FAIL: sklearn.svm.tests.test_svm.test_svc_clone_with_callable_kernel ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/nose/case.py", line 198, in runTest self.test(*self.arg) File "/home/justinvf/github/justinvf/scikit-learn/sklearn/svm/tests/test_svm.py", line 638, in test_svc_clone_with_callable_kernel svm_builtin.predict_proba(X)) File "/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/numpy/testing/utils.py", line 812, in assert_array_almost_equal header=('Arrays are not almost equal to %d decimals' % decimal)) File "/home/justinvf/virtualenvs/scikit-learn/lib/python3.3/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not almost equal to 6 decimals (mismatch 100.0%) x: array([[ 0.83311448, 0.16688552], [ 0.73627062, 0.26372938], [ 0.83311448, 0.16688552],... y: array([[ 0.82938691, 0.17061309], [ 0.74157903, 0.25842097], [ 0.82938691, 0.17061309],... ---------------------------------------------------------------------- Ran 27 tests in 0.193s FAILED (failures=1) (scikit-learn) justinvf@alf:~/github/justinvf$ nosetests --exe scikit-learn/sklearn/svm/tests/test_svm.py -s I: Seeding RNGs with 245319400 ........................[LibLinear] Cloned dual coef: [[ 0.25 -0.25]] builtin dual coef: [[ 0.25 -0.25]] Cloned intercept: [-0.] builtin intercept: [-0.] cloned predicted proba: [[ 0.83518712 0.16481288] [ 0.74780932 0.25219068] [ 0.83518712 0.16481288] [ 0.25796172 0.74203828] [ 0.1689573 0.8310427 ] [ 0.1689573 0.8310427 ]] builtin predicted proba: [[ 0.83518712 0.16481288] [ 0.74780932 0.25219068] [ 0.83518712 0.16481288] [ 0.25796172 0.74203828] [ 0.1689573 0.8310427 ] [ 0.1689573 0.8310427 ]] ... ---------------------------------------------------------------------- Ran 27 tests in 0.191s OK </code></pre></div> <p dir="auto">Here is the code (added the print statements that you see above):</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def test_svc_clone_with_callable_kernel(): # create SVM with callable linear kernel, check that results are the same # as with built-in linear kernel svm_callable = svm.SVC(kernel=lambda x, y: np.dot(x, y.T), probability=True) # clone for checking clonability with lambda functions.. svm_cloned = base.clone(svm_callable) svm_cloned.fit(X, Y) svm_builtin = svm.SVC(kernel='linear', probability=True) svm_builtin.fit(X, Y) # import pdb; pdb.set_trace() print('\nCloned dual coef: ', svm_cloned.dual_coef_, '\nbuiltin dual coef: ', svm_builtin.dual_coef_) assert_array_almost_equal(svm_cloned.dual_coef_, svm_builtin.dual_coef_) print('\nCloned intercept: ', svm_cloned.intercept_, '\nbuiltin intercept: ', svm_builtin.intercept_) assert_array_almost_equal(svm_cloned.intercept_, svm_builtin.intercept_) assert_array_equal(svm_cloned.predict(X), svm_builtin.predict(X)) print('\ncloned predicted proba: ', svm_cloned.predict_proba(X), '\nbuiltin predicted proba: ', svm_builtin.predict_proba(X)) assert_array_almost_equal(svm_cloned.predict_proba(X), svm_builtin.predict_proba(X)) assert_array_almost_equal(svm_cloned.decision_function(X), svm_builtin.decision_function(X)) "><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">test_svc_clone_with_callable_kernel</span>(): <span class="pl-c"># create SVM with callable linear kernel, check that results are the same</span> <span class="pl-c"># as with built-in linear kernel</span> <span class="pl-s1">svm_callable</span> <span class="pl-c1">=</span> <span class="pl-s1">svm</span>.<span class="pl-v">SVC</span>(<span class="pl-s1">kernel</span><span class="pl-c1">=</span><span class="pl-k">lambda</span> <span class="pl-s1">x</span>, <span class="pl-s1">y</span>: <span class="pl-s1">np</span>.<span class="pl-en">dot</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>.<span class="pl-v">T</span>), <span class="pl-s1">probability</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-c"># clone for checking clonability with lambda functions.. </span> <span class="pl-s1">svm_cloned</span> <span class="pl-c1">=</span> <span class="pl-s1">base</span>.<span class="pl-en">clone</span>(<span class="pl-s1">svm_callable</span>) <span class="pl-s1">svm_cloned</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>, <span class="pl-v">Y</span>) <span class="pl-s1">svm_builtin</span> <span class="pl-c1">=</span> <span class="pl-s1">svm</span>.<span class="pl-v">SVC</span>(<span class="pl-s1">kernel</span><span class="pl-c1">=</span><span class="pl-s">'linear'</span>, <span class="pl-s1">probability</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-s1">svm_builtin</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>, <span class="pl-v">Y</span>) <span class="pl-c"># import pdb; pdb.set_trace()</span> <span class="pl-en">print</span>(<span class="pl-s">'<span class="pl-cce">\n</span>Cloned dual coef: '</span>, <span class="pl-s1">svm_cloned</span>.<span class="pl-s1">dual_coef_</span>, <span class="pl-s">'<span class="pl-cce">\n</span>builtin dual coef: '</span>, <span class="pl-s1">svm_builtin</span>.<span class="pl-s1">dual_coef_</span>) <span class="pl-en">assert_array_almost_equal</span>(<span class="pl-s1">svm_cloned</span>.<span class="pl-s1">dual_coef_</span>, <span class="pl-s1">svm_builtin</span>.<span class="pl-s1">dual_coef_</span>) <span class="pl-en">print</span>(<span class="pl-s">'<span class="pl-cce">\n</span>Cloned intercept: '</span>, <span class="pl-s1">svm_cloned</span>.<span class="pl-s1">intercept_</span>, <span class="pl-s">'<span class="pl-cce">\n</span>builtin intercept: '</span>, <span class="pl-s1">svm_builtin</span>.<span class="pl-s1">intercept_</span>) <span class="pl-en">assert_array_almost_equal</span>(<span class="pl-s1">svm_cloned</span>.<span class="pl-s1">intercept_</span>, <span class="pl-s1">svm_builtin</span>.<span class="pl-s1">intercept_</span>) <span class="pl-en">assert_array_equal</span>(<span class="pl-s1">svm_cloned</span>.<span class="pl-en">predict</span>(<span class="pl-v">X</span>), <span class="pl-s1">svm_builtin</span>.<span class="pl-en">predict</span>(<span class="pl-v">X</span>)) <span class="pl-en">print</span>(<span class="pl-s">'<span class="pl-cce">\n</span>cloned predicted proba: '</span>, <span class="pl-s1">svm_cloned</span>.<span class="pl-en">predict_proba</span>(<span class="pl-v">X</span>), <span class="pl-s">'<span class="pl-cce">\n</span>builtin predicted proba: '</span>, <span class="pl-s1">svm_builtin</span>.<span class="pl-en">predict_proba</span>(<span class="pl-v">X</span>)) <span class="pl-en">assert_array_almost_equal</span>(<span class="pl-s1">svm_cloned</span>.<span class="pl-en">predict_proba</span>(<span class="pl-v">X</span>), <span class="pl-s1">svm_builtin</span>.<span class="pl-en">predict_proba</span>(<span class="pl-v">X</span>)) <span class="pl-en">assert_array_almost_equal</span>(<span class="pl-s1">svm_cloned</span>.<span class="pl-en">decision_function</span>(<span class="pl-v">X</span>), <span class="pl-s1">svm_builtin</span>.<span class="pl-en">decision_function</span>(<span class="pl-v">X</span>))</pre></div> <p dir="auto">This works maybe 10% of the time.</p>
0
<pre class="notranslate">Make a buffer in emacs, ending in a closing brace, without a trailing newline. Run M-x gofmt. gofmt buffer says: diff &lt;standard input&gt; gofmt/&lt;standard input&gt; --- /home/bradfitz/toiletwaffle.go 2012-11-09 00:20:59.596470604 -0800 +++ /tmp/gofmt864654113 2012-11-09 00:20:59.596470604 -0800 @@ -49,4 +49,4 @@ } } -} \ No newline at end of file +} Mini-buffer says: Try to auto-fix word-wrap damage? (y or n) If you add the trailing newline, it works fine.</pre>
<pre class="notranslate">What steps will reproduce the problem? 1. put "表.go" on windows japanese locale. (表 is 0x95 0x5c) What is the expected output? 表.exe is generated What do you see instead? executable is generated but filename was broken. Which compiler are you using (5g, 6g, 8g, gccgo)? 8g Which operating system are you using? Windows7 Which version are you using? (run 'go version') go version devel +e2dd08f26402 Wed Feb 12 12:34:04 2014 +1100 windows/386 Please provide any additional information below. <a href="https://golang.org/cl/63220043/" rel="nofollow">https://golang.org/cl/63220043/</a> <a href="https://golang.org/cl/43150043" rel="nofollow">https://golang.org/cl/43150043</a> <a href="http://go-gyazo.appspot.com/1e62666e56ead7f5.png" rel="nofollow">http://go-gyazo.appspot.com/1e62666e56ead7f5.png</a> <a href="http://go-gyazo.appspot.com/7726ef07295118c2.png" rel="nofollow">http://go-gyazo.appspot.com/7726ef07295118c2.png</a></pre>
0
<p dir="auto"><strong>Issue</strong><br> Wrapping/Scoping Bootstrap generates duplicate selectors with LESS.<br> The issue impacts negatively the third-party use of the BS.</p> <p dir="auto"><strong>Input:</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".bs-wrap { @import &quot;../bower_components/bootstrap/less/bootstrap.less&quot;; }"><pre class="notranslate"><code class="notranslate">.bs-wrap { @import "../bower_components/bootstrap/less/bootstrap.less"; } </code></pre></div> <p dir="auto"><strong>Output:</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".bs-wrap .bs-wrap .container:before, .bs-wrap .bs-wrap .container:after, .bs-wrap .bs-wrap .container-fluid:before, .bs-wrap .bs-wrap .container-fluid:after, .bs-wrap .bs-wrap .row:before, .bs-wrap .bs-wrap .row:after, .bs-wrap .bs-wrap .form-horizontal .form-group:before, .bs-wrap .bs-wrap .form-horizontal .form-group:after, .bs-wrap .bs-wrap .nav:before, .bs-wrap .bs-wrap .nav:after {"><pre class="notranslate"><code class="notranslate">.bs-wrap .bs-wrap .container:before, .bs-wrap .bs-wrap .container:after, .bs-wrap .bs-wrap .container-fluid:before, .bs-wrap .bs-wrap .container-fluid:after, .bs-wrap .bs-wrap .row:before, .bs-wrap .bs-wrap .row:after, .bs-wrap .bs-wrap .form-horizontal .form-group:before, .bs-wrap .bs-wrap .form-horizontal .form-group:after, .bs-wrap .bs-wrap .nav:before, .bs-wrap .bs-wrap .nav:after { </code></pre></div> <p dir="auto"><strong>Should be:</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".bs-wrap .container:before, .bs-wrap .container:after, .bs-wrap .container-fluid:before, .bs-wrap .container-fluid:after, ..."><pre class="notranslate"><code class="notranslate">.bs-wrap .container:before, .bs-wrap .container:after, .bs-wrap .container-fluid:before, .bs-wrap .container-fluid:after, ... </code></pre></div>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=rober2d2" rel="nofollow">Roberto Ruiz</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5352?redirect=false" rel="nofollow">SPR-5352</a></strong> and commented</p> <p dir="auto">I suppose this is more an Axis2 problem that an Spring one, but may be something can be done</p> <p dir="auto">I am programming a webservice using Axis2. The bean is provided by Spring:</p> <p dir="auto">&lt;parameter name="ServiceObjectSupplier"&gt;org.apache.axis2.extensions.spring.receivers.SpringServletContextObjectSupplier&lt;/parameter&gt;<br> &lt;parameter name="SpringBeanName"&gt;habilitadosWebService&lt;/parameter&gt;</p> <p dir="auto">It works OK, until I try to put an aspect around habilitadosWebService bean (The aspect is used to control security). When I start the Tomcat server, I recieve the following exception message: Unable to load bytecode for class $Proxy16. I also tried using CGLIB proxies, but the result is the same.</p> <p dir="auto">The stack trace is:</p> <p dir="auto">[ERROR] 11:54:19,592 The HabilitadosWeb service, which is not valid, caused The following error occurred during schema generation: Unable to load bytecode for class $Proxy16 (ServiceDeployer.java:deploy:96)<br> org.apache.axis2.deployment.DeploymentException: The following error occurred during schema generation: Unable to load bytecode for class $Proxy16<br> at org.apache.axis2.deployment.ServiceBuilder.populateService(ServiceBuilder.java:431)<br> at org.apache.axis2.deployment.repository.util.ArchiveReader.buildServiceGroup(ArchiveReader.java:102)<br> at org.apache.axis2.deployment.repository.util.ArchiveReader.processServiceGroup(ArchiveReader.java:179)<br> at org.apache.axis2.deployment.ServiceDeployer.deploy(ServiceDeployer.java:81)<br> at org.apache.axis2.deployment.repository.util.DeploymentFileData.deploy(DeploymentFileData.java:136)<br> at org.apache.axis2.deployment.DeploymentEngine.doDeploy(DeploymentEngine.java:597)<br> at org.apache.axis2.deployment.repository.util.WSInfoList.update(WSInfoList.java:144)<br> at org.apache.axis2.deployment.RepositoryListener.update(RepositoryListener.java:330)<br> at org.apache.axis2.deployment.RepositoryListener.checkServices(RepositoryListener.java:227)<br> at org.apache.axis2.deployment.DeploymentEngine.loadServices(DeploymentEngine.java:131)<br> at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices(WarBasedAxisConfigurator.java:284)<br> at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:82)<br> at org.apache.axis2.transport.http.AxisServlet.initConfigContext(AxisServlet.java:516)<br> at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:436)<br> at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1139)<br> at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:966)<br> at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3956)<br> at org.apache.catalina.core.StandardContext.start(StandardContext.java:4230)<br> at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)<br> at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)<br> at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)<br> at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)<br> at org.apache.catalina.core.StandardService.start(StandardService.java:448)<br> at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)<br> at org.apache.catalina.startup.Catalina.start(Catalina.java:552)<br> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br> at java.lang.reflect.Method.invoke(Method.java:585)<br> at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)<br> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)<br> Caused by: org.apache.axis2.deployment.DeploymentException: The following error occurred during schema generation: Unable to load bytecode for class $Proxy16<br> at org.apache.axis2.deployment.ServiceBuilder.populateService(ServiceBuilder.java:394)<br> ... 30 more<br> Caused by: java.io.IOException: Unable to load bytecode for class $Proxy16<br> at org.apache.axis2.description.java2wsdl.bytecode.ClassReader.getBytes(ClassReader.java:84)<br> at org.apache.axis2.description.java2wsdl.bytecode.ParamReader.&lt;init&gt;(ParamReader.java:57)<br> at org.apache.axis2.description.java2wsdl.bytecode.ChainedParamReader.&lt;init&gt;(ChainedParamReader.java:52)<br> at org.apache.axis2.description.java2wsdl.bytecode.MethodTable.&lt;init&gt;(MethodTable.java:31)<br> at org.apache.axis2.description.java2wsdl.DefaultSchemaGenerator.&lt;init&gt;(DefaultSchemaGenerator.java:158)<br> at org.apache.axis2.deployment.util.Utils.fillAxisService(Utils.java:524)<br> at org.apache.axis2.deployment.ServiceBuilder.populateService(ServiceBuilder.java:386)<br> ... 30 more</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.5.3</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398092333" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10026" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10026/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10026">#10026</a> Can't use aspects around Axis2 service beans (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=antonyblakey" rel="nofollow">Antony Blakey</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1259?redirect=false" rel="nofollow">SPR-1259</a></strong> and commented</p> <p dir="auto">org.springframework.web.servlet.FrameworkServer.serviceWrapper is private, which makes it impossible to create a subclass of DispatcherServlet that handles extended HTTP verbs such as the WebDAV set - to do this you need to override HttpServlet.service and pass calls to serviceWrapper. It's not an option to copy the serviceWrapper method because it refers to private fields. By simply changing serviceWrapper from private to protected this use case would be enabled.</p> <p dir="auto">The only workaround is to duplicate FrameworkServlet + DispatcherServlet in one's own code, which is a PITA in every way.</p> <hr> <p dir="auto"><strong>Affects:</strong> 1.2.4</p>
0
<p dir="auto"><code class="notranslate">DatetimeIndex._maybe_cast_slice_bound</code> can return the wrong value when you have an index that is monotonically decreasing, but not <em>strictly</em> monotonically decreasing.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import pandas as pd In [2]: pd.DatetimeIndex(['2017', '2017']) Out[2]: DatetimeIndex(['2017-01-01', '2017-01-01'], dtype='datetime64[ns]', freq=None) In [3]: pd.DatetimeIndex(['2017', '2017'])._maybe_cast_slice_bound('2017-01-01', 'left', 'loc') Out[3]: Timestamp('2017-01-01 23:59:59.999999999')"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">pd</span>.<span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2017'</span>, <span class="pl-s">'2017'</span>]) <span class="pl-v">Out</span>[<span class="pl-c1">2</span>]: <span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2017-01-01'</span>, <span class="pl-s">'2017-01-01'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'datetime64[ns]'</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-c1">None</span>) <span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">pd</span>.<span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2017'</span>, <span class="pl-s">'2017'</span>]).<span class="pl-en">_maybe_cast_slice_bound</span>(<span class="pl-s">'2017-01-01'</span>, <span class="pl-s">'left'</span>, <span class="pl-s">'loc'</span>) <span class="pl-v">Out</span>[<span class="pl-c1">3</span>]: <span class="pl-v">Timestamp</span>(<span class="pl-s">'2017-01-01 23:59:59.999999999'</span>)</pre></div> <p dir="auto">The issue is <a href="https://github.com/pandas-dev/pandas/blob/b0d9ee0b4c0911e089d4dd7c6a676557909fb7da/pandas/core/indexes/datetimes.py#L1469">here</a> That check really needs to check for strict monotonic decreasing, not just monotonic decreasing.</p> <p dir="auto">Have we hit any other needs for strict monotonic algos? This is such an extreme edge case, not sure it's worthwhile on its own.</p> <p dir="auto">Came up in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="231659280" data-permission-text="Title is private" data-url="https://github.com/dask/dask/issues/2389" data-hovercard-type="issue" data-hovercard-url="/dask/dask/issues/2389/hovercard" href="https://github.com/dask/dask/issues/2389">dask/dask#2389</a></p>
<p dir="auto">Writing a dataframe to csv using <code class="notranslate">df.to_csv("/path/to/file.csv")</code> causes the creation of an "unnamed" field containing the indexes of the rows. Continually writing/reading to/from this file will result in many "unnamed" fields. Once there are three unnamed fields you can no longer use loc to replace values, what's more, it fails silently.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [2]: df = DataFrame({'A': [1,2,3],'B': [4,5,501]}) In [3]: df Out[3]: A B 0 1 4 1 2 5 2 3 501 In [4]: df.B.loc[df.B &gt; 500] Out[4]: 2 501 Name: B, dtype: int64 In [5]: df.B.loc[df.B &gt; 500] = None In [6]: df Out[6]: A B 0 1 4.0 1 2 5.0 2 3 NaN "><pre class="notranslate"><code class="notranslate">In [2]: df = DataFrame({'A': [1,2,3],'B': [4,5,501]}) In [3]: df Out[3]: A B 0 1 4 1 2 5 2 3 501 In [4]: df.B.loc[df.B &gt; 500] Out[4]: 2 501 Name: B, dtype: int64 In [5]: df.B.loc[df.B &gt; 500] = None In [6]: df Out[6]: A B 0 1 4.0 1 2 5.0 2 3 NaN </code></pre></div> <p dir="auto">So far so good, I was able to replace all values in <code class="notranslate">df.B</code> with <code class="notranslate">NaN</code>. I then write this out and read it back in</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" In [7]: df.to_csv(&quot;./test.csv&quot;) In [8]: df = read_csv(&quot;./test.csv&quot;) In [9]: df.columns Out[9]: Index([u'Unnamed: 0', u'A', u'B'], dtype='object') In [10]: df Out[10]: Unnamed: 0 A B 0 0 1 4.0 1 1 2 5.0 2 2 3 NaN"><pre class="notranslate"><code class="notranslate"> In [7]: df.to_csv("./test.csv") In [8]: df = read_csv("./test.csv") In [9]: df.columns Out[9]: Index([u'Unnamed: 0', u'A', u'B'], dtype='object') In [10]: df Out[10]: Unnamed: 0 A B 0 0 1 4.0 1 1 2 5.0 2 2 3 NaN </code></pre></div> <p dir="auto">As you can see, this has create an unnamed field, but let's continue</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [14]: df.B.fillna(501, inplace=True) "><pre class="notranslate"><code class="notranslate">In [14]: df.B.fillna(501, inplace=True) </code></pre></div> <p dir="auto">This is jsut to get 501 in place of the <code class="notranslate">NaN</code> I created earlier which I forgot to do before writing out</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [15]: df.B Out[15]: 0 4.0 1 5.0 2 501.0 Name: B, dtype: float64 In [16]: df.B.loc[df.B &gt; 500] Out[16]: 2 501.0 Name: B, dtype: float64 In [17]: df.B.loc[df.B &gt; 500] = None ...SettingWithCopyWarning... In [18]: df.B Out[18]: 0 4.0 1 5.0 2 NaN Name: B, dtype: float64 "><pre class="notranslate"><code class="notranslate">In [15]: df.B Out[15]: 0 4.0 1 5.0 2 501.0 Name: B, dtype: float64 In [16]: df.B.loc[df.B &gt; 500] Out[16]: 2 501.0 Name: B, dtype: float64 In [17]: df.B.loc[df.B &gt; 500] = None ...SettingWithCopyWarning... In [18]: df.B Out[18]: 0 4.0 1 5.0 2 NaN Name: B, dtype: float64 </code></pre></div> <p dir="auto">Everything working fine</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" In [19]: df.fillna(501, inplace=True) In [20]: df.to_csv(&quot;./test.csv&quot;) In [21]: df = read_csv(&quot;./test.csv&quot;) In [22]: df.columns Out[22]: Index([u'Unnamed: 0', u'Unnamed: 0.1', u'A', u'B'], dtype='object') In [23]: df Out[23]: Unnamed: 0 Unnamed: 0.1 A B 0 0 0 1 4.0 1 1 1 2 5.0 2 2 2 3 501.0 "><pre class="notranslate"><code class="notranslate"> In [19]: df.fillna(501, inplace=True) In [20]: df.to_csv("./test.csv") In [21]: df = read_csv("./test.csv") In [22]: df.columns Out[22]: Index([u'Unnamed: 0', u'Unnamed: 0.1', u'A', u'B'], dtype='object') In [23]: df Out[23]: Unnamed: 0 Unnamed: 0.1 A B 0 0 0 1 4.0 1 1 1 2 5.0 2 2 2 3 501.0 </code></pre></div> <p dir="auto">Writing and reading again creates a 2nd unnamed field</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" In [24]: df.B.loc[df.B &gt; 500] Out[24]: 2 501.0 Name: B, dtype: float64 In [25]: df.B.loc[df.B &gt; 500] = None In [26]: df.B Out[26]: 0 4.0 1 5.0 2 NaN Name: B, dtype: float64 "><pre class="notranslate"><code class="notranslate"> In [24]: df.B.loc[df.B &gt; 500] Out[24]: 2 501.0 Name: B, dtype: float64 In [25]: df.B.loc[df.B &gt; 500] = None In [26]: df.B Out[26]: 0 4.0 1 5.0 2 NaN Name: B, dtype: float64 </code></pre></div> <p dir="auto">Which is no problem, everything still works so far...however</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" In [27]: df.fillna(501, inplace=True) In [28]: df Out[28]: Unnamed: 0 Unnamed: 0.1 A B 0 0 0 1 4.0 1 1 1 2 5.0 2 2 2 3 501.0 In [29]: df.to_csv(&quot;./test.csv&quot;) In [30]: df = read_csv(&quot;./test.csv&quot;) In [31]: df.columns Out[31]: Index([u'Unnamed: 0', u'Unnamed: 0.1', u'Unnamed: 0.1', u'A', u'B'], dtype='object') In [32]: df Out[32]: Unnamed: 0 Unnamed: 0.1 Unnamed: 0.1 A B 0 0 0 0 1 4.0 1 1 1 1 2 5.0 2 2 2 2 3 501.0 "><pre class="notranslate"><code class="notranslate"> In [27]: df.fillna(501, inplace=True) In [28]: df Out[28]: Unnamed: 0 Unnamed: 0.1 A B 0 0 0 1 4.0 1 1 1 2 5.0 2 2 2 3 501.0 In [29]: df.to_csv("./test.csv") In [30]: df = read_csv("./test.csv") In [31]: df.columns Out[31]: Index([u'Unnamed: 0', u'Unnamed: 0.1', u'Unnamed: 0.1', u'A', u'B'], dtype='object') In [32]: df Out[32]: Unnamed: 0 Unnamed: 0.1 Unnamed: 0.1 A B 0 0 0 0 1 4.0 1 1 1 1 2 5.0 2 2 2 2 3 501.0 </code></pre></div> <p dir="auto">We now have 3 unnamed fields</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" In [33]: df.B.loc[df.B &gt; 500] Out[33]: 2 501.0 Name: B, dtype: float64 In [34]: df.B.loc[df.B &gt; 500] = None In [35]: df.B Out[35]: 0 4.0 1 5.0 2 501.0 Name: B, dtype: float64"><pre class="notranslate"><code class="notranslate"> In [33]: df.B.loc[df.B &gt; 500] Out[33]: 2 501.0 Name: B, dtype: float64 In [34]: df.B.loc[df.B &gt; 500] = None In [35]: df.B Out[35]: 0 4.0 1 5.0 2 501.0 Name: B, dtype: float64 </code></pre></div> <p dir="auto">The method of replacing all values over 500 with <code class="notranslate">Nan</code> no longer works but also throws no errors or warnings.</p> <p dir="auto">You CAN get around this using <code class="notranslate">df.loc[df.B &gt; 500, 'B'] = None</code> but obviously you shouldn't have to.</p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Setting the keepMounted property to true on a Modal component should either:</p> <ul dir="auto"> <li>ensure that the Modal's children are mounted during server-side rendering, or</li> <li>have no impact on server-side rendering at all</li> </ul> <p dir="auto">Because the documentation explicitly points to the keepMounted property as a means to improve SEO, my expectation is that the Modal's children <em>should</em> be present on the SSR render. However, for my immediate use case I don't care if the children are there on SSR or not. I just need keepMounted Modals to not break SSR.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">When setting a Modal's keepMounted property to true, the Modal component will include content during the client's initial render that was not included during the server side render, causing a warning when React renders for the first time on the client. This is occurring because Portal does not render at all on the server side, but does render during the client's initial render. As a result, a keepMounted=true Modal component is incompatible with SSR.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">I'm not sure if this can be reproduced on codesandbox.io since it requires SSR for demonstration. If there is a preferred way to structure code for SSR-based issues, I'll be happy to follow whatever guidelines are provided and provide that as an edit to this issue. This issue can be reproduced with an SSR-rendered component that contains a <code class="notranslate">&lt;Modal keepMounted={true}&gt;&lt;div&gt;Content&lt;/div&gt;&lt;/Modal&gt;</code>.</p> <p dir="auto">As explained above, this appears to be a case of Portal rendering nothing on SSR, and something on initial client render. It is hopefully trivial to reproduce in any dev's SSR rendering solution of choice, but if there is a preferred SSR setup for including in issue reports, let me know what that is and I can provide a basic project.</p> <h2 dir="auto">Context</h2> <p dir="auto">I'm building a component whose modal children animate as the modal is shown. The keepMounted option ensures that those children are already in their proper starting positions before I toggle show to true on Modal. If I don't use keepMounted, the children will just pop into place. I can work around this issue using the onEnter* properties of Modal, but doing so requires orchestration of several state properties. That works, but is less preferable than having my whole component operate off of a single isOpen boolean, which is what keepMounted=true allowed for.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.21</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> <tr> <td>browser</td> <td>Chrome 62.0.3202.75</td> </tr> <tr> <td>Next.js</td> <td>4.1.4</td> </tr> </tbody> </table>
<p dir="auto">I need to manage certain application states via a linear progress bar. I will have about 5-6 different colours. When I follow Styled Examples I cannot set my colours to anything other than 'primary' or 'accent', which is not what I want.</p> <ul dir="auto"> <li>[x ] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="The colour should change to the applied colour from the import."><pre class="notranslate"><code class="notranslate">The colour should change to the applied colour from the import. </code></pre></div> <h2 dir="auto">Current Behavior</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Colour does not get applied"><pre class="notranslate"><code class="notranslate">Colour does not get applied </code></pre></div> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>import { green } from 'material-ui/colors';</li> <li>LinearProgress color={ green }</li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>latest</td> </tr> <tr> <td>React</td> <td>15.5.4</td> </tr> <tr> <td>browser</td> <td>Chrome</td> </tr> </tbody> </table>
0
<p dir="auto"><a href="http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html" rel="nofollow">http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html</a><br> I use Official Demo Can not run successfully<br> Please Update New Deomo</p>
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Documentation Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] "><pre class="notranslate"><code class="notranslate">ansible 2.4.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">CentOS Linux release 7.3.1611 (Core)</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto"><a href="http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html" rel="nofollow">http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html</a><br> I use Official Demo Can not run successfully<br> Please Update New Deomo</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html"><pre class="notranslate"><span class="pl-s">http://docs.ansible.com/ansible/latest/dev_guide/developing_api.html</span></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <h5 dir="auto">ACTUAL RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"> </code></pre></div>
1
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Foo {} impl Foo for () {} #[cfg(not(good))] fn foo(x: bool) -&gt; Box&lt;Foo+'static&gt; { match x { true =&gt; box() (), false =&gt; box() () } } #[cfg(good)] fn foo(x: bool) -&gt; Box&lt;Foo+'static&gt; { match x { true =&gt; box() () as Box&lt;Foo&gt;, false =&gt; box() () as Box&lt;Foo&gt; } } fn main() { foo(true); foo(false); }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">Foo</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-c1">#<span class="pl-kos">[</span>cfg<span class="pl-kos">(</span>not<span class="pl-kos">(</span>good<span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">:</span> <span class="pl-smi">bool</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">Box</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</span>+<span class="pl-c1">'</span><span class="pl-ent">static</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">match</span> x <span class="pl-kos">{</span> <span class="pl-c1">true</span> =&gt; <span class="pl-en">box</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">false</span> =&gt; <span class="pl-en">box</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-c1">#<span class="pl-kos">[</span>cfg<span class="pl-kos">(</span>good<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">:</span> <span class="pl-smi">bool</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">Box</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</span>+<span class="pl-c1">'</span><span class="pl-ent">static</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">match</span> x <span class="pl-kos">{</span> <span class="pl-c1">true</span> =&gt; <span class="pl-en">box</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">Box</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</span><span class="pl-kos">&gt;</span><span class="pl-kos">,</span> <span class="pl-c1">false</span> =&gt; <span class="pl-en">box</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">Box</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</span><span class="pl-kos">&gt;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">false</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Compiling with <code class="notranslate">--cfg good</code> (i.e. explicit casts) runs 100% fine, compiling without it (i.e. implicit coercions) segfaults/crashes. This also runs fine on 0.12 on the playpen, and with <code class="notranslate">if x {</code> instead of <code class="notranslate">match</code> .</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nick29581/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nick29581">@nick29581</a> (maybe?)</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Thing { fn hello(&amp;self) -&gt; uint; } struct Thing1 { name: String } impl Thing for Thing1 { fn hello(&amp;self) -&gt; uint { 1 } } struct Thing2 { name: String } impl Thing for Thing2 { fn hello(&amp;self) -&gt; uint { 2 } } fn main() { let t: Box&lt;Thing&gt; = match true { true =&gt; box Thing1 { name: &quot;hello&quot;.to_string() }, _ =&gt; box Thing2 { name: &quot;hello&quot;.to_string() }, }; println!(&quot;{}&quot;, t.hello()); }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Thing</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">hello</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">uint</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">struct</span> <span class="pl-smi">Thing1</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span><span class="pl-kos">:</span> <span class="pl-smi">String</span> <span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">Thing</span> <span class="pl-k">for</span> <span class="pl-smi">Thing1</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">hello</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">uint</span> <span class="pl-kos">{</span> <span class="pl-c1">1</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">struct</span> <span class="pl-smi">Thing2</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span><span class="pl-kos">:</span> <span class="pl-smi">String</span> <span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">Thing</span> <span class="pl-k">for</span> <span class="pl-smi">Thing2</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">hello</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">uint</span> <span class="pl-kos">{</span> <span class="pl-c1">2</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> t<span class="pl-kos">:</span> <span class="pl-smi">Box</span><span class="pl-kos">&lt;</span><span class="pl-smi">Thing</span><span class="pl-kos">&gt;</span> = <span class="pl-k">match</span> <span class="pl-c1">true</span> <span class="pl-kos">{</span> <span class="pl-c1">true</span> =&gt; box <span class="pl-smi">Thing1</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span><span class="pl-kos">:</span> <span class="pl-s">"hello"</span><span class="pl-kos">.</span><span class="pl-en">to_string</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> _ =&gt; box <span class="pl-smi">Thing2</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span><span class="pl-kos">:</span> <span class="pl-s">"hello"</span><span class="pl-kos">.</span><span class="pl-en">to_string</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, t.hello<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Running this code yields various failures (SIGSEGV, "Illegal instruction: 4"):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc s.rs # Warnings snipped $ ./s Illegal instruction: 4"><pre class="notranslate"><code class="notranslate">$ rustc s.rs # Warnings snipped $ ./s Illegal instruction: 4 </code></pre></div> <p dir="auto">LLDB has this to say:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(lldb) bt * thread #1: tid = 0x821935, 0x0000000100003358 s`Box$LT$Thing$GT$::glue_drop.1635::ha5cee14c6e595b4f + 72, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT) * frame #0: 0x0000000100003358 s`Box$LT$Thing$GT$::glue_drop.1635::ha5cee14c6e595b4f + 72 frame #1: 0x00000001000011f8 s`main::hb72fec937d964a29Zaa + 680 frame #2: 0x000000010000f2d9 s`rust_try_inner + 9 frame #3: 0x000000010000f2c6 s`rust_try + 6 frame #4: 0x000000010000e1df s`rt::lang_start::h270935babb5b337fRCz + 831 frame #5: 0x00000001000013bf s`main + 79 frame #6: 0x00007fff92d9b5c9 libdyld.dylib`start + 1"><pre class="notranslate"><code class="notranslate">(lldb) bt * thread #1: tid = 0x821935, 0x0000000100003358 s`Box$LT$Thing$GT$::glue_drop.1635::ha5cee14c6e595b4f + 72, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT) * frame #0: 0x0000000100003358 s`Box$LT$Thing$GT$::glue_drop.1635::ha5cee14c6e595b4f + 72 frame #1: 0x00000001000011f8 s`main::hb72fec937d964a29Zaa + 680 frame #2: 0x000000010000f2d9 s`rust_try_inner + 9 frame #3: 0x000000010000f2c6 s`rust_try + 6 frame #4: 0x000000010000e1df s`rt::lang_start::h270935babb5b337fRCz + 831 frame #5: 0x00000001000013bf s`main + 79 frame #6: 0x00007fff92d9b5c9 libdyld.dylib`start + 1 </code></pre></div> <p dir="auto">and I'm reasonably up-to-date:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc --version=verbose rustc 0.13.0-dev (1c2df5cc3 2014-12-20 01:12:19 +0000) binary: rustc commit-hash: 1c2df5cc3cfc0c9e80adf9fa6504d55056741c5a commit-date: 2014-12-20 01:12:19 +0000 host: x86_64-apple-darwin release: 0.13.0-dev"><pre class="notranslate"><code class="notranslate">$ rustc --version=verbose rustc 0.13.0-dev (1c2df5cc3 2014-12-20 01:12:19 +0000) binary: rustc commit-hash: 1c2df5cc3cfc0c9e80adf9fa6504d55056741c5a commit-date: 2014-12-20 01:12:19 +0000 host: x86_64-apple-darwin release: 0.13.0-dev </code></pre></div>
1
<p dir="auto">#### Summary</p> <p dir="auto">When trying to fetch to server with proxy, it just ignores proxy setting and fetch to server.<br> This problem already mentioned in this issue (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="203976734" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/672" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/672/hovercard" href="https://github.com/axios/axios/issues/672">#672</a>)<br> But closed for some reason. and still occurred now.<br> I am using latest versions of react-native, and axios.<br> Here is my code below.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let config = { proxy: { host: '127.0.0.1', port: 8118 } } axios.get('https://api.ipify.org/', config) .then(function (response) { console.log(&quot;-----------&quot;); console.log(response.data); console.log(&quot;-----------&quot;); })"><pre class="notranslate"><code class="notranslate">let config = { proxy: { host: '127.0.0.1', port: 8118 } } axios.get('https://api.ipify.org/', config) .then(function (response) { console.log("-----------"); console.log(response.data); console.log("-----------"); }) </code></pre></div> <p dir="auto">Output: <em><code class="notranslate">Original IP, not proxied one</code></em></p> <p dir="auto">#### Context</p> <ul dir="auto"> <li>axios version: v0.16.2</li> <li>Environment: node v.8.3.0, and react-native-cli 2.0.1</li> </ul>
<p dir="auto"><strong>Describe the issue</strong><br> version 0.19.0 , because mergeConfig : is not support custom parameters realization RESETful</p> <p dir="auto"><strong>Example Code</strong><br> Code snippet to illustrate your question</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="axios.delete(diagnosis, { params: { text: 'hello' }, pathParams: { userId: 1000, batchId: 'XD982393' } })"><pre class="notranslate"><span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">delete</span><span class="pl-kos">(</span><span class="pl-s1">diagnosis</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">params</span>: <span class="pl-kos">{</span> <span class="pl-c1">text</span>: <span class="pl-s">'hello'</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">pathParams</span>: <span class="pl-kos">{</span> <span class="pl-c1">userId</span>: <span class="pl-c1">1000</span><span class="pl-kos">,</span> <span class="pl-c1">batchId</span>: <span class="pl-s">'XD982393'</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <p dir="auto"><strong>Expected behavior, if applicable</strong><br> Workable</p> <p dir="auto"><strong>Environment:</strong></p> <ul dir="auto"> <li>All</li> </ul> <p dir="auto"><strong>Additional context/Screenshots</strong><br> none</p>
0
<p dir="auto">Both <code class="notranslate">Request.prototype[_mimeType]</code> and <code class="notranslate">Response.prototype[_mimeType]</code> implement the <a href="https://fetch.spec.whatwg.org/#concept-header-extract-mime-type" rel="nofollow">extract a MIME type</a> algorithm. These should be deduplicated.</p> <p dir="auto">In fact, it would make sense to implement this algorithm in <code class="notranslate">ext/web/01_mimesniff.js</code>, taking <code class="notranslate">values</code> as its argument rather than a header list.</p>
<p dir="auto"><code class="notranslate">DenoCompiler.madeDefine()</code> can be improved, where there is some duplication of code for the <code class="notranslate">localRequire</code> and what is used when resolving dependencies in the <code class="notranslate">define</code>.</p> <p dir="auto">The reason we support <code class="notranslate">require</code> as a dependency is to facilitate compatibility with ES dynamic <code class="notranslate">import()</code>. The way TypeScript accomplishes this is by using a <a href="https://github.com/amdjs/amdjs-api/blob/master/require.md">non-AMD specified</a> optional third argument for local <code class="notranslate">require</code>. This is used to "reject" the <code class="notranslate">Promise</code> that is used to resolve the require. The third argument was implemented by RequireJS but never added to the spec. Technically the local require we have implemented doesn't support returning immediately with already resolved dependencies either, so the only thing that it is good for is facilitating TypeScript emitting ES dynamic <code class="notranslate">import()</code>, therefore we should just make <code class="notranslate">errback</code> a mandatory argument.</p>
0
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">When the application grows a certain point and component styles could not be shared in the same <code class="notranslate">&lt;style&gt;</code> tag, Angular creates a new style tag to host CSS definitions and attaches that to document head.</p> <p dir="auto">There is a <a href="https://support.microsoft.com/en-us/help/262161/a-webpage-that-uses-css-styles-does-not-render-correctly-in-internet-explorer" rel="nofollow">limitation</a> in Internet Explorer 9 which prevents <code class="notranslate">&lt;style&gt;</code> tags after the first 31 are ignored by the browser. This limitation makes Angular applications "randomly" miss out the styles for components. I say random, because it seems style tags are created and appended to document head in component load order and user's navigation story throughout the app may have a significant effect on which styles will load and which ones will be ignored.</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">Given the number of style tags allowed in Internet Explorer is very low, any sufficiently large application will hit this barrier very quickly. Because this limitation cannot be extended to a more reasonable limit, I think Angular should provide a way to put a hard limit on number of style tags to a level to keep support for this browser.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p> <p dir="auto">An application under test should have enough components to have the framework create more than 31 stylesheets. See <a href="https://plnkr.co/JeJ9uT" rel="nofollow">https://plnkr.co/JeJ9uT</a> for an example plunkr. On IE9, styles for component-29 and later are not applied (one style tag is inlined in index.html and one is created for root component, leaving 29 slots for generated components).</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto">Most obvious workaround for this problem is to move all component styles out of a separate CSS file and leave the <code class="notranslate">styles</code> and <code class="notranslate">styleUrls</code> properties blank for component metadata. But this removes the encapsulation feature of the framework. Even then, this may not be suitable for all application configurations especially when they depend on third party component libraries such as material2 or ng-bootstrap.</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <p dir="auto">Environment irrelevant.</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.4.9</li> </ul> <ul dir="auto"> <li><strong>Browser:</strong> [IE 9]</li> </ul> <ul dir="auto"> <li> <p dir="auto"><strong>Language:</strong> [all]</p> </li> <li> <p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = NA</p> </li> </ul>
<p dir="auto">Trying to inject <code class="notranslate">AsyncTestCompleter</code> into a <code class="notranslate">beforeEach</code> block results in an <code class="notranslate">InstantiationError</code>.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" beforeEach(inject([TestComponentBuilder, AsyncTestCompleter], (tcb, atc) =&gt; { builder = tcb; async = atc; }));"><pre class="notranslate"> <span class="pl-en">beforeEach</span><span class="pl-kos">(</span><span class="pl-en">inject</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-smi">TestComponentBuilder</span><span class="pl-kos">,</span> <span class="pl-smi">AsyncTestCompleter</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">tcb</span><span class="pl-kos">,</span> <span class="pl-s1">atc</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">builder</span> <span class="pl-c1">=</span> <span class="pl-s1">tcb</span><span class="pl-kos">;</span> <span class="pl-s1">async</span> <span class="pl-c1">=</span> <span class="pl-s1">atc</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: Error during instantiation of AsyncTestCompleter!."><pre class="notranslate"><code class="notranslate">Error: Error during instantiation of AsyncTestCompleter!. </code></pre></div> <p dir="auto">It would allow tests to be significantly cleaner by supporting this, as it would prevent a lot of duplication in writing each test (<code class="notranslate">inject</code>ing <code class="notranslate">AsyncTestCompleter</code> into each <code class="notranslate">it</code>).</p>
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.19041.329 PowerToys version: 0.19.2 PowerToy module for which you are reporting the bug (if applicable):"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.19041.329 PowerToys version: 0.19.2 PowerToy module for which you are reporting the bug (if applicable): </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Open PowerToys<br> Right click on systray icon and click on settings<br> resize or move settings window<br> close settings window<br> right click on systray icon and click on settings</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">pt settings would keep its position and size</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">pt reverts to its original position and size</p> <h1 dir="auto">Screenshots</h1>
<h1 dir="auto">Environment</h1> <p dir="auto">Microsoft Windows [Version 10.0.19041.264]</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run &quot;ver&quot; at a command prompt] PowerToys version: PowerToy module for which you are reporting the bug (if applicable):"><pre class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt] PowerToys version: PowerToy module for which you are reporting the bug (if applicable): </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Click powertoys in notification tray, window is on set size that cannot be adjusted, meaning everytime you click on the icon , the window reverts to default size and location</p> <h1 dir="auto">Expected behavior</h1> <h1 dir="auto">Actual behavior</h1> <h1 dir="auto">Screenshots</h1>
1
<p dir="auto">I recently installed numpy on RPI Zero running Python3.9. Upon trying to run <code class="notranslate">#import numpy</code> I get the error that <code class="notranslate">libcblas.so.3</code> is missing:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;/usr/local/lib/python3.9/dist-packages/numpy/core/__init__.py&quot;, line 23, in &lt;module&gt; from . import multiarray File &quot;/usr/local/lib/python3.9/dist-packages/numpy/core/multiarray.py&quot;, line 10, in &lt;module&gt; from . import overrides File &quot;/usr/local/lib/python3.9/dist-packages/numpy/core/overrides.py&quot;, line 6, in &lt;module&gt; from numpy.core._multiarray_umath import ( ImportError: libcblas.so.3: cannot open shared object file: No such file or directory During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;/home/pi/code/plotly/plot.py&quot;, line 2, in &lt;module&gt; import numpy as np File &quot;/usr/local/lib/python3.9/dist-packages/numpy/__init__.py&quot;, line 140, in &lt;module&gt; from . import core File &quot;/usr/local/lib/python3.9/dist-packages/numpy/core/__init__.py&quot;, line 49, in &lt;module&gt; raise ImportError(msg) ImportError: IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. We have compiled some common reasons and troubleshooting tips at: https://numpy.org/devdocs/user/troubleshooting-importerror.html Please note and check the following: * The Python version is: Python3.9 from &quot;/usr/bin/python3&quot; * The NumPy version is: &quot;1.23.4&quot; and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help. Original error was: libcblas.so.3: cannot open shared object file: No such file or directory"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "/usr/local/lib/python3.9/dist-packages/numpy/core/__init__.py", line 23, in &lt;module&gt; from . import multiarray File "/usr/local/lib/python3.9/dist-packages/numpy/core/multiarray.py", line 10, in &lt;module&gt; from . import overrides File "/usr/local/lib/python3.9/dist-packages/numpy/core/overrides.py", line 6, in &lt;module&gt; from numpy.core._multiarray_umath import ( ImportError: libcblas.so.3: cannot open shared object file: No such file or directory During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/pi/code/plotly/plot.py", line 2, in &lt;module&gt; import numpy as np File "/usr/local/lib/python3.9/dist-packages/numpy/__init__.py", line 140, in &lt;module&gt; from . import core File "/usr/local/lib/python3.9/dist-packages/numpy/core/__init__.py", line 49, in &lt;module&gt; raise ImportError(msg) ImportError: IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. We have compiled some common reasons and troubleshooting tips at: https://numpy.org/devdocs/user/troubleshooting-importerror.html Please note and check the following: * The Python version is: Python3.9 from "/usr/bin/python3" * The NumPy version is: "1.23.4" and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help. Original error was: libcblas.so.3: cannot open shared object file: No such file or directory </code></pre></div> <p dir="auto">It seems a required package for numpy doesn't get installed by default. I was able to get my import command to succeed by installing this package: <code class="notranslate">sudo apt-get install libatlas-base-dev</code>. Shouldn't this dependency automatically get installed or at least flagged from a <code class="notranslate">python3 -m pip install numpy</code>command?</p>
<p dir="auto">I'm using a Raspberry Pi Zero W and I am running Raspian Stretch Lite, released 2018-04-18, with update and dist-upgrade (on 17 May 2018). In python3 I've tried:</p> <blockquote> <p dir="auto">pip3 install numpy<br> which installed 1.14.3. When I import numpy in python3 it reports that it cannot file "libf77blas.so.3". numpy 1.12.1 works.</p> </blockquote> <p dir="auto">Didn't find any other comments on this, sorry if it is a duplicate.</p>
1
<p dir="auto">I have set <code class="notranslate">-Des.network.bind_host</code> and <code class="notranslate">-Des.network.publish_host</code> to use IP address of an non-primary interface, but the <code class="notranslate">_cat/nodes?h=ip,name</code> still gives me primary IP.</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl '10.10.1.1:9200/_nodes/_local?pretty' { &quot;cluster_name&quot; : &quot;elasticsearch&quot;, &quot;nodes&quot; : { &quot;wxDJnCJfQjKjsm0dQvqIVQ&quot; : { &quot;name&quot; : &quot;Algrim the Strong&quot;, &quot;transport_address&quot; : &quot;inet[/10.10.1.1:9300]&quot;, &quot;host&quot; : &quot;d1edb4b54c7f&quot;, &quot;ip&quot; : &quot;10.1.0.11&quot;, &quot;version&quot; : &quot;1.4.0&quot;, &quot;build&quot; : &quot;bc94bd8&quot;, &quot;http_address&quot; : &quot;inet[/10.10.1.1:9200]&quot;, &quot;settings&quot; : { &quot;name&quot; : &quot;Algrim the Strong&quot;, &quot;path&quot; : { &quot;logs&quot; : &quot;/usr/elasticsearch-1.4.0/logs&quot;, &quot;home&quot; : &quot;/usr/elasticsearch-1.4.0&quot; }, &quot;cluster&quot; : { &quot;name&quot; : &quot;elasticsearch&quot; }, &quot;client&quot; : { &quot;type&quot; : &quot;node&quot; }, &quot;foreground&quot; : &quot;yes&quot;, &quot;network&quot; : { &quot;bind_host&quot; : &quot;_ethwe:ipv4_&quot;, &quot;publish_host&quot; : &quot;_ethwe:ipv4_&quot; } }, &quot;os&quot; : { &quot;refresh_interval_in_millis&quot; : 1000, &quot;available_processors&quot; : 1, &quot;cpu&quot; : { &quot;vendor&quot; : &quot;Intel&quot;, &quot;model&quot; : &quot;Core(TM) i7-4870HQ CPU @ 2.50GHz&quot;, &quot;mhz&quot; : 2498, &quot;total_cores&quot; : 1, &quot;total_sockets&quot; : 1, &quot;cores_per_socket&quot; : 1, &quot;cache_size_in_bytes&quot; : 6144 }, &quot;mem&quot; : { &quot;total_in_bytes&quot; : 1046568960 }, &quot;swap&quot; : { &quot;total_in_bytes&quot; : 0 } }, &quot;process&quot; : { &quot;refresh_interval_in_millis&quot; : 1000, &quot;id&quot; : 1, &quot;max_file_descriptors&quot; : 1048576, &quot;mlockall&quot; : false }, &quot;jvm&quot; : { &quot;pid&quot; : 1, &quot;version&quot; : &quot;1.8.0_25&quot;, &quot;vm_name&quot; : &quot;Java HotSpot(TM) 64-Bit Server VM&quot;, &quot;vm_version&quot; : &quot;25.25-b02&quot;, &quot;vm_vendor&quot; : &quot;Oracle Corporation&quot;, &quot;start_time_in_millis&quot; : 1416827899445, &quot;mem&quot; : { &quot;heap_init_in_bytes&quot; : 268435456, &quot;heap_max_in_bytes&quot; : 1065025536, &quot;non_heap_init_in_bytes&quot; : 2555904, &quot;non_heap_max_in_bytes&quot; : 0, &quot;direct_max_in_bytes&quot; : 1065025536 }, &quot;gc_collectors&quot; : [ &quot;ParNew&quot;, &quot;ConcurrentMarkSweep&quot; ], &quot;memory_pools&quot; : [ &quot;Code Cache&quot;, &quot;Metaspace&quot;, &quot;Compressed Class Space&quot;, &quot;Par Eden Space&quot;, &quot;Par Survivor Space&quot;, &quot;CMS Old Gen&quot; ] }, &quot;thread_pool&quot; : { &quot;percolate&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : &quot;1k&quot; }, &quot;bench&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;listener&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : -1 }, &quot;index&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : &quot;200&quot; }, &quot;refresh&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;suggest&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : &quot;1k&quot; }, &quot;generic&quot; : { &quot;type&quot; : &quot;cached&quot;, &quot;keep_alive&quot; : &quot;30s&quot;, &quot;queue_size&quot; : -1 }, &quot;warmer&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;search&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 3, &quot;max&quot; : 3, &quot;queue_size&quot; : &quot;1k&quot; }, &quot;flush&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;optimize&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : -1 }, &quot;management&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 5, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;get&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : &quot;1k&quot; }, &quot;merge&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 }, &quot;bulk&quot; : { &quot;type&quot; : &quot;fixed&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;queue_size&quot; : &quot;50&quot; }, &quot;snapshot&quot; : { &quot;type&quot; : &quot;scaling&quot;, &quot;min&quot; : 1, &quot;max&quot; : 1, &quot;keep_alive&quot; : &quot;5m&quot;, &quot;queue_size&quot; : -1 } }, &quot;network&quot; : { &quot;refresh_interval_in_millis&quot; : 5000, &quot;primary_interface&quot; : { &quot;address&quot; : &quot;10.1.0.11&quot;, &quot;name&quot; : &quot;eth0&quot;, &quot;mac_address&quot; : &quot;02:42:0A:01:00:0B&quot; } }, &quot;transport&quot; : { &quot;bound_address&quot; : &quot;inet[/10.10.1.1:9300]&quot;, &quot;publish_address&quot; : &quot;inet[/10.10.1.1:9300]&quot; }, &quot;http&quot; : { &quot;bound_address&quot; : &quot;inet[/10.10.1.1:9200]&quot;, &quot;publish_address&quot; : &quot;inet[/10.10.1.1:9200]&quot;, &quot;max_content_length_in_bytes&quot; : 104857600 }, &quot;plugins&quot; : [ ] } } }"><pre class="notranslate"><span class="pl-ii">curl '10.10.1.1:9200/_nodes/_local?pretty'</span> { <span class="pl-ent">"cluster_name"</span> : <span class="pl-s"><span class="pl-pds">"</span>elasticsearch<span class="pl-pds">"</span></span>, <span class="pl-ent">"nodes"</span> : { <span class="pl-ent">"wxDJnCJfQjKjsm0dQvqIVQ"</span> : { <span class="pl-ent">"name"</span> : <span class="pl-s"><span class="pl-pds">"</span>Algrim the Strong<span class="pl-pds">"</span></span>, <span class="pl-ent">"transport_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9300]<span class="pl-pds">"</span></span>, <span class="pl-ent">"host"</span> : <span class="pl-s"><span class="pl-pds">"</span>d1edb4b54c7f<span class="pl-pds">"</span></span>, <span class="pl-ent">"ip"</span> : <span class="pl-s"><span class="pl-pds">"</span>10.1.0.11<span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span> : <span class="pl-s"><span class="pl-pds">"</span>1.4.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"build"</span> : <span class="pl-s"><span class="pl-pds">"</span>bc94bd8<span class="pl-pds">"</span></span>, <span class="pl-ent">"http_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9200]<span class="pl-pds">"</span></span>, <span class="pl-ent">"settings"</span> : { <span class="pl-ent">"name"</span> : <span class="pl-s"><span class="pl-pds">"</span>Algrim the Strong<span class="pl-pds">"</span></span>, <span class="pl-ent">"path"</span> : { <span class="pl-ent">"logs"</span> : <span class="pl-s"><span class="pl-pds">"</span>/usr/elasticsearch-1.4.0/logs<span class="pl-pds">"</span></span>, <span class="pl-ent">"home"</span> : <span class="pl-s"><span class="pl-pds">"</span>/usr/elasticsearch-1.4.0<span class="pl-pds">"</span></span> }, <span class="pl-ent">"cluster"</span> : { <span class="pl-ent">"name"</span> : <span class="pl-s"><span class="pl-pds">"</span>elasticsearch<span class="pl-pds">"</span></span> }, <span class="pl-ent">"client"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>node<span class="pl-pds">"</span></span> }, <span class="pl-ent">"foreground"</span> : <span class="pl-s"><span class="pl-pds">"</span>yes<span class="pl-pds">"</span></span>, <span class="pl-ent">"network"</span> : { <span class="pl-ent">"bind_host"</span> : <span class="pl-s"><span class="pl-pds">"</span>_ethwe:ipv4_<span class="pl-pds">"</span></span>, <span class="pl-ent">"publish_host"</span> : <span class="pl-s"><span class="pl-pds">"</span>_ethwe:ipv4_<span class="pl-pds">"</span></span> } }, <span class="pl-ent">"os"</span> : { <span class="pl-ent">"refresh_interval_in_millis"</span> : <span class="pl-c1">1000</span>, <span class="pl-ent">"available_processors"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"cpu"</span> : { <span class="pl-ent">"vendor"</span> : <span class="pl-s"><span class="pl-pds">"</span>Intel<span class="pl-pds">"</span></span>, <span class="pl-ent">"model"</span> : <span class="pl-s"><span class="pl-pds">"</span>Core(TM) i7-4870HQ CPU @ 2.50GHz<span class="pl-pds">"</span></span>, <span class="pl-ent">"mhz"</span> : <span class="pl-c1">2498</span>, <span class="pl-ent">"total_cores"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"total_sockets"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"cores_per_socket"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"cache_size_in_bytes"</span> : <span class="pl-c1">6144</span> }, <span class="pl-ent">"mem"</span> : { <span class="pl-ent">"total_in_bytes"</span> : <span class="pl-c1">1046568960</span> }, <span class="pl-ent">"swap"</span> : { <span class="pl-ent">"total_in_bytes"</span> : <span class="pl-c1">0</span> } }, <span class="pl-ent">"process"</span> : { <span class="pl-ent">"refresh_interval_in_millis"</span> : <span class="pl-c1">1000</span>, <span class="pl-ent">"id"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max_file_descriptors"</span> : <span class="pl-c1">1048576</span>, <span class="pl-ent">"mlockall"</span> : <span class="pl-c1">false</span> }, <span class="pl-ent">"jvm"</span> : { <span class="pl-ent">"pid"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"version"</span> : <span class="pl-s"><span class="pl-pds">"</span>1.8.0_25<span class="pl-pds">"</span></span>, <span class="pl-ent">"vm_name"</span> : <span class="pl-s"><span class="pl-pds">"</span>Java HotSpot(TM) 64-Bit Server VM<span class="pl-pds">"</span></span>, <span class="pl-ent">"vm_version"</span> : <span class="pl-s"><span class="pl-pds">"</span>25.25-b02<span class="pl-pds">"</span></span>, <span class="pl-ent">"vm_vendor"</span> : <span class="pl-s"><span class="pl-pds">"</span>Oracle Corporation<span class="pl-pds">"</span></span>, <span class="pl-ent">"start_time_in_millis"</span> : <span class="pl-c1">1416827899445</span>, <span class="pl-ent">"mem"</span> : { <span class="pl-ent">"heap_init_in_bytes"</span> : <span class="pl-c1">268435456</span>, <span class="pl-ent">"heap_max_in_bytes"</span> : <span class="pl-c1">1065025536</span>, <span class="pl-ent">"non_heap_init_in_bytes"</span> : <span class="pl-c1">2555904</span>, <span class="pl-ent">"non_heap_max_in_bytes"</span> : <span class="pl-c1">0</span>, <span class="pl-ent">"direct_max_in_bytes"</span> : <span class="pl-c1">1065025536</span> }, <span class="pl-ent">"gc_collectors"</span> : [ <span class="pl-s"><span class="pl-pds">"</span>ParNew<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>ConcurrentMarkSweep<span class="pl-pds">"</span></span> ], <span class="pl-ent">"memory_pools"</span> : [ <span class="pl-s"><span class="pl-pds">"</span>Code Cache<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>Metaspace<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>Compressed Class Space<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>Par Eden Space<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>Par Survivor Space<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>CMS Old Gen<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"thread_pool"</span> : { <span class="pl-ent">"percolate"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>1k<span class="pl-pds">"</span></span> }, <span class="pl-ent">"bench"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"listener"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"index"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>200<span class="pl-pds">"</span></span> }, <span class="pl-ent">"refresh"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"suggest"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>1k<span class="pl-pds">"</span></span> }, <span class="pl-ent">"generic"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>cached<span class="pl-pds">"</span></span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>30s<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"warmer"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"search"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">3</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">3</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>1k<span class="pl-pds">"</span></span> }, <span class="pl-ent">"flush"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"optimize"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"management"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">5</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"get"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>1k<span class="pl-pds">"</span></span> }, <span class="pl-ent">"merge"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> }, <span class="pl-ent">"bulk"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>fixed<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-s"><span class="pl-pds">"</span>50<span class="pl-pds">"</span></span> }, <span class="pl-ent">"snapshot"</span> : { <span class="pl-ent">"type"</span> : <span class="pl-s"><span class="pl-pds">"</span>scaling<span class="pl-pds">"</span></span>, <span class="pl-ent">"min"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"max"</span> : <span class="pl-c1">1</span>, <span class="pl-ent">"keep_alive"</span> : <span class="pl-s"><span class="pl-pds">"</span>5m<span class="pl-pds">"</span></span>, <span class="pl-ent">"queue_size"</span> : <span class="pl-c1">-1</span> } }, <span class="pl-ent">"network"</span> : { <span class="pl-ent">"refresh_interval_in_millis"</span> : <span class="pl-c1">5000</span>, <span class="pl-ent">"primary_interface"</span> : { <span class="pl-ent">"address"</span> : <span class="pl-s"><span class="pl-pds">"</span>10.1.0.11<span class="pl-pds">"</span></span>, <span class="pl-ent">"name"</span> : <span class="pl-s"><span class="pl-pds">"</span>eth0<span class="pl-pds">"</span></span>, <span class="pl-ent">"mac_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>02:42:0A:01:00:0B<span class="pl-pds">"</span></span> } }, <span class="pl-ent">"transport"</span> : { <span class="pl-ent">"bound_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9300]<span class="pl-pds">"</span></span>, <span class="pl-ent">"publish_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9300]<span class="pl-pds">"</span></span> }, <span class="pl-ent">"http"</span> : { <span class="pl-ent">"bound_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9200]<span class="pl-pds">"</span></span>, <span class="pl-ent">"publish_address"</span> : <span class="pl-s"><span class="pl-pds">"</span>inet[/10.10.1.1:9200]<span class="pl-pds">"</span></span>, <span class="pl-ent">"max_content_length_in_bytes"</span> : <span class="pl-c1">104857600</span> }, <span class="pl-ent">"plugins"</span> : [ ] } } }</pre></div> <p dir="auto">Although the above has correct addresses in most places, but the <code class="notranslate">nodes.*.ip</code>...</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl '10.10.1.1:9200/_cat/nodes?h=ip,name,http_address' 10.1.0.6 Thane Ector 10.1.0.12 Steel Spider 10.1.0.5 Aguja 10.1.0.11 Algrim the Strong "><pre class="notranslate"><code class="notranslate">curl '10.10.1.1:9200/_cat/nodes?h=ip,name,http_address' 10.1.0.6 Thane Ector 10.1.0.12 Steel Spider 10.1.0.5 Aguja 10.1.0.11 Algrim the Strong </code></pre></div> <p dir="auto">At least it would be great to be able to do <code class="notranslate">_cat/nodes?h=http_address</code> as sort of a work-around, I guess, but doesn't look like it's currently exposed.</p>
<p dir="auto">A node with <code class="notranslate">network.host</code> set to <code class="notranslate">127.0.0.1</code> will show an IP that has nothing to do with the <code class="notranslate">lo</code> interface.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ curl -s localhost:9200/_nodes\?all | python -mjson.tool | fgrep bound &quot;bound_address&quot;: &quot;inet[/127.0.0.1:9200]&quot;, &quot;bound_address&quot;: &quot;inet[/127.0.0.1:9300]&quot;, $ curl -s localhost:9200/_cat/nodes\?h=ip,host 192.168.56.10 es1"><pre class="notranslate"><code class="notranslate">$ curl -s localhost:9200/_nodes\?all | python -mjson.tool | fgrep bound "bound_address": "inet[/127.0.0.1:9200]", "bound_address": "inet[/127.0.0.1:9300]", $ curl -s localhost:9200/_cat/nodes\?h=ip,host 192.168.56.10 es1 </code></pre></div> <p dir="auto">Repro on OS X and Ubuntu 12.04.</p>
1
<p dir="auto">As the title says, the accelerator "Cmd+Plus" (or <code class="notranslate">CmdOrCtrl</code>) ends up as "Shift+Cmd+=". I understand that to get "+" you need to press "Shift+=" on a US keyboard. However, there is also another <code class="notranslate">Plus</code> key on the numeric part of the keyboard that doesn't work if the binding is not "Cmd+Plus". Why is Electron doing this transformation without being asked? Can this be avoided?</p>
<ul dir="auto"> <li>Electron versions: at least 0.23.0 and 0.24.0</li> <li>OS: Mac</li> </ul> <p dir="auto">The <a href="https://github.com/atom/electron/blob/master/docs/api/accelerator.md#available-key-codes">list of key codes</a> available for use in menu item accelerators includes <code class="notranslate">Plus</code>. When this key is used in an accelerator like <code class="notranslate">Command+Plus</code> on OS X, the key combination appears as "Shift Command =". Given that the key name is <code class="notranslate">Plus</code>, it would be preferable to have the corresponding key combination appear as "+" or "Shift +" instead of "Shift =". The <a href="https://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/OSXHIGuidelines/Keyboard.html" rel="nofollow">Keyboard Shortcut section of the OS X Human Interface Guidelines</a> indicates that "Shift Command +" is preferable to "Shift Command ="--look for the paragraph starting with "Identify a key with two characters."</p> <p dir="auto">A minimal Electron app that demonstrates this behavior can be found <a href="https://gist.github.com/mark-wagon/e4765596cbd9580e26a9">in this gist</a>. Repro steps are outlined in the gist's readme.</p>
1
<p dir="auto">When using the segmented buttons functionality to create a search box like so:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;div class=&quot;input-group&quot;&gt; &lt;input type=&quot;search&quot; class=&quot;form-control input-lg&quot; placeholder=&quot;Text input&quot;&gt; &lt;div class=&quot;input-group-btn&quot;&gt; &lt;button type=&quot;button&quot; class=&quot;btn btn-info btn-lg&quot;&gt; &lt;span class=&quot;glyphicon glyphicon-search&quot;&gt;&lt;/span&gt; &lt;/button&gt; &lt;/div&gt; &lt;/div&gt;"><pre class="notranslate"><code class="notranslate">&lt;div class="input-group"&gt; &lt;input type="search" class="form-control input-lg" placeholder="Text input"&gt; &lt;div class="input-group-btn"&gt; &lt;button type="button" class="btn btn-info btn-lg"&gt; &lt;span class="glyphicon glyphicon-search"&gt;&lt;/span&gt; &lt;/button&gt; &lt;/div&gt; &lt;/div&gt; </code></pre></div> <p dir="auto">The alignment between the input box and the button is not perfect:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/12953048a080ad692f4f0938212354b1e8eb50e1cfb7973c6cd54d4e6cbbd0d7/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313839323831392f313237393333322f61303633343865382d326633342d313165332d383335372d6263356637353261636464382e706e67"><img src="https://camo.githubusercontent.com/12953048a080ad692f4f0938212354b1e8eb50e1cfb7973c6cd54d4e6cbbd0d7/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313839323831392f313237393333322f61303633343865382d326633342d313165332d383335372d6263356637353261636464382e706e67" alt="testbootstrap3rails" data-canonical-src="https://f.cloud.github.com/assets/1892819/1279332/a06348e8-2f34-11e3-8357-bc5f752acdd8.png" style="max-width: 100%;"></a></p> <p dir="auto">Sometimes the button height is bigger that the text box, sometimes the opposite, by a few pixels.</p>
<p dir="auto"><a href="http://bootply.com/79215" rel="nofollow">http://bootply.com/79215</a></p>
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> Currently when you use <code class="notranslate">NgComponentOutlet</code> you cant access created component for "binding". So it can be used only for displaying dynamic components, but not for interaction with them.</p> <p dir="auto"><strong>Expected behavior</strong><br> It would be nice to have option how to retrieve created component instance from this directive.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> Be able to use dynamic declarative component creation with full access to created component for "binding".</p> <p dir="auto"><strong>Suggested solution</strong><br> There are two possible ways as far as i see it :).<br> I. Use of <code class="notranslate">Output</code><br> first change directive to generic</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class NgComponentOutlet&lt;TComponent&gt; implements OnChanges, OnDestroy "><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">NgComponentOutlet</span><span class="pl-c1">&lt;</span><span class="pl-smi">TComponent</span><span class="pl-c1">&gt;</span> <span class="pl-k">implements</span> <span class="pl-smi">OnChanges</span><span class="pl-kos">,</span> <span class="pl-smi">OnDestroy</span> </pre></div> <p dir="auto">then add</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Output() public ngComponentOutletCreated: EventEmitter&lt;TComponent&gt; = new EventEmitter&lt;TComponent&gt;();"><pre class="notranslate">@<span class="pl-smi">Output</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">public</span> <span class="pl-s1">ngComponentOutletCreated</span>: <span class="pl-smi">EventEmitter</span><span class="pl-kos">&lt;</span><span class="pl-smi">TComponent</span><span class="pl-kos">&gt;</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">EventEmitter</span><span class="pl-kos">&lt;</span><span class="pl-smi">TComponent</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">and after component has been created by <code class="notranslate">_viewContainerRef.createComponent</code> <code class="notranslate">emit</code> new component.</p> <p dir="auto">II. Add exportAs and public getter for instance of <code class="notranslate">Component</code><br> first change directive to generic and add exportAs</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Directive({selector: '[ngComponentOutlet]', exporAs: 'ngComponentOutlet'}) export class NgComponentOutlet&lt;TComponent&gt; implements OnChanges, OnDestroy "><pre class="notranslate">@<span class="pl-smi">Directive</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'[ngComponentOutlet]'</span><span class="pl-kos">,</span> <span class="pl-c1">exporAs</span>: <span class="pl-s">'ngComponentOutlet'</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">NgComponentOutlet</span><span class="pl-c1">&lt;</span><span class="pl-smi">TComponent</span><span class="pl-c1">&gt;</span> <span class="pl-k">implements</span> <span class="pl-smi">OnChanges</span><span class="pl-kos">,</span> <span class="pl-smi">OnDestroy</span> </pre></div> <p dir="auto">then add public getter</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" public get component(): TComponent { if(!this._componentRef) { return null; } return this._componentRef.instance; }"><pre class="notranslate"> <span class="pl-k">public</span> <span class="pl-s1">get</span> <span class="pl-en">component</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">TComponent</span> <span class="pl-kos">{</span> <span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_componentRef</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-c1">null</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_componentRef</span><span class="pl-kos">.</span><span class="pl-c1">instance</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Or implement both solutions, because they can work together well.</p> <p dir="auto">Both of these solutions are working, but you cant use <code class="notranslate">&lt;ng-container *ngComponentOutlet="comp"&gt;</code> syntax, since i havent figured out how to use "output" binding for <code class="notranslate">*ngComponentOutlet</code> or how to use <code class="notranslate">#myComponent="ngComponentOutlet"</code> with this syntax.</p> <p dir="auto">I had to change it to <code class="notranslate">&lt;ng-template [ngComponentOutlet]="comp"&gt;</code> and you can then use "output" binding and also reference with "exportAs" for obtaining directive using <code class="notranslate">ViewChild</code>.</p> <p dir="auto">Thank you</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> Windows 10, VSCode 1.11.1</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 4.0.1</p> </li> <li> <p dir="auto"><strong>Browser:</strong> [all]</p> </li> <li> <p dir="auto"><strong>Language:</strong> [TypeScript 2.2.1]</p> </li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> There is no way to set <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/inputs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/inputs">@inputs</a> or subscribe to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/output/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/output">@output</a> events of the Component created by <code class="notranslate">NgComponentOutlet</code>.</p> <p dir="auto"><strong>Expected behavior</strong><br> I expect some to set values and to subscribe events.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> At least, we should have the same level of functionality as <code class="notranslate">ViewContainerRef.createComponent()</code> which is roughly the programatic equivalent of <code class="notranslate">NgComponentOutlet</code>. That function returns a <code class="notranslate">ComponentRef&lt;any&gt;</code> which provides an instance property that allows direct access to the class instance of the Component. The original feature request for <code class="notranslate">NgComponentOutlet</code> defined an event on the directive that would fire and pass this <code class="notranslate">ComponentRef</code> object after creation. This did not make it into the current implementation and I see no other alternatives to access inputs/outputs.</p> <p dir="auto">Supporting only Components with no inputs or outputs severely limits the usefulness of <code class="notranslate">NgComponentOutlet</code>.</p> <ul dir="auto"> <li><strong>Angular version:</strong> 4.0.0-rc.1</li> </ul>
1
<p dir="auto">I cannot retrieve the docs for python-requests without using non-TLS http.</p> <h2 dir="auto">Expected Result</h2> <p dir="auto">The following should return the page content at the end:</p> <p dir="auto"><code class="notranslate">curl -L http://docs.python-requests.org/ -v</code></p> <h2 dir="auto">Actual Result</h2> <p dir="auto">Instead, I get a TLS error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl -L http://docs.python-requests.org/ -v * Trying 3.13.31.214... * TCP_NODELAY set * Connected to docs.python-requests.org (3.13.31.214) port 80 (#0) &gt; GET / HTTP/1.1 &gt; Host: docs.python-requests.org &gt; User-Agent: curl/7.58.0 &gt; Accept: */* &gt; &lt; HTTP/1.1 301 Moved Permanently &lt; Content-Type: text/html; charset=utf-8 &lt; Location: https://2.python-requests.org/ &lt; X-Redirector-Version: 2.6.0-4f37d77 &lt; Date: Thu, 24 Oct 2019 13:48:03 GMT &lt; Content-Length: 65 &lt; Connection: close &lt; * Closing connection 0 * Issue another request to this URL: 'https://2.python-requests.org/' * Trying 3.13.31.214... * TCP_NODELAY set * Connected to 2.python-requests.org (3.13.31.214) port 443 (#1) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/ssl/certs/ca-certificates.crt CApath: /etc/ssl/certs * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS alert, Server hello (2): * error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error * stopped the pause stream! * Closing connection 1 curl: (35) error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error"><pre class="notranslate"><code class="notranslate">curl -L http://docs.python-requests.org/ -v * Trying 3.13.31.214... * TCP_NODELAY set * Connected to docs.python-requests.org (3.13.31.214) port 80 (#0) &gt; GET / HTTP/1.1 &gt; Host: docs.python-requests.org &gt; User-Agent: curl/7.58.0 &gt; Accept: */* &gt; &lt; HTTP/1.1 301 Moved Permanently &lt; Content-Type: text/html; charset=utf-8 &lt; Location: https://2.python-requests.org/ &lt; X-Redirector-Version: 2.6.0-4f37d77 &lt; Date: Thu, 24 Oct 2019 13:48:03 GMT &lt; Content-Length: 65 &lt; Connection: close &lt; * Closing connection 0 * Issue another request to this URL: 'https://2.python-requests.org/' * Trying 3.13.31.214... * TCP_NODELAY set * Connected to 2.python-requests.org (3.13.31.214) port 443 (#1) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/ssl/certs/ca-certificates.crt CApath: /etc/ssl/certs * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS alert, Server hello (2): * error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error * stopped the pause stream! * Closing connection 1 curl: (35) error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error </code></pre></div> <h2 dir="auto">Reproduction Steps</h2> <p dir="auto">Run the above curl.</p>
<p dir="auto">The URL <code class="notranslate">//2.python-requests.org/</code> (which is in the readme) automatically resolves to <code class="notranslate">https://2.python-requests.org</code> which is down (there is no HTTPS version of the site). The HTTP version of the site, <code class="notranslate">http://2.python-requests.org</code>, is fine.</p> <h2 dir="auto">Expected Result</h2> <p dir="auto">I expect that when I click the link in the readme, it goes to a page that exists.</p> <h2 dir="auto">Actual Result</h2> <p dir="auto">When I click the link in the readme, the <code class="notranslate">//</code> prefix resolves to <code class="notranslate">https://</code>, but there is no HTTPS version of <code class="notranslate">2.python-requests.org</code>, so the page does not load.</p> <h2 dir="auto">Reproduction Steps</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import requests &gt;&gt;&gt; requests.get('https://2.python-requests.org/') Traceback (most recent call last): File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py&quot;, line 472, in wrap_socket cnx.do_handshake() File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/SSL.py&quot;, line 1716, in do_handshake self._raise_ssl_error(self._ssl, result) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/SSL.py&quot;, line 1456, in _raise_ssl_error _raise_current_error() File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/_util.py&quot;, line 54, in exception_from_error_queue raise exception_type(errors) OpenSSL.SSL.Error: [('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')] During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py&quot;, line 603, in urlopen chunked=chunked) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py&quot;, line 344, in _make_request self._validate_conn(conn) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py&quot;, line 843, in _validate_conn conn.connect() File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connection.py&quot;, line 370, in connect ssl_context=context) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/util/ssl_.py&quot;, line 355, in ssl_wrap_socket return context.wrap_socket(sock, server_hostname=server_hostname) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py&quot;, line 478, in wrap_socket raise ssl.SSLError('bad handshake: %r' % e) ssl.SSLError: (&quot;bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)&quot;,) During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/adapters.py&quot;, line 449, in send timeout=timeout File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py&quot;, line 641, in urlopen _stacktrace=sys.exc_info()[2]) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/util/retry.py&quot;, line 399, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='2.python-requests.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(&quot;bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)&quot;,),)) During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/api.py&quot;, line 75, in get return request('get', url, params=params, **kwargs) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/api.py&quot;, line 60, in request return session.request(method=method, url=url, **kwargs) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/sessions.py&quot;, line 533, in request resp = self.send(prep, **send_kwargs) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/sessions.py&quot;, line 646, in send r = adapter.send(request, **kwargs) File &quot;/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/adapters.py&quot;, line 514, in send raise SSLError(e, request=request) requests.exceptions.SSLError: HTTPSConnectionPool(host='2.python-requests.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(&quot;bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)&quot;,),)) &gt;&gt;&gt; requests.get('http://2.python-requests.org/') &lt;Response [200]&gt;"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import requests &gt;&gt;&gt; requests.get('https://2.python-requests.org/') Traceback (most recent call last): File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py", line 472, in wrap_socket cnx.do_handshake() File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/SSL.py", line 1716, in do_handshake self._raise_ssl_error(self._ssl, result) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/SSL.py", line 1456, in _raise_ssl_error _raise_current_error() File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/OpenSSL/_util.py", line 54, in exception_from_error_queue raise exception_type(errors) OpenSSL.SSL.Error: [('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')] During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py", line 603, in urlopen chunked=chunked) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py", line 344, in _make_request self._validate_conn(conn) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py", line 843, in _validate_conn conn.connect() File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connection.py", line 370, in connect ssl_context=context) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/util/ssl_.py", line 355, in ssl_wrap_socket return context.wrap_socket(sock, server_hostname=server_hostname) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py", line 478, in wrap_socket raise ssl.SSLError('bad handshake: %r' % e) ssl.SSLError: ("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)",) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/adapters.py", line 449, in send timeout=timeout File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/connectionpool.py", line 641, in urlopen _stacktrace=sys.exc_info()[2]) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/urllib3/util/retry.py", line 399, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='2.python-requests.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)",),)) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/api.py", line 60, in request return session.request(method=method, url=url, **kwargs) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/sessions.py", line 533, in request resp = self.send(prep, **send_kwargs) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/sessions.py", line 646, in send r = adapter.send(request, **kwargs) File "/Users/charles/.pyenv/versions/miniconda3-4.3.30/lib/python3.6/site-packages/requests/adapters.py", line 514, in send raise SSLError(e, request=request) requests.exceptions.SSLError: HTTPSConnectionPool(host='2.python-requests.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', 'tlsv1 alert internal error')],)",),)) &gt;&gt;&gt; requests.get('http://2.python-requests.org/') &lt;Response [200]&gt; </code></pre></div> <h2 dir="auto">System Information</h2> <p dir="auto">N/A</p>
1
<p dir="auto">Relates to <a href="https://stackoverflow.com/questions/60131900/weird-is-xhr-error-when-deploying-flask-app-to-heroku" rel="nofollow">https://stackoverflow.com/questions/60131900/weird-is-xhr-error-when-deploying-flask-app-to-heroku</a> (which was viewed &gt; 600 times in a few days)</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Flask pulls a compatible version of Werkzeug</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# Paste a minimal example that causes the problem."><pre class="notranslate"><span class="pl-c"># Paste a minimal example that causes the problem.</span></pre></div> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">flask currently requires Werkzeug &gt;= 0.15 but we recently noticed that some of our existing flask applications were broken. In fact we were (still) running flask 0.12.4 and as it is now it is pulling Werkzeug 1.0.0 which is incompatible (breaks at runtime).</p> <div class="highlight highlight-text-python-traceback notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="File &quot;/app/server/controller.py&quot;, line 24, in get_kws 2020-02-08T22:31:05.893850+00:00 app[web.1]: 'query_results': query_result 2020-02-08T22:31:05.893850+00:00 app[web.1]: File &quot;/app/.heroku/python/lib/python3.6/site-packages/flask/json.py&quot;, line 298, in jsonify 2020-02-08T22:31:05.893851+00:00 app[web.1]: if current_app.config['JSONIFY_PRETTYPRINT_REGULAR'] and not request.is_xhr: 2020-02-08T22:31:05.893851+00:00 app[web.1]: File &quot;/app/.heroku/python/lib/python3.6/site-packages/werkzeug/local.py&quot;, line 347, in getattr 2020-02-08T22:31:05.893852+00:00 app[web.1]: return getattr(self._get_current_object(), name) 2020-02-08T22:31:05.893858+00:00 app[web.1]: AttributeError: 'Request' object has no attribute 'is_xhr'"><pre class="notranslate">File "/app/server/controller.py", line 24, in get_kws 2020-02-08T22:31:05.893850+00:00 app[web.1]: 'query_results': query_result 2020-02-08T22:31:05.893850+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/flask/json.py", line 298, in jsonify 2020-02-08T22:31:05.893851+00:00 app[web.1]: if current_app.config['JSONIFY_PRETTYPRINT_REGULAR'] and not request.is_xhr: 2020-02-08T22:31:05.893851+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/werkzeug/local.py", line 347, in getattr 2020-02-08T22:31:05.893852+00:00 app[web.1]: return getattr(self._get_current_object(), name) 2020-02-08T22:31:05.893858+00:00 app[web.1]: AttributeError: 'Request' object has no attribute 'is_xhr'</pre></div> <p dir="auto">As described in the SO post, upgrading flask &gt;= 1.0 fixes this but I thought I'd still report this in case you think its worth releasing a 0.12.5, I could do the change in setup.py.</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Python version: 3.8</li> <li>Flask version: 0.12.4</li> <li>Werkzeug version: 1.0</li> </ul>
<p dir="auto">In <a href="http://flask.pocoo.org" rel="nofollow">http://flask.pocoo.org</a>, "feedback website" link is 404 page.</p> <p dir="auto"><a href="http://feedback.flask.pocoo.org/" rel="nofollow">http://feedback.flask.pocoo.org/</a></p>
0
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/992" rel="nofollow">http://projects.scipy.org/numpy/ticket/992</a> on 2009-02-02 by trac user phillies, assigned to unknown.</em></p> <p dir="auto">When you try to write a zip file larger than 4 GB with numpy's savez you get an exception saying that you should enable ZIP64 extensions.<br> I did not find any way (without altering the numpy code manually and reinstalling numpy) to make this possible. From my point of view, this is a severe usability bug - as I can not use savez anymore.</p> <p dir="auto">Please add a function, e.g. savez64(...) which uses ZIP64 by default or a function enableZip64(bool) which can turn ZIP64 on or off.</p>
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/991" rel="nofollow">http://projects.scipy.org/numpy/ticket/991</a> on 2009-02-02 by trac user phillies, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/stefanv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/stefanv">@stefanv</a>.</em></p> <p dir="auto">When you try to write a zip file larger than 4 GB with numpy's savez you get an exception saying that you should enable ZIP64 extensions.<br> I did not find any way (without altering the numpy code manually and reinstalling numpy) to make this possible. From my point of view, this is a severe usability bug - as I can not use savez anymore.</p> <p dir="auto">Please add a function, e.g. savez64(...) which uses ZIP64 by default or a function enableZip64(bool) which can turn ZIP64 on or off.</p>
1
<p dir="auto">image css max-width: 100% screws up the Google Maps JS v3 API and map embedding. Don't know if this can be excluded or if users must fix it on a case-by-case basis.</p>
<p dir="auto">First of all thanks for your fantastic work. It does SAVE me a lot of time.</p> <p dir="auto">When I put Google Maps into Bootstrap layout, img tag in Google Maps breaks because Bootstrap set <strong>img max-width to 100%</strong>. When I comment max-width, it's working find but I'm not sure whether it'll break something else in Bootstrap or not.</p> <p dir="auto">Bootstrap and Google Maps<br> <a href="http://jsfiddle.net/jhnRD/1/" rel="nofollow">http://jsfiddle.net/jhnRD/1/</a></p> <p dir="auto">Google Maps without Bootstrap<br> <a href="http://jsfiddle.net/aVx8L/" rel="nofollow">http://jsfiddle.net/aVx8L/</a></p> <p dir="auto">Cheers,</p>
1
<p dir="auto">Code example:</p> <p dir="auto">Save this in <code class="notranslate">main.rs</code> and try to compile.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="enum T {} type New = T; impl New {} fn main() {}"><pre class="notranslate"><code class="notranslate">enum T {} type New = T; impl New {} fn main() {} </code></pre></div> <p dir="auto">Trying to compile, it shows this error:</p> <p dir="auto">impl.rs:4:1: 4:12 error: cannot associate methods with a type outside the crate the type is defined in; define and implement a trait or new type instead<br> impl.rs:4 impl New {}<br> ^~~~~~~~~~~<br> error: aborting due to previous error</p> <p dir="auto">Using git master HEAD: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/6fcf43e50e9dd8ad8dc83d550e25f738f821f1ce/hovercard" href="https://github.com/rust-lang/rust/commit/6fcf43e50e9dd8ad8dc83d550e25f738f821f1ce"><tt>6fcf43e</tt></a></p>
<p dir="auto">Top-level functions can't be passed as lvalues to functions. Instead they have to be assigned to a temporary first.</p>
0
<p dir="auto">I am converting a Protractor page object library from JavaScript to Typescript. I have a static utility method that refreshes until an element is present (or the timeout limit is reached).<br> For some reason, I am unable to use a boolean valued promise as a thenable construct and I can't figure out why. The error message is <strong>Error:(102, 50) TS2345:Argument of type '(isEnabled: boolean) =&gt; Promise | undefined' is not assignable to parameter of type '((value: boolean) =&gt; CloudletPolicyBean | IThenable) | undefined'.<br> Type '(isEnabled: boolean) =&gt; Promise | undefined' is not assignable to type '(value: boolean) =&gt; CloudletPolicyBean | IThenable'.<br> Type 'Promise | undefined' is not assignable to type 'CloudletPolicyBean | IThenable'.<br> Type 'undefined' is not assignable to type 'CloudletPolicyBean | IThenable'.</strong></p> <p dir="auto">The source code is below with comment showing where the compile error occurs.<br> This was asked in SO and people there have commented that this is indeed a error with type definition for webdriver. Can someone here please take a look.<br> <strong>selenium-webdriver types used: 3.0.4<br> node:6.9.5<br> protractor:5.1.2</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import {browser, element, ElementFinder, ExpectedConditions} from 'protractor'; import * as wd from 'selenium-webdriver'; import {By} from &quot;selenium-webdriver&quot;; export class ExtendedExpectedConditions { public static refreshUntilElementIsPresent(element: ElementFinder, numberOfSeconds: number = 30000, refreshInterval: number = 5000): void { this.refreshElement(element, numberOfSeconds, refreshInterval); } protected static refreshElement(element: ElementFinder, numberOfSeconds: number = 30000, refreshInterval: number = 5000) { //This line throws the compile error element.isPresent().then(value =&gt; { if (!value) { if (numberOfSeconds &lt;= 0) { return new wd.promise.Promise(function (resolve, reject) { reject('Element cannot be found after expected retry numbers'); }) } browser.sleep(refreshInterval).then(() =&gt; { browser.refresh().then(() =&gt; this.refreshUntilElementIsPresent(element, numberOfSeconds - (refreshInterval / 1000))); }); } }); } }"><pre class="notranslate"><code class="notranslate">import {browser, element, ElementFinder, ExpectedConditions} from 'protractor'; import * as wd from 'selenium-webdriver'; import {By} from "selenium-webdriver"; export class ExtendedExpectedConditions { public static refreshUntilElementIsPresent(element: ElementFinder, numberOfSeconds: number = 30000, refreshInterval: number = 5000): void { this.refreshElement(element, numberOfSeconds, refreshInterval); } protected static refreshElement(element: ElementFinder, numberOfSeconds: number = 30000, refreshInterval: number = 5000) { //This line throws the compile error element.isPresent().then(value =&gt; { if (!value) { if (numberOfSeconds &lt;= 0) { return new wd.promise.Promise(function (resolve, reject) { reject('Element cannot be found after expected retry numbers'); }) } browser.sleep(refreshInterval).then(() =&gt; { browser.refresh().then(() =&gt; this.refreshUntilElementIsPresent(element, numberOfSeconds - (refreshInterval / 1000))); }); } }); } } </code></pre></div>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest <code class="notranslate">mocha/index.d.ts</code> file in this repo and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I want to talk about <code class="notranslate">mocha/index.d.ts</code>. <ul dir="auto"> <li>The authors of that type definition are cc/ <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vvakame/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vvakame">@vvakame</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ligaz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ligaz">@ligaz</a>,</li> </ul> </li> </ul> <p dir="auto">I've started a new angular2 project and included the following dev dependency:<br> <code class="notranslate">"@types/mocha": "2.2.33",</code></p> <p dir="auto">It installs correctly however when I run:<br> <code class="notranslate">webpack --config webpack.config.dev.js --progress --profile --watch</code></p> <p dir="auto">I get:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[at-loader] node_modules/@types/jasmine/index.d.ts:15:18 Duplicate identifier 'xit'. [at-loader] node_modules/@types/mocha/index.d.ts:33:13 Duplicate identifier 'describe'. [at-loader] node_modules/@types/mocha/index.d.ts:34:13 Duplicate identifier 'xdescribe'. [at-loader] node_modules/@types/mocha/index.d.ts:39:13 Duplicate identifier 'it'. [at-loader] node_modules/@types/mocha/index.d.ts:40:13 Duplicate identifier 'xit'. "><pre class="notranslate"><code class="notranslate">[at-loader] node_modules/@types/jasmine/index.d.ts:15:18 Duplicate identifier 'xit'. [at-loader] node_modules/@types/mocha/index.d.ts:33:13 Duplicate identifier 'describe'. [at-loader] node_modules/@types/mocha/index.d.ts:34:13 Duplicate identifier 'xdescribe'. [at-loader] node_modules/@types/mocha/index.d.ts:39:13 Duplicate identifier 'it'. [at-loader] node_modules/@types/mocha/index.d.ts:40:13 Duplicate identifier 'xit'. </code></pre></div> <p dir="auto">My webpack config file:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var webpack = require('webpack'); module.exports = { devtool: 'cheap-module-eval-source-map', output: { path: './public/js/app', publicPath: &quot;/js/app/&quot;, filename: 'bundle.js', chunkFilename: '[id].chunk.js' }, entry: { 'app': './assets/app/main.polymer.ts' }, resolve: { extensions: ['.js', '.ts'] }, module: { loaders: [ { test: /\.ts$/, loaders: [ 'awesome-typescript-loader', 'angular2-template-loader', 'angular2-router-loader' ] }, { test: /\.html$/, loader: 'html' }, { test: /\.css$/, loader: 'raw' } ] }, plugins: [ new webpack.ContextReplacementPlugin( // The (\\|\/) piece accounts for path separators in *nix and Windows /angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/, './src' // location of your src ) ] };"><pre class="notranslate"><code class="notranslate">var webpack = require('webpack'); module.exports = { devtool: 'cheap-module-eval-source-map', output: { path: './public/js/app', publicPath: "/js/app/", filename: 'bundle.js', chunkFilename: '[id].chunk.js' }, entry: { 'app': './assets/app/main.polymer.ts' }, resolve: { extensions: ['.js', '.ts'] }, module: { loaders: [ { test: /\.ts$/, loaders: [ 'awesome-typescript-loader', 'angular2-template-loader', 'angular2-router-loader' ] }, { test: /\.html$/, loader: 'html' }, { test: /\.css$/, loader: 'raw' } ] }, plugins: [ new webpack.ContextReplacementPlugin( // The (\\|\/) piece accounts for path separators in *nix and Windows /angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/, './src' // location of your src ) ] }; </code></pre></div> <p dir="auto">Same thing happens with @types/jasmine. Maybe there is a relation?</p>
0
<p dir="auto">Consider this very basic group by operation:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="df = pd.DataFrame({'col1': ['a', 'b', 'a', 'c'], 'col2': [1, 3, 2, 5]}) df_grp = df.groupby('col1')['col2']"><pre class="notranslate"><span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'col1'</span>: [<span class="pl-s">'a'</span>, <span class="pl-s">'b'</span>, <span class="pl-s">'a'</span>, <span class="pl-s">'c'</span>], <span class="pl-s">'col2'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">3</span>, <span class="pl-c1">2</span>, <span class="pl-c1">5</span>]}) <span class="pl-s1">df_grp</span> <span class="pl-c1">=</span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'col1'</span>)[<span class="pl-s">'col2'</span>]</pre></div> <p dir="auto">When aggregating using <code class="notranslate">mean</code>, <code class="notranslate">min</code>, ... (everything but <code class="notranslate">count</code>) the resulting Series has <code class="notranslate">col2</code> as its name:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="df_grp.mean() col1 a 1.5 b 3.0 c 5.0 Name: col2, dtype: float64"><pre class="notranslate"><span class="pl-s1">df_grp</span>.<span class="pl-en">mean</span>() <span class="pl-s1">col1</span> <span class="pl-s1">a</span> <span class="pl-c1">1.5</span> <span class="pl-s1">b</span> <span class="pl-c1">3.0</span> <span class="pl-s1">c</span> <span class="pl-c1">5.0</span> <span class="pl-v">Name</span>: <span class="pl-s1">col2</span>, <span class="pl-s1">dtype</span>: <span class="pl-s1">float64</span></pre></div> <p dir="auto">However, if I use <code class="notranslate">count</code> for aggregation, the name is not set:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="df_grp.count() col1 a 2 b 1 c 1 dtype: int64"><pre class="notranslate"><span class="pl-s1">df_grp</span>.<span class="pl-en">count</span>() <span class="pl-s1">col1</span> <span class="pl-s1">a</span> <span class="pl-c1">2</span> <span class="pl-s1">b</span> <span class="pl-c1">1</span> <span class="pl-s1">c</span> <span class="pl-c1">1</span> <span class="pl-s1">dtype</span>: <span class="pl-s1">int64</span></pre></div> <p dir="auto">Not a big problem for a simple case like that, but I stumbled over that while working with a MultiIndex that needed to be reindexed and led to a <code class="notranslate">KeyError</code> due to that missing column name.</p>
<p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="26263629" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/6068" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/6068/hovercard" href="https://github.com/pandas-dev/pandas/pull/6068">#6068</a></p> <h2 dir="auto">Use case</h2> <p dir="auto">Facilitate DataFrame group/apply transformations when using a function that returns a Series. Right now, if we perform the following:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import pandas df = pandas.DataFrame( {'a': [0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2], 'b': [0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1], 'c': [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], 'd': [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], }) def count_values(df): return pandas.Series({'count': df['b'].sum(), 'mean': df['c'].mean()}, name='metrics') result = df.groupby('a').apply(count_values) print result.stack().reset_index()"><pre class="notranslate"><code class="notranslate">import pandas df = pandas.DataFrame( {'a': [0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2], 'b': [0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1], 'c': [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], 'd': [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], }) def count_values(df): return pandas.Series({'count': df['b'].sum(), 'mean': df['c'].mean()}, name='metrics') result = df.groupby('a').apply(count_values) print result.stack().reset_index() </code></pre></div> <p dir="auto">We get the following output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" a level_1 0 0 0 count 2.0 1 0 mean 0.5 2 1 count 2.0 3 1 mean 0.5 4 2 count 2.0 5 2 mean 0.5 [6 rows x 3 columns]"><pre class="notranslate"><code class="notranslate"> a level_1 0 0 0 count 2.0 1 0 mean 0.5 2 1 count 2.0 3 1 mean 0.5 4 2 count 2.0 5 2 mean 0.5 [6 rows x 3 columns] </code></pre></div> <p dir="auto">Ideally, the series name should be preserved and propagated through these operations such that we get the following output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" a metrics 0 0 0 count 2.0 1 0 mean 0.5 2 1 count 2.0 3 1 mean 0.5 4 2 count 2.0 5 2 mean 0.5 [6 rows x 3 columns]"><pre class="notranslate"><code class="notranslate"> a metrics 0 0 0 count 2.0 1 0 mean 0.5 2 1 count 2.0 3 1 mean 0.5 4 2 count 2.0 5 2 mean 0.5 [6 rows x 3 columns] </code></pre></div> <p dir="auto">The only way to achieve this (currently) is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="result = df.groupby('a').apply(count_values) result.columns.name = 'metrics' print result.stack().reset_index()"><pre class="notranslate"><code class="notranslate">result = df.groupby('a').apply(count_values) result.columns.name = 'metrics' print result.stack().reset_index() </code></pre></div> <p dir="auto">However, the key issue here is 1) this adds an extra line of code and 2) the name of the series created in the applied function may not be known in the outside block (so we can't properly fix the result.columns.name attribute).</p> <p dir="auto">The other work-around is to name the index of the series:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def count_values(df): series = pandas.Series({'count': df['b'].sum(), 'mean': df['c'].mean()}) series.index.name = 'metrics' return series"><pre class="notranslate"><code class="notranslate">def count_values(df): series = pandas.Series({'count': df['b'].sum(), 'mean': df['c'].mean()}) series.index.name = 'metrics' return series </code></pre></div> <p dir="auto">During the group/apply operation, one approach is to check to see whether series.index has the name attribute set. If the name attribute is not set, it will set the index.name attribute to the name of the series (thus ensuring the name propagates).</p>
1
<p dir="auto">I have a bunch of pages with antd components and others without. In production, when I initially load (by clicking on a Link) a page with antd components it takes forever to load. If I type the URL directly in the address bar, then the page with antd components loads fine. Every second or third time I click on the Link the navigation works correctly. The only issue I am having is when I click on a Link the first time. FWIW, the size of the pages that contain antd components is 647 kB. I do not knows if this is because of server resources or because of a bug in Next.js. I also know that this happens in production as well as development. I also had to do a workaround to get antd styles working, as shown in the following code snippets.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="next.config.js /* eslint-disable */ const withLess = require('@zeit/next-less') const lessToJS = require('less-vars-to-js') const fs = require('fs') const path = require('path') // Where your antd-custom.less file lives const themeVariables = lessToJS( fs.readFileSync(path.resolve(__dirname, './assets/style.less'), 'utf8') ) module.exports = withLess({ compress: false, lessLoaderOptions: { javascriptEnabled: true, modifyVars: themeVariables, // make your antd custom effective }, webpack: (config, { isServer }) =&gt; { if (isServer) { const antStyles = /antd\/.*?\/style.*?/ const origExternals = [...config.externals] config.externals = [ (context, request, callback) =&gt; { if (request.match(antStyles)) return callback() if (typeof origExternals[0] === 'function') { origExternals[0](context, request, callback) } else { callback() } }, ...(typeof origExternals[0] === 'function' ? [] : origExternals), ] config.module.rules.unshift({ test: antStyles, use: 'null-loader', }) } return config }, })"><pre class="notranslate"><code class="notranslate">next.config.js /* eslint-disable */ const withLess = require('@zeit/next-less') const lessToJS = require('less-vars-to-js') const fs = require('fs') const path = require('path') // Where your antd-custom.less file lives const themeVariables = lessToJS( fs.readFileSync(path.resolve(__dirname, './assets/style.less'), 'utf8') ) module.exports = withLess({ compress: false, lessLoaderOptions: { javascriptEnabled: true, modifyVars: themeVariables, // make your antd custom effective }, webpack: (config, { isServer }) =&gt; { if (isServer) { const antStyles = /antd\/.*?\/style.*?/ const origExternals = [...config.externals] config.externals = [ (context, request, callback) =&gt; { if (request.match(antStyles)) return callback() if (typeof origExternals[0] === 'function') { origExternals[0](context, request, callback) } else { callback() } }, ...(typeof origExternals[0] === 'function' ? [] : origExternals), ] config.module.rules.unshift({ test: antStyles, use: 'null-loader', }) } return config }, }) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".babelrc { &quot;presets&quot;: [&quot;next/babel&quot;], &quot;plugins&quot;: [ [ &quot;import&quot;, { &quot;libraryName&quot;: &quot;antd&quot;, &quot;style&quot;: true } ] ] }"><pre class="notranslate"><code class="notranslate">.babelrc { "presets": ["next/babel"], "plugins": [ [ "import", { "libraryName": "antd", "style": true } ] ] } </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Next.js version: 9.0.8 antd version: 3.24.3 @zeit/next-less version: 1.0.1"><pre class="notranslate"><code class="notranslate">Next.js version: 9.0.8 antd version: 3.24.3 @zeit/next-less version: 1.0.1 </code></pre></div>
<p dir="auto">This is bug report</p> <p dir="auto">Link does not work with css-module imported. That happens when page with Link has no css, and linked page has. No errors in console, so im not sure about reasons, but there is minimal repo to reproduce:<br> <a href="https://github.com/standy/next-css-error">https://github.com/standy/next-css-error</a></p> <p dir="auto">Bug appears in <code class="notranslate">[email protected]</code> + <code class="notranslate">[email protected]</code>,<br> Older <code class="notranslate">[email protected]</code> + <code class="notranslate">[email protected]</code> works fine</p>
1
<p dir="auto">I find that when setting the y-axis to log-transformed coordinates, it seems that only the upper limit is plotted.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) ) # original"><pre class="notranslate"><code class="notranslate">( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) ) # original </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55271666/208355639-09c7e6fb-1d02-401f-b737-9e61e76d3b68.png"><img src="https://user-images.githubusercontent.com/55271666/208355639-09c7e6fb-1d02-401f-b737-9e61e76d3b68.png" alt="image" style="max-width: 100%;"></a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) .scale(y='log') ) # log-transformed"><pre class="notranslate"><code class="notranslate">( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) .scale(y='log') ) # log-transformed </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55271666/208355702-16ba1db1-befc-4192-abe9-d62a0552543e.png"><img src="https://user-images.githubusercontent.com/55271666/208355702-16ba1db1-befc-4192-abe9-d62a0552543e.png" alt="image" style="max-width: 100%;"></a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fig = ( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) .plot()._figure ) ax = fig.axes[0] ax.set_yscale('log') fig # expected"><pre class="notranslate"><code class="notranslate">fig = ( so.Plot(x=[1,2,3], y=[10, 100, 1000]) .add(so.Bar()) .plot()._figure ) ax = fig.axes[0] ax.set_yscale('log') fig # expected </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55271666/208355846-62d59a25-bd4f-4d8b-8f70-6d770c2d49b8.png"><img src="https://user-images.githubusercontent.com/55271666/208355846-62d59a25-bd4f-4d8b-8f70-6d770c2d49b8.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">When specifying a log y scale for a Bar plot the bars are not drawn correctly.<br> Example code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df = pd.DataFrame.from_dict( { 'x_values': [1,2,3,20], 'frequency': [10000,100,10,1] } ) plot = ( so.Plot(df, x=&quot;x_values&quot;, y = &quot;frequency&quot;) .add(so.Bars(edgecolor=&quot;C0&quot;, edgewidth=2)) .scale(y=&quot;log&quot;) ) plot.show()"><pre class="notranslate"><code class="notranslate">df = pd.DataFrame.from_dict( { 'x_values': [1,2,3,20], 'frequency': [10000,100,10,1] } ) plot = ( so.Plot(df, x="x_values", y = "frequency") .add(so.Bars(edgecolor="C0", edgewidth=2)) .scale(y="log") ) plot.show() </code></pre></div> <p dir="auto">result:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/423/190866050-b78c367a-47e0-46f1-adb3-cc64bf64fbba.png"><img src="https://user-images.githubusercontent.com/423/190866050-b78c367a-47e0-46f1-adb3-cc64bf64fbba.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">Please add rtl support for bootstrap.</p>
<p dir="auto">Would be great to have support for right-to-left languages.</p>
1
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): cAdvisor inotify_init: too many open files</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br> BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: hardware</li> <li><strong>OS</strong> (e.g. from /etc/os-release): SUSE 12</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li> <li><strong>Install tools</strong>: manul</li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>: monit monitor kubelet and flanneld service, and kubelet service depends on flanneld service, i make flanneld not running, so kubelet will restart by monit, after many times restart, i fix flanneld service, but kubelet launch with error</p> <p dir="auto"><strong>What you expected to happen</strong>:<br> kubelet running success</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <p dir="auto"><strong>Anything else do we need to know</strong>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E1123 14:47:21.372435 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for &quot;runtime&quot;: unable to find data for container / E1123 14:47:21.372469 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for &quot;root&quot;: unable to find data for container / I1123 14:47:25.806786 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] I1123 14:47:30.806954 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] E1123 14:47:31.397830 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for &quot;runtime&quot;: unable to find data for container / E1123 14:47:31.397861 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for &quot;root&quot;: unable to find data for container / I1123 14:47:35.807141 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] I1123 14:47:40.807326 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] E1123 14:47:41.415673 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for &quot;runtime&quot;: unable to find data for container / E1123 14:47:41.415704 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for &quot;root&quot;: unable to find data for container / I1123 14:47:45.807487 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files]"><pre class="notranslate"><code class="notranslate">E1123 14:47:21.372435 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for "runtime": unable to find data for container / E1123 14:47:21.372469 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for "root": unable to find data for container / I1123 14:47:25.806786 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] I1123 14:47:30.806954 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] E1123 14:47:31.397830 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for "runtime": unable to find data for container / E1123 14:47:31.397861 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for "root": unable to find data for container / I1123 14:47:35.807141 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] I1123 14:47:40.807326 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] E1123 14:47:41.415673 24479 kubelet.go:2675] Failed to check if disk space is available for the runtime: failed to get fs info for "runtime": unable to find data for container / E1123 14:47:41.415704 24479 kubelet.go:2683] Failed to check if disk space is available on the root partition: failed to get fs info for "root": unable to find data for container / I1123 14:47:45.807487 24479 kubelet.go:2803] skipping pod synchronization - [Failed to start cAdvisor inotify_init: too many open files] </code></pre></div>
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):<br> No.</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):<br> docker hang<br> docker ps hangs</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br> BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):<br> Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.6", GitCommit:"e569a27d02001e343cb68086bc06d47804f62af6", GitTreeState:"clean", BuildDate:"2016-11-12T05:16:27Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: GKE v1.4.5</li> <li><strong>OS</strong> (e.g. from /etc/os-release):<br> BUILD_ID=8872.26.0<br> NAME="Container-VM Image"<br> GOOGLE_CRASH_ID=Lakitu<br> VERSION_ID=55<br> VERSION=55<br> ID=gci</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux gke-api-cluster-1-pool-v1-0f4fa4ec-p95f 4.4.21+ <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Wed Oct 26 13:00:52 PDT 2016 x86_64 Intel(R) Xeon(R) CPU @ 2.30GHz GenuineIntel GNU/Linux</li> <li><strong>Install tools</strong>:</li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>: <code class="notranslate">docker ps</code> hangs for more than 10 seconds in <code class="notranslate">kube-docker-monitor.service</code> and the docker daemon is killed.</p> <p dir="auto"><strong>What you expected to happen</strong>: <code class="notranslate">docker ps</code> to complete quickly and docker not to be killed.</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible): I have not had success reproducing this at will. It's a daily occurrence though.</p> <p dir="auto"><strong>Anything else do we need to know</strong>:<br> It feels weird to file this here as it's rather GKE-specific, but we had GCP support direct us here.</p> <p dir="auto">I've collected several stack dumps here (taken after the 10s hang):<br> <a href="https://gist.github.com/gdvalle/b58b5d793ebd229f9c40438a4c5ae160">https://gist.github.com/gdvalle/b58b5d793ebd229f9c40438a4c5ae160</a><br> At least a couple of these seem to match up with this bug:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="184357224" data-permission-text="Title is private" data-url="https://github.com/moby/moby/issues/27607" data-hovercard-type="issue" data-hovercard-url="/moby/moby/issues/27607/hovercard" href="https://github.com/moby/moby/issues/27607">moby/moby#27607</a></p> <p dir="auto">Looks like those patches should ship with the next 1.12 release...but no date for that yet. However, 1.13 did just ship, and that looks like it has the patches. So maybe we wait for k8s validation on that.</p> <p dir="auto">So far it looks like we have a workaround by just allowing more time for the <code class="notranslate">docker ps</code> to succeed. Existing containers on the node were still healthy so it seemed reasonable to bump it.<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/kubernetes/kubernetes/blob/8fd414537b5143ab039cb910590237cabf4af783/cluster/gce/gci/health-monitor.sh#L29">kubernetes/cluster/gce/gci/health-monitor.sh</a> </p> <p class="mb-0 color-fg-muted"> Line 29 in <a data-pjax="true" class="commit-tease-sha" href="/kubernetes/kubernetes/commit/8fd414537b5143ab039cb910590237cabf4af783">8fd4145</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L29" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="29"></td> <td id="LC29" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-k">!</span> timeout 10 docker ps <span class="pl-k">&gt;</span> /dev/null<span class="pl-k">;</span> <span class="pl-k">then</span> </td> </tr> </tbody></table> </div> </div> <br> We've upped the timeout to 50s, but over the last couple days we haven't seen it need more than about 35s in total with most being just a few seconds longer than 10.<p></p>
0
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="setup.py build setup.py install -root &lt;/install/prefixx&gt; PYTHONPATH=&lt;/install/prefix/sitearch&gt;.pytest"><pre class="notranslate"><span class="pl-c1">setup.py build</span> <span class="pl-c1">setup.py install -root &lt;/install/prefixx&gt;</span> <span class="pl-c1">PYTHONPATH=&lt;/install/prefix/sitearch&gt;.pytest</span></pre></div> <p dir="auto">And here is pytest output</p> <div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib64/python3.8/site-packages + PYTHONDONTWRITEBYTECODE=1 + xvfb-run -a -s '-screen 0 640x480x24' /usr/bin/pytest -ra =========================================================================== test session starts ============================================================================ platform linux -- Python 3.8.9, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: /home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2, configfile: pytest.ini, testpaths: lib plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, httpbin-1.0.0, xdist-2.2.1, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, freezegun-0.4.2, case-1.5.3, isort-1.3.0, aspectlib-1.5.2, asyncio-0.15.1, toolbox-0.5, xprocess-0.17.1, aiohttp-0.3.0, checkdocs-2.7.0, mock-3.6.1, rerunfailures-9.1.1, requests-mock-1.9.3, Faker-8.4.0, cov-2.12.1, pyfakefs-4.5.0, hypothesis-6.13.14, cases-3.6.1 collected 0 items / 1 error ================================================================================== ERRORS ================================================================================== ______________________________________________________________________ ERROR collecting test session _______________________________________________________________________ /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:975: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:671: in _load_unlocked ??? &lt;frozen importlib._bootstrap_external&gt;:783: in exec_module ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? lib/matplotlib/__init__.py:107: in &lt;module&gt; from . import _api, cbook, docstring, rcsetup lib/matplotlib/cbook/__init__.py:31: in &lt;module&gt; from matplotlib import _api, _c_internal_utils E ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2/lib/matplotlib/__init__.py) ========================================================================= short test summary info ========================================================================== ERROR - ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbui... !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ============================================================================= 1 error in 0.49s ============================================================================="><pre class="notranslate"><span class="pl-c1">+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib64/python3.8/site-packages</span> <span class="pl-c1">+ PYTHONDONTWRITEBYTECODE=1</span> <span class="pl-c1">+ xvfb-run -a -s '-screen 0 640x480x24' /usr/bin/pytest -ra</span> <span class="pl-c1">=========================================================================== test session starts ============================================================================</span> <span class="pl-c1">platform linux -- Python 3.8.9, pytest-6.2.4, py-1.10.0, pluggy-0.13.1</span> <span class="pl-c1">rootdir: /home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2, configfile: pytest.ini, testpaths: lib</span> <span class="pl-c1">plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, httpbin-1.0.0, xdist-2.2.1, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, freezegun-0.4.2, case-1.5.3, isort-1.3.0, aspectlib-1.5.2, asyncio-0.15.1, toolbox-0.5, xprocess-0.17.1, aiohttp-0.3.0, checkdocs-2.7.0, mock-3.6.1, rerunfailures-9.1.1, requests-mock-1.9.3, Faker-8.4.0, cov-2.12.1, pyfakefs-4.5.0, hypothesis-6.13.14, cases-3.6.1</span> <span class="pl-c1">collected 0 items / 1 error</span> <span class="pl-c1">================================================================================== ERRORS ==================================================================================</span> <span class="pl-c1">______________________________________________________________________ ERROR collecting test session _______________________________________________________________________</span> <span class="pl-c1">/usr/lib64/python3.8/importlib/__init__.py:127: in import_module</span> <span class="pl-c1"> return _bootstrap._gcd_import(name[level:], package, level)</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:975: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:671: in _load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap_external&gt;:783: in exec_module</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">lib/matplotlib/__init__.py:107: in &lt;module&gt;</span> <span class="pl-c1"> from . import _api, cbook, docstring, rcsetup</span> <span class="pl-c1">lib/matplotlib/cbook/__init__.py:31: in &lt;module&gt;</span> <span class="pl-c1"> from matplotlib import _api, _c_internal_utils</span> <span class="pl-c1">E ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2/lib/matplotlib/__init__.py)</span> <span class="pl-c1">========================================================================= short test summary info ==========================================================================</span> <span class="pl-c1">ERROR - ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbui...</span> <span class="pl-c1">!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</span> <span class="pl-c1">============================================================================= 1 error in 0.49s =============================================================================</span></pre></div>
<p dir="auto">I'm trying to build rpm package with matplotlib module.<br> setuptools build and install are ok but pytest is failing for me.<br> May I ask for poin on what I'm doing wrong?</p> <div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="+ PATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/bin:/usr/bin:/usr/sbin:/usr/local/sbin + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib/python3.8/site-packages + /usr/bin/python3 -Bm pytest -ra =========================================================================== test session starts ============================================================================ platform linux -- Python 3.8.9, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: /home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2, configfile: pytest.ini, testpaths: lib plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, cov-2.11.1, httpbin-1.0.0, xdist-2.2.1, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, pyfakefs-4.4.0, freezegun-0.4.2, cases-3.4.6, case-1.5.3, isort-1.3.0, aspectlib-1.5.2, asyncio-0.15.1, toolbox-0.5, xprocess-0.17.1, flaky-3.7.0, requests-mock-1.9.2, aiohttp-0.3.0, checkdocs-2.7.0, mock-3.6.1, hypothesis-6.13.5, rerunfailures-9.1.1 collected 0 items / 1 error ================================================================================== ERRORS ================================================================================== ______________________________________________________________________ ERROR collecting test session _______________________________________________________________________ /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? &lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import ??? &lt;frozen importlib._bootstrap&gt;:991: in _find_and_load ??? &lt;frozen importlib._bootstrap&gt;:975: in _find_and_load_unlocked ??? &lt;frozen importlib._bootstrap&gt;:671: in _load_unlocked ??? &lt;frozen importlib._bootstrap_external&gt;:783: in exec_module ??? &lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed ??? lib/matplotlib/__init__.py:107: in &lt;module&gt; from . import _api, cbook, docstring, rcsetup lib/matplotlib/cbook/__init__.py:31: in &lt;module&gt; from matplotlib import _api, _c_internal_utils E ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2/lib/matplotlib/__init__.py) ========================================================================= short test summary info ========================================================================== ERROR - ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbui... !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ============================================================================= 1 error in 0.41s ============================================================================="><pre class="notranslate"><span class="pl-c1">+ PATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/bin:/usr/bin:/usr/sbin:/usr/local/sbin</span> <span class="pl-c1">+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-matplotlib-3.4.2-2.fc35.x86_64/usr/lib/python3.8/site-packages</span> <span class="pl-c1">+ /usr/bin/python3 -Bm pytest -ra</span> <span class="pl-c1">=========================================================================== test session starts ============================================================================</span> <span class="pl-c1">platform linux -- Python 3.8.9, pytest-6.2.4, py-1.10.0, pluggy-0.13.1</span> <span class="pl-c1">rootdir: /home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2, configfile: pytest.ini, testpaths: lib</span> <span class="pl-c1">plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, cov-2.11.1, httpbin-1.0.0, xdist-2.2.1, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, pyfakefs-4.4.0, freezegun-0.4.2, cases-3.4.6, case-1.5.3, isort-1.3.0, aspectlib-1.5.2, asyncio-0.15.1, toolbox-0.5, xprocess-0.17.1, flaky-3.7.0, requests-mock-1.9.2, aiohttp-0.3.0, checkdocs-2.7.0, mock-3.6.1, hypothesis-6.13.5, rerunfailures-9.1.1</span> <span class="pl-c1">collected 0 items / 1 error</span> <span class="pl-c1">================================================================================== ERRORS ==================================================================================</span> <span class="pl-c1">______________________________________________________________________ ERROR collecting test session _______________________________________________________________________</span> <span class="pl-c1">/usr/lib64/python3.8/importlib/__init__.py:127: in import_module</span> <span class="pl-c1"> return _bootstrap._gcd_import(name[level:], package, level)</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:961: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:1014: in _gcd_import</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:991: in _find_and_load</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:975: in _find_and_load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:671: in _load_unlocked</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap_external&gt;:783: in exec_module</span> <span class="pl-c1"> ???</span> <span class="pl-c1">&lt;frozen importlib._bootstrap&gt;:219: in _call_with_frames_removed</span> <span class="pl-c1"> ???</span> <span class="pl-c1">lib/matplotlib/__init__.py:107: in &lt;module&gt;</span> <span class="pl-c1"> from . import _api, cbook, docstring, rcsetup</span> <span class="pl-c1">lib/matplotlib/cbook/__init__.py:31: in &lt;module&gt;</span> <span class="pl-c1"> from matplotlib import _api, _c_internal_utils</span> <span class="pl-c1">E ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbuild/BUILD/matplotlib-3.4.2/lib/matplotlib/__init__.py)</span> <span class="pl-c1">========================================================================= short test summary info ==========================================================================</span> <span class="pl-c1">ERROR - ImportError: cannot import name '_c_internal_utils' from partially initialized module 'matplotlib' (most likely due to a circular import) (/home/tkloczko/rpmbui...</span> <span class="pl-c1">!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</span> <span class="pl-c1">============================================================================= 1 error in 0.41s =============================================================================</span></pre></div>
1
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p> <p dir="auto">Bug</p> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">In React 15, render errors which killed execution of the app would leave the existing HTML on the page. In React 16, the existing HTML gets wiped (the "white screen of death").</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">It would be a <em>much better</em> user experience if we could configure it so the existing HTML remained if render failed. App functionality would fail, but the page would still be there, and users could use standard HTML links etc to continue navigating. In some cases they may not even notice that the app broke.</p> <p dir="auto">I'm aware of Error Boundaries as a proposed solution for this in React 16. However, these do not seem like a great solution for us for two reasons:</p> <ol dir="auto"> <li>We'd need to pepper a lot of them across the entire codebase to get reasonable granularity and restrict the impact of errors, for example to a <code class="notranslate">&lt;StickySidebar&gt;</code> on an <code class="notranslate">&lt;Article&gt;</code> or whatever. This is a major code change for an app which might have hundreds of components.</li> <li>Even if we did the above, we'd get that segment of the app (which may be significant) replaced by an error message. What if there's an unexpected error in <code class="notranslate">&lt;ArticleBody&gt;</code>? That's the entire purpose of the page, replaced by an error message. Far better for us to stop JS execution and leave the user with static HTML.</li> </ol> <p dir="auto">Obviously, bugs in our app are our fault and we should fix them. But they're not always predictable: for example, today we tracked down a bug to <code class="notranslate">localStorage.setItem</code> throwing an exception only on Safari 10- in Private Browsing mode. That is a tough issue to anticipate. It's difficult to ensure the app is bug-free, and if we miss something, the outcome in React 16 is catastrophic instead of merely a reduction of the user experience.</p> <p dir="auto">Here's a demo in React 15: <a href="https://codepen.io/giles-v/pen/GdRyBX" rel="nofollow">https://codepen.io/giles-v/pen/GdRyBX</a><br> Here's the same code in React 16: <a href="https://codepen.io/giles-v/pen/xjxYEY" rel="nofollow">https://codepen.io/giles-v/pen/xjxYEY</a></p>
<p dir="auto">I wasn't sure where to report this, but this is a problem I'm having with a new feature.</p> <p dir="auto">I just finished upgrading my team to React 16. Overall, I think the upgrade is great. We are using fragments and the relaxed constraints on what you can return from render(), and I'm overall very happy with it.</p> <p dir="auto">My only issue is with error boundaries. The feature seems to be well-intended, and does help out quite a bit. The improved error reporting especially is beautiful and will make debugging a dream.</p> <p dir="auto">The problem is that I believe we are leaving our users in a worse state by having to display fallback UIs. In a perfect world, we would have no client side errors and none of this would even be a discussion. But unfortunately we do have to deal with client-side errors. I agree that leaving the UI in an unpredictable state is less than desired, but I would argue that it's still better than taking away the UI completely. If a user triggers a client-side error, but the UI is still there, they can continue to use the site with little-to-no issue in the case of <em>most</em> errors. But with React 16's new functionality, even the smallest of errors will unmount the UI.</p> <p dir="auto">Our options are:</p> <ul dir="auto"> <li>Go with the easy route and implement a top-level error boundary that will unmount the whole UI, replacing it with a fallback that does nothing for the user.</li> <li>Take significant developer time to implement fine-grained error boundaries that will still leave most of the UI untouched, only replacing components in error. But overall, this will still be taking functionality away from the user.</li> </ul> <p dir="auto">Either way, with this new functionality, we need to have at least a top-level error boundary to display <em>something</em> to the user. Our top-level boundary still displays our navigation bar so that the user can still navigate away from the page and use other parts of the site. The alternative is that they will need to refresh the page because everything will be unmounted.</p> <p dir="auto">I agree that displaying a fallback UI can be useful in instances where you <em>expect</em> an error in some cases (for example, when loading an image from a third party CDN or something). But in cases where a bug is producing an <em>unexpected</em> error, we should still be able to keep the UI in its previous state.</p> <p dir="auto">This is how I envision it working:</p> <ul dir="auto"> <li>Error boundaries are still exactly as they are today, except...</li> <li>If the error was thrown inside the render() of a component, that component will either not be mounted (if it hasn't yet been mounted) or be left in its prior state (if it has already been successfully mounted). The parent of the offending component and all of the parent's other children are still rendered.</li> <li>If the error was thrown inside a lifecycle method, the offending component's tree is left as it was, and other children of its parent can still be updated.</li> <li>Error boundaries can <em>still</em> display a fallback UI if they want. componentDidMount() still has the ability to set state.</li> </ul> <p dir="auto">If you are handling an <em>expected</em> error, you should display a fallback UI. If you are handling an <em>unexpected</em> error, you should try to leave the UI in the most unbroken state possible for the user. The error should still be reported and caught by a top-level error boundary so that it can be logged, but the UI should not need to be replaced in all instances.</p> <p dir="auto">Perhaps I'm missing out on a standard process for handling these problems I'm talking about, and I am happy to hear what other people are doing to get around this, but I believe this feature as it exists today means more work for developers, and poor functionality for users.</p>
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-10-18 18:55:10.227+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 301ms. 2017-10-18 18:55:12.670+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 340ms. 2017-10-18 18:56:03.154+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 232ms. 2017-10-18 18:56:08.716+0000 ERROR [o.n.b.v.r.ErrorReporter] Client triggered an unexpected error [UnknownError]: null, reference 23d7ba6e-88ce-4579-8429-bd53b1cce240. 2017-10-18 18:56:08.716+0000 ERROR [o.n.b.v.r.ErrorReporter] Client triggered an unexpected error [UnknownError]: null, reference 23d7ba6e-88ce-4579-8429-bd53b1cce240. java.lang.NullPointerException at org.neo4j.cypher.internal.spi.v3_2.TransactionBoundQueryContext.getRelationshipsForIds(TransactionBoundQueryContext.scala:134) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.spi.v3_2.ExceptionTranslationSupport$class.translateException(ExceptionTranslationSupport.scala:32) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.translateException(ExceptionTranslatingQueryContext.scala:34) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.getRelationshipsForIds(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.compiler.v3_2.spi.DelegatingQueryContext.getRelationshipsForIds(DelegatingQueryContext.scala:69) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$Expandable$class.expand(PruningVarLengthExpandPipe.scala:300) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.expand(PruningVarLengthExpandPipe.scala:81) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.next(PruningVarLengthExpandPipe.scala:98) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$LoadNext.next(PruningVarLengthExpandPipe.scala:270) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$$anon$1.&lt;init&gt;(PruningVarLengthExpandPipe.scala:340) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe.internalCreateResults(PruningVarLengthExpandPipe.scala:338) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:82) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply(ApplyPipe.scala:33) at org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply(ApplyPipe.scala:30) at scala.collection.Iterator$$anon$12.nextCur(Iterator.scala:434) at scala.collection.Iterator$$anon$12.hasNext(Iterator.scala:440) at scala.collection.Iterator$$anon$11.hasNext(Iterator.scala:408) at scala.collection.Iterator$$anon$12.hasNext(Iterator.scala:438) at scala.collection.Iterator$class.foreach(Iterator.scala:893) at scala.collection.AbstractIterator.foreach(Iterator.scala:1336) at org.neo4j.cypher.internal.compiler.v3_2.pipes.EagerAggregationPipe.internalCreateResults(EagerAggregationPipe.scala:89) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:82) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.executionplan.DefaultExecutionResultBuilderFactory$ExecutionWorkflowBuilder.createResults(DefaultExecutionResultBuilderFactory.scala:97) at org.neo4j.cypher.internal.compiler.v3_2.executionplan.DefaultExecutionResultBuilderFactory$ExecutionWorkflowBuilder.build(DefaultExecutionResultBuilderFactory.scala:75) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anonfun$getExecutionPlanFunction$1.apply(BuildInterpretedExecutionPlan.scala:103) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anonfun$getExecutionPlanFunction$1.apply(BuildInterpretedExecutionPlan.scala:86) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anon$1.run(BuildInterpretedExecutionPlan.scala:55) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper$$anonfun$run$1.apply(Compatibility.scala:103) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper$$anonfun$run$1.apply(Compatibility.scala:101) at org.neo4j.cypher.internal.compatibility.v3_2.exceptionHandler$runSafely$.apply(exceptionHandler.scala:90) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper.run(Compatibility.scala:101) at org.neo4j.cypher.internal.PreparedPlanExecution.execute(PreparedPlanExecution.scala:26) at org.neo4j.cypher.internal.ExecutionEngine.execute(ExecutionEngine.scala:107) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:61) at org.neo4j.bolt.v1.runtime.TransactionStateMachineSPI$1.start(TransactionStateMachineSPI.java:144) at org.neo4j.bolt.v1.runtime.TransactionStateMachine$State$1.run(TransactionStateMachine.java:202) at org.neo4j.bolt.v1.runtime.TransactionStateMachine.run(TransactionStateMachine.java:74) at org.neo4j.bolt.v1.runtime.BoltStateMachine$State$2.run(BoltStateMachine.java:395) at org.neo4j.bolt.v1.runtime.BoltStateMachine.run(BoltStateMachine.java:194) at org.neo4j.bolt.v1.messaging.BoltMessageRouter.lambda$onRun$3(BoltMessageRouter.java:80) at org.neo4j.bolt.v1.runtime.concurrent.RunnableBoltWorker.execute(RunnableBoltWorker.java:130) at org.neo4j.bolt.v1.runtime.concurrent.RunnableBoltWorker.run(RunnableBoltWorker.java:91) at java.lang.Thread.run(Thread.java:748) 2017-10-18 18:56:23.340+0000 ERROR [o.n.b.t.SocketTransportHandler] Fatal error occurred when handling a client connection: Connection reset by peer Connection reset by peer java.io.IOException: Connection reset by peer at sun.nio.ch.FileDispatcherImpl.read0(Native Method) at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) at sun.nio.ch.IOUtil.read(IOUtil.java:192) at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) at io.netty.buffer.PooledUnsafeDirectByteBuf.setBytes(PooledUnsafeDirectByteBuf.java:288) at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1106) at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:373) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:123) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:645) at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:580) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:497) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:459) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">2017-10-18 18:55:10.227+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 301ms. 2017-10-18 18:55:12.670+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 340ms. 2017-10-18 18:56:03.154+0000 WARN [o.n.k.i.c.MonitorGc] GC Monitor: Application threads blocked for 232ms. 2017-10-18 18:56:08.716+0000 ERROR [o.n.b.v.r.ErrorReporter] Client triggered an unexpected error [UnknownError]: null, reference 23d7ba6e-88ce-4579-8429-bd53b1cce240. 2017-10-18 18:56:08.716+0000 ERROR [o.n.b.v.r.ErrorReporter] Client triggered an unexpected error [UnknownError]: null, reference 23d7ba6e-88ce-4579-8429-bd53b1cce240. java.lang.NullPointerException at org.neo4j.cypher.internal.spi.v3_2.TransactionBoundQueryContext.getRelationshipsForIds(TransactionBoundQueryContext.scala:134) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.spi.v3_2.ExceptionTranslationSupport$class.translateException(ExceptionTranslationSupport.scala:32) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.translateException(ExceptionTranslatingQueryContext.scala:34) at org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.getRelationshipsForIds(ExceptionTranslatingQueryContext.scala:195) at org.neo4j.cypher.internal.compiler.v3_2.spi.DelegatingQueryContext.getRelationshipsForIds(DelegatingQueryContext.scala:69) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$Expandable$class.expand(PruningVarLengthExpandPipe.scala:300) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.expand(PruningVarLengthExpandPipe.scala:81) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.next(PruningVarLengthExpandPipe.scala:98) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$LoadNext.next(PruningVarLengthExpandPipe.scala:270) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$$anon$1.&lt;init&gt;(PruningVarLengthExpandPipe.scala:340) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe.internalCreateResults(PruningVarLengthExpandPipe.scala:338) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:82) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply(ApplyPipe.scala:33) at org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply(ApplyPipe.scala:30) at scala.collection.Iterator$$anon$12.nextCur(Iterator.scala:434) at scala.collection.Iterator$$anon$12.hasNext(Iterator.scala:440) at scala.collection.Iterator$$anon$11.hasNext(Iterator.scala:408) at scala.collection.Iterator$$anon$12.hasNext(Iterator.scala:438) at scala.collection.Iterator$class.foreach(Iterator.scala:893) at scala.collection.AbstractIterator.foreach(Iterator.scala:1336) at org.neo4j.cypher.internal.compiler.v3_2.pipes.EagerAggregationPipe.internalCreateResults(EagerAggregationPipe.scala:89) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:82) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults(Pipe.scala:79) at org.neo4j.cypher.internal.compiler.v3_2.executionplan.DefaultExecutionResultBuilderFactory$ExecutionWorkflowBuilder.createResults(DefaultExecutionResultBuilderFactory.scala:97) at org.neo4j.cypher.internal.compiler.v3_2.executionplan.DefaultExecutionResultBuilderFactory$ExecutionWorkflowBuilder.build(DefaultExecutionResultBuilderFactory.scala:75) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anonfun$getExecutionPlanFunction$1.apply(BuildInterpretedExecutionPlan.scala:103) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anonfun$getExecutionPlanFunction$1.apply(BuildInterpretedExecutionPlan.scala:86) at org.neo4j.cypher.internal.compiler.v3_2.BuildInterpretedExecutionPlan$$anon$1.run(BuildInterpretedExecutionPlan.scala:55) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper$$anonfun$run$1.apply(Compatibility.scala:103) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper$$anonfun$run$1.apply(Compatibility.scala:101) at org.neo4j.cypher.internal.compatibility.v3_2.exceptionHandler$runSafely$.apply(exceptionHandler.scala:90) at org.neo4j.cypher.internal.compatibility.v3_2.Compatibility$ExecutionPlanWrapper.run(Compatibility.scala:101) at org.neo4j.cypher.internal.PreparedPlanExecution.execute(PreparedPlanExecution.scala:26) at org.neo4j.cypher.internal.ExecutionEngine.execute(ExecutionEngine.scala:107) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:61) at org.neo4j.bolt.v1.runtime.TransactionStateMachineSPI$1.start(TransactionStateMachineSPI.java:144) at org.neo4j.bolt.v1.runtime.TransactionStateMachine$State$1.run(TransactionStateMachine.java:202) at org.neo4j.bolt.v1.runtime.TransactionStateMachine.run(TransactionStateMachine.java:74) at org.neo4j.bolt.v1.runtime.BoltStateMachine$State$2.run(BoltStateMachine.java:395) at org.neo4j.bolt.v1.runtime.BoltStateMachine.run(BoltStateMachine.java:194) at org.neo4j.bolt.v1.messaging.BoltMessageRouter.lambda$onRun$3(BoltMessageRouter.java:80) at org.neo4j.bolt.v1.runtime.concurrent.RunnableBoltWorker.execute(RunnableBoltWorker.java:130) at org.neo4j.bolt.v1.runtime.concurrent.RunnableBoltWorker.run(RunnableBoltWorker.java:91) at java.lang.Thread.run(Thread.java:748) 2017-10-18 18:56:23.340+0000 ERROR [o.n.b.t.SocketTransportHandler] Fatal error occurred when handling a client connection: Connection reset by peer Connection reset by peer java.io.IOException: Connection reset by peer at sun.nio.ch.FileDispatcherImpl.read0(Native Method) at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) at sun.nio.ch.IOUtil.read(IOUtil.java:192) at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) at io.netty.buffer.PooledUnsafeDirectByteBuf.setBytes(PooledUnsafeDirectByteBuf.java:288) at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1106) at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:373) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:123) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:645) at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:580) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:497) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:459) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) at java.lang.Thread.run(Thread.java:748) </code></pre></div> <p dir="auto">Client 1.5.0<br> neo4j 3.2.5</p>
<p dir="auto">When I switch from Neo4j 3.0.7 to 3.2.1 one of my queries crashes with NullPointerException in<br> org.neo4j.cypher.internal.spi.v3_2.TransactionBoundQueryContext.getRelationshipsForIds.<br> With 3.0.7 the same query is running fine.</p> <p dir="auto"><strong>Neo4j Version:</strong> 3.2.1<br> <strong>Operating System:</strong> Windows 10<br> <strong>API:</strong> Cypher</p> <h3 dir="auto">Steps to reproduce</h3> <ul dir="auto"> <li>start data base and empty it</li> <li>create some nodes that will show the error</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" CREATE (cust :DoorsObject {eid: 1}) CREATE (cust) &lt;-[:Links]- (req :DoorsObject {eid: 1}) CREATE (reqM :DoorsFormalModule {eid: 1}) -[:Contains]-&gt; (req)"><pre class="notranslate"><code class="notranslate"> CREATE (cust :DoorsObject {eid: 1}) CREATE (cust) &lt;-[:Links]- (req :DoorsObject {eid: 1}) CREATE (reqM :DoorsFormalModule {eid: 1}) -[:Contains]-&gt; (req) </code></pre></div> <ul dir="auto"> <li>create some nodes that are OK</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" CREATE (cust :DoorsObject {eid: 2}) CREATE (cust) &lt;-[:Links]- (req :DoorsObject {eid: 2}) CREATE (reqM :DoorsFormalModule {eid: 2}) -[:Contains]-&gt; (req) CREATE (req) &lt;-[:Links]- (:Link) &lt;-[:Links]- (tst :DoorsObject {eid: 2}) CREATE (tstM :DoorsFormalModule {eid: 2}) -[:Contains]-&gt; (tst)"><pre class="notranslate"><code class="notranslate"> CREATE (cust :DoorsObject {eid: 2}) CREATE (cust) &lt;-[:Links]- (req :DoorsObject {eid: 2}) CREATE (reqM :DoorsFormalModule {eid: 2}) -[:Contains]-&gt; (req) CREATE (req) &lt;-[:Links]- (:Link) &lt;-[:Links]- (tst :DoorsObject {eid: 2}) CREATE (tstM :DoorsFormalModule {eid: 2}) -[:Contains]-&gt; (tst) </code></pre></div> <ul dir="auto"> <li>run the query</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" MATCH (cust :DoorsObject) WITH cust OPTIONAL MATCH (cust) &lt;-[:Links *1..]- (req :DoorsObject) &lt;-[:Contains]- (reqM :DoorsFormalModule) WITH DISTINCT cust, reqM, req // WHERE req IS NOT NULL // Uncomment so 3.2.1 doesn't crash OPTIONAL MATCH (req) &lt;-[:Links *2]- (tst :DoorsObject) &lt;-[:Contains]- (tstM :DoorsFormalModule) WITH cust, reqM, req, tstM, tst // WHERE tstM IS NOT NULL RETURN DISTINCT cust.eid, reqM.eid, tstM.eid"><pre class="notranslate"><code class="notranslate"> MATCH (cust :DoorsObject) WITH cust OPTIONAL MATCH (cust) &lt;-[:Links *1..]- (req :DoorsObject) &lt;-[:Contains]- (reqM :DoorsFormalModule) WITH DISTINCT cust, reqM, req // WHERE req IS NOT NULL // Uncomment so 3.2.1 doesn't crash OPTIONAL MATCH (req) &lt;-[:Links *2]- (tst :DoorsObject) &lt;-[:Contains]- (tstM :DoorsFormalModule) WITH cust, reqM, req, tstM, tst // WHERE tstM IS NOT NULL RETURN DISTINCT cust.eid, reqM.eid, tstM.eid </code></pre></div> <h3 dir="auto">Expected behavior</h3> <p dir="auto">Neo4j 3.0.7 returns:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="╒════════╤════════╤════════╕ │cust.eid│reqM.eid│tstM.eid│ ╞════════╪════════╪════════╡ │1 │1 │(null) │ ├────────┼────────┼────────┤ │1 │(null) │(null) │ ├────────┼────────┼────────┤ │2 │2 │2 │ ├────────┼────────┼────────┤ │2 │2 │(null) │ ├────────┼────────┼────────┤ │2 │(null) │(null) │ └────────┴────────┴────────┘"><pre class="notranslate"><code class="notranslate">╒════════╤════════╤════════╕ │cust.eid│reqM.eid│tstM.eid│ ╞════════╪════════╪════════╡ │1 │1 │(null) │ ├────────┼────────┼────────┤ │1 │(null) │(null) │ ├────────┼────────┼────────┤ │2 │2 │2 │ ├────────┼────────┼────────┤ │2 │2 │(null) │ ├────────┼────────┼────────┤ │2 │(null) │(null) │ └────────┴────────┴────────┘ </code></pre></div> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Neo4j 3.2.1 crashes with</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.NullPointerException: null at org.neo4j.cypher.internal.spi.v3_2.TransactionBoundQueryContext.getRelationshipsForIds (TransactionBoundQueryContext.scala:134) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.spi.v3_2.ExceptionTranslationSupport$class.translateException (ExceptionTranslationSupport.scala:32) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.translateException (ExceptionTranslatingQueryContext.scala:34) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.getRelationshipsForIds (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$Expandable$class.expand (PruningVarLengthExpandPipe.scala:300) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.expand (PruningVarLengthExpandPipe.scala:81) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.next (PruningVarLengthExpandPipe.scala:98) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$LoadNext.next (PruningVarLengthExpandPipe.scala:270) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$$anon$1.&lt;init&gt; (PruningVarLengthExpandPipe.scala:340) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe.internalCreateResults (PruningVarLengthExpandPipe.scala:338) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:82) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply (ApplyPipe.scala:33) org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply (ApplyPipe.scala:30) scala.collection.Iterator$$anon$12.nextCur (Iterator.scala:434) scala.collection.Iterator$$anon$12.hasNext (Iterator.scala:440) scala.collection.Iterator$$anon$11.hasNext (Iterator.scala:408) scala.collection.Iterator$$anon$13.hasNext (Iterator.scala:461) scala.collection.Iterator$$anon$11.hasNext (Iterator.scala:408) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply$mcZ$sp (ResultIterator.scala:60) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply (ResultIterator.scala:58) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply (ResultIterator.scala:58) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$failIfThrows$1.apply (ResultIterator.scala:94) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.decoratedCypherException (ResultIterator.scala:103) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.failIfThrows (ResultIterator.scala:92) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.hasNext (ResultIterator.scala:57) org.neo4j.cypher.internal.compiler.v3_2.PipeExecutionResult.hasNext (PipeExecutionResult.scala:77) org.neo4j.cypher.internal.compatibility.v3_2.ExecutionResultWrapper.hasNext (ExecutionResultWrapper.scala:91) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult.org$neo4j$cypher$internal$compatibility$ClosingExecutionResult$$closeIfEmpty (ClosingExecutionResult.scala:178) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1$$anonfun$next$1.apply (ClosingExecutionResult.scala:63) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1$$anonfun$next$1.apply (ClosingExecutionResult.scala:61) org.neo4j.cypher.internal.compatibility.v3_2.exceptionHandler$runSafely$.apply (exceptionHandler.scala:90) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1.next (ClosingExecutionResult.scala:61) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1.next (ClosingExecutionResult.scala:55) org.neo4j.cypher.internal.javacompat.ExecutionResult.next (ExecutionResult.java:242) org.neo4j.cypher.internal.javacompat.ExecutionResult.next (ExecutionResult.java:54) clojure.lang.RT$4.invoke (RT.java:509) clojure.lang.LazySeq.sval (LazySeq.java:40) clojure.lang.LazySeq.seq (LazySeq.java:49) clojure.lang.RT.seq (RT.java:521) clojure.core$seq__4357.invokeStatic (core.clj:137) clojure.core/seq (core.clj:137) com.bosch.as.metrics.graph.manager$print_execute$fn__1234.invoke (manager.clj:77) com.bosch.as.metrics.graph.manager$print_execute.invokeStatic (manager.clj:72) com.bosch.as.metrics.graph.manager$print_execute.invoke (manager.clj:70) com.bosch.as.metrics.adapter.birt.data_set$CustSpecs_TestResults.invokeStatic (data_set.clj:64) com.bosch.as.metrics.adapter.birt.data_set$CustSpecs_TestResults.invoke (data_set.clj:62) user$eval9670.invokeStatic (NO_SOURCE_FILE:4) user$eval9670.invoke (NO_SOURCE_FILE:4) clojure.lang.Compiler.eval (Compiler.java:6927) clojure.lang.Compiler.eval (Compiler.java:6890) clojure.core$eval.invokeStatic (core.clj:3105) clojure.core$eval.invoke (core.clj:3101) clojure.main$repl$read_eval_print__7408$fn__7411.invoke (main.clj:240) clojure.main$repl$read_eval_print__7408.invoke (main.clj:240) clojure.main$repl$fn__7417.invoke (main.clj:258) clojure.main$repl.invokeStatic (main.clj:258) clojure.main$repl_opt.invokeStatic (main.clj:322) clojure.main$repl_opt.invoke (main.clj:318) clojure.main$main.invokeStatic (main.clj:421) clojure.main$main.doInvoke (main.clj:384) clojure.lang.RestFn.invoke (RestFn.java:436) clojure.lang.Var.invoke (Var.java:388) clojure.lang.AFn.applyToHelper (AFn.java:160) clojure.lang.Var.applyTo (Var.java:700) clojure.main.main (main.java:37)"><pre class="notranslate"><code class="notranslate">java.lang.NullPointerException: null at org.neo4j.cypher.internal.spi.v3_2.TransactionBoundQueryContext.getRelationshipsForIds (TransactionBoundQueryContext.scala:134) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext$$anonfun$getRelationshipsForIds$1.apply (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.spi.v3_2.ExceptionTranslationSupport$class.translateException (ExceptionTranslationSupport.scala:32) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.translateException (ExceptionTranslatingQueryContext.scala:34) org.neo4j.cypher.internal.compatibility.v3_2.ExceptionTranslatingQueryContext.getRelationshipsForIds (ExceptionTranslatingQueryContext.scala:195) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$Expandable$class.expand (PruningVarLengthExpandPipe.scala:300) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.expand (PruningVarLengthExpandPipe.scala:81) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$PrePruningDFS.next (PruningVarLengthExpandPipe.scala:98) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$LoadNext.next (PruningVarLengthExpandPipe.scala:270) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe$$anon$1.&lt;init&gt; (PruningVarLengthExpandPipe.scala:340) org.neo4j.cypher.internal.compiler.v3_2.pipes.PruningVarLengthExpandPipe.internalCreateResults (PruningVarLengthExpandPipe.scala:338) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:82) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.PipeWithSource.createResults (Pipe.scala:79) org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply (ApplyPipe.scala:33) org.neo4j.cypher.internal.compiler.v3_2.pipes.ApplyPipe$$anonfun$internalCreateResults$1.apply (ApplyPipe.scala:30) scala.collection.Iterator$$anon$12.nextCur (Iterator.scala:434) scala.collection.Iterator$$anon$12.hasNext (Iterator.scala:440) scala.collection.Iterator$$anon$11.hasNext (Iterator.scala:408) scala.collection.Iterator$$anon$13.hasNext (Iterator.scala:461) scala.collection.Iterator$$anon$11.hasNext (Iterator.scala:408) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply$mcZ$sp (ResultIterator.scala:60) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply (ResultIterator.scala:58) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$hasNext$1.apply (ResultIterator.scala:58) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator$$anonfun$failIfThrows$1.apply (ResultIterator.scala:94) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.decoratedCypherException (ResultIterator.scala:103) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.failIfThrows (ResultIterator.scala:92) org.neo4j.cypher.internal.compiler.v3_2.ClosingIterator.hasNext (ResultIterator.scala:57) org.neo4j.cypher.internal.compiler.v3_2.PipeExecutionResult.hasNext (PipeExecutionResult.scala:77) org.neo4j.cypher.internal.compatibility.v3_2.ExecutionResultWrapper.hasNext (ExecutionResultWrapper.scala:91) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult.org$neo4j$cypher$internal$compatibility$ClosingExecutionResult$$closeIfEmpty (ClosingExecutionResult.scala:178) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1$$anonfun$next$1.apply (ClosingExecutionResult.scala:63) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1$$anonfun$next$1.apply (ClosingExecutionResult.scala:61) org.neo4j.cypher.internal.compatibility.v3_2.exceptionHandler$runSafely$.apply (exceptionHandler.scala:90) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1.next (ClosingExecutionResult.scala:61) org.neo4j.cypher.internal.compatibility.ClosingExecutionResult$$anon$1.next (ClosingExecutionResult.scala:55) org.neo4j.cypher.internal.javacompat.ExecutionResult.next (ExecutionResult.java:242) org.neo4j.cypher.internal.javacompat.ExecutionResult.next (ExecutionResult.java:54) clojure.lang.RT$4.invoke (RT.java:509) clojure.lang.LazySeq.sval (LazySeq.java:40) clojure.lang.LazySeq.seq (LazySeq.java:49) clojure.lang.RT.seq (RT.java:521) clojure.core$seq__4357.invokeStatic (core.clj:137) clojure.core/seq (core.clj:137) com.bosch.as.metrics.graph.manager$print_execute$fn__1234.invoke (manager.clj:77) com.bosch.as.metrics.graph.manager$print_execute.invokeStatic (manager.clj:72) com.bosch.as.metrics.graph.manager$print_execute.invoke (manager.clj:70) com.bosch.as.metrics.adapter.birt.data_set$CustSpecs_TestResults.invokeStatic (data_set.clj:64) com.bosch.as.metrics.adapter.birt.data_set$CustSpecs_TestResults.invoke (data_set.clj:62) user$eval9670.invokeStatic (NO_SOURCE_FILE:4) user$eval9670.invoke (NO_SOURCE_FILE:4) clojure.lang.Compiler.eval (Compiler.java:6927) clojure.lang.Compiler.eval (Compiler.java:6890) clojure.core$eval.invokeStatic (core.clj:3105) clojure.core$eval.invoke (core.clj:3101) clojure.main$repl$read_eval_print__7408$fn__7411.invoke (main.clj:240) clojure.main$repl$read_eval_print__7408.invoke (main.clj:240) clojure.main$repl$fn__7417.invoke (main.clj:258) clojure.main$repl.invokeStatic (main.clj:258) clojure.main$repl_opt.invokeStatic (main.clj:322) clojure.main$repl_opt.invoke (main.clj:318) clojure.main$main.invokeStatic (main.clj:421) clojure.main$main.doInvoke (main.clj:384) clojure.lang.RestFn.invoke (RestFn.java:436) clojure.lang.Var.invoke (Var.java:388) clojure.lang.AFn.applyToHelper (AFn.java:160) clojure.lang.Var.applyTo (Var.java:700) clojure.main.main (main.java:37) </code></pre></div>
1
<p dir="auto">Duplicate: <a href="http://stackoverflow.com/questions/9762685/using-the-requests-python-library-in-google-app-engine" rel="nofollow">http://stackoverflow.com/questions/9762685/using-the-requests-python-library-in-google-app-engine</a></p> <p dir="auto">Google App Engine is used by a lot of developers. I use the python environment myself. It's sandboxed and can't rely on any non-Python code. It also has other restrictions (for example, you need to use this patched version of urllib3 <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3686364" data-permission-text="Title is private" data-url="https://github.com/urllib3/urllib3/issues/61" data-hovercard-type="issue" data-hovercard-url="/urllib3/urllib3/issues/61/hovercard" href="https://github.com/urllib3/urllib3/issues/61">urllib3/urllib3#61</a>.)</p> <p dir="auto">I can successfully</p> <blockquote> <blockquote> <blockquote> <p dir="auto">import requests</p> </blockquote> </blockquote> </blockquote> <p dir="auto">but then</p> <blockquote> <blockquote> <blockquote> <p dir="auto">response = requests.get('someurl')</p> </blockquote> </blockquote> </blockquote> <p dir="auto">fails with the following traceback. Does anyone know what's going on?</p> <p dir="auto">Traceback (most recent call last): File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/admin/init.py", line 317, in post exec(compiled_code, globals()) File "", line 6, in File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/api.py", line 52, in get return request('get', url, *_kwargs) File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/api.py", line 40, in request return s.request(method=method, url=url, *_kwargs) File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/sessions.py", line 208, in request r.send(prefetch=prefetch) File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/models.py", line 458, in send self.auth = get_netrc_auth(url) File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/utils.py", line 43, in get_netrc_auth for loc in locations: File "/Users/Rohan/Dropbox/MuktiTechnologiesINC/MuktiTechnologies/GAE/humanmictweet/GAE/libraries/requests/utils.py", line 40, in locations = (os.path.expanduser('~/{0}'.format(f)) for f in NETRC_FILES) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py", line 260, in expanduser userhome = pwd.getpwuid(os.getuid()).pw_dir AttributeError: 'module' object has no attribute 'getuid'</p>
<p dir="auto">After upgrading to 1.1.0, I now get this error when trying to pickle the Session object:</p> <p dir="auto">File "/Library/Python/2.6/site-packages/requests/sessions.py", line 397, in <strong>getstate</strong><br> return dict((attr, getattr(self, attr, None)) for attr in self.<strong>attrs</strong>)<br> AttributeError: 'Session' object has no attribute '<strong>attrs</strong>'</p>
0
<pre class="notranslate">This is possibly a duplicate of 3573, but is logged since the problem does not appear to be completely fixed at tip, so it was suggested that I relog. $ go version go version weekly.2012-03-27 +d8e47164f8dd What steps will reproduce the problem? If possible, include a link to a program on play.golang.org. 1. Run one of the variations of the program at: <a href="http://play.golang.org/p/wG8AK7AAQl" rel="nofollow">http://play.golang.org/p/wG8AK7AAQl</a> Variations include changing const id = ... to var id = ... and also changing the values assigned to id. The struct sp can also be defined as a struct { string int string int } to the same effect as presented in the linked code. What is the expected output? The numbers 0-499 on separate line. What do you see instead? The numbers 0-81 on separate lines followed by any of (variable results for any given program): 1. 'throw: hashmap assert' when id is const or var "", var or const "a", var ~&gt; "naaa" (4-words checked only) 2. 'invalid memory address or nil pointer dereference' when id is var "" 3. 'unexpected fault address' when id is const or var "a" or ~&lt; "naaa" (4-words checked) 4. no termination with 100% CPU usage. when id is const or var ~&gt; "naaa" (4-words checked only) NB 4-words not exhaustively checked. Which compiler are you using (5g, 6g, 8g, gccgo)? 6g Which operating system are you using? Linux Which version are you using? (run 'go version') go version weekly.2012-03-27 +d8e47164f8dd Please provide any additional information below. Using sf with only the int field or the string field results in normal behaviour.</pre>
<p dir="auto">I feel like I saw this issue discussed somewhere already, but now I can't find an issue or golang-dev discussion. Apologies if this is a duplicate.</p> <p dir="auto">The instructions at <a href="https://golang.org/doc/install/source" rel="nofollow">https://golang.org/doc/install/source</a> say</p> <blockquote> <p dir="auto">Go will install to a directory named go. Change to the directory that will be its parent and make sure the go directory does not exist. Then clone the repository and check out the latest release tag:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ git clone https://go.googlesource.com/go $ cd go $ git checkout go1.4.1"><pre class="notranslate"><code class="notranslate">$ git clone https://go.googlesource.com/go $ cd go $ git checkout go1.4.1 </code></pre></div> </blockquote> <p dir="auto">but of course this is out of date and should be 1.4.2.</p> <p dir="auto">It would be even better if this could be updated automatically for new releases, or at least if there were some list of all references to be updated.</p>
0
<p dir="auto">In <code class="notranslate">Deno 1.10.1</code> using the Plugin Extension API, I get a sporadic <code class="notranslate">Access violation</code> resulting a silent crash.</p> <p dir="auto">Attaching the Visual Studio debugger gets me this:</p> <details> <summary>Stack trace</summary> <p dir="auto"> </p><div class="highlight highlight-source-gdb notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" plugin.dll!v8::internal::tracing::TraceEventHelper::GetTracingController() Line 20 C++ plugin.dll!v8::internal::Heap::DevToolsTraceEventScope::DevToolsTraceEventScope() Line 1526 C++ plugin.dll!v8::internal::Heap::CollectGarbage() Line 1558 C++ plugin.dll!v8::internal::Heap::AllocateRawWithLightRetrySlowPath() Line 5098 C++ plugin.dll!v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath() Line 5113 C++ plugin.dll!v8::internal::Factory::AllocateRaw() Line 258 C++ plugin.dll!v8::internal::FactoryBase&lt;v8::internal::Factory&gt;::NewRawOneByteString() Line 561 C++ plugin.dll!v8::internal::Factory::NewStringFromUtf8() Line 654 C++ plugin.dll!v8::String::NewFromUtf8() Line 6457 C++ plugin.dll!v8__String__NewFromUtf8() Line 843 C++ &gt; plugin.dll!rusty_v8::string::{{impl}}::new_from_utf8::{{closure}}(rusty_v8::string::{{impl}}::new_from_utf8::closure-0 sd, rusty_v8::scope::data::ScopeData *) Line 104 Unknown plugin.dll!rusty_v8::scope::HandleScope&lt;tuple&lt;&gt;&gt;::cast_local&lt;rusty_v8::data::String,closure-0&gt;(rusty_v8::string::{{impl}}::new_from_utf8::closure-0 self) Line 224 Unknown plugin.dll!rusty_v8::data::String::new_from_utf8(slice&lt;u8&gt; scope, rusty_v8::string::NewStringType new_type) Line 103 Unknown plugin.dll!rusty_v8::data::String::new(str scope) Line 173 Unknown plugin.dll!serde_v8::ser::{{impl}}::serialize_str(serde_v8::ser::Serializer self, str) Line 413 Unknown plugin.dll!serde::ser::impls::{{impl}}::serialize&lt;serde_v8::ser::Serializer&gt;(alloc::string::String * self, serde_v8::ser::Serializer serializer) Line 60 Unknown plugin.dll!serde_v8::ser::{{impl}}::serialize_value&lt;alloc::string::String&gt;(serde_v8::ser::MapSerializer * self, alloc::string::String * value) Line 336 Unknown plugin.dll!serde::ser::SerializeMap::serialize_entry&lt;serde_v8::ser::MapSerializer,str,alloc::string::String&gt;(serde_v8::ser::MapSerializer * self, str value, alloc::string::String *) Line 1823 Unknown "><pre class="notranslate"> plugin.dll!v8::internal::tracing::TraceEventHelper::GetTracingController() Line <span class="pl-c1">20</span> C++ plugin.dll!v8::internal::Heap::DevToolsTraceEventScope::DevToolsTraceEventScope() Line <span class="pl-c1">1526</span> C++ plugin.dll!v8::internal::Heap::CollectGarbage() Line <span class="pl-c1">1558</span> C++ plugin.dll!v8::internal::Heap::AllocateRawWithLightRetrySlowPath() Line <span class="pl-c1">5098</span> C++ plugin.dll!v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath() Line <span class="pl-c1">5113</span> C++ plugin.dll!v8::internal::Factory::AllocateRaw() Line <span class="pl-c1">258</span> C++ plugin.dll!v8::internal::FactoryBase&lt;v8::internal::Factory&gt;::NewRawOneByteString() Line <span class="pl-c1">561</span> C++ plugin.dll!v8::internal::Factory::NewStringFromUtf8() Line <span class="pl-c1">654</span> C++ plugin.dll!v8::String::NewFromUtf8() Line <span class="pl-c1">6457</span> C++ plugin.dll!v8__String__NewFromUtf8() Line <span class="pl-c1">843</span> C++ &gt; plugin.dll!rusty_v8::string::{{impl}}::new_from_utf8::{{closure}}(rusty_v8::string::{{impl}}::new_from_utf8::closure-<span class="pl-c1">0</span> sd, rusty_v8::<span class="pl-k">scope</span>::data::ScopeData *) Line <span class="pl-c1">104</span> Unknown plugin.dll!rusty_v8::<span class="pl-k">scope</span>::HandleScope&lt;tuple&lt;&gt;&gt;::cast_local&lt;rusty_v8::data::String,closure-<span class="pl-c1">0</span>&gt;(rusty_v8::string::{{impl}}::new_from_utf8::closure-<span class="pl-c1">0</span> self) Line <span class="pl-c1">224</span> Unknown plugin.dll!rusty_v8::data::String::new_from_utf8(slice&lt;u8&gt; <span class="pl-k">scope</span>, rusty_v8::string::NewStringType new_type) Line <span class="pl-c1">103</span> Unknown plugin.dll!rusty_v8::data::String::new(str <span class="pl-k">scope</span>) Line <span class="pl-c1">173</span> Unknown plugin.dll!serde_v8::ser::{{impl}}::serialize_str(serde_v8::ser::Serializer self, str) Line <span class="pl-c1">413</span> Unknown plugin.dll!serde::ser::impls::{{impl}}::serialize&lt;serde_v8::ser::Serializer&gt;(alloc::string::String * self, serde_v8::ser::Serializer serializer) Line <span class="pl-c1">60</span> Unknown plugin.dll!serde_v8::ser::{{impl}}::serialize_value&lt;alloc::string::String&gt;(serde_v8::ser::MapSerializer * self, alloc::string::String * value) Line <span class="pl-c1">336</span> Unknown plugin.dll!serde::ser::SerializeMap::serialize_entry&lt;serde_v8::ser::MapSerializer,str,alloc::string::String&gt;(serde_v8::ser::MapSerializer * self, str value, alloc::string::String *) Line <span class="pl-c1">1823</span> Unknown </pre></div> <p dir="auto"></p> </details> <p dir="auto">The observation here is that the String in Rust is correct, meaning the data that is converted to the V8 equivalent is not corrupted.</p>
<p dir="auto">As discussed with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AaronO/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AaronO">@AaronO</a>, passing a <code class="notranslate">serde_json::Value</code> to an op in some situations (eg. in plugin api) seems to crash the program.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="➜ ../target/debug/deno --version deno 1.9.2 (debug, x86_64-apple-darwin) v8 9.1.269.5 typescript 4.2.2"><pre class="notranslate"><code class="notranslate">➜ ../target/debug/deno --version deno 1.9.2 (debug, x86_64-apple-darwin) v8 9.1.269.5 typescript 4.2.2 </code></pre></div> <p dir="auto">steps to reproduce are here <a href="https://github.com/denoland/deno/pull/10536/files">https://github.com/denoland/deno/pull/10536/files</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="➜ cd test_plugin ➜ cargo build &amp;&amp; ../target/debug/deno run --allow-plugin --unstable tests/test.js debug Finished dev [unoptimized + debuginfo] target(s) in 0.32s Plugin rid: 3 [1] 4574 segmentation fault ../target/debug/deno run --allow-plugin --unstable tests/test.js debug"><pre class="notranslate"><code class="notranslate">➜ cd test_plugin ➜ cargo build &amp;&amp; ../target/debug/deno run --allow-plugin --unstable tests/test.js debug Finished dev [unoptimized + debuginfo] target(s) in 0.32s Plugin rid: 3 [1] 4574 segmentation fault ../target/debug/deno run --allow-plugin --unstable tests/test.js debug </code></pre></div>
1
<p dir="auto">Issues with styling when using JSS expand syntax like <code class="notranslate">padding: [40, 40]</code>.</p> <p dir="auto"><strong>Beta 21</strong></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/31106469/34233152-ee899640-e5a0-11e7-9ca5-dc25b0545ea8.png"><img src="https://user-images.githubusercontent.com/31106469/34233152-ee899640-e5a0-11e7-9ca5-dc25b0545ea8.png" alt="beta21" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Beta 24</strong></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/31106469/34233155-f4b0f932-e5a0-11e7-90e3-05c91989a4a1.png"><img src="https://user-images.githubusercontent.com/31106469/34233155-f4b0f932-e5a0-11e7-90e3-05c91989a4a1.png" alt="beta24" style="max-width: 100%;"></a></p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">JSS expanded syntax should affect styling in the same manner as regular styles. I would expect that both red and blue boxes render exactly the same given that they're technically applying the same styles.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">In both beta 21 and beta 24 part (or all) of the styling doesn't apply properly. Notice the differences in padding between the red (JSS expand) and blue (regular styles) boxes</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Beta 24 example: <a href="https://codesandbox.io/s/mq76424onx" rel="nofollow">https://codesandbox.io/s/mq76424onx</a><br> Beta 21 example: <a href="https://codesandbox.io/s/myznn5lmk9" rel="nofollow">https://codesandbox.io/s/myznn5lmk9</a></p> <h2 dir="auto">Context</h2> <p dir="auto">This impacts both material UI components, or custom components using JSS expand.</p>
<h3 dir="auto">Problem description</h3> <p dir="auto">When loading a fresh SelectField component and giving it the list of options, the browser renders and shows the first item as selected. If you inspect the actual value, it still <code class="notranslate">null</code>.</p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto"><a href="http://www.material-ui.com/#/components/select-field" rel="nofollow">http://www.material-ui.com/#/components/select-field</a><br> Take a look at the Floating Label Text example</p> <h3 dir="auto">Versions</h3> <ul dir="auto"> <li>Material-UI: 0.15.3</li> <li>React: 15.3.0</li> <li>Browser: 52.0.2743.82 (64-bit)</li> </ul> <h3 dir="auto">Screenshot:</h3> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1789219/17571869/2ee61f2a-5f0f-11e6-808b-6beee64eed44.png"><img width="676" alt="screen shot 2016-08-10 at 3 27 56 pm" src="https://cloud.githubusercontent.com/assets/1789219/17571869/2ee61f2a-5f0f-11e6-808b-6beee64eed44.png" style="max-width: 100%;"></a></p>
0
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical enhancement to an existing feature.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed enhancements.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the if the same enhancement was already implemented in the<br> master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="797478166" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6622" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/6622/hovercard" href="https://github.com/celery/celery/issues/6622">#6622</a></li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Brief Summary</h1> <p dir="auto"><a href="https://github.com/celery/celery/blob/v5.2.7/celery/backends/dynamodb.py#L204">https://github.com/celery/celery/blob/v5.2.7/celery/backends/dynamodb.py#L204</a><br> This always calls CreatTable even the table existed already.<br> Each call will have an AWS CloudTrail management event for CreateTable API call with ResourceInUseException error.<br> Each CouldTrail management event cost 0.00002 USD in AWS US West (Oregon) region.<br> I have 10M+ tasks everyday and they produce 10M+ such events, and AWS charges me for 200+ USD.</p> <h1 dir="auto">Design</h1> <h2 dir="auto">Architectural Considerations</h2> <p dir="auto">None</p> <h2 dir="auto">Proposed Behavior</h2> <p dir="auto">Just like what proposed in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="797478166" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6622" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/6622/hovercard" href="https://github.com/celery/celery/issues/6622">#6622</a>, check existence of table with another boto3 call first instead of just calling create table</p> <h2 dir="auto">Proposed UI/UX</h2> <h2 dir="auto">Diagrams</h2> <p dir="auto">N/A</p> <h2 dir="auto">Alternatives</h2> <p dir="auto">None</p>
<p dir="auto">For some reason after running for about a day our worker loses it's connection to rabbitmq and is unable to reconnect.</p> <p dir="auto">I initially encountered this issue with 4.2, so I upgraded to the latest version (4.3.0) and am still encountering the issue. I've also found several issues related to this, but since they are all closed I am opening this new one (and referencing them below).</p> <p dir="auto">The application I am encountering this with is open source, so you can view it in the <a href="https://github.com/tedivm/nebula">Nebula</a> repository.</p> <h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br> <a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br> on reporting bugs.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br> in this issue (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Mandatory Debugging Information</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br> (if you are not able to do this, then at least specify the Celery<br> version affected).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br> to reproduce this bug.</li> </ul> <h2 dir="auto">Optional Debugging Information</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br> and/or implementation.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br> result backend.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br> broker and/or result backend.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have tried reproducing the issue with autoscaling, retries,<br> ETA/Countdown &amp; rate limits disabled.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have tried reproducing the issue after downgrading<br> and/or upgrading Celery and its dependencies.</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="282804088" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/4457" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/4457/hovercard" href="https://github.com/celery/celery/issues/4457">#4457</a></li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="439877207" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5499" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5499/hovercard" href="https://github.com/celery/celery/pull/5499">#5499</a></li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="282804088" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/4457" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/4457/hovercard" href="https://github.com/celery/celery/issues/4457">#4457</a></li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> <p dir="auto"><strong>Celery version</strong>: 4.3.0</p> <details> <summary><b><code class="notranslate">celery report</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Steps to Reproduce</h1> <h2 dir="auto">Required Dependencies</h2> <ul dir="auto"> <li><strong>Minimal Python Version</strong>: 3.7</li> <li><strong>Minimal Celery Version</strong>: 4.2.0</li> <li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li> <li><strong>Minimal OS and/or Kernel Version</strong>: Docker</li> <li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li> </ul> <h3 dir="auto">Python Packages</h3> <details> <summary><b><code class="notranslate">pip freeze</code> Output:</b></summary> <p dir="auto"> </p><p dir="auto"><a href="https://raw.githubusercontent.com/tedivm/nebula/master/requirements.txt" rel="nofollow">https://raw.githubusercontent.com/tedivm/nebula/master/requirements.txt</a></p> <p dir="auto"></p> </details> <h3 dir="auto">Other Dependencies</h3> <details> <p dir="auto"> N/A </p> </details> <h2 dir="auto">Minimally Reproducible Test Case</h2> <p dir="auto">I can't reproduce on demand unfortunately.</p> <h1 dir="auto">Expected Behavior</h1> <p dir="auto">The worker should stay connected to the broker, or it should reconnect successfully.</p> <h1 dir="auto">Actual Behavior</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="consumer: Connection to broker lost. Trying to re-establish the connection... Traceback (most recent call last): File &quot;/usr/local/lib/python3.6/site-packages/celery/worker/consumer/consumer.py&quot;, line 318, in start blueprint.start(self) File &quot;/usr/local/lib/python3.6/site-packages/celery/bootsteps.py&quot;, line 119, in start step.start(parent) File &quot;/usr/local/lib/python3.6/site-packages/celery/worker/consumer/consumer.py&quot;, line 596, in start c.loop(*c.loop_args()) File &quot;/usr/local/lib/python3.6/site-packages/celery/worker/loops.py&quot;, line 50, in asynloop obj.controller.register_with_event_loop(hub) File &quot;/usr/local/lib/python3.6/site-packages/celery/worker/worker.py&quot;, line 219, in register_with_event_loop description='hub.register', File &quot;/usr/local/lib/python3.6/site-packages/celery/bootsteps.py&quot;, line 151, in send_all fun(parent, *args) File &quot;/usr/local/lib/python3.6/site-packages/celery/worker/components.py&quot;, line 179, in register_with_event_loop w.pool.register_with_event_loop(hub) File &quot;/usr/local/lib/python3.6/site-packages/celery/concurrency/prefork.py&quot;, line 134, in register_with_event_loop return reg(loop) File &quot;/usr/local/lib/python3.6/site-packages/celery/concurrency/asynpool.py&quot;, line 482, in register_with_event_loop for fd in self._fileno_to_outq] File &quot;/usr/local/lib/python3.6/site-packages/celery/concurrency/asynpool.py&quot;, line 482, in &lt;listcomp&gt; for fd in self._fileno_to_outq] File &quot;/usr/local/lib/python3.6/site-packages/kombu/asynchronous/hub.py&quot;, line 216, in add_reader return self.add(fds, callback, READ | ERR, args) File &quot;/usr/local/lib/python3.6/site-packages/kombu/asynchronous/hub.py&quot;, line 167, in add self.poller.register(fd, flags) File &quot;/usr/local/lib/python3.6/site-packages/kombu/utils/eventio.py&quot;, line 67, in register self._epoll.register(fd, events) OSError: [Errno 9] Bad file descriptor"><pre class="notranslate"><code class="notranslate">consumer: Connection to broker lost. Trying to re-establish the connection... Traceback (most recent call last): File "/usr/local/lib/python3.6/site-packages/celery/worker/consumer/consumer.py", line 318, in start blueprint.start(self) File "/usr/local/lib/python3.6/site-packages/celery/bootsteps.py", line 119, in start step.start(parent) File "/usr/local/lib/python3.6/site-packages/celery/worker/consumer/consumer.py", line 596, in start c.loop(*c.loop_args()) File "/usr/local/lib/python3.6/site-packages/celery/worker/loops.py", line 50, in asynloop obj.controller.register_with_event_loop(hub) File "/usr/local/lib/python3.6/site-packages/celery/worker/worker.py", line 219, in register_with_event_loop description='hub.register', File "/usr/local/lib/python3.6/site-packages/celery/bootsteps.py", line 151, in send_all fun(parent, *args) File "/usr/local/lib/python3.6/site-packages/celery/worker/components.py", line 179, in register_with_event_loop w.pool.register_with_event_loop(hub) File "/usr/local/lib/python3.6/site-packages/celery/concurrency/prefork.py", line 134, in register_with_event_loop return reg(loop) File "/usr/local/lib/python3.6/site-packages/celery/concurrency/asynpool.py", line 482, in register_with_event_loop for fd in self._fileno_to_outq] File "/usr/local/lib/python3.6/site-packages/celery/concurrency/asynpool.py", line 482, in &lt;listcomp&gt; for fd in self._fileno_to_outq] File "/usr/local/lib/python3.6/site-packages/kombu/asynchronous/hub.py", line 216, in add_reader return self.add(fds, callback, READ | ERR, args) File "/usr/local/lib/python3.6/site-packages/kombu/asynchronous/hub.py", line 167, in add self.poller.register(fd, flags) File "/usr/local/lib/python3.6/site-packages/kombu/utils/eventio.py", line 67, in register self._epoll.register(fd, events) OSError: [Errno 9] Bad file descriptor </code></pre></div>
0
<p dir="auto">I'm attempting to bundle a React app with <code class="notranslate">deno</code> and am running into a strange backtrace if I run it with an empty cache.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="alexmax@Alexs-iMac env.ts % uname -a Darwin Alexs-iMac.local 18.7.0 Darwin Kernel Version 18.7.0: Sun Dec 1 18:59:03 PST 2019; root:xnu-4903.278.19~1/RELEASE_X86_64 x86_64 alexmax@Alexs-iMac env.ts % deno --version deno 0.30.0 v8 8.1.108 typescript 3.7.2 alexmax@Alexs-iMac env.ts % RUST_BACKTRACE=1 deno bundle index.ts Download https://dev.jspm.io/react Download https://dev.jspm.io/react-dom Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react.development.dew.js Download https://dev.jspm.io/npm:object-assign@4?dew Download https://dev.jspm.io/npm:prop-types@15/checkPropTypes?dew Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/checkPropTypes.dew.js Download https://dev.jspm.io/npm:[email protected]/lib/ReactPropTypesSecret.dew.js Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew Download https://dev.jspm.io/npm:[email protected]?dew Download https://dev.jspm.io/npm:[email protected]/tracing?dew thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 17, kind: AlreadyExists, message: &quot;File exists&quot; }', src/libcore/result.rs:1165:5 stack backtrace: 0: &lt;std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display&gt;::fmt 1: core::fmt::write 2: std::io::Write::write_fmt 3: std::panicking::default_hook::{{closure}} 4: std::panicking::default_hook 5: std::panicking::rust_panic_with_hook 6: std::panicking::continue_panic_fmt 7: rust_begin_unwind 8: core::panicking::panic_fmt 9: core::result::unwrap_failed 10: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 11: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 12: &lt;futures_util::future::try_join_all::TryJoinAll&lt;F&gt; as core::future::future::Future&gt;::poll 13: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 14: futures_util::future::future::chain::Chain&lt;Fut1,Fut2,Data&gt;::poll 15: &lt;futures_util::future::future::then::Then&lt;Fut1,Fut2,F&gt; as core::future::future::Future&gt;::poll 16: &lt;futures_util::future::try_future::map_ok::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll 17: &lt;futures_util::future::try_future::map_ok::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll 18: futures_util::stream::stream::StreamExt::poll_next_unpin 19: &lt;deno_core::isolate::Isolate as core::future::future::Future&gt;::poll 20: &lt;deno_core::es_isolate::EsIsolate as core::future::future::Future&gt;::poll 21: &lt;deno::worker::Worker as core::future::future::Future&gt;::poll 22: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 23: tokio::runtime::enter::Enter::block_on 24: tokio::runtime::context::enter 25: deno::tokio_util::run 26: deno::main 27: std::rt::lang_start::{{closure}} 28: std::panicking::try::do_call 29: __rust_maybe_catch_panic 30: std::rt::lang_start_internal 31: main"><pre class="notranslate"><code class="notranslate">alexmax@Alexs-iMac env.ts % uname -a Darwin Alexs-iMac.local 18.7.0 Darwin Kernel Version 18.7.0: Sun Dec 1 18:59:03 PST 2019; root:xnu-4903.278.19~1/RELEASE_X86_64 x86_64 alexmax@Alexs-iMac env.ts % deno --version deno 0.30.0 v8 8.1.108 typescript 3.7.2 alexmax@Alexs-iMac env.ts % RUST_BACKTRACE=1 deno bundle index.ts Download https://dev.jspm.io/react Download https://dev.jspm.io/react-dom Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react.development.dew.js Download https://dev.jspm.io/npm:object-assign@4?dew Download https://dev.jspm.io/npm:prop-types@15/checkPropTypes?dew Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/checkPropTypes.dew.js Download https://dev.jspm.io/npm:[email protected]/lib/ReactPropTypesSecret.dew.js Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew Download https://dev.jspm.io/npm:[email protected]?dew Download https://dev.jspm.io/npm:[email protected]/tracing?dew thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 17, kind: AlreadyExists, message: "File exists" }', src/libcore/result.rs:1165:5 stack backtrace: 0: &lt;std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display&gt;::fmt 1: core::fmt::write 2: std::io::Write::write_fmt 3: std::panicking::default_hook::{{closure}} 4: std::panicking::default_hook 5: std::panicking::rust_panic_with_hook 6: std::panicking::continue_panic_fmt 7: rust_begin_unwind 8: core::panicking::panic_fmt 9: core::result::unwrap_failed 10: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 11: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 12: &lt;futures_util::future::try_join_all::TryJoinAll&lt;F&gt; as core::future::future::Future&gt;::poll 13: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 14: futures_util::future::future::chain::Chain&lt;Fut1,Fut2,Data&gt;::poll 15: &lt;futures_util::future::future::then::Then&lt;Fut1,Fut2,F&gt; as core::future::future::Future&gt;::poll 16: &lt;futures_util::future::try_future::map_ok::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll 17: &lt;futures_util::future::try_future::map_ok::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll 18: futures_util::stream::stream::StreamExt::poll_next_unpin 19: &lt;deno_core::isolate::Isolate as core::future::future::Future&gt;::poll 20: &lt;deno_core::es_isolate::EsIsolate as core::future::future::Future&gt;::poll 21: &lt;deno::worker::Worker as core::future::future::Future&gt;::poll 22: &lt;std::future::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 23: tokio::runtime::enter::Enter::block_on 24: tokio::runtime::context::enter 25: deno::tokio_util::run 26: deno::main 27: std::rt::lang_start::{{closure}} 28: std::panicking::try::do_call 29: __rust_maybe_catch_panic 30: std::rt::lang_start_internal 31: main </code></pre></div> <p dir="auto">If I then run the command again immediately, I don't get a Rust exception, but I get a normal pretty exception.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="alexmax@Alexs-iMac env.ts % RUST_BACKTRACE=1 deno bundle index.ts Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew error: Uncaught Other: Not a directory (os error 20) ► $deno$/dispatch_json.ts:40:11 at DenoError ($deno$/errors.ts:20:5) at unwrapResponse ($deno$/dispatch_json.ts:40:11) at sendAsync ($deno$/dispatch_json.ts:91:10)"><pre class="notranslate"><code class="notranslate">alexmax@Alexs-iMac env.ts % RUST_BACKTRACE=1 deno bundle index.ts Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew error: Uncaught Other: Not a directory (os error 20) ► $deno$/dispatch_json.ts:40:11 at DenoError ($deno$/errors.ts:20:5) at unwrapResponse ($deno$/dispatch_json.ts:40:11) at sendAsync ($deno$/dispatch_json.ts:91:10) </code></pre></div> <p dir="auto">Unfortunately, neither exception appears to give me any details as to what file path it's having issues with, or why it's having an issue with the file path in the first place.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno fetch https://dev.jspm.io/react-dom Download https://dev.jspm.io/react-dom Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew Download https://dev.jspm.io/npm:object-assign@4?dew Download https://dev.jspm.io/npm:prop-types@15/checkPropTypes?dew Download https://dev.jspm.io/npm:[email protected]?dew Download https://dev.jspm.io/npm:[email protected]/tracing?dew Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/checkPropTypes.dew.js Download https://dev.jspm.io/npm:[email protected]/lib/ReactPropTypesSecret.dew.js Download https://dev.jspm.io/npm:[email protected]/tracing.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/scheduler-tracing.development.dew.js thread 'tokio-runtime-worker-6' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 21, kind: Other, message: &quot;Is a directory&quot; }', src/libcore/result.rs:999:5 note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace. thread 'main' panicked at 'internal error: entered unreachable code', ../../third_party/rust_crates/registry/src/github.com-1ecc6299db9ec823/tokio-0.1.22/src/runtime/threadpool/mod.rs:296:26 thread 'tokio-runtime-worker-0' panicked at 'unexpected state while aborting task: Complete', ../../third_party/rust_crates/registry/src/github.com-1ecc6299db9ec823/tokio-threadpool-0.1.15/src/task/mod.rs:216:21"><pre class="notranslate"><code class="notranslate">deno fetch https://dev.jspm.io/react-dom Download https://dev.jspm.io/react-dom Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/react-dom.development.dew.js Download https://dev.jspm.io/npm:react@16?dew Download https://dev.jspm.io/npm:object-assign@4?dew Download https://dev.jspm.io/npm:prop-types@15/checkPropTypes?dew Download https://dev.jspm.io/npm:[email protected]?dew Download https://dev.jspm.io/npm:[email protected]/tracing?dew Download https://dev.jspm.io/npm:[email protected]/index.dew.js Download https://dev.jspm.io/npm:[email protected]/checkPropTypes.dew.js Download https://dev.jspm.io/npm:[email protected]/lib/ReactPropTypesSecret.dew.js Download https://dev.jspm.io/npm:[email protected]/tracing.dew.js Download https://dev.jspm.io/npm:[email protected]/cjs/scheduler-tracing.development.dew.js thread 'tokio-runtime-worker-6' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 21, kind: Other, message: "Is a directory" }', src/libcore/result.rs:999:5 note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace. thread 'main' panicked at 'internal error: entered unreachable code', ../../third_party/rust_crates/registry/src/github.com-1ecc6299db9ec823/tokio-0.1.22/src/runtime/threadpool/mod.rs:296:26 thread 'tokio-runtime-worker-0' panicked at 'unexpected state while aborting task: Complete', ../../third_party/rust_crates/registry/src/github.com-1ecc6299db9ec823/tokio-threadpool-0.1.15/src/task/mod.rs:216:21 </code></pre></div> <p dir="auto">I don't know precisely what is going on, but something goes wrong..</p> <p dir="auto">Content of <code class="notranslate">~/Library/Caches/deno/deps/https/dev.jspm.io/npm:[email protected]</code> is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{&quot;mime_type&quot;:&quot;application/javascript&quot;}"><pre class="notranslate"><code class="notranslate">{"mime_type":"application/javascript"} </code></pre></div> <p dir="auto">but <code class="notranslate">~/Library/Caches/deno/deps/https/dev.jspm.io/npm:[email protected]</code> is DIRECTORY</p> <p dir="auto">This may occur when there are two url modules like these:</p> <ul dir="auto"> <li><a href="https://dev.jspm.io/npm:[email protected]" rel="nofollow">https://dev.jspm.io/npm:[email protected]</a> &lt;- application/javascript</li> <li><a href="https://dev.jspm.io/npm:[email protected]/tracing" rel="nofollow">https://dev.jspm.io/npm:[email protected]/tracing</a> &lt;-application/javascript</li> </ul>
1
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/say-hello-to-html-elements" rel="nofollow">Say Hello to HTML Elements</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;h1&gt;Hello World&lt;/h1&gt; "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span>Hello World<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">Uncaught TypeError: Cannot read property 'join' of null</p> <p dir="auto">vendor-main-00eff8238f.js:30</p>
<p dir="auto">I cann't press the button "Submit and go to my next challenge (ctrl + enter)". But if I clicked I only see the infinite loading. How to solve this problem?<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/15948159/12712716/62a3c88c-c8db-11e5-9556-7183e96aa60b.PNG"><img src="https://cloud.githubusercontent.com/assets/15948159/12712716/62a3c88c-c8db-11e5-9556-7183e96aa60b.PNG" alt="default" style="max-width: 100%;"></a></p>
1
<p dir="auto">In <code class="notranslate">with-firebase-hosting</code> I got 404 page once I run <code class="notranslate">npm run serve</code> and go to <code class="notranslate">localhost:5000/</code></p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">See the next server running, home page</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">404 page</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Clone the repo</li> <li>Install dependencies then add my firebase project name</li> <li>npm run serve</li> </ol>
<p dir="auto">Hi,<br> I want create a web app with redux-saga and firestore.<br> I have created a repo based on with-firebase-hosting here =&gt; <a href="https://github.com/Bolket/next-firebase-functions/tree/withSaga">https://github.com/Bolket/next-firebase-functions/tree/withSaga</a>.</p> <p dir="auto">My next.config.js</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="module.exports = { distDir: '../../build/functions/next' };"><pre class="notranslate"><span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">distDir</span>: <span class="pl-s">'../../build/functions/next'</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <p dir="auto">If i remove next.config.js it works fine but with a different distDir I have this message in console =&gt; <code class="notranslate">Warning: Expected server HTML to contain a matching &lt;h1&gt; in &lt;div&gt;.</code> and the server send a 404 error.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5980398/35574310-c0711040-05d9-11e8-8569-16349863d4e5.gif"><img src="https://user-images.githubusercontent.com/5980398/35574310-c0711040-05d9-11e8-8569-16349863d4e5.gif" alt="bug" data-animated-image="" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Clone this repo =&gt; <a href="https://github.com/Bolket/next-firebase-functions/tree/withSaga">https://github.com/Bolket/next-firebase-functions/tree/withSaga</a></li> <li>yarn</li> <li>yarn next</li> </ol> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>4.4.0-canary.3</td> </tr> <tr> <td>node</td> <td>8.9.3</td> </tr> <tr> <td>OS</td> <td>MacOS</td> </tr> <tr> <td>browser</td> <td>Chrome 63.0.3239.132</td> </tr> </tbody> </table>
1
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>For English only</strong>, other languages will not accept.</p> <p dir="auto">Before report a bug, make sure you have:</p> <ul dir="auto"> <li>Searched open and closed <a href="https://github.com/apache/incubator-shardingsphere/issues">GitHub issues</a>.</li> <li>Read documentation: <a href="https://shardingsphere.apache.org/document/current/en/overview" rel="nofollow">ShardingSphere Doc</a>.</li> </ul> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response <strong>more than 7 days</strong> and we cannot reproduce it on current information, we will <strong>close it</strong>.</p> <p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">4.0.0-RC2</p> <h3 dir="auto">Which project did you use? Sharding-JDBC or Sharding-Proxy?</h3> <p dir="auto">Sharding-JDBC</p> <h3 dir="auto">Expected behavior</h3> <p dir="auto">Successfully read from tables with columns of clob types ( with <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/lob/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lob">@lob</a> annotation).</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Got the following error:<br> org.springframework.dao.InvalidDataAccessApiUsageException: java.lang.String cannot be cast to java.sql.Clob; nested exception is java.lang.IllegalArgumentException: java.lang.String cannot be cast to java.sql.Clob</p> <p dir="auto">The same code works for original DataSource from springboot.</p> <h3 dir="auto">Reason analyze (If you can)</h3> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3> <h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>For English only</strong>, other languages will not accept.</p> <p dir="auto">Before report a bug, make sure you have:</p> <ul dir="auto"> <li>Searched open and closed <a href="https://github.com/apache/shardingsphere/issues">GitHub issues</a>.</li> <li>Read documentation: <a href="https://shardingsphere.apache.org/document/current/en/overview" rel="nofollow">ShardingSphere Doc</a>.</li> </ul> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response anymore and we cannot reproduce it on current information, we will <strong>close it</strong>.</p> <p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">5.0.0-RC1(From <a href="https://dist.apache.org/repos/dist/dev/shardingsphere/5.0.0-RC1/" rel="nofollow">https://dist.apache.org/repos/dist/dev/shardingsphere/5.0.0-RC1/</a> , not master branch)</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">ShardingSphere-Proxy</p> <h3 dir="auto">Expected behavior</h3> <p dir="auto">When I click on the library table in the SQLyog GUI to operate normally, the Proxy terminal should not have an error level log.<br> The following is my operation log in SQLyog.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/20187731/138399015-d2b0d938-73cb-4a66-9265-b36ca477964f.png"><img src="https://user-images.githubusercontent.com/20187731/138399015-d2b0d938-73cb-4a66-9265-b36ca477964f.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/20187731/138397807-41836d4e-8439-4131-ad54-6ec2ed855c26.png"><img src="https://user-images.githubusercontent.com/20187731/138397807-41836d4e-8439-4131-ad54-6ec2ed855c26.png" alt="image" style="max-width: 100%;"></a></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/*[22-Oct 13:20:02][17 ms]*/ SHOW VARIABLES LIKE 'AUTOCOMMIT'; /*[22-Oct 13:20:02][2 ms]*/ SHOW DATABASES; /*[22-Oct 13:20:04][1 ms]*/ USE `sharding_db`; /*[22-Oct 13:20:05][2 ms]*/ SHOW FULL TABLES FROM `sharding_db` WHERE table_type = 'BASE TABLE'; /*[22-Oct 13:20:06][30 ms]*/ DESCRIBE `sharding_db`.`tb_result3_sharding_sphere`; /*[22-Oct 13:20:06][19 ms]*/ SHOW INDEX FROM `sharding_db`.`tb_result3_sharding_sphere`; /*[22-Oct 13:21:21][39789 ms]*/ SELECT * FROM `sharding_db`.`tb_result3_sharding_sphere` LIMIT 0, 1000; /*[22-Oct 13:21:21][12 ms]*/ SHOW CREATE TABLE `sharding_db`.`tb_result3_sharding_sphere`; /*[22-Oct 13:21:21][27 ms]*/ SHOW FULL FIELDS FROM `sharding_db`.`tb_result3_sharding_sphere`; /*[22-Oct 13:21:21][11 ms]*/ SHOW KEYS FROM `sharding_db`.`tb_result3_sharding_sphere`; "><pre class="notranslate">/<span class="pl-k">*</span>[22-Oct 13:20:02][17 ms]<span class="pl-k">*</span>/ SHOW VARIABLES LIKE <span class="pl-s"><span class="pl-pds">'</span>AUTOCOMMIT<span class="pl-pds">'</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:20:02][2 ms]<span class="pl-k">*</span>/ SHOW DATABASES<span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:20:04][1 ms]<span class="pl-k">*</span>/ USE <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:20:05][2 ms]<span class="pl-k">*</span>/ SHOW FULL TABLES FROM <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span> WHERE table_type = <span class="pl-s"><span class="pl-pds">'</span>BASE TABLE<span class="pl-pds">'</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:20:06][30 ms]<span class="pl-k">*</span>/ DESCRIBE <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:20:06][19 ms]<span class="pl-k">*</span>/ SHOW INDEX FROM <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:21:21][39789 ms]<span class="pl-k">*</span>/ SELECT <span class="pl-k">*</span> FROM <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span> LIMIT 0, 1000<span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:21:21][12 ms]<span class="pl-k">*</span>/ SHOW CREATE TABLE <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:21:21][27 ms]<span class="pl-k">*</span>/ SHOW FULL FIELDS FROM <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span><span class="pl-k">;</span> /<span class="pl-k">*</span>[22-Oct 13:21:21][11 ms]<span class="pl-k">*</span>/ SHOW KEYS FROM <span class="pl-s"><span class="pl-pds">`</span>sharding_db<span class="pl-pds">`</span></span>.<span class="pl-s"><span class="pl-pds">`</span>tb_result3_sharding_sphere<span class="pl-pds">`</span></span><span class="pl-k">;</span> </pre></div> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Of course, everything is normal in SQLyog, and the select statement is executed normally. I have not seen any abnormalities in SQLyog, but I found error level logs on the terminal of ShardingSphere-Proxy, which puzzled me.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/20187731/138397665-4eeca3b9-0be3-424c-902d-364a4c86c8ab.png"><img src="https://user-images.githubusercontent.com/20187731/138397665-4eeca3b9-0be3-424c-902d-364a4c86c8ab.png" alt="image" style="max-width: 100%;"></a></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[INFO ] 2021-10-22 13:18:32.839 [main] o.a.s.p.frontend.ShardingSphereProxy - ShardingSphere-Proxy start success [ERROR] 2021-10-22 13:19:47.669 [Connection-5-ThreadExecutor] o.a.s.p.f.c.CommandExecutorTask - Exception occur: java.lang.UnsupportedOperationException: unsupported table : `EVENTS` at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLInformationSchemaExecutorFactory.newInstance(MySQLInformationSchemaExecutorFactory.java:52) at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLAdminExecutorFactory.newInstance(MySQLAdminExecutorFactory.java:95) at org.apache.shardingsphere.proxy.backend.text.admin.DatabaseAdminBackendHandlerFactory.newInstance(DatabaseAdminBackendHandlerFactory.java:78) at org.apache.shardingsphere.proxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:86) at org.apache.shardingsphere.proxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.&lt;init&gt;(MySQLComQueryPacketExecutor.java:52) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:73) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:60) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:97) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:72) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) [ERROR] 2021-10-22 13:20:03.759 [Connection-10-ThreadExecutor] o.a.s.p.f.c.CommandExecutorTask - Exception occur: java.lang.UnsupportedOperationException: unsupported table : `EVENTS` at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLInformationSchemaExecutorFactory.newInstance(MySQLInformationSchemaExecutorFactory.java:52) at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLAdminExecutorFactory.newInstance(MySQLAdminExecutorFactory.java:95) at org.apache.shardingsphere.proxy.backend.text.admin.DatabaseAdminBackendHandlerFactory.newInstance(DatabaseAdminBackendHandlerFactory.java:78) at org.apache.shardingsphere.proxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:86) at org.apache.shardingsphere.proxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.&lt;init&gt;(MySQLComQueryPacketExecutor.java:52) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:73) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:60) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:97) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:72) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) [INFO ] 2021-10-22 13:20:38.681 [Connection-8-ThreadExecutor] o.a.s.p.b.t.a.m.e.i.AbstractSelectInformationExecutor$DefaultSelectInformationExecutor - Actual SQL: ds_0 ::: select `ENGINE`, `SUPPORT` from information_schema.Engines"><pre class="notranslate">[INFO ] 2021-10-22 13:18:32.839 [main] o.a.s.p.frontend.ShardingSphereProxy - ShardingSphere-Proxy start success [ERROR] 2021-10-22 13:19:47.669 [Connection-5-ThreadExecutor] o.a.s.p.f.c.CommandExecutorTask - Exception occur: java.lang.UnsupportedOperationException: unsupported table <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">`</span>EVENTS<span class="pl-pds">`</span></span> at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLInformationSchemaExecutorFactory.newInstance(MySQLInformationSchemaExecutorFactory.java:52) at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLAdminExecutorFactory.newInstance(MySQLAdminExecutorFactory.java:95) at org.apache.shardingsphere.proxy.backend.text.admin.DatabaseAdminBackendHandlerFactory.newInstance(DatabaseAdminBackendHandlerFactory.java:78) at org.apache.shardingsphere.proxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:86) at org.apache.shardingsphere.proxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.<span class="pl-k">&lt;</span>init<span class="pl-s"><span class="pl-pds">&gt;(</span>MySQLComQueryPacketExecutor.java:52<span class="pl-pds">)</span></span> at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:73) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:60) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:97) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:72) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor<span class="pl-smi">$Worker</span>.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) [ERROR] 2021-10-22 13:20:03.759 [Connection-10-ThreadExecutor] o.a.s.p.f.c.CommandExecutorTask - Exception occur: java.lang.UnsupportedOperationException: unsupported table <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">`</span>EVENTS<span class="pl-pds">`</span></span> at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLInformationSchemaExecutorFactory.newInstance(MySQLInformationSchemaExecutorFactory.java:52) at org.apache.shardingsphere.proxy.backend.text.admin.mysql.MySQLAdminExecutorFactory.newInstance(MySQLAdminExecutorFactory.java:95) at org.apache.shardingsphere.proxy.backend.text.admin.DatabaseAdminBackendHandlerFactory.newInstance(DatabaseAdminBackendHandlerFactory.java:78) at org.apache.shardingsphere.proxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:86) at org.apache.shardingsphere.proxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.<span class="pl-k">&lt;</span>init<span class="pl-s"><span class="pl-pds">&gt;(</span>MySQLComQueryPacketExecutor.java:52<span class="pl-pds">)</span></span> at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:73) at org.apache.shardingsphere.proxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:60) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:97) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:72) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor<span class="pl-smi">$Worker</span>.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) [INFO ] 2021-10-22 13:20:38.681 [Connection-8-ThreadExecutor] o.a.s.p.b.t.a.m.e.i.AbstractSelectInformationExecutor<span class="pl-smi">$DefaultSelectInformationExecutor</span> - Actual SQL: ds_0 ::: <span class="pl-k">select</span> <span class="pl-smi">`ENGINE`,</span> <span class="pl-s"><span class="pl-pds">`</span>SUPPORT<span class="pl-pds">`</span></span> from information_schema.Engines</pre></div> <h3 dir="auto">Reason analyze (If you can)</h3> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3> <h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3> <p dir="auto">The following is my configuration in Proxy.<br> server.yaml</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="mode: type: Cluster repository: type: ZooKeeper props: namespace: governance_ds server-lists: localhost:2181 retryIntervalMilliseconds: 500 timeToLiveSeconds: 60 maxRetries: 3 operationTimeoutMilliseconds: 500 overwrite: true rules: - !AUTHORITY users: - root@%:root - sharding233@:sharding233 provider: type: ALL_PRIVILEGES_PERMITTED - !TRANSACTION defaultType: XA providerType: Atomikos props: max-connections-size-per-query: 1 kernel-executor-size: 16 proxy-frontend-flush-threshold: 128 proxy-opentracing-enabled: false proxy-hint-enabled: false sql-show: false check-table-metadata-enabled: false lock-wait-timeout-milliseconds: 50000 show-process-list-enabled: false proxy-backend-query-fetch-size: -1 check-duplicate-table-enabled: false sql-comment-parse-enabled: false proxy-frontend-executor-size: 0 proxy-backend-executor-suitable: OLAP"><pre class="notranslate"><span class="pl-ent">mode</span>: <span class="pl-ent">type</span>: <span class="pl-s">Cluster</span> <span class="pl-ent">repository</span>: <span class="pl-ent">type</span>: <span class="pl-s">ZooKeeper</span> <span class="pl-ent">props</span>: <span class="pl-ent">namespace</span>: <span class="pl-s">governance_ds</span> <span class="pl-ent">server-lists</span>: <span class="pl-s">localhost:2181</span> <span class="pl-ent">retryIntervalMilliseconds</span>: <span class="pl-c1">500</span> <span class="pl-ent">timeToLiveSeconds</span>: <span class="pl-c1">60</span> <span class="pl-ent">maxRetries</span>: <span class="pl-c1">3</span> <span class="pl-ent">operationTimeoutMilliseconds</span>: <span class="pl-c1">500</span> <span class="pl-ent">overwrite</span>: <span class="pl-c1">true</span> <span class="pl-ent">rules</span>: - <span class="pl-k">!AUTHORITY</span> <span class="pl-ent">users</span>: - <span class="pl-s">root@%:root</span> - <span class="pl-s">sharding233@:sharding233</span> <span class="pl-ent">provider</span>: <span class="pl-ent">type</span>: <span class="pl-s">ALL_PRIVILEGES_PERMITTED</span> - <span class="pl-k">!TRANSACTION</span> <span class="pl-ent">defaultType</span>: <span class="pl-s">XA</span> <span class="pl-ent">providerType</span>: <span class="pl-s">Atomikos</span> <span class="pl-ent">props</span>: <span class="pl-ent">max-connections-size-per-query</span>: <span class="pl-c1">1</span> <span class="pl-ent">kernel-executor-size</span>: <span class="pl-c1">16</span> <span class="pl-ent">proxy-frontend-flush-threshold</span>: <span class="pl-c1">128</span> <span class="pl-ent">proxy-opentracing-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">proxy-hint-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">sql-show</span>: <span class="pl-c1">false</span> <span class="pl-ent">check-table-metadata-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">lock-wait-timeout-milliseconds</span>: <span class="pl-c1">50000</span> <span class="pl-ent">show-process-list-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">proxy-backend-query-fetch-size</span>: <span class="pl-c1">-1</span> <span class="pl-ent">check-duplicate-table-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">sql-comment-parse-enabled</span>: <span class="pl-c1">false</span> <span class="pl-ent">proxy-frontend-executor-size</span>: <span class="pl-c1">0</span> <span class="pl-ent">proxy-backend-executor-suitable</span>: <span class="pl-s">OLAP</span></pre></div> <p dir="auto">config-sharding.yaml</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="schemaName: sharding_db dataSources: ds_0: url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2b8&amp;useSSL=false username: root password: 123456 connectionTimeoutMilliseconds: 30000 idleTimeoutMilliseconds: 60000 maxLifetimeMilliseconds: 1800000 maxPoolSize: 50 minPoolSize: 1 rules: - !SHARDING tables: tb_result3_sharding_sphere: actualDataNodes: ds_0.tb_result3_sharding_sphere_$-&gt;{1..366} tableStrategy: standard: shardingColumn: datadate shardingAlgorithmName: tb-result3-class-based keyGenerateStrategy: column: tb_result3_id keyGeneratorName: snowflake bindingTables: - tb_result3_sharding_sphere defaultDatabaseStrategy: none: defaultTableStrategy: none: shardingAlgorithms: tb-result3-class-based: type: CLASS_BASED props: strategy: STANDARD algorithmClassName: com.sg8000.spi.TbResult3ShardingAlgorithm keyGenerators: snowflake: type: SNOWFLAKE props: worker-id: 1"><pre class="notranslate"><span class="pl-ent">schemaName</span>: <span class="pl-s">sharding_db</span> <span class="pl-ent">dataSources</span>: <span class="pl-ent">ds_0</span>: <span class="pl-ent">url</span>: <span class="pl-s">jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2b8&amp;useSSL=false</span> <span class="pl-ent">username</span>: <span class="pl-s">root</span> <span class="pl-ent">password</span>: <span class="pl-c1">123456</span> <span class="pl-ent">connectionTimeoutMilliseconds</span>: <span class="pl-c1">30000</span> <span class="pl-ent">idleTimeoutMilliseconds</span>: <span class="pl-c1">60000</span> <span class="pl-ent">maxLifetimeMilliseconds</span>: <span class="pl-c1">1800000</span> <span class="pl-ent">maxPoolSize</span>: <span class="pl-c1">50</span> <span class="pl-ent">minPoolSize</span>: <span class="pl-c1">1</span> <span class="pl-ent">rules</span>: - <span class="pl-k">!SHARDING</span> <span class="pl-ent">tables</span>: <span class="pl-ent">tb_result3_sharding_sphere</span>: <span class="pl-ent">actualDataNodes</span>: <span class="pl-s">ds_0.tb_result3_sharding_sphere_$-&gt;{1..366}</span> <span class="pl-ent">tableStrategy</span>: <span class="pl-ent">standard</span>: <span class="pl-ent">shardingColumn</span>: <span class="pl-s">datadate</span> <span class="pl-ent">shardingAlgorithmName</span>: <span class="pl-s">tb-result3-class-based</span> <span class="pl-ent">keyGenerateStrategy</span>: <span class="pl-ent">column</span>: <span class="pl-s">tb_result3_id</span> <span class="pl-ent">keyGeneratorName</span>: <span class="pl-s">snowflake</span> <span class="pl-ent">bindingTables</span>: - <span class="pl-s">tb_result3_sharding_sphere</span> <span class="pl-ent">defaultDatabaseStrategy</span>: <span class="pl-ent">none</span>: <span class="pl-ent">defaultTableStrategy</span>: <span class="pl-ent">none</span>: <span class="pl-ent">shardingAlgorithms</span>: <span class="pl-ent">tb-result3-class-based</span>: <span class="pl-ent">type</span>: <span class="pl-s">CLASS_BASED</span> <span class="pl-ent">props</span>: <span class="pl-ent">strategy</span>: <span class="pl-s">STANDARD</span> <span class="pl-ent">algorithmClassName</span>: <span class="pl-s">com.sg8000.spi.TbResult3ShardingAlgorithm</span> <span class="pl-ent">keyGenerators</span>: <span class="pl-ent">snowflake</span>: <span class="pl-ent">type</span>: <span class="pl-s">SNOWFLAKE</span> <span class="pl-ent">props</span>: <span class="pl-ent">worker-id</span>: <span class="pl-c1">1</span></pre></div>
0
<h4 dir="auto">Challenge Name</h4> <h4 dir="auto">Issue Description</h4> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version:</li> <li>Operating System:</li> <li>Mobile, Desktop, or Tablet:</li> </ul> <h4 dir="auto">Your Code</h4> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// If relevant, paste all of your challenge code in here "><pre class="notranslate"><span class="pl-c">// If relevant, paste all of your challenge code in here</span></pre></div> <h4 dir="auto">Screenshot</h4>
<p dir="auto">We're getting scattered reports of users getting 522(timeout) errors when trying to reach the site.</p> <p dir="auto">If you've encountered it, please list your locations (city/state/country), whether it is still happening, if it's consistent, and whether you can access the site now.</p> <p dir="auto">I have a pretty good idea of the cause and I'm trying to verify it.</p>
1
<p dir="auto">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>...</li> <li>...</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 1.0.0<br> <strong>System</strong>: DERLUEDDE<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Timber\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;one-dark-ui&quot;, &quot;base16-tomorrow-dark-theme&quot; ] }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;fontSize&quot;: 13 } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>one-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>base16-tomorrow-dark-theme<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User linter-php, v0.0.15 minimap, v4.10.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> linter<span class="pl-k">-</span>php, v0.<span class="pl-ii">0</span>.<span class="pl-ii">15</span> minimap, v4.<span class="pl-ii">10</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">I right-clicked on a folder in the tree view</p> <p dir="auto"><strong>Atom Version</strong>: 0.194.0<br> <strong>System</strong>: Windows 7 Entreprise<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;ignoredNames&quot;: [ &quot;node_modules&quot; ], &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;seti-syntax&quot; ], &quot;disabledPackages&quot;: [ &quot;Tern&quot; ], &quot;projectHome&quot;: &quot;Y:\\app-tfoumax&quot; }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softWrap&quot;: true, &quot;showIndentGuide&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"ignoredNames"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span> ], <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span> ], <span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User autocomplete-plus, v2.12.0 autocomplete-snippets, v1.2.0 javascript-snippets, v1.0.0 jshint, v1.3.5 language-ejs, v0.1.0 linter, v0.12.1 pretty-json, v0.3.3 save-session, v0.14.0 Search, v0.4.0 seti-syntax, v0.4.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span> autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span> language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span> pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span> save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span> Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<h2 dir="auto">🐛 Bug</h2> <p dir="auto">-- Build files have been written to: /home/feng/pytorch/build</p> <ul dir="auto"> <li>make install -j12<br> Scanning dependencies of target js_embed<br> Scanning dependencies of target benchmark<br> Scanning dependencies of target nccl_external<br> Scanning dependencies of target pthreadpool<br> Scanning dependencies of target clog<br> Scanning dependencies of target gtest<br> Scanning dependencies of target gloo<br> Scanning dependencies of target onnxifi_dummy<br> Scanning dependencies of target onnxifi_loader<br> Scanning dependencies of target libprotobuf-lite<br> Scanning dependencies of target libprotobuf<br> [ 0%] Creating directories for 'nccl_external'<br> Scanning dependencies of target mkldnn<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/js_embed.dir/<strong>/src/google/protobuf/compiler/js/embed.cc.o<br> [ 1%] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o<br> [ 1%] No download step for 'nccl_external'<br> [ 1%] No patch step for 'nccl_external'<br> [ 1%] No update step for 'nccl_external'<br> [ 1%] No configure step for 'nccl_external'<br> [ 1%] Performing build step for 'nccl_external'<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_loader.dir/onnx/onnxifi_loader.c.o<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_dummy.dir/onnx/onnxifi_dummy.c.o<br> [ 1%] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/threadpool-pthreads.c.o<br> make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:120:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_error’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:196:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_warning’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:272:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_info’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:348:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_debug’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:424:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/arena.cc.o<br> Generating nccl.h.in &gt; /home/feng/pytorch/build/nccl/include/nccl.h<br> Compiling init.cu &gt; /home/feng/pytorch/build/nccl/obj/init.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 1%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o<br> [ 1%] Linking CXX executable ../../../bin/js_embed<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/arenastring.cc.o<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o<br> [ 1%] Linking C shared library ../../lib/libonnxifi_dummy.so<br> [ 1%] Linking C static library ../../lib/libpthreadpool.a<br> [ 1%] Linking C static library ../../lib/libclog.a<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o<br> [ 1%] Linking C static library ../../lib/libonnxifi_loader.a<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive.cpp.o<br> [ 1%] Built target onnxifi_dummy<br> [ 1%] Built target js_embed<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/pooling.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/arena.cc.o<br> [ 1%] Built target onnxifi_loader<br> [ 1%] Built target pthreadpool<br> [ 1%] Built target clog<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/arenastring.cc.o<br> Scanning dependencies of target python_copy_files<br> Scanning dependencies of target c10<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/DeviceType.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/engine.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/query.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/softmax.cpp.o<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/Half.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/mkldnn_debug.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/batch_normalization.cpp.o<br> [ 2%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 2%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/scratchpad.cpp.o<br> [ 2%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_attr.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Device.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/verbose.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/eltwise.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory_desc_wrapper.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_iterator.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/lrn.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/inner_product.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchema.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/KernelRegistration.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DeviceId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution_relu.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/rnn.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/reorder.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchKey.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_desc.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/Dispatcher.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchemaRegistration.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/deconvolution.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/utils.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_conv_kernel_f32.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_batch_normalization_utils.cpp.o<br> init.cu:52:1: warning: ‘ncclNet’ initialized and declared ‘extern’<br> ncclNet_t* ncclNet = NULL;<br> ^<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchTable.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/LayoutId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/impl/DeviceGuardImplInterface.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Type.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/repeated_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 4%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_lrn.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o<br> [ 4%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o<br> Compiling ring.cu &gt; /home/feng/pytorch/build/nccl/obj/ring.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o<br> [ 5%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 5%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_conv_kernel.cpp.o<br> [ 5%] Linking CXX static library ../../../lib/libgtest.a<br> [ 5%] Built target gtest<br> Scanning dependencies of target ATEN_CPU_FILES_GEN_TARGET<br> [ 5%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 6%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o<br> [ 6%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_deconvolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_conv_kernel_f32.cpp.o<br> [ 7%] Built target python_copy_files<br> Scanning dependencies of target common<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Built target common<br> Scanning dependencies of target mkrename<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o<br> [ 7%] Linking C executable ../../bin/mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o<br> [ 7%] Built target mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_sum.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/int128.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/mpi/context.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o<br> Compiling bootstrap.cu &gt; /home/feng/pytorch/build/nccl/obj/bootstrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/repeated_field.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/stringprintf.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_winograd_kernel_f32.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/strutil.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/time.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/wire_format_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeId.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeIdRegistration.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_inner_product.cpp.o<br> Compiling transport.cu &gt; /home/feng/pytorch/build/nccl/obj/transport.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Linking CXX static library ../../../lib/libprotobuf-lite.a<br> [ 7%] Built target libprotobuf-lite<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o<br> Scanning dependencies of target mkdisp<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o<br> [ 7%] Linking C executable ../../bin/mkdisp<br> [ 7%] Built target mkdisp<br> Scanning dependencies of target renamedsp256.h_generated<br> [ 7%] Generating renamedsp256.h<br> [ 7%] Built target renamedsp256.h_generated<br> Scanning dependencies of target dispavx.c_generated<br> [ 7%] Generating dispavx.c<br> [ 7%] Built target dispavx.c_generated<br> Scanning dependencies of target renameSSE2.h_generated<br> [ 7%] Generating include/renamesse2.h<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o<br> Generating renamesse2.h: mkrename 2 4 sse2<br> [ 7%] Built target renameSSE2.h_generated<br> Scanning dependencies of target renameFMA4.h_generated<br> [ 7%] Generating include/renamefma4.h<br> Generating renamefma4.h: mkrename 4 8 fma4<br> [ 7%] Built target renameFMA4.h_generated<br> Scanning dependencies of target renameAVX2.h_generated<br> [ 7%] Generating include/renameavx2.h<br> Generating renameavx2.h: mkrename 4 8 avx2<br> [ 7%] Built target renameAVX2.h_generated<br> Scanning dependencies of target renameAVX2128.h_generated<br> [ 7%] Generating include/renameavx2128.h<br> Generating renameavx2128.h: mkrename 2 4 avx2128<br> [ 7%] Built target renameAVX2128.h_generated<br> Scanning dependencies of target renameSSE4.h_generated<br> [ 8%] Generating include/renamesse4.h<br> Generating renamesse4.h: mkrename 2 4 sse4<br> [ 8%] Built target renameSSE4.h_generated<br> Scanning dependencies of target ATEN_CUDA_FILES_GEN_TARGET<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/int128.cc.o<br> [ 8%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 8%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o<br> [ 8%] Linking CXX shared library ../lib/libc10.so<br> [ 8%] Built target c10<br> Scanning dependencies of target mkrename_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkrename_gnuabi<br> [ 8%] Built target mkrename_gnuabi<br> Scanning dependencies of target mkmasked_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkmasked_gnuabi<br> [ 8%] Built target mkmasked_gnuabi<br> Scanning dependencies of target mkalias<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o<br> Scanning dependencies of target arraymap<br> [ 8%] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o<br> [ 8%] Linking C executable ../../bin/mkalias<br> [ 8%] Built target mkalias<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> Scanning dependencies of target torch_shm_manager<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 8%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 8%] Built target arraymap<br> Scanning dependencies of target c10_utils_gpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_gpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_barrier.cpp.o<br> [ 9%] Built target c10_utils_gpu<br> Scanning dependencies of target c10_utils_hip<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip.dir/dummy.cpp.o<br> [ 9%] Built target c10_utils_hip<br> Scanning dependencies of target c10_utils_cpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_cpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_sum.cpp.o<br> [ 9%] Built target c10_utils_cpu<br> Scanning dependencies of target cpuinfo<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o<br> [ 9%] Linking CXX static library ../../../lib/libbenchmark.a<br> [ 9%] Built target benchmark<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o<br> Scanning dependencies of target nnpack_reference_layers<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ncsp_batch_normalization.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o<br> [ 9%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o<br> [ 9%] Built target ATEN_CPU_FILES_GEN_TARGET<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_inner_product.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o<br> [ 9%] Linking C static library ../../lib/libnnpack_reference_layers.a<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o<br> [ 10%] Built target nnpack_reference_layers<br> Scanning dependencies of target gtest_main<br> [ 10%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/current.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o<br> Scanning dependencies of target benchmark_main<br> [ 10%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o<br> [ 10%] Linking C static library ../../lib/libcpuinfo.a<br> [ 10%] Built target cpuinfo<br> Scanning dependencies of target onnxifi_wrapper<br> [ 10%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 10%] Building C object third_party/onnx/CMakeFiles/onnxifi_wrapper.dir/onnx/onnxifi_wrapper.c.o<br> [ 10%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 10%] Linking CXX executable ../../../../bin/torch_shm_manager<br> [ 10%] Linking C shared module ../../lib/libonnxifi.so<br> [ 10%] Built target onnxifi_wrapper<br> Scanning dependencies of target <strong>aten_op_header_gen<br> [ 10%] Generating contrib/aten/aten_op.h<br> [ 10%] Built target torch_shm_manager<br> Scanning dependencies of target renameAVX.h_generated<br> [ 10%] Generating include/renameavx.h<br> Generating renameavx.h: mkrename 4 8 avx<br> [ 10%] Built target renameAVX.h_generated<br> [ 11%] Linking CXX static library ../../../lib/libgloo.a<br> Scanning dependencies of target renamedsp128.h_generated<br> [ 11%] Generating renamedsp128.h<br> [ 11%] Built target renamedsp128.h_generated<br> Scanning dependencies of target headers<br> [ 12%] Generating ../../../include/sleef.h<br> [ 12%] Built target gloo<br> Scanning dependencies of target dispsse.c_generated<br> [ 12%] Generating dispsse.c<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX avx<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX fma4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i m256i AVX avx2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 avx2128<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F avx512f<br> [ 12%] Built target dispsse.c_generated<br> [ 12%] Built target headers<br> Scanning dependencies of target sleefsse2<br> Scanning dependencies of target sleeffma4<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o<br> Compiling misc/group.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/group.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Linking CXX static library ../../../lib/libbenchmark_main.a<br> [ 12%] Linking CXX static library ../../../lib/libgtest_main.a<br> [ 12%] Built target benchmark_main<br> Scanning dependencies of target sleefavx2<br> [ 12%] Built target gtest_main<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o<br> Scanning dependencies of target sleefavx2128<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/stringprintf.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_conv_kernel.cpp.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution.cpp.o<br> [ 12%] Built target sleeffma4<br> Scanning dependencies of target sleefsse4<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/strutil.cc.o<br> [ 12%] Built target sleefavx2128<br> Scanning dependencies of target c10_utils_gpu_test<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_gpu_test<br> [ 12%] Built target sleefavx2<br> Scanning dependencies of target c10_utils_hip_test<br> [ 12%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_hip_test<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 12%] Built target c10_utils_gpu_test<br> Scanning dependencies of target c10_utils_cpu_test<br> [ 12%] Linking CXX executable ../../bin/c10_utils_cpu_test<br> [ 12%] Built target c10_utils_hip_test<br> Scanning dependencies of target qnnpack<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o<br> [ 12%] Built target c10_utils_cpu_test<br> [ 12%] Generating src/x86_64-fma/2d-fourier-8x8.py.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o<br> [ 12%] Built target sleefsse2<br> Scanning dependencies of target c10_registry_test<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pool_kernel_f32.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o<br> [ 12%] Built target sleefsse4<br> Compiling misc/nvmlwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/nvmlwrap.o<br> Scanning dependencies of target c10_OpSchema_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_OpSchema_test.dir/dispatch/OpSchema_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dw/9c8-sse2.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/time.cc.o<br> [ 12%] Linking C static library ../../lib/libqnnpack.a<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/wire_format_lite.cc.o<br> [ 13%] Built target qnnpack<br> Scanning dependencies of target c10_InlineStreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/impl/InlineStreamGuard_test.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_OpSchema_test<br> [ 13%] Built target c10_OpSchema_test<br> Scanning dependencies of target c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_u8s8s32x_convolution.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.cc.o<br> [ 13%] Linking CXX executable ../../bin/c10_registry_test<br> [ 13%] Built target c10_registry_test<br> Scanning dependencies of target c10_DeviceGuard_test<br> [ 13%] Linking CXX executable ../../bin/c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o<br> [ 13%] Built target c10_StreamGuard_test<br> Scanning dependencies of target c10_TypeTraits_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 13%] Generating src/x86_64-fma/2d-fourier-16x16.py.o<br> [ 13%] Built target ATEN_CUDA_FILES_GEN_TARGET<br> Scanning dependencies of target c10_Metaprogramming_test<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/api.pb.cc.o<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_convolution.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_TypeTraits_test<br> [ 13%] Built target c10_TypeTraits_test<br> Scanning dependencies of target c10_logging_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/importer.cc.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_gemm_f32.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_InlineStreamGuard_test<br> Scanning dependencies of target c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_DeviceGuard_test<br> Compiling misc/ibvwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/ibvwrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_DeviceGuard_test<br> Scanning dependencies of target c10_InlineDeviceGuard_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/impl/InlineDeviceGuard_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_Metaprogramming_test<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/parser.cc.o<br> [ 14%] Built target c10_Metaprogramming_test<br> Scanning dependencies of target c10_typeid_test<br> [ 14%] Linking CXX executable ../../bin/c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o<br> [ 14%] Built target c10_Array_test<br> Scanning dependencies of target c10_flags_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o<br> [ 14%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pooling.cpp.o<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.cc.o<br> [ 14%] Linking CXX executable ../../bin/c10_logging_test<br> [ 14%] Built target c10_logging_test<br> Scanning dependencies of target c10_TypeList_test<br> Skipping _th_multinomial Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping rrelu_with_noise Because of Arg: Generator * (Generator*)<br> Skipping rrelu_with_noise_forward Because of Arg: Generator * (Generator*)<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o<br> Skipping thnn_conv_transpose2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_transpose3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_depthwise2d_backward Because of Arg: std::array&lt;bool,2&gt; (std::array&lt;bool,2&gt;)<br> Skipping thnn_conv3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping _cudnn_rnn_backward Because of Arg: std::array&lt;bool,4&gt; (std::array&lt;bool,4&gt;)<br> Skipping _cudnn_init_dropout_state because it is a factory method<br> Skipping _fused_dropout Because of Arg: Generator * (Generator *)<br> Skipping arange because it is a factory method<br> Skipping bartlett_window because it is a factory method<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping blackman_window because it is a factory method<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping _convolution_double_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cumsum Because of Arg: ScalarType (ScalarType)<br> Skipping cumprod Because of Arg: ScalarType (ScalarType)<br> Skipping einsum Because of Arg: std::string (std::string)<br> Skipping empty because it is a factory method<br> Skipping empty_like because it is a factory method<br> Skipping empty_strided because it is a factory method<br> Skipping eye because it is a factory method<br> Skipping full because it is a factory method<br> Skipping full_like because it is a factory method<br> Skipping hann_window because it is a factory method<br> Skipping hamming_window because it is a factory method<br> Skipping _cufft_set_plan_cache_max_size Because of Ret: void (void)<br> Skipping _cufft_clear_plan_cache Because of Ret: void (void)<br> Skipping linspace because it is a factory method<br> Skipping logspace because it is a factory method<br> Skipping log_softmax Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mkldnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping native_batch_norm_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping ones because it is a factory method<br> Skipping ones_like because it is a factory method<br> Skipping rand because it is a factory method<br> Skipping rand_like because it is a factory method<br> Skipping randint because it is a factory method<br> Skipping randint_like because it is a factory method<br> Skipping randn because it is a factory method<br> Skipping randn_like because it is a factory method<br> Skipping randperm because it is a factory method<br> Skipping range because it is a factory method<br> Skipping rrelu Because of Arg: Generator * (Generator *)<br> Skipping softmax Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping zeros because it is a factory method<br> Skipping zeros_like because it is a factory method<br> Skipping _standard_gamma Because of Arg: Generator * (Generator <em>)<br> Skipping poisson Because of Arg: Generator * (Generator <em>)<br> Skipping sparse_coo_tensor because it is a factory method<br> Skipping _sparse_coo_tensor_unsafe because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims_and_tensors because it is a factory method<br> Skipping sparse_mask Because of Arg: SparseTensorRef (SparseTensorRef)<br> Skipping to because it is a factory method<br> Skipping data_ptr Because of Ret: void</em> (void</em>)<br> Skipping multinomial Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 14%] Built target aten_op_header_gen<br> Scanning dependencies of target sleefavx<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test<br> [ 14%] Linking CXX executable ../../bin/c10_flags_test<br> [ 14%] Built target c10_flags_test<br> [ 14%] Built target c10_InlineDeviceGuard_test<br> Scanning dependencies of target dispsse_obj<br> Scanning dependencies of target dispavx_obj<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_TypeList_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_TypeList_test<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o<br> [ 15%] Linking CXX executable ../../bin/c10_typeid_test<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn_kernel_f32.cpp.o<br> [ 15%] Built target c10_typeid_test<br> Compiling misc/rings.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/rings.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 15%] Built target dispsse_obj<br> [ 15%] Built target dispavx_obj<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_convolution.cpp.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.pb.cc.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor_database.cc.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_i8i8_pooling.cpp.o<br> [ 15%] Built target sleefavx<br> Scanning dependencies of target sleef<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nchw_pooling.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reducer.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_gemm_f32.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/duration.pb.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_conv_kernel_f32.cpp.o<br> Compiling misc/utils.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/utils.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder.cpp.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_engine.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/dynamic_message.cc.o<br> [ 16%] Linking C static library ../../lib/libsleef.a<br> [ 16%] Built target sleef<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/empty.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_convolution_winograd.cpp.o<br> Compiling misc/enqueue.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/enqueue.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/extension_set_heavy.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_lrn.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/field_mask.pb.cc.o<br> [ 16%] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_reflection.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_table_driven.cc.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/gzip_stream.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_convolution.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/printer.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution_winograd.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/strtod.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_convolution.cpp.o<br> [ 16%] Generating src/x86_64-fma/blas/s8gemm.py.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/tokenizer.cc.o<br> Compiling transport/p2p.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/p2p.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Generating src/x86_64-fma/blas/c8gemm.py.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_eltwise.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/zero_copy_stream_impl.cc.o<br> [ 16%] Generating src/x86_64-fma/blas/s4c6gemm.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/map_field.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/message.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/reflection_ops.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/service.cc.o<br> [ 17%] Generating src/x86_64-fma/blas/conv1x1.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_pooling.cpp.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_conv_kernel_f32.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Generating src/x86_64-fma/blas/sgemm.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/source_context.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/max-pooling.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/struct.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/relu.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_convolution.cpp.o<br> [ 17%] Generating src/x86_64-fma/softmax.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/mathlimits.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/substitute.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/text_format.cc.o<br> Compiling transport/shm.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/shm.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/timestamp.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_batch_normalization.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/sdotxf.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_inner_product.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/type.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder_utils.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/shdotxf.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/unknown_field_set.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/delimited_message_util.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_conv_kernel.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_comparator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_mask_util.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/internal/datapiece.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_batch_normalization.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/default_value_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/error_listener.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/field_mask_utility.cc.o<br> Compiling transport/net.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_escaping.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/json_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_stream_parser.cc.o<br> [ 18%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/object_writer.cc.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_convolution.cpp.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_convolution.cpp.o<br> Scanning dependencies of target nnpack<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/proto_writer.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/protostream_objectsource.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/protostream_objectwriter.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/type_info.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/type_info_test_helper.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o<br> [ 20%] Linking C static library ../../lib/libnnpack.a<br> [ 20%] Built target nnpack<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/utility.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reorder.cpp.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/json_util.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/message_differencer.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/time_util.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/type_resolver_util.cc.o<br> Compiling transport/net_socket.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_socket.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/wire_format.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/wrappers.pb.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_conv_kernel_f32.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_kernel.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution_utils.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_softmax.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_transpose_src_utils.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_rnn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_eltwise.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_convolution.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nspc_batch_normalization.cpp.o<br> [ 20%] Linking CXX static library ../../../lib/libprotobuf.a<br> [ 20%] Built target libprotobuf<br> [ 20%] Generating ../../../../third_party/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.cc<br> Scanning dependencies of target libprotoc<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_conv_winograd_kernel_f32.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/code_generator.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/command_line_interface.cc.o<br> Compiling transport/net_ib.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_ib.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_extension.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_file.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_message.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_service.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o<br> Compiling collectives/all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_message.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_context.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_doc_comment.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_extension.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_extension_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_field.cc.o<br> Compiling collectives/all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_gather.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_file.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_generator.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_generator_factory.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_helpers.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_lazy_message_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_map_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_map_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_builder.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_name_resolver.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_primitive_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_service.cc.o<br> Compiling collectives/broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/broadcast.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_string_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_string_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_enum.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_enum_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_extension.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/js/js_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/js/well_known_types_embed.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o<br> Compiling collectives/reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/php/php_generator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/plugin.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/plugin.pb.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/python/python_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/ruby/ruby_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/subprocess.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/zip_writer.cc.o<br> Compiling collectives/reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce_scatter.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX shared library ../../../../lib/libmkldnn.so<br> [ 25%] Built target mkldnn<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 25%] Linking CXX static library ../../../lib/libprotoc.a<br> [ 25%] Built target libprotoc<br> Scanning dependencies of target protoc<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/<strong>/src/google/protobuf/compiler/main.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX executable ../../../bin/protoc<br> [ 25%] Built target protoc<br> Scanning dependencies of target gen_onnx_proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/prof_dag.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/predictor_consts.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/torch.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/hsm.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/metanet.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2_legacy.proto<br> [ 25%] Running gen_proto.py on onnx/onnx.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Scanning dependencies of target Caffe2_PROTO<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o<br> [ 25%] Built target gen_onnx_proto<br> [ 25%] Running gen_proto.py on onnx/onnx-operators.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx-operators.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Scanning dependencies of target onnx_proto<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch.pb.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch.pb.cc.o<br> [ 26%] Linking CXX static library ../../lib/libonnx_proto.a<br> [ 26%] Built target onnx_proto<br> Scanning dependencies of target onnx<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o<br> [ 26%] Built target Caffe2_PROTO<br> Scanning dependencies of target Caffe2_perfkernels_avx2<br> [ 26%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/defs.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/common_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/experiments_functions.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/onnxifi_utils.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_registry.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/optimize.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_manager.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Scanning dependencies of target caffe2_protos<br> [ 27%] Linking CXX static library ../lib/libcaffe2_protos.a<br> [ 27%] Built target caffe2_protos<br> Scanning dependencies of target Caffe2_perfkernels_avx<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/common_avx.cc.o<br> [ 28%] Built target Caffe2_perfkernels_avx<br> [ 28%] Built target Caffe2_perfkernels_avx2<br> [ 28%] Linking CXX static library ../../lib/libonnx.a<br> [ 28%] Built target onnx<br> Scanning dependencies of target caffe2<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/DLConvertor.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorUtils.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUGenerator.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorGeometry.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/UndefinedType.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/Utils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/Context.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUGeneral.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUTypeDefault.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseTensorImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/ExpandUtils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/ComplexHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/detail/CPUGuardImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/CUDAHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/cpu/FlushDenormal.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Storage.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/context_base.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/thread_pool.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenCoreTest.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/StorageImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Formatting.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/LegacyTypeDispatch.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/register_symbols.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/VariableHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Tensor.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/interned_strings.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/TensorOptions.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Range.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ivalue.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Allocator.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenGeneral.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/UndefinedTensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Scalar.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/blob.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/intrusive_ptr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/TensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/UniqueVoidPtr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/type.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/OptionsGuard.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Embedding.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/SoftMax.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/DispatchStub.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Dropout.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorCompare.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LinearAlgebra.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/GridSampler.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ReduceOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/UnaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Linear.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Indexing.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PixelShuffle.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorIterator.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LegacyBridge.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TypeProperties.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Copy.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Loss.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/EmbeddingBag.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Normalization.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/WeightNorm.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Resize.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Convolution.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RoiPooling.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PackedSequence.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/LegacyDefinitions.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distance.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorFactories.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConvolutionTBC.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SummaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorTransformations.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Unique.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorIteratorReduce.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Pooling.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distributions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Memory.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorProperties.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Scalar.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorShape.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BinaryOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Activation.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LossCTC.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RNN.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConstantPadNd.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorConversions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BatchLinearAlgebra.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/sparse/SparseTensor.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/mkl/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkldnn/Conv.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUCopy.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUFloatType.cpp.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUHalfType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/RegisterCPU.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUFloatType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TypeDefault.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THGeneral.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THAllocator.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THSize.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THStorageFunctions.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensor.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorCopy.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorEvenMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorConv.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THBlas.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THLogAdd.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THDiskFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THMemoryFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THVector.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/vector/AVX.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/vector/AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/THNN/init.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/mkldnn/Runtime.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/utils/ideep_register.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/dropout_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/pool_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/momentum_sgd_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/local_response_normalization_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/relu_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/elementwise_sum_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/squeeze_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/utility_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_fusion_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/operator_fallback_ideep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/concat_split_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/spatial_batch_norm_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/fully_connected_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling functions.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/functions.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvlink fatal : Internal error: reference to deleted section<br> Makefile:83: recipe for target '/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o' failed<br> make[5]: *** [/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o] Error 1<br> Makefile:45: recipe for target 'devicelib' failed<br> make[4]: *** [devicelib] Error 2<br> Makefile:25: recipe for target 'src.build' failed<br> make[3]: *** [src.build] Error 2<br> CMakeFiles/nccl_external.dir/build.make:110: recipe for target 'nccl_external-prefix/src/nccl_external-stamp/nccl_external-build' failed<br> make[2]: *** [nccl_external-prefix/src/nccl_external-stamp/nccl_external-build] Error 2<br> CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/nccl_external.dir/all' failed<br> make[1]: *** [CMakeFiles/nccl_external.dir/all] Error 2<br> make[1]: *** Waiting for unfinished jobs....<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/layer_norm.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o<br> [ 57%] Linking CXX shared library ../lib/libcaffe2.so<br> [ 57%] Built target caffe2<br> Makefile:138: recipe for target 'all' failed<br> make: *** [all] Error 2<br> Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack --use-mkldnn --use-qnnpack caffe2'</li> </ul> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <ol dir="auto"> <li></li> <li></li> <li></li> </ol> <h2 dir="auto">Expected behavior</h2> <h2 dir="auto">Environment</h2> <p dir="auto">Please copy and paste the output from our<br> <a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br> (or fill out the checklist below manually).</p> <p dir="auto">You can get the script and run it with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py"><pre class="notranslate"><code class="notranslate">wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py </code></pre></div> <ul dir="auto"> <li>PyTorch Version (e.g., 1.0):</li> <li>OS (e.g., Linux):</li> <li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source):</li> <li>Build command you used (if compiling from source):</li> <li>Python version:</li> <li>CUDA/cuDNN version:</li> <li>GPU models and configuration:</li> <li>Any other relevant information:</li> </ul> <h2 dir="auto">Additional context</h2>
<h2 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions and Help</h2> <p dir="auto">-- Build files have been written to: /home/feng/pytorch/build</p> <ul dir="auto"> <li>make install -j12<br> Scanning dependencies of target js_embed<br> Scanning dependencies of target benchmark<br> Scanning dependencies of target nccl_external<br> Scanning dependencies of target pthreadpool<br> Scanning dependencies of target clog<br> Scanning dependencies of target gtest<br> Scanning dependencies of target gloo<br> Scanning dependencies of target onnxifi_dummy<br> Scanning dependencies of target onnxifi_loader<br> Scanning dependencies of target libprotobuf-lite<br> Scanning dependencies of target libprotobuf<br> [ 0%] Creating directories for 'nccl_external'<br> Scanning dependencies of target mkldnn<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/js_embed.dir/<strong>/src/google/protobuf/compiler/js/embed.cc.o<br> [ 1%] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o<br> [ 1%] No download step for 'nccl_external'<br> [ 1%] No patch step for 'nccl_external'<br> [ 1%] No update step for 'nccl_external'<br> [ 1%] No configure step for 'nccl_external'<br> [ 1%] Performing build step for 'nccl_external'<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_loader.dir/onnx/onnxifi_loader.c.o<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_dummy.dir/onnx/onnxifi_dummy.c.o<br> [ 1%] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/threadpool-pthreads.c.o<br> make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:120:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_error’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:196:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_warning’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:272:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_info’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:348:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_debug’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:424:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/arena.cc.o<br> Generating nccl.h.in &gt; /home/feng/pytorch/build/nccl/include/nccl.h<br> Compiling init.cu &gt; /home/feng/pytorch/build/nccl/obj/init.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 1%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o<br> [ 1%] Linking CXX executable ../../../bin/js_embed<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/arenastring.cc.o<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o<br> [ 1%] Linking C shared library ../../lib/libonnxifi_dummy.so<br> [ 1%] Linking C static library ../../lib/libpthreadpool.a<br> [ 1%] Linking C static library ../../lib/libclog.a<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o<br> [ 1%] Linking C static library ../../lib/libonnxifi_loader.a<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive.cpp.o<br> [ 1%] Built target onnxifi_dummy<br> [ 1%] Built target js_embed<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/pooling.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/arena.cc.o<br> [ 1%] Built target onnxifi_loader<br> [ 1%] Built target pthreadpool<br> [ 1%] Built target clog<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/arenastring.cc.o<br> Scanning dependencies of target python_copy_files<br> Scanning dependencies of target c10<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/DeviceType.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/engine.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/query.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/softmax.cpp.o<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/Half.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/mkldnn_debug.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/batch_normalization.cpp.o<br> [ 2%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 2%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/scratchpad.cpp.o<br> [ 2%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_attr.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Device.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/verbose.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/eltwise.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory_desc_wrapper.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_iterator.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/lrn.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/inner_product.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchema.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/KernelRegistration.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DeviceId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution_relu.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/rnn.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/reorder.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchKey.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_desc.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/Dispatcher.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchemaRegistration.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/deconvolution.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/utils.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_conv_kernel_f32.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_batch_normalization_utils.cpp.o<br> init.cu:52:1: warning: ‘ncclNet’ initialized and declared ‘extern’<br> ncclNet_t* ncclNet = NULL;<br> ^<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchTable.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/LayoutId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/impl/DeviceGuardImplInterface.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Type.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/repeated_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 4%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_lrn.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o<br> [ 4%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o<br> Compiling ring.cu &gt; /home/feng/pytorch/build/nccl/obj/ring.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o<br> [ 5%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 5%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_conv_kernel.cpp.o<br> [ 5%] Linking CXX static library ../../../lib/libgtest.a<br> [ 5%] Built target gtest<br> Scanning dependencies of target ATEN_CPU_FILES_GEN_TARGET<br> [ 5%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 6%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o<br> [ 6%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_deconvolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_conv_kernel_f32.cpp.o<br> [ 7%] Built target python_copy_files<br> Scanning dependencies of target common<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Built target common<br> Scanning dependencies of target mkrename<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o<br> [ 7%] Linking C executable ../../bin/mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o<br> [ 7%] Built target mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_sum.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/int128.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/mpi/context.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o<br> Compiling bootstrap.cu &gt; /home/feng/pytorch/build/nccl/obj/bootstrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/repeated_field.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/stringprintf.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_winograd_kernel_f32.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/strutil.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/time.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/wire_format_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeId.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeIdRegistration.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_inner_product.cpp.o<br> Compiling transport.cu &gt; /home/feng/pytorch/build/nccl/obj/transport.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Linking CXX static library ../../../lib/libprotobuf-lite.a<br> [ 7%] Built target libprotobuf-lite<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o<br> Scanning dependencies of target mkdisp<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o<br> [ 7%] Linking C executable ../../bin/mkdisp<br> [ 7%] Built target mkdisp<br> Scanning dependencies of target renamedsp256.h_generated<br> [ 7%] Generating renamedsp256.h<br> [ 7%] Built target renamedsp256.h_generated<br> Scanning dependencies of target dispavx.c_generated<br> [ 7%] Generating dispavx.c<br> [ 7%] Built target dispavx.c_generated<br> Scanning dependencies of target renameSSE2.h_generated<br> [ 7%] Generating include/renamesse2.h<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o<br> Generating renamesse2.h: mkrename 2 4 sse2<br> [ 7%] Built target renameSSE2.h_generated<br> Scanning dependencies of target renameFMA4.h_generated<br> [ 7%] Generating include/renamefma4.h<br> Generating renamefma4.h: mkrename 4 8 fma4<br> [ 7%] Built target renameFMA4.h_generated<br> Scanning dependencies of target renameAVX2.h_generated<br> [ 7%] Generating include/renameavx2.h<br> Generating renameavx2.h: mkrename 4 8 avx2<br> [ 7%] Built target renameAVX2.h_generated<br> Scanning dependencies of target renameAVX2128.h_generated<br> [ 7%] Generating include/renameavx2128.h<br> Generating renameavx2128.h: mkrename 2 4 avx2128<br> [ 7%] Built target renameAVX2128.h_generated<br> Scanning dependencies of target renameSSE4.h_generated<br> [ 8%] Generating include/renamesse4.h<br> Generating renamesse4.h: mkrename 2 4 sse4<br> [ 8%] Built target renameSSE4.h_generated<br> Scanning dependencies of target ATEN_CUDA_FILES_GEN_TARGET<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/int128.cc.o<br> [ 8%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 8%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o<br> [ 8%] Linking CXX shared library ../lib/libc10.so<br> [ 8%] Built target c10<br> Scanning dependencies of target mkrename_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkrename_gnuabi<br> [ 8%] Built target mkrename_gnuabi<br> Scanning dependencies of target mkmasked_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkmasked_gnuabi<br> [ 8%] Built target mkmasked_gnuabi<br> Scanning dependencies of target mkalias<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o<br> Scanning dependencies of target arraymap<br> [ 8%] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o<br> [ 8%] Linking C executable ../../bin/mkalias<br> [ 8%] Built target mkalias<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> Scanning dependencies of target torch_shm_manager<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 8%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 8%] Built target arraymap<br> Scanning dependencies of target c10_utils_gpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_gpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_barrier.cpp.o<br> [ 9%] Built target c10_utils_gpu<br> Scanning dependencies of target c10_utils_hip<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip.dir/dummy.cpp.o<br> [ 9%] Built target c10_utils_hip<br> Scanning dependencies of target c10_utils_cpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_cpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_sum.cpp.o<br> [ 9%] Built target c10_utils_cpu<br> Scanning dependencies of target cpuinfo<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o<br> [ 9%] Linking CXX static library ../../../lib/libbenchmark.a<br> [ 9%] Built target benchmark<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o<br> Scanning dependencies of target nnpack_reference_layers<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ncsp_batch_normalization.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o<br> [ 9%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o<br> [ 9%] Built target ATEN_CPU_FILES_GEN_TARGET<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_inner_product.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o<br> [ 9%] Linking C static library ../../lib/libnnpack_reference_layers.a<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o<br> [ 10%] Built target nnpack_reference_layers<br> Scanning dependencies of target gtest_main<br> [ 10%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/current.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o<br> Scanning dependencies of target benchmark_main<br> [ 10%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o<br> [ 10%] Linking C static library ../../lib/libcpuinfo.a<br> [ 10%] Built target cpuinfo<br> Scanning dependencies of target onnxifi_wrapper<br> [ 10%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 10%] Building C object third_party/onnx/CMakeFiles/onnxifi_wrapper.dir/onnx/onnxifi_wrapper.c.o<br> [ 10%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 10%] Linking CXX executable ../../../../bin/torch_shm_manager<br> [ 10%] Linking C shared module ../../lib/libonnxifi.so<br> [ 10%] Built target onnxifi_wrapper<br> Scanning dependencies of target <strong>aten_op_header_gen<br> [ 10%] Generating contrib/aten/aten_op.h<br> [ 10%] Built target torch_shm_manager<br> Scanning dependencies of target renameAVX.h_generated<br> [ 10%] Generating include/renameavx.h<br> Generating renameavx.h: mkrename 4 8 avx<br> [ 10%] Built target renameAVX.h_generated<br> [ 11%] Linking CXX static library ../../../lib/libgloo.a<br> Scanning dependencies of target renamedsp128.h_generated<br> [ 11%] Generating renamedsp128.h<br> [ 11%] Built target renamedsp128.h_generated<br> Scanning dependencies of target headers<br> [ 12%] Generating ../../../include/sleef.h<br> [ 12%] Built target gloo<br> Scanning dependencies of target dispsse.c_generated<br> [ 12%] Generating dispsse.c<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX avx<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX fma4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i m256i AVX avx2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 avx2128<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F avx512f<br> [ 12%] Built target dispsse.c_generated<br> [ 12%] Built target headers<br> Scanning dependencies of target sleefsse2<br> Scanning dependencies of target sleeffma4<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o<br> Compiling misc/group.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/group.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Linking CXX static library ../../../lib/libbenchmark_main.a<br> [ 12%] Linking CXX static library ../../../lib/libgtest_main.a<br> [ 12%] Built target benchmark_main<br> Scanning dependencies of target sleefavx2<br> [ 12%] Built target gtest_main<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o<br> Scanning dependencies of target sleefavx2128<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/stringprintf.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_conv_kernel.cpp.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution.cpp.o<br> [ 12%] Built target sleeffma4<br> Scanning dependencies of target sleefsse4<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/strutil.cc.o<br> [ 12%] Built target sleefavx2128<br> Scanning dependencies of target c10_utils_gpu_test<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_gpu_test<br> [ 12%] Built target sleefavx2<br> Scanning dependencies of target c10_utils_hip_test<br> [ 12%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_hip_test<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 12%] Built target c10_utils_gpu_test<br> Scanning dependencies of target c10_utils_cpu_test<br> [ 12%] Linking CXX executable ../../bin/c10_utils_cpu_test<br> [ 12%] Built target c10_utils_hip_test<br> Scanning dependencies of target qnnpack<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o<br> [ 12%] Built target c10_utils_cpu_test<br> [ 12%] Generating src/x86_64-fma/2d-fourier-8x8.py.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o<br> [ 12%] Built target sleefsse2<br> Scanning dependencies of target c10_registry_test<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pool_kernel_f32.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o<br> [ 12%] Built target sleefsse4<br> Compiling misc/nvmlwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/nvmlwrap.o<br> Scanning dependencies of target c10_OpSchema_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_OpSchema_test.dir/dispatch/OpSchema_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dw/9c8-sse2.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/time.cc.o<br> [ 12%] Linking C static library ../../lib/libqnnpack.a<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/wire_format_lite.cc.o<br> [ 13%] Built target qnnpack<br> Scanning dependencies of target c10_InlineStreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/impl/InlineStreamGuard_test.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_OpSchema_test<br> [ 13%] Built target c10_OpSchema_test<br> Scanning dependencies of target c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_u8s8s32x_convolution.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.cc.o<br> [ 13%] Linking CXX executable ../../bin/c10_registry_test<br> [ 13%] Built target c10_registry_test<br> Scanning dependencies of target c10_DeviceGuard_test<br> [ 13%] Linking CXX executable ../../bin/c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o<br> [ 13%] Built target c10_StreamGuard_test<br> Scanning dependencies of target c10_TypeTraits_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 13%] Generating src/x86_64-fma/2d-fourier-16x16.py.o<br> [ 13%] Built target ATEN_CUDA_FILES_GEN_TARGET<br> Scanning dependencies of target c10_Metaprogramming_test<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/api.pb.cc.o<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_convolution.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_TypeTraits_test<br> [ 13%] Built target c10_TypeTraits_test<br> Scanning dependencies of target c10_logging_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/importer.cc.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_gemm_f32.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_InlineStreamGuard_test<br> Scanning dependencies of target c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_DeviceGuard_test<br> Compiling misc/ibvwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/ibvwrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_DeviceGuard_test<br> Scanning dependencies of target c10_InlineDeviceGuard_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/impl/InlineDeviceGuard_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_Metaprogramming_test<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/parser.cc.o<br> [ 14%] Built target c10_Metaprogramming_test<br> Scanning dependencies of target c10_typeid_test<br> [ 14%] Linking CXX executable ../../bin/c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o<br> [ 14%] Built target c10_Array_test<br> Scanning dependencies of target c10_flags_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o<br> [ 14%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pooling.cpp.o<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.cc.o<br> [ 14%] Linking CXX executable ../../bin/c10_logging_test<br> [ 14%] Built target c10_logging_test<br> Scanning dependencies of target c10_TypeList_test<br> Skipping _th_multinomial Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping rrelu_with_noise Because of Arg: Generator * (Generator*)<br> Skipping rrelu_with_noise_forward Because of Arg: Generator * (Generator*)<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o<br> Skipping thnn_conv_transpose2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_transpose3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_depthwise2d_backward Because of Arg: std::array&lt;bool,2&gt; (std::array&lt;bool,2&gt;)<br> Skipping thnn_conv3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping _cudnn_rnn_backward Because of Arg: std::array&lt;bool,4&gt; (std::array&lt;bool,4&gt;)<br> Skipping _cudnn_init_dropout_state because it is a factory method<br> Skipping _fused_dropout Because of Arg: Generator * (Generator *)<br> Skipping arange because it is a factory method<br> Skipping bartlett_window because it is a factory method<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping blackman_window because it is a factory method<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping _convolution_double_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cumsum Because of Arg: ScalarType (ScalarType)<br> Skipping cumprod Because of Arg: ScalarType (ScalarType)<br> Skipping einsum Because of Arg: std::string (std::string)<br> Skipping empty because it is a factory method<br> Skipping empty_like because it is a factory method<br> Skipping empty_strided because it is a factory method<br> Skipping eye because it is a factory method<br> Skipping full because it is a factory method<br> Skipping full_like because it is a factory method<br> Skipping hann_window because it is a factory method<br> Skipping hamming_window because it is a factory method<br> Skipping _cufft_set_plan_cache_max_size Because of Ret: void (void)<br> Skipping _cufft_clear_plan_cache Because of Ret: void (void)<br> Skipping linspace because it is a factory method<br> Skipping logspace because it is a factory method<br> Skipping log_softmax Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mkldnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping native_batch_norm_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping ones because it is a factory method<br> Skipping ones_like because it is a factory method<br> Skipping rand because it is a factory method<br> Skipping rand_like because it is a factory method<br> Skipping randint because it is a factory method<br> Skipping randint_like because it is a factory method<br> Skipping randn because it is a factory method<br> Skipping randn_like because it is a factory method<br> Skipping randperm because it is a factory method<br> Skipping range because it is a factory method<br> Skipping rrelu Because of Arg: Generator * (Generator *)<br> Skipping softmax Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping zeros because it is a factory method<br> Skipping zeros_like because it is a factory method<br> Skipping _standard_gamma Because of Arg: Generator * (Generator <em>)<br> Skipping poisson Because of Arg: Generator * (Generator <em>)<br> Skipping sparse_coo_tensor because it is a factory method<br> Skipping _sparse_coo_tensor_unsafe because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims_and_tensors because it is a factory method<br> Skipping sparse_mask Because of Arg: SparseTensorRef (SparseTensorRef)<br> Skipping to because it is a factory method<br> Skipping data_ptr Because of Ret: void</em> (void</em>)<br> Skipping multinomial Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 14%] Built target aten_op_header_gen<br> Scanning dependencies of target sleefavx<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test<br> [ 14%] Linking CXX executable ../../bin/c10_flags_test<br> [ 14%] Built target c10_flags_test<br> [ 14%] Built target c10_InlineDeviceGuard_test<br> Scanning dependencies of target dispsse_obj<br> Scanning dependencies of target dispavx_obj<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_TypeList_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_TypeList_test<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o<br> [ 15%] Linking CXX executable ../../bin/c10_typeid_test<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn_kernel_f32.cpp.o<br> [ 15%] Built target c10_typeid_test<br> Compiling misc/rings.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/rings.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 15%] Built target dispsse_obj<br> [ 15%] Built target dispavx_obj<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_convolution.cpp.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.pb.cc.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor_database.cc.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_i8i8_pooling.cpp.o<br> [ 15%] Built target sleefavx<br> Scanning dependencies of target sleef<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nchw_pooling.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reducer.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_gemm_f32.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/duration.pb.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_conv_kernel_f32.cpp.o<br> Compiling misc/utils.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/utils.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder.cpp.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_engine.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/dynamic_message.cc.o<br> [ 16%] Linking C static library ../../lib/libsleef.a<br> [ 16%] Built target sleef<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/empty.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_convolution_winograd.cpp.o<br> Compiling misc/enqueue.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/enqueue.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/extension_set_heavy.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_lrn.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/field_mask.pb.cc.o<br> [ 16%] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_reflection.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_table_driven.cc.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/gzip_stream.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_convolution.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/printer.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution_winograd.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/strtod.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_convolution.cpp.o<br> [ 16%] Generating src/x86_64-fma/blas/s8gemm.py.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/tokenizer.cc.o<br> Compiling transport/p2p.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/p2p.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Generating src/x86_64-fma/blas/c8gemm.py.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_eltwise.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/zero_copy_stream_impl.cc.o<br> [ 16%] Generating src/x86_64-fma/blas/s4c6gemm.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/map_field.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/message.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/reflection_ops.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/service.cc.o<br> [ 17%] Generating src/x86_64-fma/blas/conv1x1.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_pooling.cpp.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_conv_kernel_f32.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Generating src/x86_64-fma/blas/sgemm.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/source_context.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/max-pooling.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/struct.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/relu.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_convolution.cpp.o<br> [ 17%] Generating src/x86_64-fma/softmax.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/mathlimits.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/substitute.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/text_format.cc.o<br> Compiling transport/shm.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/shm.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/timestamp.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_batch_normalization.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/sdotxf.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_inner_product.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/type.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder_utils.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/shdotxf.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/unknown_field_set.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/delimited_message_util.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_conv_kernel.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_comparator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_mask_util.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/internal/datapiece.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_batch_normalization.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/default_value_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/error_listener.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/field_mask_utility.cc.o<br> Compiling transport/net.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_escaping.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/json_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_stream_parser.cc.o<br> [ 18%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/object_writer.cc.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_convolution.cpp.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_convolution.cpp.o<br> Scanning dependencies of target nnpack<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/proto_writer.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/protostream_objectsource.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/protostream_objectwriter.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/type_info.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/type_info_test_helper.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o<br> [ 20%] Linking C static library ../../lib/libnnpack.a<br> [ 20%] Built target nnpack<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/utility.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reorder.cpp.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/json_util.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/message_differencer.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/time_util.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/type_resolver_util.cc.o<br> Compiling transport/net_socket.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_socket.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/wire_format.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/wrappers.pb.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_conv_kernel_f32.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_kernel.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution_utils.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_softmax.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_transpose_src_utils.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_rnn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_eltwise.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_convolution.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nspc_batch_normalization.cpp.o<br> [ 20%] Linking CXX static library ../../../lib/libprotobuf.a<br> [ 20%] Built target libprotobuf<br> [ 20%] Generating ../../../../third_party/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.cc<br> Scanning dependencies of target libprotoc<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_conv_winograd_kernel_f32.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/code_generator.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/command_line_interface.cc.o<br> Compiling transport/net_ib.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_ib.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_extension.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_file.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_message.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_service.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o<br> Compiling collectives/all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_message.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_context.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_doc_comment.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_extension.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_extension_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_field.cc.o<br> Compiling collectives/all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_gather.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_file.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_generator.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_generator_factory.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_helpers.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_lazy_message_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_map_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_map_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_builder.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_name_resolver.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_primitive_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_service.cc.o<br> Compiling collectives/broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/broadcast.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_string_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_string_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_enum.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_enum_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_extension.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/js/js_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/js/well_known_types_embed.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o<br> Compiling collectives/reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/php/php_generator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/plugin.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/plugin.pb.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/python/python_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/ruby/ruby_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/subprocess.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/zip_writer.cc.o<br> Compiling collectives/reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce_scatter.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX shared library ../../../../lib/libmkldnn.so<br> [ 25%] Built target mkldnn<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 25%] Linking CXX static library ../../../lib/libprotoc.a<br> [ 25%] Built target libprotoc<br> Scanning dependencies of target protoc<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/<strong>/src/google/protobuf/compiler/main.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX executable ../../../bin/protoc<br> [ 25%] Built target protoc<br> Scanning dependencies of target gen_onnx_proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/prof_dag.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/predictor_consts.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/torch.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/hsm.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/metanet.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2_legacy.proto<br> [ 25%] Running gen_proto.py on onnx/onnx.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Scanning dependencies of target Caffe2_PROTO<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o<br> [ 25%] Built target gen_onnx_proto<br> [ 25%] Running gen_proto.py on onnx/onnx-operators.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx-operators.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Scanning dependencies of target onnx_proto<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch.pb.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch.pb.cc.o<br> [ 26%] Linking CXX static library ../../lib/libonnx_proto.a<br> [ 26%] Built target onnx_proto<br> Scanning dependencies of target onnx<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o<br> [ 26%] Built target Caffe2_PROTO<br> Scanning dependencies of target Caffe2_perfkernels_avx2<br> [ 26%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/defs.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/common_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/experiments_functions.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/onnxifi_utils.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_registry.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/optimize.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_manager.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Scanning dependencies of target caffe2_protos<br> [ 27%] Linking CXX static library ../lib/libcaffe2_protos.a<br> [ 27%] Built target caffe2_protos<br> Scanning dependencies of target Caffe2_perfkernels_avx<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/common_avx.cc.o<br> [ 28%] Built target Caffe2_perfkernels_avx<br> [ 28%] Built target Caffe2_perfkernels_avx2<br> [ 28%] Linking CXX static library ../../lib/libonnx.a<br> [ 28%] Built target onnx<br> Scanning dependencies of target caffe2<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/DLConvertor.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorUtils.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUGenerator.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorGeometry.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/UndefinedType.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/Utils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/Context.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUGeneral.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUTypeDefault.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseTensorImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/ExpandUtils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/ComplexHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/detail/CPUGuardImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/CUDAHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/cpu/FlushDenormal.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Storage.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/context_base.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/thread_pool.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenCoreTest.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/StorageImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Formatting.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/LegacyTypeDispatch.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/register_symbols.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/VariableHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Tensor.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/interned_strings.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/TensorOptions.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Range.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ivalue.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Allocator.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenGeneral.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/UndefinedTensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Scalar.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/blob.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/intrusive_ptr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/TensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/UniqueVoidPtr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/type.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/OptionsGuard.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Embedding.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/SoftMax.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/DispatchStub.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Dropout.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorCompare.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LinearAlgebra.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/GridSampler.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ReduceOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/UnaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Linear.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Indexing.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PixelShuffle.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorIterator.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LegacyBridge.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TypeProperties.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Copy.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Loss.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/EmbeddingBag.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Normalization.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/WeightNorm.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Resize.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Convolution.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RoiPooling.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PackedSequence.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/LegacyDefinitions.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distance.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorFactories.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConvolutionTBC.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SummaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorTransformations.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Unique.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorIteratorReduce.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Pooling.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distributions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Memory.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorProperties.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Scalar.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorShape.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BinaryOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Activation.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LossCTC.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RNN.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConstantPadNd.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorConversions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BatchLinearAlgebra.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/sparse/SparseTensor.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/mkl/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkldnn/Conv.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUCopy.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUFloatType.cpp.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUHalfType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/RegisterCPU.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUFloatType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TypeDefault.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THGeneral.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THAllocator.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THSize.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THStorageFunctions.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensor.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorCopy.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorEvenMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorConv.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THBlas.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THLogAdd.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THDiskFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THMemoryFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THVector.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/vector/AVX.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/vector/AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/THNN/init.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/mkldnn/Runtime.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/utils/ideep_register.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/dropout_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/pool_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/momentum_sgd_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/local_response_normalization_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/relu_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/elementwise_sum_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/squeeze_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/utility_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_fusion_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/operator_fallback_ideep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/concat_split_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/spatial_batch_norm_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/fully_connected_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling functions.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/functions.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvlink fatal : Internal error: reference to deleted section<br> Makefile:83: recipe for target '/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o' failed<br> make[5]: *** [/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o] Error 1<br> Makefile:45: recipe for target 'devicelib' failed<br> make[4]: *** [devicelib] Error 2<br> Makefile:25: recipe for target 'src.build' failed<br> make[3]: *** [src.build] Error 2<br> CMakeFiles/nccl_external.dir/build.make:110: recipe for target 'nccl_external-prefix/src/nccl_external-stamp/nccl_external-build' failed<br> make[2]: *** [nccl_external-prefix/src/nccl_external-stamp/nccl_external-build] Error 2<br> CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/nccl_external.dir/all' failed<br> make[1]: *** [CMakeFiles/nccl_external.dir/all] Error 2<br> make[1]: *** Waiting for unfinished jobs....<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/layer_norm.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o<br> [ 57%] Linking CXX shared library ../lib/libcaffe2.so<br> [ 57%] Built target caffe2<br> Makefile:138: recipe for target 'all' failed<br> make: *** [all] Error 2<br> Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack --use-mkldnn --use-qnnpack caffe2'</li> </ul> <h3 dir="auto">Please note that this issue tracker is not a help form and this issue will be closed.</h3> <p dir="auto">We have a set of <a href="https://pytorch.org/resources" rel="nofollow">listed resources available on the website</a>. Our primary means of support is our discussion forum:</p> <ul dir="auto"> <li><a href="https://discuss.pytorch.org/" rel="nofollow">Discussion Forum</a></li> </ul>
1
<p dir="auto">Assume we are trying to learn a sequence to sequence map. For this we can use Recurrent and TimeDistributedDense layers. Now assume that the sequences have different lengths. We should pad both input and desired sequences with zeros, right? But how will the objective function handle the padded values? There is no choice to pass a mask to the objective function. Won't this bias the cost function?</p>
<p dir="auto">I am trying to implement the SRGAN model from the paper <a href="https://arxiv.org/abs/1609.04802" rel="nofollow">Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network</a>. Since this uses both a GAN and VGG Perceptual losses, I am using modified ActivityRegularizers to incorporate the various losses. I am using the latest Theano and Keras, and the model is for Theano only (I'm using Windows, no Tensorflow yet)</p> <p dir="auto">The full model architecture and the implementation of the loss are here : <a href="https://gist.github.com/titu1994/abe4bb62da23e5d8c1b3d23ca477f232">SRGAN regularizers gist</a></p> <p dir="auto">A simplified view of the entire model is:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/3048602/19019560/e78bfb44-88a9-11e6-864a-720c5e5b2ca0.jpg"><img src="https://cloud.githubusercontent.com/assets/3048602/19019560/e78bfb44-88a9-11e6-864a-720c5e5b2ca0.jpg" alt="srgan-simple-architecture" style="max-width: 100%;"></a></p> <p dir="auto">In this model, I am passing a 96 x 96 blurred low resolution image (LR) as input to the SR-ResNet network, and 384 x 384 high resolution images (HR) as input 2 and 3 to the Discriminator and VGG networks, as well as the outputs of the SR-ResNet.</p> <p dir="auto">The issue is that since original inputs to the SR-ResNet have a batch size of 8, Keras assumes that output batch size should also be 8. However, since we are merging the original high resolution images into both the discriminator and VGG networks, batch size becomes 16.</p> <p dir="auto">The reason for adding the original HR input images as Input2 and Input3 is that the ContentVGGRegularizer needs to compare the gram matrix of the HR inputs to the gram matrix of the generated outputs (G(LR)) from the generative model. Also, to train the discriminator network, we require the original images (D(G(LR)).</p> <p dir="auto">The error is fairly simple and understandable :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py&quot;, line 431, in &lt;module&gt; srgan_network.pre_train_network(coco_path, nb_epochs=20) File &quot;D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py&quot;, line 310, in pre_train_network self._train_network(image_dir, nb_epochs=nb_epochs) File &quot;D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py&quot;, line 365, in _train_network batch_size=self.batch_size // 2,nb_epoch=1, verbose=0) File &quot;D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py&quot;, line 1034, in fit batch_size=batch_size) File &quot;D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py&quot;, line 973, in _standardize_user_data check_array_lengths(x, y, sample_weights) File &quot;D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py&quot;, line 177, in check_array_lengths str(list(set_y)[0]) + ' target samples.') Exception: Input arrays should have the same number of samples as target arrays. Found 8 input samples and 16 target samples."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py", line 431, in &lt;module&gt; srgan_network.pre_train_network(coco_path, nb_epochs=20) File "D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py", line 310, in pre_train_network self._train_network(image_dir, nb_epochs=nb_epochs) File "D:/Users/Yue/PycharmProjects/Super Resolution using Generative Adversarial Networks/models.py", line 365, in _train_network batch_size=self.batch_size // 2,nb_epoch=1, verbose=0) File "D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py", line 1034, in fit batch_size=batch_size) File "D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py", line 973, in _standardize_user_data check_array_lengths(x, y, sample_weights) File "D:\Users\Yue\Anaconda3\lib\site-packages\keras-1.1.0-py3.4.egg\keras\engine\training.py", line 177, in check_array_lengths str(list(set_y)[0]) + ' target samples.') Exception: Input arrays should have the same number of samples as target arrays. Found 8 input samples and 16 target samples. </code></pre></div> <p dir="auto">My question is, is there any way to train this network without manually creating the train_function, getting updates, add regularizers and then use the train_function?</p> <p dir="auto">Or is there some other way to train such networks without appending the original inputs? I have not yet found a way to mask a portion of the input batch, which could potentially solve this problem (by passing the blurred and HR images to the SR-ResNet input), however this poses another challenge - LR images are 96 x 96, HR images are 384, 384).</p> <p dir="auto">Any solutions? I can only think of one right now, which is to duplicate most of the _make_train_function and _fit_loop code to bypass this check.</p>
0
<p dir="auto">by <strong>ianremmler</strong>:</p> <pre class="notranslate">What does 'go version' print? go version go1.3 linux/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. <a href="http://play.golang.org/p/gQM33-crSr" rel="nofollow">http://play.golang.org/p/gQM33-crSr</a> Running go build will, about 15% of the time, produce a seemingly spurious error. What happened? ian@tau:~/devel/go/src/github.com/ianremmler/foobar% go build # github.com/ianremmler/foobar ./foobar.go:31: cannot use f (type *C.foo) as type *C.struct_foo in argument to toGo ./foobar.go:32: cannot use gf.toC() (type *C.struct_foo) as type *C.foo in argument to _Cfunc_foofunc What should have happened instead? No error. Please provide any additional information below. This is a pared down example based on a wrapper for the chipmunk physics library that I forked and have been (mildy) maintaining: <a href="https://github.com/ianremmler/chipmunk">https://github.com/ianremmler/chipmunk</a> The error did not occur in earlier Go versions. The cyclically dependent C structs seem to be implicated as the error goes away if the bar pointer is removed from foo, or vice versa.</pre>
<p dir="auto">by <strong>ninkendo</strong>:</p> <pre class="notranslate">This is on a University server (I'm the admin) and I'm trying to get Go working on an NFS mount so all our Ubuntu servers can have the go compiler on it (so students can play around with it.) I can consistently compile Go from a directory like /tmp or /usr/src, but cloning the hg tree to a NFS-mounted direcory always results in a segfault. What steps will reproduce the problem? 1. Clone the mercurial tree to an NFS filesystem 2. Set GOBIN to any directory, on or off NFS 3. cd to $GOROOT/src and run ./all.bash What is the expected output? What do you see instead? Expected build to perform the same as it does on non-nfs filesystems. Instead, get the following: gopack grc _obj/runtime.a _go_.6 asm.6 cgocall.6 chan.6 closure.6 float.6 hashmap.6 iface.6 malloc.6 mcache.6 mcentral.6 mem.6 mfixalloc.6 mgc0.6 mheap.6 mheapmap64.6 msize.6 print.6 proc.6 reflect.6 rune.6 runtime.6 rt0.6 sema.6 signal.6 slice.6 string.6 symtab.6 sys.6 thread.6 traceback.6 make[1]: *** [_obj/runtime.a] Segmentation fault rm reflect.c string.c sema.c malloc.c make[1]: Leaving directory `/nfs/apps/go/src/pkg/runtime' make: *** [runtime.install] Error 2 I can reliably reproduce the segfault from $GOROOT/src/pkg/runtime and running the above gopack command. What is your $GOOS? $GOARCH? linux, amd64 (Ubuntu 8.04.3 LTS, kernel 2.6.24-24-server) Which revision are you sync'ed to? (hg log -l 1) changeset: 3975:b51fd2d6c160 Please provide any additional information below. strace dump is included. It looks like it's segfaulting trying to talk to winbind for user authentication? Not sure if gopack is doing any of this, or if it's library code... but it reliably works when $GOROOT is on a local filesystem.</pre> <p dir="auto">Attachments:</p> <ol dir="auto"> <li><a href="https://storage.googleapis.com/go-attachment/48/0/strace.txt" rel="nofollow">strace.txt</a> (9011 bytes)</li> </ol>
0
<p dir="auto">I ran into this problem several times already with different installation methods. This time i used brew to install scipy:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="brew tap homebrew/science brew tap samueljohn/python brew update brew install python pip install nose brew install scipy"><pre class="notranslate"><code class="notranslate">brew tap homebrew/science brew tap samueljohn/python brew update brew install python pip install nose brew install scipy </code></pre></div> <p dir="auto">If you then run the tests the following errors occur: <a href="https://gist.github.com/joernhees/5733199">https://gist.github.com/joernhees/5733199</a></p> <p dir="auto">A shortened version here:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ipython Python 2.7.5 (default, Jun 8 2013, 00:27:06) Type &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. IPython 0.13.2 -- An enhanced Interactive Python. ? -&gt; Introduction and overview of IPython's features. %quickref -&gt; Quick reference. help -&gt; Python's own help system. object? -&gt; Details about 'object', use 'object??' for extra details. In [1]: import scipy In [2]: scipy.test() Running unit tests for scipy NumPy version 1.7.1 NumPy is installed in /usr/local/lib/python2.7/site-packages/numpy SciPy version 0.12.0 SciPy is installed in /usr/local/lib/python2.7/site-packages/scipy Python version 2.7.5 (default, Jun 8 2013, 00:27:06) [GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] nose version 1.3.0 /usr/local/lib/python2.7/site-packages/numpy/lib/utils.py:139: DeprecationWarning: `scipy.lib.blas` is deprecated, use `scipy.linalg.blas` instead! warnings.warn(depdoc, DeprecationWarning) /usr/local/lib/python2.7/site-packages/numpy/lib/utils.py:139: DeprecationWarning: `scipy.lib.lapack` is deprecated, use `scipy.linalg.lapack` instead! warnings.warn(depdoc, DeprecationWarning) ...............................................K...............................................K..K........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................SSSSSS......SSSSSS......S..........K..............................................................................................................................................................................................................................................................................................K...................................................................................................................................................................................................../usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) ./usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) ./usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................FFF.....FFF..FF......FF..F..........FFF.....FFF..............FF..FF.FFF..FF..FF..FF..F..........FF..FFF.FFF.............F.......F....F.......F..............FFF......FF.............F...F...F....F...F...F..............FFF.FFF.FFF..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................K....................................................................K......................................................................................................................................................................KK.................................................................................................................................................................................................................................................................................................................................................................................................................................K........K.......................................................................................................................................................................................................................S................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'normal') ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;/usr/local/lib/python2.7/site-packages/nose/case.py&quot;, line 197, in runTest self.test(*self.arg) File &quot;/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py&quot;, line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 1179, in assert_allclose verbose=verbose, header=header) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal (mismatch 100.0%) x: array([[ 2.38156418e-01, -6.75444982e+09], [ -1.07853470e-01, -8.01245676e+09], [ 1.24683023e-01, -5.19757686e+09],... y: array([[ 2.38156418e-01, -5.70949789e+08], [ -1.07853470e-01, -4.05829392e+08], [ 1.24683023e-01, 6.25800146e+07],... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'buckling') ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;/usr/local/lib/python2.7/site-packages/nose/case.py&quot;, line 197, in runTest self.test(*self.arg) File &quot;/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py&quot;, line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 1179, in assert_allclose verbose=verbose, header=header) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling (mismatch 100.0%) x: array([[ 3.53755447e-01, -2.29114355e+04], [ -1.60204595e-01, -6.65625445e+04], [ 1.85203065e-01, -2.69012500e+04],... y: array([[ 3.53755447e-01, -8.88255444e+05], [ -1.60204595e-01, -2.39343354e+06], [ 1.85203065e-01, -3.96842525e+04],... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'cayley') ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;/usr/local/lib/python2.7/site-packages/nose/case.py&quot;, line 197, in runTest self.test(*self.arg) File &quot;/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py&quot;, line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 1179, in assert_allclose verbose=verbose, header=header) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley (mismatch 100.0%) x: array([[ -2.38156418e-01, 1.04661597e+09], [ 1.07853470e-01, 1.39930271e+09], [ -1.24683023e-01, 9.56906461e+08],... y: array([[ -2.38156418e-01, 7.63721281e+07], [ 1.07853470e-01, 1.25169905e+08], [ -1.24683023e-01, 2.91283130e+07],... ====================================================================== ... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;gen-symmetric&gt;, 'd', 2, 'SA', None, 0.5, &lt;function asarray at 0x10ad03e60&gt;, None, 'cayley') ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;/usr/local/lib/python2.7/site-packages/nose/case.py&quot;, line 197, in runTest self.test(*self.arg) File &quot;/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py&quot;, line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 1179, in assert_allclose verbose=verbose, header=header) File &quot;/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py&quot;, line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13 error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley (mismatch 100.0%) x: array([[-0.36892684, -0.01935691], [-0.26850996, -0.11053158], [-0.40976156, -0.13223572],... y: array([[-0.43633077, -0.01935691], [-0.25161386, -0.11053158], [-0.36756684, -0.13223572],... ---------------------------------------------------------------------- Ran 4831 tests in 54.169s FAILED (KNOWNFAIL=11, SKIP=14, failures=63) Out[2]: &lt;nose.result.TextTestResult run=4831 errors=0 failures=63&gt; In [3]:"><pre class="notranslate"><code class="notranslate">$ ipython Python 2.7.5 (default, Jun 8 2013, 00:27:06) Type "copyright", "credits" or "license" for more information. IPython 0.13.2 -- An enhanced Interactive Python. ? -&gt; Introduction and overview of IPython's features. %quickref -&gt; Quick reference. help -&gt; Python's own help system. object? -&gt; Details about 'object', use 'object??' for extra details. In [1]: import scipy In [2]: scipy.test() Running unit tests for scipy NumPy version 1.7.1 NumPy is installed in /usr/local/lib/python2.7/site-packages/numpy SciPy version 0.12.0 SciPy is installed in /usr/local/lib/python2.7/site-packages/scipy Python version 2.7.5 (default, Jun 8 2013, 00:27:06) [GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] nose version 1.3.0 /usr/local/lib/python2.7/site-packages/numpy/lib/utils.py:139: DeprecationWarning: `scipy.lib.blas` is deprecated, use `scipy.linalg.blas` instead! warnings.warn(depdoc, DeprecationWarning) /usr/local/lib/python2.7/site-packages/numpy/lib/utils.py:139: DeprecationWarning: `scipy.lib.lapack` is deprecated, use `scipy.linalg.lapack` instead! warnings.warn(depdoc, DeprecationWarning) ...............................................K...............................................K..K........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................SSSSSS......SSSSSS......S..........K..............................................................................................................................................................................................................................................................................................K...................................................................................................................................................................................................../usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) /usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) ./usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) ./usr/local/lib/python2.7/site-packages/scipy/misc/pilutil.py:230: DeprecationWarning: fromstring() is deprecated. Please call frombytes() instead. image = Image.fromstring('L',shape,bytedata.tostring()) .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................FFF.....FFF..FF......FF..F..........FFF.....FFF..............FF..FF.FFF..FF..FF..FF..F..........FF..FFF.FFF.............F.......F....F.......F..............FFF......FF.............F...F...F....F...F...F..............FFF.FFF.FFF..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................K....................................................................K......................................................................................................................................................................KK.................................................................................................................................................................................................................................................................................................................................................................................................................................K........K.......................................................................................................................................................................................................................S................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'normal') ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/nose/case.py", line 197, in runTest self.test(*self.arg) File "/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose verbose=verbose, header=header) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal (mismatch 100.0%) x: array([[ 2.38156418e-01, -6.75444982e+09], [ -1.07853470e-01, -8.01245676e+09], [ 1.24683023e-01, -5.19757686e+09],... y: array([[ 2.38156418e-01, -5.70949789e+08], [ -1.07853470e-01, -4.05829392e+08], [ 1.24683023e-01, 6.25800146e+07],... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'buckling') ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/nose/case.py", line 197, in runTest self.test(*self.arg) File "/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose verbose=verbose, header=header) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling (mismatch 100.0%) x: array([[ 3.53755447e-01, -2.29114355e+04], [ -1.60204595e-01, -6.65625445e+04], [ 1.85203065e-01, -2.69012500e+04],... y: array([[ 3.53755447e-01, -8.88255444e+05], [ -1.60204595e-01, -2.39343354e+06], [ 1.85203065e-01, -3.96842525e+04],... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;std-symmetric&gt;, 'f', 2, 'LM', None, 0.5, &lt;class 'scipy.sparse.csr.csr_matrix'&gt;, None, 'cayley') ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/nose/case.py", line 197, in runTest self.test(*self.arg) File "/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose verbose=verbose, header=header) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=0.00178814, atol=0.000357628 error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley (mismatch 100.0%) x: array([[ -2.38156418e-01, 1.04661597e+09], [ 1.07853470e-01, 1.39930271e+09], [ -1.24683023e-01, 9.56906461e+08],... y: array([[ -2.38156418e-01, 7.63721281e+07], [ 1.07853470e-01, 1.25169905e+08], [ -1.24683023e-01, 2.91283130e+07],... ====================================================================== ... ====================================================================== FAIL: test_arpack.test_symmetric_modes(True, &lt;gen-symmetric&gt;, 'd', 2, 'SA', None, 0.5, &lt;function asarray at 0x10ad03e60&gt;, None, 'cayley') ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/nose/case.py", line 197, in runTest self.test(*self.arg) File "/usr/local/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose verbose=verbose, header=header) File "/usr/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13 error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley (mismatch 100.0%) x: array([[-0.36892684, -0.01935691], [-0.26850996, -0.11053158], [-0.40976156, -0.13223572],... y: array([[-0.43633077, -0.01935691], [-0.25161386, -0.11053158], [-0.36756684, -0.13223572],... ---------------------------------------------------------------------- Ran 4831 tests in 54.169s FAILED (KNOWNFAIL=11, SKIP=14, failures=63) Out[2]: &lt;nose.result.TextTestResult run=4831 errors=0 failures=63&gt; In [3]: </code></pre></div>
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1853" rel="nofollow">http://projects.scipy.org/scipy/ticket/1853</a> on 2013-02-26 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zyv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zyv">@zyv</a>, assigned to trac user jakevdp.</em></p> <p dir="auto">Hi,</p> <p dir="auto">I've just upgraded to the latest NumPy / SciPy avaiable via pip and am seeing lots of test failures in SciPy, even though the test suite of NumPy Passes without any problems.</p> <p dir="auto">I'm running Ubuntu 10.10 and Python 2.7.1 from ActiveState on a x86_64 i5 CPU.</p> <p dir="auto">My configuration is as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -c 'import numpy.distutils.__config__ as npc; npc.show()' atlas_threads_info: libraries = ['lapack', 'ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3/atlas', '/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = f77 include_dirs = ['/usr/include/atlas'] blas_opt_info: libraries = ['ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = c include_dirs = ['/usr/include/atlas'] atlas_blas_threads_info: libraries = ['ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = c include_dirs = ['/usr/include/atlas'] lapack_opt_info: libraries = ['lapack', 'ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3/atlas', '/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = f77 include_dirs = ['/usr/include/atlas'] lapack_mkl_info: NOT AVAILABLE blas_mkl_info: NOT AVAILABLE mkl_info: NOT AVAILABLE"><pre class="notranslate"><code class="notranslate">$ python -c 'import numpy.distutils.__config__ as npc; npc.show()' atlas_threads_info: libraries = ['lapack', 'ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3/atlas', '/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = f77 include_dirs = ['/usr/include/atlas'] blas_opt_info: libraries = ['ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = c include_dirs = ['/usr/include/atlas'] atlas_blas_threads_info: libraries = ['ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = c include_dirs = ['/usr/include/atlas'] lapack_opt_info: libraries = ['lapack', 'ptf77blas', 'ptcblas', 'atlas'] library_dirs = ['/usr/lib/atlas-corei7sse3/atlas', '/usr/lib/atlas-corei7sse3'] define_macros = [('NO_ATLAS_INFO', -1)] language = f77 include_dirs = ['/usr/include/atlas'] lapack_mkl_info: NOT AVAILABLE blas_mkl_info: NOT AVAILABLE mkl_info: NOT AVAILABLE </code></pre></div> <p dir="auto">Please let me know if I can provide any additional useful information.</p>
1
<p dir="auto"><strong>System information</strong>.</p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in Keras):</li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04):</li> <li>TensorFlow installed from (source or binary):</li> <li>TensorFlow version (use command below): 2.4.1, 2.6.4</li> <li>Python version:</li> <li>Bazel version (if compiling from source):</li> <li>GPU model and memory:</li> <li>Exact command to reproduce:</li> </ul> <p dir="auto"><strong>Describe the problem</strong>.</p> <p dir="auto">I want to build sinmple model which consist of different version of same model, here which is <code class="notranslate">efficient-net</code>. The model build successfully. The training also works fine. But until now, I would get the following error if I use <code class="notranslate">ModelCheckpoint</code> to save model in the runtime.</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="RuntimeError: Unable to create link (name already exists)"><pre class="notranslate"><span class="pl-ent">RuntimeError</span>: <span class="pl-s">Unable to create link (name already exists)</span></pre></div> <p dir="auto">To solve this, one of (dirty) workaround (suggestion get from web) is to rename weight variable. But that raise another issue at the time of model saving due to unexpected suffix with variable name.</p> <blockquote> <p dir="auto">/opt/conda/lib/python3.7/site-packages/tensorflow/python/ops/resource_variable_ops.py in write_object_proto_for_resource_variable(resource_variable, proto, options)<br> 2319 raise ValueError("Cowardly refusing to save variable {} because of"<br> 2320 " unexpected suffix which won't be restored.".format(<br> -&gt; 2321 resource_variable.name))<br> 2322 proto.variable.name = meta_graph._op_name(resource_variable.name) # pylint: disable=protected-access<br> 2323 proto.variable.trainable = resource_variable.trainable</p> </blockquote> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ValueError: Cowardly refusing to save variable normalization/mean:00 because of unexpected suffix which won't be restored."><pre class="notranslate"><span class="pl-ent">ValueError</span>: <span class="pl-s">Cowardly refusing to save </span> <span class="pl-s">variable normalization/mean:00 because of unexpected suffix which won't be restored.</span></pre></div> <p dir="auto"><strong>Standalone code to reproduce the issue</strong>.</p> <p dir="auto">Here is the code to reproduce.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from tensorflow.keras.applications import ( EfficientNetB0, EfficientNetB1, EfficientNetB2 ) image_sizes_maps = { 'B0': [EfficientNetB0, 224], 'B1': [EfficientNetB1, 240], 'B2': [EfficientNetB2, 260], }"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">tensorflow</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">applications</span> <span class="pl-k">import</span> ( <span class="pl-v">EfficientNetB0</span>, <span class="pl-v">EfficientNetB1</span>, <span class="pl-v">EfficientNetB2</span> ) <span class="pl-s1">image_sizes_maps</span> <span class="pl-c1">=</span> { <span class="pl-s">'B0'</span>: [<span class="pl-v">EfficientNetB0</span>, <span class="pl-c1">224</span>], <span class="pl-s">'B1'</span>: [<span class="pl-v">EfficientNetB1</span>, <span class="pl-c1">240</span>], <span class="pl-s">'B2'</span>: [<span class="pl-v">EfficientNetB2</span>, <span class="pl-c1">260</span>], }</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def get_model(): base_embeds = [] model_input = tf.keras.Input(shape=(None, None, 3),name='effnets') for key,value in image_sizes_maps.items(): base_model, image_size = value x = tf.image.resize(model_input, [image_size, image_size], name=f'resize_{key}') z = base_model( include_top=False, )(x) base_embeds.append(z) model = tf.keras.Model(model_input, base_embeds) return model"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">get_model</span>(): <span class="pl-s1">base_embeds</span> <span class="pl-c1">=</span> [] <span class="pl-s1">model_input</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-v">Input</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">None</span>, <span class="pl-c1">None</span>, <span class="pl-c1">3</span>),<span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'effnets'</span>) <span class="pl-k">for</span> <span class="pl-s1">key</span>,<span class="pl-s1">value</span> <span class="pl-c1">in</span> <span class="pl-s1">image_sizes_maps</span>.<span class="pl-en">items</span>(): <span class="pl-s1">base_model</span>, <span class="pl-s1">image_size</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">image</span>.<span class="pl-en">resize</span>(<span class="pl-s1">model_input</span>, [<span class="pl-s1">image_size</span>, <span class="pl-s1">image_size</span>], <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">f'resize_<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">key</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-en">base_model</span>( <span class="pl-s1">include_top</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, )(<span class="pl-s1">x</span>) <span class="pl-s1">base_embeds</span>.<span class="pl-en">append</span>(<span class="pl-s1">z</span>) <span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-v">Model</span>(<span class="pl-s1">model_input</span>, <span class="pl-s1">base_embeds</span>) <span class="pl-k">return</span> <span class="pl-s1">model</span></pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MODEL = get_model()"><pre class="notranslate"><span class="pl-v">MODEL</span> <span class="pl-c1">=</span> <span class="pl-en">get_model</span>()</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# DIRTY SOLUTION # IF WE DON'T DO IT, THEN IT WILL CAUSE # Unable to create link (name already exists) for i in range(len(MODEL.weights)): MODEL.weights[i]._handle_name = MODEL.weights[i].name + str(i)"><pre class="notranslate"><span class="pl-c"># DIRTY SOLUTION</span> <span class="pl-c"># IF WE DON'T DO IT, THEN IT WILL CAUSE </span> <span class="pl-c"># Unable to create link (name already exists)</span> <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-en">len</span>(<span class="pl-v">MODEL</span>.<span class="pl-s1">weights</span>)): <span class="pl-v">MODEL</span>.<span class="pl-s1">weights</span>[<span class="pl-s1">i</span>].<span class="pl-s1">_handle_name</span> <span class="pl-c1">=</span> <span class="pl-v">MODEL</span>.<span class="pl-s1">weights</span>[<span class="pl-s1">i</span>].<span class="pl-s1">name</span> <span class="pl-c1">+</span> <span class="pl-en">str</span>(<span class="pl-s1">i</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MODEL.save(&quot;model&quot;)"><pre class="notranslate"><span class="pl-v">MODEL</span>.<span class="pl-en">save</span>(<span class="pl-s">"model"</span>)</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2022-09-04 21:11:19.660403: W tensorflow/python/util/util.cc:348] Sets are not currently considered sequences, but this may change in the future, so consider avoiding using them. --------------------------------------------------------------------------- ValueError Traceback (most recent call last) /tmp/ipykernel_17/3402985690.py in &lt;module&gt; ----&gt; 1 MODEL.save(&quot;E0_E6&quot;) ValueError: Cowardly refusing to save variable normalization/mean:00 because of unexpected suffix which won't be restored."><pre class="notranslate"><code class="notranslate">2022-09-04 21:11:19.660403: W tensorflow/python/util/util.cc:348] Sets are not currently considered sequences, but this may change in the future, so consider avoiding using them. --------------------------------------------------------------------------- ValueError Traceback (most recent call last) /tmp/ipykernel_17/3402985690.py in &lt;module&gt; ----&gt; 1 MODEL.save("E0_E6") ValueError: Cowardly refusing to save variable normalization/mean:00 because of unexpected suffix which won't be restored. </code></pre></div> <p dir="auto"><strong>Additional Content</strong></p> <p dir="auto">With this, you can check if there is duplicate variable name.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from collections import Counter def non_unique(l): def low(x): return x.lower() if isinstance(x, str) else x c = Counter(map(low, l)) return [x for x in l if c[low(x)] &gt; 1] hold_w = [] for i, w in enumerate(MODEL.weights): hold_w.append(w.name) # It will return empty if all variable names are unique. non_unique(hold_w)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">collections</span> <span class="pl-k">import</span> <span class="pl-v">Counter</span> <span class="pl-k">def</span> <span class="pl-en">non_unique</span>(<span class="pl-s1">l</span>): <span class="pl-k">def</span> <span class="pl-en">low</span>(<span class="pl-s1">x</span>): <span class="pl-k">return</span> <span class="pl-s1">x</span>.<span class="pl-en">lower</span>() <span class="pl-k">if</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">x</span>, <span class="pl-s1">str</span>) <span class="pl-k">else</span> <span class="pl-s1">x</span> <span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-v">Counter</span>(<span class="pl-en">map</span>(<span class="pl-s1">low</span>, <span class="pl-s1">l</span>)) <span class="pl-k">return</span> [<span class="pl-s1">x</span> <span class="pl-k">for</span> <span class="pl-s1">x</span> <span class="pl-c1">in</span> <span class="pl-s1">l</span> <span class="pl-k">if</span> <span class="pl-s1">c</span>[<span class="pl-en">low</span>(<span class="pl-s1">x</span>)] <span class="pl-c1">&gt;</span> <span class="pl-c1">1</span>] <span class="pl-s1">hold_w</span> <span class="pl-c1">=</span> [] <span class="pl-k">for</span> <span class="pl-s1">i</span>, <span class="pl-s1">w</span> <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>(<span class="pl-v">MODEL</span>.<span class="pl-s1">weights</span>): <span class="pl-s1">hold_w</span>.<span class="pl-en">append</span>(<span class="pl-s1">w</span>.<span class="pl-s1">name</span>) <span class="pl-c"># It will return empty if all variable names are unique.</span> <span class="pl-en">non_unique</span>(<span class="pl-s1">hold_w</span>)</pre></div>
<p dir="auto">I am not very clear about the timesteps in the input of RNN and LSTM. In my understanding, if we set timesteps as K, Keras will look back for K steps (So, the RNN or LSTM will be unrolled for K times) and make the prediction. Is it correct?</p> <p dir="auto">Also, How does LSTM in Keras unroll itself? Which parameter decides the length of TruncatedBPTT? Thanks</p>
0
<p dir="auto"><a href="https://github.com/sindresorhus/atom-jshint/issues/70">https://github.com/sindresorhus/atom-jshint/issues/70</a><br> I was hoping to toggle packages in command + shift + p menu because its handy and easy. Maybe adding a quick package menu using a different hotkey just to toggle them?</p>
<p dir="auto">Inspired by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="67312584" data-permission-text="Title is private" data-url="https://github.com/steelbrain/linter/issues/496" data-hovercard-type="issue" data-hovercard-url="/steelbrain/linter/issues/496/hovercard" href="https://github.com/steelbrain/linter/issues/496">steelbrain/linter#496</a></p> <p dir="auto">Currently there is no way to enable / disable any package from the command palette, which can lead to some clunky workflows and packages adding enablement commands when they shouldn't have to.</p> <p dir="auto">(Sublime's Package Control also allows for this behavior from the command palette.)</p>
1
<p dir="auto">I am not an advanced user of CSS so forgive me if this issue is due to my misunderstanding.</p> <p dir="auto">I am using the latest (v2.0.3) bootstrap Hero example to show this issue. When I create a single_long_word of text greater than about 1/2 the column size (due to a large font or simply a large number of characters in a single word), the text extends past the column before the layout adjusts as I make the browser window smaller</p> <p dir="auto">All I had to do was change the text in the column to make a large or long word and then reduce the window size of the browser. The column layouts do eventually adjust to allow for more width, but not before the long word exceeds the boundary of the column it is in.</p> <p dir="auto">This happens for both normal and fluid containers in with a responsive grid.</p> <p dir="auto">It is easy to duplicate in Chrome by just going to this page and editing the text after inspecting a column element.</p> <p dir="auto"><a href="http://twitter.github.com/bootstrap/examples/hero.html">http://twitter.github.com/bootstrap/examples/hero.html</a></p> <p dir="auto">I have also posted the issue to <a href="http://stackoverflow.com/questions/10778699/bootstrap-grid-not-adjusting-before-text-flows-outside-of-container" rel="nofollow">http://stackoverflow.com/questions/10778699/bootstrap-grid-not-adjusting-before-text-flows-outside-of-container</a> but have not yet received any suggestions.</p>
<p dir="auto"><em>I'm mostly interested in only the <a class="team-mention js-team-mention notranslate" data-error-text="Failed to load team members" data-id="482721" data-permission-text="Team members are private" data-url="/orgs/twbs/teams/team/members" data-hovercard-type="team" data-hovercard-url="/orgs/twbs/teams/team/hovercard" href="https://github.com/orgs/twbs/teams/team">@twbs/team</a>'s feedback, so this is locked to just us for now.</em></p> <p dir="auto">Do we need to add a FAQs section to the docs? Most of the time, I think duplicate issues stem from bugs that don't last very long. However, I have noticed a decent amount of how-to type things. Some FAQ-like docs might help a lot of folks out. The idea isn't to reproduce what's in the docs, but to build on them.</p> <p dir="auto">A few ideas popped into my head (some better than others):</p> <ul dir="auto"> <li>How do you change the <code class="notranslate">font-size</code>?</li> <li>How do you override something?</li> <li>How do you change or remove the grid gutters?</li> <li>Why don't you use Stylus? Or the Sass syntax and HAML?</li> <li>What are the <code class="notranslate">.map</code> files?</li> <li>What are the typeahead options?</li> <li>How do I add submenus to dropdowns?</li> <li>How can I enable JavaScript form validation?</li> <li>Other icon font options?</li> </ul> <p dir="auto">Things that shouldn't be FAQs and should be clearly stated in the docs (perhaps?):</p> <ul dir="auto"> <li>How do you enable the theme?</li> <li>What's <code class="notranslate">box-sizing: border-box;</code> and why do you use it? <em>Kind of already addressed</em></li> <li>Adding another grid tier</li> <li>What's mobile-first?</li> </ul> <p dir="auto">Maybe that distinction isn't clear, but I'm curious if folks think it's helpful to have a separate thing or just implement this stuff into the docs where appropriate.</p>
0
<p dir="auto">Functions like <code class="notranslate">np.zeros</code>, <code class="notranslate">np.empty</code>, <code class="notranslate">np.ones</code> and <code class="notranslate">np.full</code> can be used to allocate large arrays easily. However, they always allocate memory, even if the array contains no data because one of the shape elements is 0. They, in particular, seem to allocate memory ignoring the 0s in the shape (<code class="notranslate">np.product([x for x in shape if x != 0])</code>).</p> <p dir="auto">If any of the shape elements in zero, there's no possibility of any memory accesses ever, so the allocation seems unnecessary?</p> <p dir="auto">If the shape has a zero, one can get an equivalent array using <code class="notranslate">broadcast_to</code>, which won't allocate.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np import tracemalloc as tm def test(f): tm.start() arr = f((0, 100, 0, 200, 0, 300, 0), dtype=np.uint8) mem, _ = tm.get_traced_memory() tm.stop() print(f&quot;{f.__name__}: allocated memory: {mem} bytes, array size: {arr.size}&quot;) def full(shape, dtype): return np.full(shape, 123, dtype=dtype) test(np.zeros) test(np.empty) test(np.ones) test(full) # workaround, use broadcasting def broadcast(shape, dtype): return np.broadcast_to(dtype(), shape) test(broadcast)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">import</span> <span class="pl-s1">tracemalloc</span> <span class="pl-k">as</span> <span class="pl-s1">tm</span> <span class="pl-k">def</span> <span class="pl-en">test</span>(<span class="pl-s1">f</span>): <span class="pl-s1">tm</span>.<span class="pl-en">start</span>() <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-en">f</span>((<span class="pl-c1">0</span>, <span class="pl-c1">100</span>, <span class="pl-c1">0</span>, <span class="pl-c1">200</span>, <span class="pl-c1">0</span>, <span class="pl-c1">300</span>, <span class="pl-c1">0</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">uint8</span>) <span class="pl-s1">mem</span>, <span class="pl-s1">_</span> <span class="pl-c1">=</span> <span class="pl-s1">tm</span>.<span class="pl-en">get_traced_memory</span>() <span class="pl-s1">tm</span>.<span class="pl-en">stop</span>() <span class="pl-en">print</span>(<span class="pl-s">f"<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">f</span>.<span class="pl-s1">__name__</span><span class="pl-kos">}</span></span>: allocated memory: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">mem</span><span class="pl-kos">}</span></span> bytes, array size: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">arr</span>.<span class="pl-s1">size</span><span class="pl-kos">}</span></span>"</span>) <span class="pl-k">def</span> <span class="pl-en">full</span>(<span class="pl-s1">shape</span>, <span class="pl-s1">dtype</span>): <span class="pl-k">return</span> <span class="pl-s1">np</span>.<span class="pl-en">full</span>(<span class="pl-s1">shape</span>, <span class="pl-c1">123</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">dtype</span>) <span class="pl-en">test</span>(<span class="pl-s1">np</span>.<span class="pl-s1">zeros</span>) <span class="pl-en">test</span>(<span class="pl-s1">np</span>.<span class="pl-s1">empty</span>) <span class="pl-en">test</span>(<span class="pl-s1">np</span>.<span class="pl-s1">ones</span>) <span class="pl-en">test</span>(<span class="pl-s1">full</span>) <span class="pl-c"># workaround, use broadcasting</span> <span class="pl-k">def</span> <span class="pl-en">broadcast</span>(<span class="pl-s1">shape</span>, <span class="pl-s1">dtype</span>): <span class="pl-k">return</span> <span class="pl-s1">np</span>.<span class="pl-en">broadcast_to</span>(<span class="pl-en">dtype</span>(), <span class="pl-s1">shape</span>) <span class="pl-en">test</span>(<span class="pl-s1">broadcast</span>)</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="zeros: allocated memory: 6000248 bytes, array size: 0 empty: allocated memory: 6000080 bytes, array size: 0 ones: allocated memory: 6000080 bytes, array size: 0 full: allocated memory: 6000080 bytes, array size: 0 broadcast: allocated memory: 3680 bytes, array size: 0"><pre class="notranslate"><code class="notranslate">zeros: allocated memory: 6000248 bytes, array size: 0 empty: allocated memory: 6000080 bytes, array size: 0 ones: allocated memory: 6000080 bytes, array size: 0 full: allocated memory: 6000080 bytes, array size: 0 broadcast: allocated memory: 3680 bytes, array size: 0 </code></pre></div> <h3 dir="auto">Numpy/Python version information:</h3> <ul dir="auto"> <li><code class="notranslate">numpy.__version__</code>: 1.18.4</li> <li><code class="notranslate">sys.version</code>: 3.6.9 (default, Jul 10 2019, 12:25:55) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4)]</li> </ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; a = np.array([], dtype=np.int64).reshape((6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3)) &gt;&gt;&gt; np.testing.assert_equal(a, a[()]) python(73392,0x113ae6dc0) malloc: can't allocate region *** mach_vm_map(size=15746400002048) failed (error code=3) python(73392,0x113ae6dc0) malloc: *** set a breakpoint in malloc_error_break to debug python(73392,0x113ae6dc0) malloc: can't allocate region *** mach_vm_map(size=15746400002048) failed (error code=3) python(73392,0x113ae6dc0) malloc: *** set a breakpoint in malloc_error_break to debug Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 349, in assert_equal return assert_array_equal(actual, desired, err_msg, verbose) File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 936, in assert_array_equal verbose=verbose, header='Arrays are not equal') File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 770, in assert_array_compare flagged = func_assert_same_pos(x, y, func=isnan, hasval='nan') File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 746, in func_assert_same_pos raise AssertionError(msg) AssertionError: Arrays are not equal x and y nan location mismatch: x: array([], shape=(6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3), dtype=int64) y: array([], shape=(6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3), dtype=int64)"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">int64</span>).<span class="pl-en">reshape</span>((<span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>)) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">np</span>.<span class="pl-s1">testing</span>.<span class="pl-en">assert_equal</span>(<span class="pl-s1">a</span>, <span class="pl-s1">a</span>[()]) <span class="pl-en">python</span>(<span class="pl-c1">73392</span>,<span class="pl-c1">0x113ae6dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-s1">can</span>'<span class="pl-s1">t</span> <span class="pl-s1">allocate</span> <span class="pl-s1">region</span> <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-en">mach_vm_map</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">15746400002048</span>) <span class="pl-s1">failed</span> (<span class="pl-s1">error</span> <span class="pl-s1">code</span><span class="pl-c1">=</span><span class="pl-c1">3</span>) <span class="pl-s1">python</span>(<span class="pl-c1">73392</span>,<span class="pl-c1">0x113ae6dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-s1">set</span> <span class="pl-s1">a</span> <span class="pl-s1">breakpoint</span> <span class="pl-c1">in</span> <span class="pl-s1">malloc_error_break</span> <span class="pl-s1">to</span> <span class="pl-s1">debug</span> <span class="pl-en">python</span>(<span class="pl-c1">73392</span>,<span class="pl-c1">0x113ae6dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-s1">can</span>'<span class="pl-s1">t</span> <span class="pl-s1">allocate</span> <span class="pl-s1">region</span> <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-en">mach_vm_map</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">15746400002048</span>) <span class="pl-en">failed</span> (<span class="pl-s1">error</span> <span class="pl-s1">code</span><span class="pl-c1">=</span><span class="pl-c1">3</span>) <span class="pl-en">python</span>(<span class="pl-c1">73392</span>,<span class="pl-c1">0x113ae6dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-s1">set</span> <span class="pl-s1">a</span> <span class="pl-s1">breakpoint</span> <span class="pl-c1">in</span> <span class="pl-s1">malloc_error_break</span> <span class="pl-s1">to</span> <span class="pl-s1">debug</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>): <span class="pl-v">File</span> <span class="pl-s">"&lt;stdin&gt;"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1</span>, <span class="pl-c1">in</span> <span class="pl-c1">&lt;</span><span class="pl-s1">module</span><span class="pl-c1">&gt;</span> <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">349</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_equal</span> <span class="pl-s1">return</span> <span class="pl-en">assert_array_equal</span>(<span class="pl-s1">actual</span>, <span class="pl-s1">desired</span>, <span class="pl-s1">err_msg</span>, <span class="pl-s1">verbose</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">936</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_array_equal</span> <span class="pl-s1">verbose</span><span class="pl-c1">=</span><span class="pl-s1">verbose</span>, <span class="pl-s1">header</span><span class="pl-c1">=</span><span class="pl-s">'Arrays are not equal'</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">770</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_array_compare</span> <span class="pl-s1">flagged</span> <span class="pl-c1">=</span> <span class="pl-en">func_assert_same_pos</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">func</span><span class="pl-c1">=</span><span class="pl-s1">isnan</span>, <span class="pl-s1">hasval</span><span class="pl-c1">=</span><span class="pl-s">'nan'</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">746</span>, <span class="pl-c1">in</span> <span class="pl-s1">func_assert_same_pos</span> <span class="pl-s1">raise</span> <span class="pl-v">AssertionError</span>(<span class="pl-s1">msg</span>) <span class="pl-v">AssertionError</span>: <span class="pl-v">Arrays</span> <span class="pl-s1">are</span> <span class="pl-c1">not</span> <span class="pl-s1">equal</span> <span class="pl-s1">x</span> <span class="pl-c1">and</span> <span class="pl-s1">y</span> <span class="pl-s1">nan</span> <span class="pl-s1">location</span> <span class="pl-s1">mismatch</span>: <span class="pl-s1">x</span>: <span class="pl-en">array</span>([], <span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int64</span>) <span class="pl-s1">y</span>: <span class="pl-en">array</span>([], <span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int64</span>)</pre></div> <p dir="auto">I also sometimes get MemoryError from similar examples, for instance, with <code class="notranslate">shape=[7, 2, 6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3]</code>, and even <code class="notranslate">np.all</code> gives warnings from malloc.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; a = np.array([], dtype=np.int64).reshape([7, 2, 6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3]) &gt;&gt;&gt; np.all(a == a[()]) python(77502,0x10cb79dc0) malloc: can't allocate region *** mach_vm_map(size=220449600000000) failed (error code=3) python(77502,0x10cb79dc0) malloc: *** set a breakpoint in malloc_error_break to debug python(77502,0x10cb79dc0) malloc: can't allocate region *** mach_vm_map(size=220449600000000) failed (error code=3) python(77502,0x10cb79dc0) malloc: *** set a breakpoint in malloc_error_break to debug False"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">int64</span>).<span class="pl-en">reshape</span>([<span class="pl-c1">7</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>]) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">np</span>.<span class="pl-en">all</span>(<span class="pl-s1">a</span> <span class="pl-c1">==</span> <span class="pl-s1">a</span>[()]) <span class="pl-en">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-s1">can</span>'<span class="pl-s1">t</span> <span class="pl-s1">allocate</span> <span class="pl-s1">region</span> <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-en">mach_vm_map</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">220449600000000</span>) <span class="pl-s1">failed</span> (<span class="pl-s1">error</span> <span class="pl-s1">code</span><span class="pl-c1">=</span><span class="pl-c1">3</span>) <span class="pl-s1">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-s1">set</span> <span class="pl-s1">a</span> <span class="pl-s1">breakpoint</span> <span class="pl-c1">in</span> <span class="pl-s1">malloc_error_break</span> <span class="pl-s1">to</span> <span class="pl-s1">debug</span> <span class="pl-en">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-s1">can</span>'<span class="pl-s1">t</span> <span class="pl-s1">allocate</span> <span class="pl-s1">region</span> <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-en">mach_vm_map</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">220449600000000</span>) <span class="pl-en">failed</span> (<span class="pl-s1">error</span> <span class="pl-s1">code</span><span class="pl-c1">=</span><span class="pl-c1">3</span>) <span class="pl-en">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-s1">set</span> <span class="pl-s1">a</span> <span class="pl-s1">breakpoint</span> <span class="pl-c1">in</span> <span class="pl-s1">malloc_error_break</span> <span class="pl-s1">to</span> <span class="pl-s1">debug</span> <span class="pl-v">False</span></pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; np.testing.assert_equal(a, a[()]) python(77502,0x10cb79dc0) malloc: can't allocate region *** mach_vm_map(size=220449600000000) failed (error code=3) python(77502,0x10cb79dc0) malloc: *** set a breakpoint in malloc_error_break to debug Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 349, in assert_equal return assert_array_equal(actual, desired, err_msg, verbose) File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 936, in assert_array_equal verbose=verbose, header='Arrays are not equal') File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 770, in assert_array_compare flagged = func_assert_same_pos(x, y, func=isnan, hasval='nan') File &quot;/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py&quot;, line 728, in func_assert_same_pos x_id = func(x) MemoryError: Unable to allocate 0 bytes for an array with shape (7, 2, 6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3) and data type bool"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">np</span>.<span class="pl-s1">testing</span>.<span class="pl-en">assert_equal</span>(<span class="pl-s1">a</span>, <span class="pl-s1">a</span>[()]) <span class="pl-en">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-s1">can</span>'<span class="pl-s1">t</span> <span class="pl-s1">allocate</span> <span class="pl-s1">region</span> <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-en">mach_vm_map</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">220449600000000</span>) <span class="pl-s1">failed</span> (<span class="pl-s1">error</span> <span class="pl-s1">code</span><span class="pl-c1">=</span><span class="pl-c1">3</span>) <span class="pl-s1">python</span>(<span class="pl-c1">77502</span>,<span class="pl-c1">0x10cb79dc0</span>) <span class="pl-s1">malloc</span>: <span class="pl-c1">**</span><span class="pl-c1">*</span> <span class="pl-s1">set</span> <span class="pl-s1">a</span> <span class="pl-s1">breakpoint</span> <span class="pl-c1">in</span> <span class="pl-s1">malloc_error_break</span> <span class="pl-s1">to</span> <span class="pl-s1">debug</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>): <span class="pl-v">File</span> <span class="pl-s">"&lt;stdin&gt;"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1</span>, <span class="pl-c1">in</span> <span class="pl-c1">&lt;</span><span class="pl-s1">module</span><span class="pl-c1">&gt;</span> <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">349</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_equal</span> <span class="pl-s1">return</span> <span class="pl-en">assert_array_equal</span>(<span class="pl-s1">actual</span>, <span class="pl-s1">desired</span>, <span class="pl-s1">err_msg</span>, <span class="pl-s1">verbose</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">936</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_array_equal</span> <span class="pl-s1">verbose</span><span class="pl-c1">=</span><span class="pl-s1">verbose</span>, <span class="pl-s1">header</span><span class="pl-c1">=</span><span class="pl-s">'Arrays are not equal'</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">770</span>, <span class="pl-c1">in</span> <span class="pl-s1">assert_array_compare</span> <span class="pl-s1">flagged</span> <span class="pl-c1">=</span> <span class="pl-en">func_assert_same_pos</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">func</span><span class="pl-c1">=</span><span class="pl-s1">isnan</span>, <span class="pl-s1">hasval</span><span class="pl-c1">=</span><span class="pl-s">'nan'</span>) <span class="pl-v">File</span> <span class="pl-s">"/Users/aaronmeurer/anaconda3/lib/python3.7/site-packages/numpy/testing/_private/utils.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">728</span>, <span class="pl-c1">in</span> <span class="pl-s1">func_assert_same_pos</span> <span class="pl-s1">x_id</span> <span class="pl-c1">=</span> <span class="pl-en">func</span>(<span class="pl-s1">x</span>) <span class="pl-v">MemoryError</span>: <span class="pl-v">Unable</span> <span class="pl-s1">to</span> <span class="pl-s1">allocate</span> <span class="pl-c1">0</span> <span class="pl-s1">bytes</span> <span class="pl-k">for</span> <span class="pl-s1">an</span> <span class="pl-s1">array</span> <span class="pl-k">with</span> <span class="pl-en">shape</span> (<span class="pl-c1">7</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>) <span class="pl-c1">and</span> <span class="pl-s1">data</span> <span class="pl-s1">type</span> <span class="pl-s1">bool</span></pre></div> <p dir="auto">Note:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; shape = [7, 2, 6, 10, 6, 10, 0, 5, 1, 9, 10, 2, 6, 2, 6, 0, 10, 9, 5, 1, 5, 1, 10, 3] &gt;&gt;&gt; np.prod([i for i in shape if i]) 220449600000000"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">shape</span> <span class="pl-c1">=</span> [<span class="pl-c1">7</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">6</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">9</span>, <span class="pl-c1">10</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">2</span>, <span class="pl-c1">6</span>, <span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-c1">9</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">3</span>] <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">np</span>.<span class="pl-en">prod</span>([<span class="pl-s1">i</span> <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-s1">shape</span> <span class="pl-k">if</span> <span class="pl-s1">i</span>]) <span class="pl-c1">220449600000000</span></pre></div> <p dir="auto">It isn't clear to me if this is the sort of thing that should work. I would expect empty arrays to effectively ignore the nonzero entries in the shape except for broadcasting purposes. But maybe there are technical reasons why this cannot happen?</p> <h3 dir="auto">Numpy/Python version information:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import sys, numpy; print(numpy.__version__, sys.version) 1.18.1 3.7.3 | packaged by conda-forge | (default, Mar 27 2019, 15:43:19) [Clang 4.0.1 (tags/RELEASE_401/final)]"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-k">import</span> <span class="pl-s1">sys</span>, <span class="pl-s1">numpy</span>; <span class="pl-en">print</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">__version__</span>, <span class="pl-s1">sys</span>.<span class="pl-s1">version</span>) <span class="pl-c1">1.18</span>.<span class="pl-c1">1</span> <span class="pl-c1">3.7</span>.<span class="pl-c1">3</span> <span class="pl-c1">|</span> <span class="pl-s1">packaged</span> <span class="pl-s1">by</span> <span class="pl-s1">conda</span><span class="pl-c1">-</span><span class="pl-s1">forge</span> <span class="pl-c1">|</span> (<span class="pl-s1">default</span>, <span class="pl-v">Mar</span> <span class="pl-c1">27</span> <span class="pl-c1">2019</span>, <span class="pl-c1">15</span>:<span class="pl-c1">43</span>:<span class="pl-c1">19</span>) [<span class="pl-v">Clang</span> <span class="pl-c1">4.0</span><span class="pl-c1">.1</span> (<span class="pl-s1">tags</span><span class="pl-c1">/</span><span class="pl-v">RELEASE_401</span><span class="pl-c1">/</span><span class="pl-s1">final</span>)]</pre></div>
1
<p dir="auto">Is there any plan to extend axe-core(<a href="https://www.deque.com/axe/" rel="nofollow">https://www.deque.com/axe/</a>) support for Playwright Java?</p> <p dir="auto">I am currently using Playwright Java for functional automation testing and realized that there is no support for accessibility testing in Playwright java. However, it's there with Playwright Node.js.</p>
<p dir="auto">I think accessibility testing is equally important to functional and visual testing for a web application.</p> <p dir="auto">I am currently using Playwright-Java as an automation tool for functional testing and there is no support for accessibility testing with Playwright-Java. However, there is support available for Playwright-Node.js.</p> <p dir="auto">Could you please consider extending accessibility testing support to Playwright Java as well?</p>
1
<p dir="auto">Call me crazy but.</p> <p dir="auto">What if I need to create a highly consuming task I don't want to be runned by Deno? Is there any way to program Rust code inside Deno?</p> <p dir="auto">Or do I have to set up a completely new Rust server to do it and call it as an API?</p> <p dir="auto">I honestly don't see a way to do this without making a hole in the whole Deno structure, but being able to use Rust as more than just the interpreter looked like an idea that's worth giving a shot.</p>
<p dir="auto">I know that using protobufs simplifies the writing of native modules, but how does importing them work?<br> What's the structure of it supposed to be?<br> How do we specify how the native module should be built?</p>
1
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li>9.2.1</li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>macOS 10.14.6</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>8.5.0</li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Not crash when trying to load the module.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Crashes when trying to load the module</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">I have put together 2 sample repositories to reproduce this bug. If there are any problems following these steps I will happily fix any problems with them.</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ mkdir electron_9_native_add_on_bug $ cd electron_9_native_add_on_bug $ git clone https://github.com/mastergberry/SimpleNativeAddon $ git clone https://github.com/mastergberry/SimpleElectronApp $ cd SimpleNativeAddon $ yarn install $ yarn build $ cp build/Release/SimpleNativeAddon.node ../SimpleElectronApp/app/ $ cd ../SimpleElectronApp $ yarn install $ yarn dev"><pre class="notranslate">$ mkdir electron_9_native_add_on_bug $ <span class="pl-c1">cd</span> electron_9_native_add_on_bug $ git clone https://github.com/mastergberry/SimpleNativeAddon $ git clone https://github.com/mastergberry/SimpleElectronApp $ <span class="pl-c1">cd</span> SimpleNativeAddon $ yarn install $ yarn build $ cp build/Release/SimpleNativeAddon.node ../SimpleElectronApp/app/ $ <span class="pl-c1">cd</span> ../SimpleElectronApp $ yarn install $ yarn dev</pre></div> <p dir="auto">These steps above should start the application and then have it crash on boot. So far I have reproduced this on Windows and macOS, have not tried Linux yet.</p> <p dir="auto">Related issues: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="677932337" data-permission-text="Title is private" data-url="https://github.com/nodejs/nan/issues/898" data-hovercard-type="issue" data-hovercard-url="/nodejs/nan/issues/898/hovercard" href="https://github.com/nodejs/nan/issues/898">nodejs/nan#898</a> &amp; <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="648044988" data-permission-text="Title is private" data-url="https://github.com/wilix-team/iohook/issues/241" data-hovercard-type="issue" data-hovercard-url="/wilix-team/iohook/issues/241/hovercard" href="https://github.com/wilix-team/iohook/issues/241">wilix-team/iohook#241</a></p> <p dir="auto">My guess is it has something to do with the flags that cmake-js uses to compile versus node-gyp. From my testing disabling the inline functions on Windows is a temporary workaround...but this is a hacky solution. Hoping that there is a core issue that can be resolved here.</p> <h3 dir="auto">Additional Information</h3> <p dir="auto">Crash log in macOS:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Electron [44087] Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron Identifier: com.github.Electron Version: 9.2.1 (9.2.1) Code Type: X86-64 (Native) Parent Process: ??? [44086] Responsible: Electron [44087] User ID: 501 Date/Time: 2020-08-21 10:01:01.660 +0200 OS Version: Mac OS X 10.14.6 (18G95) Report Version: 12 Bridge OS Version: 3.0 (14Y904) Anonymous UUID: 791D7EFB-539D-0D72-76DC-AA97D4D2545B Sleep/Wake UUID: 6F67BB50-2640-423E-B5A8-0C7B3F279C07 Time Awake Since Boot: 55000 seconds Time Since Wake: 2000 seconds System Integrity Protection: enabled Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: EXC_I386_GPFLT Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [44087] Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 SimpleNativeAddon.node 0x000000011263779f Nan::imp::FunctionCallbackWrapper(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;) + 31 1 com.github.Electron.framework 0x00000001078835bf v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 16815 2 com.github.Electron.framework 0x0000000107882ae1 v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 14033 3 com.github.Electron.framework 0x0000000107882172 v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 11618 4 com.github.Electron.framework 0x00000001082b5438 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 484152 5 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 6 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 7 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 8 com.github.Electron.framework 0x0000000108246c1a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31514 9 com.github.Electron.framework 0x00000001082469f8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 30968 10 com.github.Electron.framework 0x000000010793ff1c v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle&lt;v8::internal::Object&gt;*) + 3228 11 com.github.Electron.framework 0x000000010793f366 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle&lt;v8::internal::Object&gt;*) + 230 12 com.github.Electron.framework 0x0000000107830728 v8::Function::Call(v8::Local&lt;v8::Context&gt;, v8::Local&lt;v8::Value&gt;, int, v8::Local&lt;v8::Value&gt;*) + 408 13 com.github.Electron.framework 0x000000010c9ab212 node::EmitAsyncDestroy(node::Environment*, node::async_context) + 200994 14 com.github.Electron.framework 0x000000010cae7be6 uv_timer_get_repeat + 118 15 com.github.Electron.framework 0x000000010caeb2c7 uv_run + 231 16 com.github.Electron.framework 0x0000000106b7dcee ElectronInitializeICUandStartNode + 1486622 17 com.github.Electron.framework 0x000000010926b2af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16957871 18 com.github.Electron.framework 0x000000010927b48a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17023882 19 com.github.Electron.framework 0x000000010927b219 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17023257 20 com.github.Electron.framework 0x00000001092cbdd1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17353937 21 com.github.Electron.framework 0x00000001092c756a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17335402 22 com.github.Electron.framework 0x00000001092cb69f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17352095 23 com.apple.CoreFoundation 0x00007fff47d4a683 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 24 com.apple.CoreFoundation 0x00007fff47d4a629 __CFRunLoopDoSource0 + 108 25 com.apple.CoreFoundation 0x00007fff47d2dfeb __CFRunLoopDoSources0 + 195 26 com.apple.CoreFoundation 0x00007fff47d2d5b5 __CFRunLoopRun + 1189 27 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 28 com.apple.HIToolbox 0x00007fff46f8c1ab RunCurrentEventLoopInMode + 292 29 com.apple.HIToolbox 0x00007fff46f8bee5 ReceiveNextEventCommon + 603 30 com.apple.HIToolbox 0x00007fff46f8bc76 _BlockUntilNextEventMatchingListInModeWithFilter + 64 31 com.apple.AppKit 0x00007fff4532479d _DPSNextEvent + 1135 32 com.apple.AppKit 0x00007fff4532348b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361 33 com.apple.AppKit 0x00007fff45569cbf -[NSApplication _doModalLoop:peek:] + 379 34 com.apple.AppKit 0x00007fff4556875a __35-[NSApplication runModalForWindow:]_block_invoke_2 + 64 35 com.apple.AppKit 0x00007fff45568707 __35-[NSApplication runModalForWindow:]_block_invoke + 70 36 com.apple.AppKit 0x00007fff45567f71 _NSTryRunModal + 100 37 com.apple.AppKit 0x00007fff45567e56 -[NSApplication runModalForWindow:] + 128 38 com.apple.AppKit 0x00007fff457dea35 __19-[NSAlert runModal]_block_invoke_2 + 158 39 com.apple.AppKit 0x00007fff457de984 __19-[NSAlert runModal]_block_invoke + 70 40 com.apple.AppKit 0x00007fff45567f71 _NSTryRunModal + 100 41 com.apple.AppKit 0x00007fff456caa63 -[NSAlert runModal] + 121 42 com.apple.AppKit 0x00007fff4535a538 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 917 43 com.apple.AppKit 0x00007fff4535a164 -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 25 44 com.apple.AppKit 0x00007fff4535a116 -[NSPersistentUIRestorer promptToIgnorePersistentState] + 236 45 com.apple.AppKit 0x00007fff45328c1b -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:completionHandler:] + 171 46 com.apple.AppKit 0x00007fff45328a5e -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 539 47 com.apple.AppKit 0x00007fff453286bb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 688 48 com.apple.Foundation 0x00007fff49fd0700 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 286 49 com.apple.Foundation 0x00007fff49fd057d _NSAppleEventManagerGenericHandler + 102 50 com.apple.AE 0x00007fff48f52397 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 1815 51 com.apple.AE 0x00007fff48f51c29 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 41 52 com.apple.AE 0x00007fff48f51b01 aeProcessAppleEvent + 414 53 com.apple.HIToolbox 0x00007fff46f958b7 AEProcessAppleEvent + 54 54 com.apple.AppKit 0x00007fff45324abd _DPSNextEvent + 1935 55 com.apple.AppKit 0x00007fff4532348b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361 56 com.apple.AppKit 0x00007fff4531d5a8 -[NSApplication run] + 699 57 com.github.Electron.framework 0x00000001092cc5ec v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17356012 58 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 59 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 60 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 61 com.github.Electron.framework 0x000000010861c3b3 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4051635 62 com.github.Electron.framework 0x000000010861ddc2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4058306 63 com.github.Electron.framework 0x0000000108619be8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4041448 64 com.github.Electron.framework 0x00000001084c2f66 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2637414 65 com.github.Electron.framework 0x00000001084c2bbb v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2636475 66 com.github.Electron.framework 0x000000010aa480e8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 41979880 67 com.github.Electron.framework 0x0000000107742b74 ElectronInitializeICUandStartNode + 13827492 68 com.github.Electron.framework 0x0000000106a12d94 ElectronMain + 84 69 com.github.Electron 0x00000001069dc110 0x1069db000 + 4368 70 libdyld.dylib 0x00007fff73c873d5 start + 1 Thread 1: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 5:: ThreadPoolServiceThread 0 libsystem_kernel.dylib 0x00007fff73dc40a6 kevent64 + 10 1 com.github.Electron.framework 0x00000001092db941 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17418305 2 com.github.Electron.framework 0x00000001092db7d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17417942 3 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 4 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 5 com.github.Electron.framework 0x0000000109284274 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17060212 6 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 6:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 7:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 5 com.github.Electron.framework 0x000000010928d584 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17097860 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 8:: Chrome_IOThread 0 libsystem_kernel.dylib 0x00007fff73dc40a6 kevent64 + 10 1 com.github.Electron.framework 0x00000001092db941 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17418305 2 com.github.Electron.framework 0x00000001092db7d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17417942 3 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 4 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 5 com.github.Electron.framework 0x000000010861fe66 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4066662 6 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 9:: MemoryInfra 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x0000000109234e47 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16735559 5 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 6 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 7 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 8 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 9 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 10 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 11 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff73dc278e kevent + 10 1 com.github.Electron.framework 0x000000010cafbe4a uv_free_interface_addresses + 1370 2 com.github.Electron.framework 0x000000010caeb3b1 uv_run + 465 3 com.github.Electron.framework 0x000000010ca60766 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 902 4 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 14: 0 libsystem_kernel.dylib 0x00007fff73dbc266 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x000000010caf7480 uv_sem_wait + 16 2 com.github.Electron.framework 0x000000010caad5b3 node::inspector::Agent::GetWsUrl() const + 83 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 15:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff47d2e1ee __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff47d2d75c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff49f9132f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001092cc2f1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17355249 7 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 8 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 9 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 10 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 11 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 12 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 16:: CrShutdownDetector 0 libsystem_kernel.dylib 0x00007fff73dbdef2 read + 10 1 com.github.Electron.framework 0x0000000106ae821f ElectronInitializeICUandStartNode + 873551 2 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 17:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff47d2e1ee __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff47d2d75c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff49f9132f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001092cc2f1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17355249 7 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 8 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 9 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 10 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 11 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 12 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 18:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 19:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 20:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 21:: CompositorTileWorker1 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x00000001092c50a4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17325988 3 com.github.Electron.framework 0x000000010a17d1ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32759981 4 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 22:: ThreadPoolSingleThreadForegroundBlocking0 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x000000010928d09a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096602 5 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 6 com.github.Electron.framework 0x000000010928d674 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098100 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 23: 0 libsystem_kernel.dylib 0x00007fff73dbc266 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x000000010caf7480 uv_sem_wait + 16 2 com.github.Electron.framework 0x0000000106b7dbe8 ElectronInitializeICUandStartNode + 1486360 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 24:: ThreadPoolSingleThreadSharedBackgroundBlocking1 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x000000010928d09a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096602 5 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 6 com.github.Electron.framework 0x000000010928d5b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17097908 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x080406e90aa004e1 rbx: 0x00007ffee921b350 rcx: 0x00007ffee921b488 rdx: 0x0000000000000000 rdi: 0x00003d36093313b1 rsi: 0x00003d360a8a286d rbp: 0x00007ffee921b250 rsp: 0x00007ffee921b220 r8: 0x00003d3609330795 r9: 0x00003d360804030d r10: 0x0000000000000000 r11: 0x00007ffee921b3c0 r12: 0x00007ffee921b2b0 r13: 0x00007ffee921b318 r14: 0x00007ffee921b2b0 r15: 0x0000000112637780 rip: 0x000000011263779f rfl: 0x0000000000010206 cr2: 0x00007f80a4eed070 Logical CPU: 0 Error Code: 0x00000000 Trap Number: 13 Binary Images: 0x1069db000 - 0x106a03ff7 +com.github.Electron (9.2.1 - 9.2.1) &lt;B9D044CA-EB1B-3B25-B0B1-0CC03DE1E5CB&gt; /Users/USER/*/Electron.app/Contents/MacOS/Electron 0x106a10000 - 0x10d91cf4f +com.github.Electron.framework (9.2.1) &lt;FF0CC33B-DE47-39EC-859D-0362A56F0D6B&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework 0x10e0b5000 - 0x10e0d0fff +com.github.Squirrel (1.0 - 1) &lt;E4398068-33D3-3A00-9DBE-5ACC9B022501&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10e0f2000 - 0x10e155ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) &lt;701B20DE-3ADD-3643-B52A-E05744C30DB3&gt; /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10e1c7000 - 0x10e1dbfff +org.mantle.Mantle (1.0 - ???) &lt;31915DD6-48E6-3706-A076-C9D4CE17F4F6&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10e3d9000 - 0x10e44370f dyld (655.1.1) &lt;DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A&gt; /usr/lib/dyld 0x10e4a4000 - 0x10e742fff +libffmpeg.dylib (0) &lt;AD9DC742-629A-30AF-B7F5-8770B46B9BE9&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib 0x11250e000 - 0x112511047 libobjc-trampolines.dylib (756.2) &lt;5795A048-3940-3801-90CE-33D1B1AF81F4&gt; /usr/lib/libobjc-trampolines.dylib 0x112636000 - 0x112637ffb +SimpleNativeAddon.node (0) &lt;D8B8E420-56C9-3809-856A-9FA8F66F2183&gt; /Users/USER/*/SimpleNativeAddon.node 0x7fff3c454000 - 0x7fff3c7adfff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) &lt;AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559&gt; /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff3c7b0000 - 0x7fff3c8bcfff com.apple.AMDMTLBronzeDriver (2.11.20 - 2.1.1) &lt;1D8E8E3B-88F4-35B1-8E83-AE74B558C26C&gt; /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff4239f000 - 0x7fff426d0ff7 com.apple.driver.AppleIntelSKLGraphicsMTLDriver (12.10.12 - 12.1.0) &lt;F3C4A632-1F56-37D8-B6DC-4F5940FD7D63&gt; /System/Library/Extensions/AppleIntelSKLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsMTLDriver 0x7fff43d2c000 - 0x7fff43f08ffb com.apple.avfoundation (2.0 - 1550.4) &lt;5854207B-6106-3DA4-80B6-36C42D042F26&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff43f09000 - 0x7fff43fcefff com.apple.audio.AVFAudio (1.0 - ???) &lt;D454A339-2FC6-3EF6-992F-D676046612DB&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff440d6000 - 0x7fff440d6fff com.apple.Accelerate (1.11 - Accelerate 1.11) &lt;762942CB-CFC9-3A0C-9645-A56523A06426&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff440d7000 - 0x7fff440edff7 libCGInterfaces.dylib (506.22) &lt;1B6C92D9-F4B8-37BA-9635-94C4A56098CE&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff440ee000 - 0x7fff44787fef com.apple.vImage (8.1 - ???) &lt;53FA3611-894E-3158-A654-FBD2F70998FE&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff44788000 - 0x7fff44a01ff3 libBLAS.dylib (1243.200.4) &lt;417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff44a02000 - 0x7fff44a74ffb libBNNS.dylib (38.250.1) &lt;538D12A2-9B9D-3E22-9896-F90F6E69C06E&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff44a75000 - 0x7fff44e1eff3 libLAPACK.dylib (1243.200.4) &lt;92175DF4-863A-3780-909A-A3E5C410F2E9&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff44e1f000 - 0x7fff44e34feb libLinearAlgebra.dylib (1243.200.4) &lt;CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff44e35000 - 0x7fff44e3aff3 libQuadrature.dylib (3.200.2) &lt;1BAE7E22-2862-379F-B334-A3756067730F&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff44e3b000 - 0x7fff44eb7ff3 libSparse.dylib (79.200.5) &lt;E78B33D3-672A-3C53-B512-D3DDB2E9AC8D&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff44eb8000 - 0x7fff44ecbfe3 libSparseBLAS.dylib (1243.200.4) &lt;E9243341-DB77-37C1-97C5-3DFA00DD70FA&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff44ecc000 - 0x7fff450b3ff7 libvDSP.dylib (671.250.4) &lt;7B110627-A9C1-3FB7-A077-0C7741BA25D8&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff450b4000 - 0x7fff45167ff7 libvMisc.dylib (671.250.4) &lt;D5BA4812-BFFC-3CD0-B382-905CD8555DA6&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff45168000 - 0x7fff45168fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) &lt;74288115-EF61-30B6-843F-0593B31D4929&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff4530a000 - 0x7fff460bfffb com.apple.AppKit (6.9 - 1671.60.107) &lt;2F7E5984-E89A-3451-A3DF-FAAA509CF884&gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff46111000 - 0x7fff46111fff com.apple.ApplicationServices (50.1 - 50.1) &lt;84097DEB-E2FC-3901-8DD7-A670EA2274E0&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff46112000 - 0x7fff4617dfff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) &lt;A258DA73-114B-3102-A056-4AAAD3CEB9DD&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff46216000 - 0x7fff4632dfff libFontParser.dylib (228.6.2.3) &lt;3602D55B-3B9E-3B3A-A814-08C1244A8AE4&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff4632e000 - 0x7fff46370fff libFontRegistry.dylib (228.12.2.3) &lt;2A56347B-2809-3407-A8B4-2AB88E484062&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff463ca000 - 0x7fff463fcfff libTrueTypeScaler.dylib (228.6.2.3) &lt;7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff46461000 - 0x7fff46465ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) &lt;C0D9E23C-ABA0-39DE-A4EB-5A41C5499056&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff46500000 - 0x7fff46552ff7 com.apple.HIServices (1.22 - 628) &lt;2BE461FF-80B9-30D3-A574-AED5724B1C1B&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff46553000 - 0x7fff46562fff com.apple.LangAnalysis (1.7.0 - 1.7.0) &lt;F5617A2A-FEA6-3832-B5BA-C2111B98786F&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff46563000 - 0x7fff465acff7 com.apple.print.framework.PrintCore (14.2 - 503.8) &lt;57C2FE32-0E74-3079-B626-C2D52F2D2717&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff465ad000 - 0x7fff465e6ff7 com.apple.QD (3.12 - 407.2) &lt;28C7D39F-59C9-3314-BECC-67045487229C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff465e7000 - 0x7fff465f3fff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) &lt;5E7B9BD4-122B-3012-A044-3259C97E7509&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff465f4000 - 0x7fff4686bff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) &lt;04F482F1-E1C1-3955-8A6C-8AA152AA06F3&gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff4686d000 - 0x7fff4686dfff com.apple.audio.units.AudioUnit (1.14 - 1.14) &lt;ABC54269-002D-310D-9654-46CF960F863E&gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff46bc6000 - 0x7fff46f67fff com.apple.CFNetwork (978.0.7 - 978.0.7) &lt;B2133D0D-1399-3F17-80F0-313E3A241C89&gt; /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff46f7c000 - 0x7fff46f7cfff com.apple.Carbon (158 - 158) &lt;56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff46f7d000 - 0x7fff46f80ffb com.apple.CommonPanels (1.2.6 - 98) &lt;1CD6D56D-8EC7-3528-8CBC-FC69533519B5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff46f81000 - 0x7fff47278fff com.apple.HIToolbox (2.1.1 - 918.7) &lt;13F69D4C-D19F-3E09-9231-1978D783A556&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff47279000 - 0x7fff4727cff3 com.apple.help (1.3.8 - 66) &lt;A08517EB-8958-36C9-AEE0-1A8FEEACBE3F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff4727d000 - 0x7fff47282ff7 com.apple.ImageCapture (9.0 - 1534.2) &lt;DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff47283000 - 0x7fff47318ff3 com.apple.ink.framework (10.9 - 225) &lt;7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff47319000 - 0x7fff47331ff7 com.apple.openscripting (1.7 - 179.1) &lt;9B8C1ECC-5864-3E21-9149-863E884EA25C&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff47351000 - 0x7fff47352ff7 com.apple.print.framework.Print (14.2 - 267.4) &lt;A7A9D2A0-D4E0-35EF-A0F7-50521F707C33&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff47353000 - 0x7fff47355ff7 com.apple.securityhi (9.0 - 55006) &lt;05717F77-7A7B-37E6-AB3E-03F063E9095B&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff47356000 - 0x7fff4735cff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) &lt;3CC050FB-EBCB-3087-8EA5-F378C8F99217&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff4747e000 - 0x7fff4747efff com.apple.Cocoa (6.11 - 23) &lt;8D092DD2-0CA4-34C9-872C-8BBFAE1995A4&gt; /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff4748c000 - 0x7fff475dbff7 com.apple.ColorSync (4.13.0 - 3345.6) &lt;31648BB6-7239-3D0E-81B1-BCF51FEF557F&gt; /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff47767000 - 0x7fff477edfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &lt;1E8E64E6-0E58-375A-97F7-07CB4EE181AC&gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff47851000 - 0x7fff4787bffb com.apple.CoreBluetooth (1.0 - 1) &lt;A73F1709-DD18-3052-9F22-C0015278834B&gt; /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff4787c000 - 0x7fff47c01fef com.apple.CoreData (120 - 866.6) &lt;132CB39B-8D58-30FA-B8AD-49BFFF34B293&gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff47c02000 - 0x7fff47cf2ff7 com.apple.CoreDisplay (101.3 - 110.18) &lt;0EB2A997-FCAD-3D17-B140-9829961E5327&gt; /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff47cf3000 - 0x7fff48137fe7 com.apple.CoreFoundation (6.9 - 1575.19) &lt;B2850F42-CE01-3156-B121-FD4777290C8F&gt; /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff48139000 - 0x7fff487c8fff com.apple.CoreGraphics (2.0 - 1265.9) &lt;BC95B558-EF77-3A57-A0BC-11606C778991&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff487ca000 - 0x7fff48aeafff com.apple.CoreImage (14.4.0 - 750.0.140) &lt;11026E39-D2FF-3CF6-8ACE-7BA293F9853E&gt; /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff48b64000 - 0x7fff48bbaff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) &lt;015D7611-2CC6-3B40-9639-43FB80222239&gt; /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff48bbd000 - 0x7fff48de6fff com.apple.CoreML (1.0 - 1) &lt;9EC1FED2-BA47-307B-A326-43C4D05166E7&gt; /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML 0x7fff48de7000 - 0x7fff48eebfff com.apple.CoreMedia (1.0 - 2290.13) &lt;A739B93D-23C2-3A34-8D61-6AC924B9634F&gt; /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff48eec000 - 0x7fff48f47fff com.apple.CoreMediaIO (900.0 - 5050.1) &lt;63944D63-D138-3774-BAB4-A95679469A43&gt; /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff48f48000 - 0x7fff48f48fff com.apple.CoreServices (946 - 946) &lt;6EC9F377-EBD8-3358-92D1-6586F6F1E8E9&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff48f49000 - 0x7fff48fc5ff7 com.apple.AE (773 - 773) &lt;55AE7C9E-27C3-30E9-A047-3B92A6FD53B4&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff48fc6000 - 0x7fff4929dfff com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) &lt;CB87F0C7-2CD6-3983-8E32-B6A2EC925352&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff4929e000 - 0x7fff492e6ff7 com.apple.DictionaryServices (1.2 - 284.16.4) &lt;746EB200-DC51-30AE-9CBC-608A7B4CC8DA&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff492e7000 - 0x7fff492efffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) &lt;8406D379-8D33-3611-861B-7ABD26DB50D2&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff492f0000 - 0x7fff494a1ff7 com.apple.LaunchServices (946 - 946) &lt;A0C91634-9410-38E8-BC11-7A5A369E6BA5&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff494a2000 - 0x7fff49540ff7 com.apple.Metadata (10.7.0 - 1191.57) &lt;BFFAED00-2560-318A-BB8F-4E7E5123EC61&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff49541000 - 0x7fff4958bff7 com.apple.CoreServices.OSServices (946 - 946) &lt;20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff4958c000 - 0x7fff495f3ff7 com.apple.SearchKit (1.4.0 - 1.4.0) &lt;DA08AA6F-A6F1-36C0-87F4-E26294E51A3A&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff495f4000 - 0x7fff49615ff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) &lt;487A8464-729E-305A-B5D1-E3FE8EB9CFC5&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff49920000 - 0x7fff49a82ff3 com.apple.CoreText (352.0 - 584.26.3.2) &lt;59919B0C-CBD5-3877-8D6F-D6048F1E5F42&gt; /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff49a83000 - 0x7fff49ac3ff3 com.apple.CoreVideo (1.8 - 281.4) &lt;10CF8E52-07E3-382B-8091-2CEEEFFA69B4&gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff49ac4000 - 0x7fff49b53fff com.apple.framework.CoreWLAN (13.0 - 1375.2) &lt;BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92&gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff49cd6000 - 0x7fff49d84fff com.apple.DiscRecording (9.0.3 - 9030.4.5) &lt;D7A28B57-C025-3D44-BB17-82243B7B91BC&gt; /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff49daa000 - 0x7fff49dafffb com.apple.DiskArbitration (2.7 - 2.7) &lt;F481F2C0-884E-3265-8111-ABBEC93F0920&gt; /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff49f72000 - 0x7fff49f74ff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) &lt;205B0C3E-4E8D-3347-A993-469F06ABBFF9&gt; /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff49f75000 - 0x7fff4a322ffb com.apple.Foundation (6.9 - 1575.19) &lt;A85BF812-B784-36B9-89BB-E29772B0708C&gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff4a391000 - 0x7fff4a3c0ffb com.apple.GSS (4.0 - 2.0) &lt;E2B90D08-3857-3155-9FCC-07D778988EC9&gt; /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff4a3c1000 - 0x7fff4a3daff3 com.apple.GameController (1.0 - 1) &lt;9339D37B-54EA-31C5-A4A5-2135288BA992&gt; /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff4a4c0000 - 0x7fff4a5cafff com.apple.Bluetooth (6.0.14 - 6.0.14d3) &lt;C2D1A774-2390-363D-8215-BF51FFCB6CCA&gt; /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff4a62d000 - 0x7fff4a6bcfff com.apple.framework.IOKit (2.0.2 - 1483.260.4) &lt;8A90F547-86EF-3DFB-92FE-0E2C0376DD84&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff4a6be000 - 0x7fff4a6cdffb com.apple.IOSurface (255.6.1 - 255.6.1) &lt;85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE&gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff4a6ce000 - 0x7fff4a720ff3 com.apple.ImageCaptureCore (1.0 - 1534.2) &lt;27942C51-8108-3ED9-B37E-7C365A31EC2D&gt; /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff4a721000 - 0x7fff4a8acfef com.apple.ImageIO.framework (3.3.0 - 1850.2) &lt;75E46A31-D87D-35CE-86A4-96A50971FDB2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff4a8ad000 - 0x7fff4a8b1ffb libGIF.dylib (1850.2) &lt;4774EBDF-583B-3DDD-A0E1-9F427CB6A074&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff4a8b2000 - 0x7fff4a98efef libJP2.dylib (1850.2) &lt;697BB77F-A682-339F-8659-35432962432D&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff4a98f000 - 0x7fff4a9b4feb libJPEG.dylib (1850.2) &lt;171A8AC4-AADA-376F-9F2C-B9C978DB1007&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff4ac77000 - 0x7fff4ac9dfeb libPng.dylib (1850.2) &lt;FBCEE909-F573-3AD6-A45F-AF32612BF8A2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff4ac9e000 - 0x7fff4aca0ffb libRadiance.dylib (1850.2) &lt;56907025-D5CE-3A9E-ACCB-A376C2599853&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff4aca1000 - 0x7fff4aceefe7 libTIFF.dylib (1850.2) &lt;F59557C9-C761-3E6F-85D1-0FBFFD53ED5C&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff4afe9000 - 0x7fff4be49fff com.apple.JavaScriptCore (14607 - 14607.3.9) &lt;9B7D9E8B-619D-34A1-8FA9-E23C0EA3CD02&gt; /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff4be61000 - 0x7fff4be7afff com.apple.Kerberos (3.0 - 1) &lt;DB1E0679-37E1-3B93-9789-32F63D660C3B&gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff4befd000 - 0x7fff4bf1bfff com.apple.CoreAuthentication.SharedUtils (1.0 - 425.270.3) &lt;DDEAC106-D051-385A-9F74-CD9BE230D336&gt; /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff4bf1c000 - 0x7fff4bf30fff com.apple.LocalAuthentication (1.0 - 425.270.3) &lt;23CD2E0C-5A3A-348D-986F-58F302E4FEA4&gt; /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff4c134000 - 0x7fff4c13efff com.apple.MediaAccessibility (1.0 - 114.4) &lt;76C449C5-DB45-3D7F-BFAD-3DACEF15DA21&gt; /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff4c153000 - 0x7fff4c1edffb com.apple.MediaPlayer (1.0 - 1.0) &lt;B29D3221-A7E1-3DA9-AF9C-5EA8B15841D4&gt; /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff4c1ee000 - 0x7fff4c894fff com.apple.MediaToolbox (1.0 - 2290.13) &lt;71BB5D76-34CA-3A30-AECF-24BE29FCC275&gt; /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff4c896000 - 0x7fff4c93eff7 com.apple.Metal (162.2 - 162.2) &lt;FFF7DFF3-7C4E-32C6-A0B5-C356079D3B7C&gt; /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff4c940000 - 0x7fff4c959ff3 com.apple.MetalKit (1.0 - 113) &lt;51CDE966-54A7-3556-971B-1173E9986BB8&gt; /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit 0x7fff4c95a000 - 0x7fff4c979ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) &lt;44CE8362-E972-3697-AD6F-15BC863BAEB8&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff4c97a000 - 0x7fff4c9f6fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) &lt;EE8440DA-66DF-3923-ABBC-E0543211C069&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff4c9f7000 - 0x7fff4ca1efff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) &lt;E64450DF-2B96-331E-B7F4-666E00571C70&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff4ca1f000 - 0x7fff4cb4aff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) &lt;F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff4cb4b000 - 0x7fff4cb65fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) &lt;B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff4cb66000 - 0x7fff4cb67ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) &lt;69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff4d95e000 - 0x7fff4d96aff7 com.apple.NetFS (6.0 - 4.0) &lt;E917806F-0607-3292-B2D6-A15404D61B99&gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff50408000 - 0x7fff5045fff7 com.apple.opencl (2.15.3 - 2.15.3) &lt;056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A&gt; /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff50460000 - 0x7fff5047bff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) &lt;F03D84EB-49B2-3A00-9127-B9A269824026&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff5047c000 - 0x7fff50487ffb com.apple.OpenDirectory (10.14 - 207.200.4) &lt;A8020CEE-5B78-3581-A735-EA2833683F31&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff50dd7000 - 0x7fff50dd9fff libCVMSPluginSupport.dylib (17.7.3) &lt;8E051EA7-55B6-3DF1-9821-72C391DE953B&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff50dda000 - 0x7fff50ddfff3 libCoreFSCache.dylib (166.2) &lt;222C2A4F-7E32-30F6-8459-2FAB98073A3D&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff50de0000 - 0x7fff50de4fff libCoreVMClient.dylib (166.2) &lt;6789ECD4-91DD-32EF-A1FD-F27D2344CD8B&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff50de5000 - 0x7fff50dedff7 libGFXShared.dylib (17.7.3) &lt;8C50BF27-B525-3B23-B86C-F444ADF97851&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff50dee000 - 0x7fff50df9fff libGL.dylib (17.7.3) &lt;2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff50dfa000 - 0x7fff50e34fef libGLImage.dylib (17.7.3) &lt;AA027AFA-C115-3861-89B2-0AE946838952&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff50fa8000 - 0x7fff50fe6fff libGLU.dylib (17.7.3) &lt;CB3B0579-D9A2-3CA5-8942-0C8344FAD054&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff51983000 - 0x7fff51992ffb com.apple.opengl (17.7.3 - 17.7.3) &lt;94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff51d0f000 - 0x7fff51e58ff7 com.apple.QTKit (7.7.3 - 3040) &lt;D42BB4BE-B347-3113-ACA4-3257A5E45F52&gt; /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff51e59000 - 0x7fff520adfff com.apple.imageKit (3.0 - 1067) &lt;4F398AF4-828E-3FC2-9E3D-4EE3F36F7619&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff520ae000 - 0x7fff5219afff com.apple.PDFKit (1.0 - 745.3) &lt;EF7A5FC1-017A-329E-BDAE-3D136CE28E64&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff5219b000 - 0x7fff5266aff7 com.apple.QuartzComposer (5.1 - 370) &lt;9C59494E-8D09-359E-B457-AA893520984C&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff5266b000 - 0x7fff52691ff7 com.apple.quartzfilters (1.10.0 - 83.1) &lt;1CABB0FA-A6DB-3DD5-A598-F298F081E04E&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff52692000 - 0x7fff52793ff7 com.apple.QuickLookUIFramework (5.0 - 775.6) &lt;5660DDBA-2BE4-310A-9E81-370106EDB21D&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff52794000 - 0x7fff52794fff com.apple.quartzframework (1.5 - 23) &lt;31783652-5E36-3773-8847-9FECFE2487F0&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff52795000 - 0x7fff529ecff7 com.apple.QuartzCore (1.11 - 701.14) &lt;33E846BE-1794-3186-9BF2-6ADF62C782A3&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff529ed000 - 0x7fff52a44fff com.apple.QuickLookFramework (5.0 - 775.6) &lt;CB74C63F-E223-3783-9021-8E28091BCDA6&gt; /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff52c0b000 - 0x7fff52c23fff com.apple.SafariServices.framework (14608 - 14608.1.49) &lt;2631FDD1-6A7F-30A7-A4AC-5BD1443741CD&gt; /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff53222000 - 0x7fff53522fff com.apple.security (7.0 - 58286.270.3.0.1) &lt;DF7677A7-9765-3B6A-9D1C-3589145E4B65&gt; /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff53523000 - 0x7fff535affff com.apple.securityfoundation (6.0 - 55185.260.1) &lt;1EE899E6-222A-3526-B505-B0D0B6FA042A&gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff535b0000 - 0x7fff535e0ffb com.apple.securityinterface (10.0 - 55109.200.8) &lt;02B83641-2D21-3DB8-AAB8-6F8AAD0F6264&gt; /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff535e1000 - 0x7fff535e5fff com.apple.xpc.ServiceManagement (1.0 - 1) &lt;FCF7BABA-DDDD-3770-8DAC-7069850203C2&gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff53834000 - 0x7fff5384affb com.apple.StoreKit (1.0 - 1) &lt;5E26D23D-D85C-32EF-AE44-2B0437893274&gt; /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit 0x7fff5397e000 - 0x7fff539ebfff com.apple.SystemConfiguration (1.17 - 1.17) &lt;30C8327F-3EFF-3520-9C50-016F8B6B954F&gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff53c4a000 - 0x7fff53fabfff com.apple.VideoToolbox (1.0 - 2290.13) &lt;7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230&gt; /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff56c27000 - 0x7fff56cccfeb com.apple.APFS (1.0 - 1) &lt;2D22485D-552D-3CB6-9FE1-38547597918F&gt; /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff576e1000 - 0x7fff576e2ff7 com.apple.AggregateDictionary (1.0 - 1) &lt;A6AF8AC4-1F25-37C4-9157-A02E9C200926&gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff57aa0000 - 0x7fff57be3fff com.apple.AnnotationKit (1.0 - 232.3.30) &lt;A35C5450-FBA1-3E76-9F27-4ED0179AE6A6&gt; /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit 0x7fff57ce3000 - 0x7fff57d0fff7 com.apple.framework.Apple80211 (13.0 - 1380.2) &lt;16F093EF-370B-3B90-8DB4-E94624431D15&gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff57e37000 - 0x7fff57e46fc7 com.apple.AppleFSCompression (96.200.3 - 1.0) &lt;3CF60CE8-976E-3CB8-959D-DD0948C1C2DE&gt; /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff57f42000 - 0x7fff57f4dfff com.apple.AppleIDAuthSupport (1.0 - 1) &lt;2E9D1398-DBE6-328B-ADDA-20FA5FAD7405&gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff57f8e000 - 0x7fff57fd7ff3 com.apple.AppleJPEG (1.0 - 1) &lt;4C1F426B-7D77-3980-9633-7DBD8C666B9A&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff5822b000 - 0x7fff5824dfff com.apple.applesauce (1.0 - ???) &lt;F49107C7-3C51-3024-8EF1-C57643BE4F3B&gt; /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff5830d000 - 0x7fff58310ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) &lt;A48BC6D4-224C-3A25-846B-4D06C53568AE&gt; /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff58311000 - 0x7fff58361ff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) &lt;3399D678-8741-3B70-B8D0-7C63C8ACF7DF&gt; /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff583ac000 - 0x7fff583c0ffb com.apple.AssertionServices (1.0 - 1) &lt;456E507A-4561-3628-9FBE-173ACE7429D8&gt; /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff5878f000 - 0x7fff5887bff7 com.apple.AuthKit (1.0 - 1) &lt;2765ABE9-54F2-3E45-8A93-1261E251B90D&gt; /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff58a3d000 - 0x7fff58a45fff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) &lt;2A396FC0-7B79-3088-9A82-FB93C1181A57&gt; /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff58a46000 - 0x7fff58adbfff com.apple.backup.framework (1.10.5 - ???) &lt;4EEC51E2-AE4C-340A-B686-901810152C12&gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff58adc000 - 0x7fff58b49ff3 com.apple.BaseBoard (360.28 - 360.28) &lt;68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0&gt; /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff58b52000 - 0x7fff58b58ffb com.apple.BezelServicesFW (317.5 - 317.5) &lt;25807B30-117A-33D9-93E6-48E8AE90BD63&gt; /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff58bcf000 - 0x7fff58c0bff3 com.apple.bom (14.0 - 197.6) &lt;A99A6F9A-AFDE-3BC6-95CE-AA90B268B805&gt; /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff599a7000 - 0x7fff599f6ff7 com.apple.ChunkingLibrary (201 - 201) &lt;DFE16C42-24E6-386F-AC50-0058F61980A2&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff5a7b4000 - 0x7fff5a7bdffb com.apple.CommonAuth (4.0 - 2.0) &lt;93335CB6-ABEB-3EC7-A040-8A667F40D5F3&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff5a7d1000 - 0x7fff5a7e6ffb com.apple.commonutilities (8.0 - 900) &lt;080E168B-21B7-3CCA-AB84-BB9911D18DAC&gt; /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff5ac56000 - 0x7fff5b039fef com.apple.CoreAUC (274.0.0 - 274.0.0) &lt;C71F1581-E73B-3DA0-958B-E912C3FB3F23&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff5b03a000 - 0x7fff5b068ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) &lt;A04A99B8-DAC5-36FC-BAC7-7431600C1F89&gt; /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff5b0fe000 - 0x7fff5b15cffb com.apple.corebrightness (1.0 - 1) &lt;61040CCD-0AFD-389F-87E8-0FD9D8C3BAE1&gt; /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff5b496000 - 0x7fff5b4a7ff7 com.apple.CoreEmoji (1.0 - 69.19.9) &lt;228457B3-E191-356E-9A5B-3C0438D05FBA&gt; /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff5b650000 - 0x7fff5b73ffff com.apple.CoreHandwriting (161 - 1.2) &lt;7CBB18C3-FE95-3352-9D67-B441E89AD10F&gt; /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting 0x7fff5b911000 - 0x7fff5b927ffb com.apple.CoreMediaAuthoring (2.2 - 959) &lt;86089759-E920-37DB-A3BB-F5621C351E4A&gt; /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff5ba51000 - 0x7fff5bab7ff7 com.apple.CoreNLP (1.0 - 130.15.22) &lt;27877820-17D0-3B02-8557-4014E876CCC7&gt; /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff5bc23000 - 0x7fff5bcaffff com.apple.CorePDF (4.0 - 414) &lt;E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0&gt; /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff5bd64000 - 0x7fff5bd6cff7 com.apple.CorePhoneNumbers (1.0 - 1) &lt;11F97C7E-C183-305F-8E6C-9B374F50E26B&gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff5bee8000 - 0x7fff5bf19ff3 com.apple.CoreServicesInternal (358 - 358) &lt;DD6EF60D-048F-3186-83DA-EB191EDF48AE&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff5c2e0000 - 0x7fff5c364fff com.apple.CoreSymbolication (10.2 - 64490.25.1) &lt;28B2FF2D-3FDE-3A20-B343-341E5BD4E22F&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff5c3f4000 - 0x7fff5c51fff7 com.apple.coreui (2.1 - 499.10) &lt;A80F4B09-F940-346F-A9DF-4EFADD9220A8&gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff5c520000 - 0x7fff5c6c0fff com.apple.CoreUtils (5.9 - 590.16) &lt;66CC50F7-766D-33E2-A388-4DE22840ADFB&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff5c714000 - 0x7fff5c777ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) &lt;CA4B835A-27AC-3FAB-9F44-E48548EA2442&gt; /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff5c778000 - 0x7fff5c789ff7 com.apple.CrashReporterSupport (10.13 - 938.26) &lt;E93D84A6-891D-38EE-BB4F-E9CD681189B7&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff5c819000 - 0x7fff5c828fff com.apple.framework.DFRFoundation (1.0 - 211.1) &lt;E3F02F2A-2059-39CC-85DA-969676EB88EB&gt; /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff5c829000 - 0x7fff5c82dff7 com.apple.DSExternalDisplay (3.1 - 380) &lt;787B9748-B120-3453-B8FE-61D9E363A9E0&gt; /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff5c8ae000 - 0x7fff5c923ffb com.apple.datadetectorscore (7.0 - 590.27) &lt;06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8&gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff5c96f000 - 0x7fff5c9acff7 com.apple.DebugSymbols (190 - 190) &lt;6F4FAACA-E06B-38AD-A0C2-14EA5408A231&gt; /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff5c9ad000 - 0x7fff5cae8ff7 com.apple.desktopservices (1.13.5 - ???) &lt;265C0E94-B8BF-3F58-8D68-EA001EEA0B15&gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff5ccf4000 - 0x7fff5cdbafff com.apple.DiskManagement (12.1 - 1555.270.2) &lt;EB207683-FBD6-3B74-A606-3FE22234372C&gt; /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff5cdbb000 - 0x7fff5cdbfffb com.apple.DisplayServicesFW (3.1 - 380) &lt;62041594-2A4C-3362-87EE-F8E8C8E5BEEC&gt; /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff5ce68000 - 0x7fff5ce6bff3 com.apple.EFILogin (2.0 - 2) &lt;210948F9-FD39-392D-8349-34985B3C751C&gt; /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff5d5a1000 - 0x7fff5d883ff7 com.apple.vision.EspressoFramework (1.0 - 120) &lt;8B56D943-F87B-3A01-B7A4-19DE3312B61C&gt; /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso 0x7fff5da2f000 - 0x7fff5de4afff com.apple.vision.FaceCore (3.3.4 - 3.3.4) &lt;A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD&gt; /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff616fe000 - 0x7fff616fffff libmetal_timestamp.dylib (902.3.2) &lt;05389463-AF2E-33E2-A14F-1416E4A30835&gt; /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff62d9f000 - 0x7fff62da4fff com.apple.GPUWrangler (3.50.12 - 3.50.12) &lt;6C820ED9-F306-3978-B5B8-432AD97BBDAF&gt; /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff63132000 - 0x7fff63156ff3 com.apple.GenerationalStorage (2.0 - 285.101) &lt;84C2E52C-F2C6-3FF8-87E5-3C88A40D3881&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff63bb0000 - 0x7fff63bbffff com.apple.GraphVisualizer (1.0 - 5) &lt;48D020B7-5938-3FAE-B468-E291AEE2C06F&gt; /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff63d25000 - 0x7fff63d99ffb com.apple.Heimdal (4.0 - 2.0) &lt;D97FCF19-EAD6-3E2F-BE88-F817E45CAE96&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff65095000 - 0x7fff6509efff com.apple.IOAccelMemoryInfo (1.0 - 1) &lt;EA04DC2A-F0C8-3471-9E59-BE8697050ADF&gt; /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff6509f000 - 0x7fff650a6ffb com.apple.IOAccelerator (404.14 - 404.14) &lt;11A50171-C8AE-3BBC-9FB9-2A3313FFBD31&gt; /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff650aa000 - 0x7fff650c2fff com.apple.IOPresentment (1.0 - 42.6) &lt;6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A&gt; /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff6546a000 - 0x7fff65497ff7 com.apple.IconServices (379 - 379) &lt;7BAD562D-4FA3-3E11-863C-1EEBE2406D2C&gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff655c1000 - 0x7fff655c5ffb com.apple.InternationalSupport (1.0 - 10.15.6) &lt;6226A905-D055-321D-B665-5B0CC4798A74&gt; /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff6572a000 - 0x7fff6573cff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) &lt;30CFE05C-4108-3879-AFAA-5BB02CBE190B&gt; /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff65757000 - 0x7fff65832ff7 com.apple.LanguageModeling (1.0 - 159.15.15) &lt;3DE3CE61-542B-37B7-883E-4B9717CAC65F&gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff65833000 - 0x7fff6586fff7 com.apple.Lexicon-framework (1.0 - 33.15.10) &lt;4B5E843E-2809-3E70-9560-9254E2656419&gt; /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff65876000 - 0x7fff6587bfff com.apple.LinguisticData (1.0 - 238.25) &lt;F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0&gt; /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff66099000 - 0x7fff6609cfff com.apple.Mangrove (1.0 - 25) &lt;537A5B2E-4C30-3CFD-8BDC-79F9A04AC327&gt; /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff66123000 - 0x7fff66149ff3 com.apple.MarkupUI (1.0 - 232.3.30) &lt;C6A452D8-CA97-3044-A025-8ED4B7264FE2&gt; /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI 0x7fff661b1000 - 0x7fff661e4ff7 com.apple.MediaKit (16 - 907) &lt;5EE0E7DA-5ACC-33F3-9BF0-47A448C011A1&gt; /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff661e5000 - 0x7fff66508fff com.apple.MediaRemote (1.0 - 1) &lt;8AF135B0-781C-3B85-B44A-C0CFAC3EADE0&gt; /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff66509000 - 0x7fff6652cfff com.apple.MediaServices (1.0 - 1) &lt;82718A05-BD2D-37C2-A689-F09542CA988F&gt; /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff66570000 - 0x7fff66598ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) &lt;38BB1FB7-3336-384C-B71F-4D0D402EB606&gt; /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff66599000 - 0x7fff66626ff7 com.apple.gpusw.MetalTools (1.0 - 1) &lt;CBE2176A-8048-3A9C-AFE4-13973D44C704&gt; /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff6663d000 - 0x7fff66656ffb com.apple.MobileAssets (1.0 - 437.250.3) &lt;8BE5B3A0-8F3A-3FAE-9AFF-32836300183C&gt; /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff667d1000 - 0x7fff667ecffb com.apple.MobileKeyBag (2.0 - 1.0) &lt;C7C5DD21-66DE-31D1-92D9-BBEEAAE156FB&gt; /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff667ff000 - 0x7fff66874fff com.apple.Montreal (1.0 - 42.15.9) &lt;17BFD046-4362-3A76-A496-648D00FF3743&gt; /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal 0x7fff66875000 - 0x7fff6689fffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) &lt;42A23EC9-64A7-31C7-BF33-DF4412ED8A3F&gt; /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff66adb000 - 0x7fff66ae5fff com.apple.NetAuth (6.2 - 6.2) &lt;0D01BBE5-0269-310D-B148-D19DAE143DEB&gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff66bbb000 - 0x7fff66bd5ff7 com.apple.network.statistics.framework (1.2 - 1) &lt;B056D329-5C7C-3FB4-991E-7092DB2F9A5B&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff67346000 - 0x7fff67397ff3 com.apple.OTSVG (1.0 - ???) &lt;5BF1A9EB-2694-3267-9514-A4EB3BEF4081&gt; /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff6843b000 - 0x7fff6852efff com.apple.PencilKit (1.0 - 1) &lt;79225726-6980-3680-AC0B-D8C5C5DB2224&gt; /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit 0x7fff6852f000 - 0x7fff6853eff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) &lt;65F3DB3E-6D4E-33A0-B510-EF768D323DAB&gt; /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff6853f000 - 0x7fff68568ff3 com.apple.persistentconnection (1.0 - 1.0) &lt;9ECE64D9-8C5F-3FCE-8A46-29D7B3966920&gt; /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff6a37b000 - 0x7fff6a3cfffb com.apple.ProtectedCloudStorage (1.0 - 1) &lt;53B3C1F3-BB97-379F-8CBA-8FDCDF085793&gt; /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff6a3d0000 - 0x7fff6a3eeff7 com.apple.ProtocolBuffer (1 - 263.2) &lt;907D6C95-D050-31DE-99CA-16A5135BC6F9&gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff6a56c000 - 0x7fff6a56fff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) &lt;69D0DD00-A3D2-3835-91F0-F33BD9D7D740&gt; /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem 0x7fff6a570000 - 0x7fff6a585ff3 com.apple.QuickLookThumbnailing (1.0 - 1) &lt;B5E746AE-1DCB-3299-8626-10CCCBC2D5EE&gt; /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff6a586000 - 0x7fff6a5d6fff com.apple.ROCKit (27.6 - 27.6) &lt;756C2253-E8B1-3C48-9945-DE8D6AD24DE2&gt; /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit 0x7fff6a716000 - 0x7fff6a721fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) &lt;651F994E-21E1-359B-8FEA-6909CE9AAD56&gt; /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff6a734000 - 0x7fff6a756fff com.apple.RemoteViewServices (2.0 - 128) &lt;8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC&gt; /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff6a757000 - 0x7fff6a76aff3 com.apple.xpc.RemoteXPC (1.0 - 1336.261.2) &lt;E7B66B18-F5DF-3819-BA47-E35122BA09E8&gt; /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff6bf60000 - 0x7fff6c07efff com.apple.Sharing (1288.62 - 1288.62) &lt;48B1F247-7910-3C16-814C-B99DE231F7F0&gt; /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff6ce92000 - 0x7fff6d141fff com.apple.SkyLight (1.600.0 - 340.54) &lt;90EB1C2E-B264-3EC4-AF7F-CDE7E7585746&gt; /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff6d8e4000 - 0x7fff6d8f0fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) &lt;7A6A67DB-C813-328E-AAFB-D267A5B50B3D&gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff6df8f000 - 0x7fff6dfcbff3 com.apple.StreamingZip (1.0 - 1) &lt;046FAD5C-E0C5-3013-B1FE-24C018A0DDCF&gt; /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff6e041000 - 0x7fff6e0ccfc7 com.apple.Symbolication (10.2 - 64490.38.1) &lt;9FDCC98D-5B32-35AD-A9BF-94DF2B78507F&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff6e5a3000 - 0x7fff6e5affff com.apple.private.SystemPolicy (1.0 - 1) &lt;9CDA85A3-875C-3615-8818-2DC73E9FFE8B&gt; /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy 0x7fff6e5b4000 - 0x7fff6e5c0ffb com.apple.TCC (1.0 - 1) &lt;73CF6FA9-44CE-30C9-887F-235940976585&gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff6e826000 - 0x7fff6e8eeff3 com.apple.TextureIO (3.8.4 - 3.8.1) &lt;7CEAC05A-D283-3D5A-B1E3-C849285FA0BF&gt; /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff6e9ab000 - 0x7fff6eb62ffb com.apple.UIFoundation (1.0 - 551.2) &lt;917480B5-14BE-30E0-ABE6-9702336CC35A&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6f7de000 - 0x7fff6f8b7fff com.apple.ViewBridge (401.1 - 401.1) &lt;18144EC1-5DEF-369C-8EBA-2826E7142784&gt; /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff7008f000 - 0x7fff70092fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) &lt;7AE3457F-AF40-3508-93FB-1D9E31EB1C9D&gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff70493000 - 0x7fff70495ffb com.apple.loginsupport (1.0 - 1) &lt;3F8D6334-BCD6-36C1-BA20-CC8503A84375&gt; /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff7075f000 - 0x7fff70793fff libCRFSuite.dylib (41.15.4) &lt;406DAC06-0C77-3F90-878B-4D38F11F0256&gt; /usr/lib/libCRFSuite.dylib 0x7fff70796000 - 0x7fff707a0ff7 libChineseTokenizer.dylib (28.15.3) &lt;9B7F6109-3A5D-3641-9A7E-31D2239D73EE&gt; /usr/lib/libChineseTokenizer.dylib 0x7fff707a1000 - 0x7fff7082afff libCoreStorage.dylib (546.50.1) &lt;8E643B27-7986-3351-B37E-038FB6794BF9&gt; /usr/lib/libCoreStorage.dylib 0x7fff7082e000 - 0x7fff7082fffb libDiagnosticMessagesClient.dylib (107) &lt;A14D0819-0970-34CD-8680-80E4D7FE8C2C&gt; /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff70866000 - 0x7fff70abdff3 libFosl_dynamic.dylib (18.3.4) &lt;1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8&gt; /usr/lib/libFosl_dynamic.dylib 0x7fff70add000 - 0x7fff70ae4fff libMatch.1.dylib (31.200.1) &lt;EF8164CB-B599-39D9-9E73-4958A372DC0B&gt; /usr/lib/libMatch.1.dylib 0x7fff70b0e000 - 0x7fff70b2dfff libMobileGestalt.dylib (645.270.1) &lt;99A06C8A-97D6-383D-862C-F453BABB48A4&gt; /usr/lib/libMobileGestalt.dylib 0x7fff70b2e000 - 0x7fff70b2efff libOpenScriptingUtil.dylib (179.1) &lt;4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6&gt; /usr/lib/libOpenScriptingUtil.dylib 0x7fff70c6e000 - 0x7fff70c6fffb libSystem.B.dylib (1252.250.1) &lt;B1006948-7AD0-3CA9-81E0-833F4DD6BFB4&gt; /usr/lib/libSystem.B.dylib 0x7fff70ceb000 - 0x7fff70cecfff libThaiTokenizer.dylib (2.15.1) &lt;ADB37DC3-7D9B-3E73-A72A-BCC3433C937A&gt; /usr/lib/libThaiTokenizer.dylib 0x7fff70cfe000 - 0x7fff70d14ffb libapple_nghttp2.dylib (1.24.1) &lt;6F04250A-6686-3FDC-9A8D-290C64B06502&gt; /usr/lib/libapple_nghttp2.dylib 0x7fff70d15000 - 0x7fff70d3effb libarchive.2.dylib (54.250.1) &lt;47289946-8504-3966-9127-6CE39993DC2C&gt; /usr/lib/libarchive.2.dylib 0x7fff70d3f000 - 0x7fff70dbefff libate.dylib (1.13.8) &lt;92B44EDB-369D-3EE8-AEC5-61F8B9313DBF&gt; /usr/lib/libate.dylib 0x7fff70dc2000 - 0x7fff70dc2ff3 libauto.dylib (187) &lt;3E3780E1-96F3-3A22-91C5-92F9A5805518&gt; /usr/lib/libauto.dylib 0x7fff70e92000 - 0x7fff70ea2ffb libbsm.0.dylib (39.200.18) &lt;CF381E0B-025B-364F-A83D-2527E03F1AA3&gt; /usr/lib/libbsm.0.dylib 0x7fff70ea3000 - 0x7fff70eb0fff libbz2.1.0.dylib (38.200.3) &lt;272953A1-8D36-329B-BDDB-E887B347710F&gt; /usr/lib/libbz2.1.0.dylib 0x7fff70eb1000 - 0x7fff70f04ff7 libc++.1.dylib (400.9.4) &lt;9A60A190-6C34-339F-BB3D-AACE942009A4&gt; /usr/lib/libc++.1.dylib 0x7fff70f05000 - 0x7fff70f1aff7 libc++abi.dylib (400.17) &lt;38C09CED-9090-3719-90F3-04A2749F5428&gt; /usr/lib/libc++abi.dylib 0x7fff70f1b000 - 0x7fff70f1bff3 libcharset.1.dylib (51.200.6) &lt;2A27E064-314C-359C-93FC-8A9B06206174&gt; /usr/lib/libcharset.1.dylib 0x7fff70f1c000 - 0x7fff70f2cffb libcmph.dylib (6.15.1) &lt;9C52B2FE-179F-32AC-B87E-2AFC49ABF817&gt; /usr/lib/libcmph.dylib 0x7fff70f2d000 - 0x7fff70f45ffb libcompression.dylib (52.250.2) &lt;7F4BB18C-1FB4-3825-8D8B-6E6B168774C6&gt; /usr/lib/libcompression.dylib 0x7fff711ba000 - 0x7fff711d0fff libcoretls.dylib (155.220.1) &lt;4C64BE3E-41E3-3020-8BB7-07E90C0C861C&gt; /usr/lib/libcoretls.dylib 0x7fff711d1000 - 0x7fff711d2ff3 libcoretls_cfhelpers.dylib (155.220.1) &lt;0959B3E9-6643-3589-8BB3-21D52CDF0EF1&gt; /usr/lib/libcoretls_cfhelpers.dylib 0x7fff7166b000 - 0x7fff71676ff7 libcsfde.dylib (546.50.1) &lt;7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063&gt; /usr/lib/libcsfde.dylib 0x7fff7167e000 - 0x7fff716d4ff3 libcups.2.dylib (462.12) &lt;095619DC-9233-3937-9E50-5F10D917A40D&gt; /usr/lib/libcups.2.dylib 0x7fff71808000 - 0x7fff71808fff libenergytrace.dylib (17.200.1) &lt;80BB567A-FD18-3497-BF97-353F57D98CDD&gt; /usr/lib/libenergytrace.dylib 0x7fff71809000 - 0x7fff71822ffb libexpat.1.dylib (16.1.1) &lt;28A385F1-4210-32D2-861B-C1B2189A5294&gt; /usr/lib/libexpat.1.dylib 0x7fff7183a000 - 0x7fff7183fff7 libgermantok.dylib (17.15.2) &lt;E5F0F794-FF27-3D64-AE52-C78C6A84DD67&gt; /usr/lib/libgermantok.dylib 0x7fff71840000 - 0x7fff71845ff7 libheimdal-asn1.dylib (520.270.1) &lt;73F60D6F-76F8-35EF-9C86-9A81225EE4BE&gt; /usr/lib/libheimdal-asn1.dylib 0x7fff71870000 - 0x7fff71960fff libiconv.2.dylib (51.200.6) &lt;2047C9B7-3F74-3A95-810D-2ED8F0475A99&gt; /usr/lib/libiconv.2.dylib 0x7fff71961000 - 0x7fff71bc2ffb libicucore.A.dylib (62141.0.1) &lt;A0D63918-76E9-3C1B-B255-46F4C1DA7FE8&gt; /usr/lib/libicucore.A.dylib 0x7fff71c0f000 - 0x7fff71c10fff liblangid.dylib (128.15.1) &lt;22D05C4F-769B-3075-ABCF-44A0EBACE028&gt; /usr/lib/liblangid.dylib 0x7fff71c11000 - 0x7fff71c29ff3 liblzma.5.dylib (10.200.3) &lt;E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0&gt; /usr/lib/liblzma.5.dylib 0x7fff71c41000 - 0x7fff71ce5ff7 libmecab.1.0.0.dylib (779.24.1) &lt;A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2&gt; /usr/lib/libmecab.1.0.0.dylib 0x7fff71ce6000 - 0x7fff71eeafff libmecabra.dylib (779.24.1) &lt;D71F71E0-30E2-3DB3-B636-7DE13D51FB4B&gt; /usr/lib/libmecabra.dylib 0x7fff720c2000 - 0x7fff72413ff7 libnetwork.dylib (1229.250.15) &lt;72C7E9E3-B2BE-3300-BE1B-64606222022C&gt; /usr/lib/libnetwork.dylib 0x7fff724a5000 - 0x7fff72c2afdf libobjc.A.dylib (756.2) &lt;7C312627-43CB-3234-9324-4DEA92D59F50&gt; /usr/lib/libobjc.A.dylib 0x7fff72c3c000 - 0x7fff72c40ffb libpam.2.dylib (22.200.1) &lt;586CF87F-349C-393D-AEEB-FB75F94A5EB7&gt; /usr/lib/libpam.2.dylib 0x7fff72c43000 - 0x7fff72c78fff libpcap.A.dylib (79.250.1) &lt;C0893641-7DFF-3A33-BDAE-190FF54837E8&gt; /usr/lib/libpcap.A.dylib 0x7fff72cce000 - 0x7fff72cd1fff libpmenergy.dylib (194.267.1) &lt;533A839F-37DC-3564-87A8-8CDE6243F15E&gt; /usr/lib/libpmenergy.dylib 0x7fff72cd2000 - 0x7fff72cd4fff libpmsample.dylib (194.267.1) &lt;8B691606-BC20-3DDE-940B-C3937DD72CFE&gt; /usr/lib/libpmsample.dylib 0x7fff72d91000 - 0x7fff72da9ffb libresolv.9.dylib (65.200.2) &lt;893142A5-F153-3437-A22D-407EE542B5C5&gt; /usr/lib/libresolv.9.dylib 0x7fff72dab000 - 0x7fff72de6ff3 libsandbox.1.dylib (851.270.1) &lt;04B924EF-2385-34DF-807E-93AAD9EF3AAB&gt; /usr/lib/libsandbox.1.dylib 0x7fff72dfa000 - 0x7fff72dfbff7 libspindump.dylib (267.3) &lt;A584E403-8C95-3841-9C16-E22664A5A63F&gt; /usr/lib/libspindump.dylib 0x7fff72dfc000 - 0x7fff72fd9fff libsqlite3.dylib (274.26) &lt;6404BA3B-BCA4-301F-B2FE-8776105A2AA3&gt; /usr/lib/libsqlite3.dylib 0x7fff731f2000 - 0x7fff731f5ff7 libutil.dylib (51.200.4) &lt;CE9B18C9-66ED-32D4-9D29-01F8FCB467B0&gt; /usr/lib/libutil.dylib 0x7fff731f6000 - 0x7fff73203fff libxar.1.dylib (417.1) &lt;39CCF46B-C81A-34B1-92A1-58C4E5DA846E&gt; /usr/lib/libxar.1.dylib 0x7fff73208000 - 0x7fff732eaff3 libxml2.2.dylib (32.10) &lt;AA4E1B1F-0FDE-3274-9FA5-75446298D1AC&gt; /usr/lib/libxml2.2.dylib 0x7fff732eb000 - 0x7fff73313ff3 libxslt.1.dylib (16.5) &lt;E330D3A2-E32B-378A-973E-A8D245C0F712&gt; /usr/lib/libxslt.1.dylib 0x7fff73314000 - 0x7fff73326ff7 libz.1.dylib (70.200.4) &lt;B048FC1F-058F-3A08-A1FE-81D5308CB3E6&gt; /usr/lib/libz.1.dylib 0x7fff73b0a000 - 0x7fff73b0eff3 libcache.dylib (81) &lt;1987D1E1-DB11-3291-B12A-EBD55848E02D&gt; /usr/lib/system/libcache.dylib 0x7fff73b0f000 - 0x7fff73b19ff3 libcommonCrypto.dylib (60118.250.2) &lt;1765BB6E-6784-3653-B16B-CB839721DC9A&gt; /usr/lib/system/libcommonCrypto.dylib 0x7fff73b1a000 - 0x7fff73b21ff7 libcompiler_rt.dylib (63.4) &lt;5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8&gt; /usr/lib/system/libcompiler_rt.dylib 0x7fff73b22000 - 0x7fff73b2bff7 libcopyfile.dylib (146.250.1) &lt;98CD00CD-9B91-3B5C-A9DB-842638050FA8&gt; /usr/lib/system/libcopyfile.dylib 0x7fff73b2c000 - 0x7fff73bb0fc3 libcorecrypto.dylib (602.260.2) &lt;01464D24-570C-3B83-9D18-467769E0FCDD&gt; /usr/lib/system/libcorecrypto.dylib 0x7fff73c37000 - 0x7fff73c70ff7 libdispatch.dylib (1008.270.1) &lt;97273678-E94C-3C8C-89F6-2E2020F4B43B&gt; /usr/lib/system/libdispatch.dylib 0x7fff73c71000 - 0x7fff73c9dff7 libdyld.dylib (655.1.1) &lt;002418CC-AD11-3D10-865B-015591D24E6C&gt; /usr/lib/system/libdyld.dylib 0x7fff73c9e000 - 0x7fff73c9effb libkeymgr.dylib (30) &lt;0D0F9CA2-8D5A-3273-8723-59987B5827F2&gt; /usr/lib/system/libkeymgr.dylib 0x7fff73c9f000 - 0x7fff73cabff3 libkxld.dylib (4903.271.2) &lt;FBF128C8-D3F0-36B6-983A-A63B8A3E0E52&gt; /usr/lib/system/libkxld.dylib 0x7fff73cac000 - 0x7fff73cacff7 liblaunch.dylib (1336.261.2) &lt;2B07E27E-D404-3E98-9D28-BCA641E5C479&gt; /usr/lib/system/liblaunch.dylib 0x7fff73cad000 - 0x7fff73cb2fff libmacho.dylib (927.0.3) &lt;A377D608-77AB-3F6E-90F0-B4F251A5C12F&gt; /usr/lib/system/libmacho.dylib 0x7fff73cb3000 - 0x7fff73cb5ffb libquarantine.dylib (86.220.1) &lt;6D0BC770-7348-3608-9254-F7FFBD347634&gt; /usr/lib/system/libquarantine.dylib 0x7fff73cb6000 - 0x7fff73cb7ff7 libremovefile.dylib (45.200.2) &lt;9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6&gt; /usr/lib/system/libremovefile.dylib 0x7fff73cb8000 - 0x7fff73ccfff3 libsystem_asl.dylib (356.200.4) &lt;A62A7249-38B8-33FA-9875-F1852590796C&gt; /usr/lib/system/libsystem_asl.dylib 0x7fff73cd0000 - 0x7fff73cd0ff7 libsystem_blocks.dylib (73) &lt;A453E8EE-860D-3CED-B5DC-BE54E9DB4348&gt; /usr/lib/system/libsystem_blocks.dylib 0x7fff73cd1000 - 0x7fff73d58fff libsystem_c.dylib (1272.250.1) &lt;7EDACF78-2FA3-35B8-B051-D70475A35117&gt; /usr/lib/system/libsystem_c.dylib 0x7fff73d59000 - 0x7fff73d5cffb libsystem_configuration.dylib (963.270.3) &lt;2B4A836D-68A4-33E6-8D48-CD4486B03387&gt; /usr/lib/system/libsystem_configuration.dylib 0x7fff73d5d000 - 0x7fff73d60ff7 libsystem_coreservices.dylib (66) &lt;719F75A4-74C5-3BA6-A09E-0C5A3E5889D7&gt; /usr/lib/system/libsystem_coreservices.dylib 0x7fff73d61000 - 0x7fff73d67fff libsystem_darwin.dylib (1272.250.1) &lt;EC9B39A5-9592-3577-8997-7DC721D20D8C&gt; /usr/lib/system/libsystem_darwin.dylib 0x7fff73d68000 - 0x7fff73d6eff7 libsystem_dnssd.dylib (878.270.2) &lt;E9A5ACCF-E35F-3909-AF0A-2A37CD217276&gt; /usr/lib/system/libsystem_dnssd.dylib 0x7fff73d6f000 - 0x7fff73dbaffb libsystem_info.dylib (517.200.9) &lt;D09D5AE0-2FDC-3A6D-93EC-729F931B1457&gt; /usr/lib/system/libsystem_info.dylib 0x7fff73dbb000 - 0x7fff73de3ff7 libsystem_kernel.dylib (4903.271.2) &lt;EA204E3C-870B-30DD-B4AF-D1BB66420D14&gt; /usr/lib/system/libsystem_kernel.dylib 0x7fff73de4000 - 0x7fff73e2fff7 libsystem_m.dylib (3158.200.7) &lt;F19B6DB7-014F-3820-831F-389CCDA06EF6&gt; /usr/lib/system/libsystem_m.dylib 0x7fff73e30000 - 0x7fff73e5afff libsystem_malloc.dylib (166.270.1) &lt;011F3AD0-8E6A-3A89-AE64-6E5F6840F30A&gt; /usr/lib/system/libsystem_malloc.dylib 0x7fff73e5b000 - 0x7fff73e65ff7 libsystem_networkextension.dylib (767.250.2) &lt;FF06F13A-AEFE-3A27-A073-910EF78AEA36&gt; /usr/lib/system/libsystem_networkextension.dylib 0x7fff73e66000 - 0x7fff73e6dfff libsystem_notify.dylib (172.200.21) &lt;145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE&gt; /usr/lib/system/libsystem_notify.dylib 0x7fff73e6e000 - 0x7fff73e77fef libsystem_platform.dylib (177.270.1) &lt;9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C&gt; /usr/lib/system/libsystem_platform.dylib 0x7fff73e78000 - 0x7fff73e82ff7 libsystem_pthread.dylib (330.250.2) &lt;2D5C08FF-484F-3D59-9132-CE1DCB3F76D7&gt; /usr/lib/system/libsystem_pthread.dylib 0x7fff73e83000 - 0x7fff73e86ff7 libsystem_sandbox.dylib (851.270.1) &lt;9494594B-5199-3186-82AB-5FF8BED6EE16&gt; /usr/lib/system/libsystem_sandbox.dylib 0x7fff73e87000 - 0x7fff73e89ff3 libsystem_secinit.dylib (30.260.2) &lt;EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE&gt; /usr/lib/system/libsystem_secinit.dylib 0x7fff73e8a000 - 0x7fff73e91ff3 libsystem_symptoms.dylib (820.267.1) &lt;03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52&gt; /usr/lib/system/libsystem_symptoms.dylib 0x7fff73e92000 - 0x7fff73ea7fff libsystem_trace.dylib (906.260.1) &lt;FC761C3B-5434-3A52-912D-F1B15FAA8EB2&gt; /usr/lib/system/libsystem_trace.dylib 0x7fff73ea9000 - 0x7fff73eaeffb libunwind.dylib (35.4) &lt;24A97A67-F017-3CFC-B0D0-6BD0224B1336&gt; /usr/lib/system/libunwind.dylib 0x7fff73eaf000 - 0x7fff73edefff libxpc.dylib (1336.261.2) &lt;7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4&gt; /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 126773 thread_create: 0 thread_set_state: 54 VM Region Summary: ReadOnly portion of Libraries: Total=556.9M resident=0K(0%) swapped_out_or_unallocated=556.9M(100%) Writable regions: Total=318.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=318.1M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 CG image 8K 2 CoreAnimation 3508K 8 CoreGraphics 8K 1 CoreServices 88K 1 CoreUI image data 448K 3 CoreUI image file 336K 5 Dispatch continuations 16.0M 1 Foundation 4K 1 Image IO 64K 1 Kernel Alloc Once 8K 1 MALLOC 97.3M 33 MALLOC guard page 32K 6 Mach message 16K 2 Memory Tag 242 12K 1 Memory Tag 251 12K 1 Memory Tag 255 4.0G 46 STACK GUARD 56.1M 25 Stack 154.2M 25 VM_ALLOCATE 204K 10 __DATA 41.9M 316 __FONT_DATA 4K 1 __LINKEDIT 224.9M 10 __TEXT 332.0M 319 __UNICODE 564K 1 mapped file 68.8M 26 shared memory 676K 10 =========== ======= ======= TOTAL 5.0G 858 "><pre class="notranslate"><code class="notranslate">Process: Electron [44087] Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron Identifier: com.github.Electron Version: 9.2.1 (9.2.1) Code Type: X86-64 (Native) Parent Process: ??? [44086] Responsible: Electron [44087] User ID: 501 Date/Time: 2020-08-21 10:01:01.660 +0200 OS Version: Mac OS X 10.14.6 (18G95) Report Version: 12 Bridge OS Version: 3.0 (14Y904) Anonymous UUID: 791D7EFB-539D-0D72-76DC-AA97D4D2545B Sleep/Wake UUID: 6F67BB50-2640-423E-B5A8-0C7B3F279C07 Time Awake Since Boot: 55000 seconds Time Since Wake: 2000 seconds System Integrity Protection: enabled Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: EXC_I386_GPFLT Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [44087] Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 SimpleNativeAddon.node 0x000000011263779f Nan::imp::FunctionCallbackWrapper(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;) + 31 1 com.github.Electron.framework 0x00000001078835bf v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 16815 2 com.github.Electron.framework 0x0000000107882ae1 v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 14033 3 com.github.Electron.framework 0x0000000107882172 v8::internal::Accessors::MakeAccessor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Name&gt;, void (*)(v8::Local&lt;v8::Name&gt;, v8::PropertyCallbackInfo&lt;v8::Value&gt; const&amp;), void (*)(v8::Local&lt;v8::Name&gt;, v8::Local&lt;v8::Value&gt;, v8::PropertyCallbackInfo&lt;v8::Boolean&gt; const&amp;)) + 11618 4 com.github.Electron.framework 0x00000001082b5438 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 484152 5 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 6 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 7 com.github.Electron.framework 0x00000001082490d5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 40917 8 com.github.Electron.framework 0x0000000108246c1a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31514 9 com.github.Electron.framework 0x00000001082469f8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 30968 10 com.github.Electron.framework 0x000000010793ff1c v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle&lt;v8::internal::Object&gt;*) + 3228 11 com.github.Electron.framework 0x000000010793f366 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle&lt;v8::internal::Object&gt;*) + 230 12 com.github.Electron.framework 0x0000000107830728 v8::Function::Call(v8::Local&lt;v8::Context&gt;, v8::Local&lt;v8::Value&gt;, int, v8::Local&lt;v8::Value&gt;*) + 408 13 com.github.Electron.framework 0x000000010c9ab212 node::EmitAsyncDestroy(node::Environment*, node::async_context) + 200994 14 com.github.Electron.framework 0x000000010cae7be6 uv_timer_get_repeat + 118 15 com.github.Electron.framework 0x000000010caeb2c7 uv_run + 231 16 com.github.Electron.framework 0x0000000106b7dcee ElectronInitializeICUandStartNode + 1486622 17 com.github.Electron.framework 0x000000010926b2af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16957871 18 com.github.Electron.framework 0x000000010927b48a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17023882 19 com.github.Electron.framework 0x000000010927b219 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17023257 20 com.github.Electron.framework 0x00000001092cbdd1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17353937 21 com.github.Electron.framework 0x00000001092c756a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17335402 22 com.github.Electron.framework 0x00000001092cb69f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17352095 23 com.apple.CoreFoundation 0x00007fff47d4a683 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 24 com.apple.CoreFoundation 0x00007fff47d4a629 __CFRunLoopDoSource0 + 108 25 com.apple.CoreFoundation 0x00007fff47d2dfeb __CFRunLoopDoSources0 + 195 26 com.apple.CoreFoundation 0x00007fff47d2d5b5 __CFRunLoopRun + 1189 27 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 28 com.apple.HIToolbox 0x00007fff46f8c1ab RunCurrentEventLoopInMode + 292 29 com.apple.HIToolbox 0x00007fff46f8bee5 ReceiveNextEventCommon + 603 30 com.apple.HIToolbox 0x00007fff46f8bc76 _BlockUntilNextEventMatchingListInModeWithFilter + 64 31 com.apple.AppKit 0x00007fff4532479d _DPSNextEvent + 1135 32 com.apple.AppKit 0x00007fff4532348b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361 33 com.apple.AppKit 0x00007fff45569cbf -[NSApplication _doModalLoop:peek:] + 379 34 com.apple.AppKit 0x00007fff4556875a __35-[NSApplication runModalForWindow:]_block_invoke_2 + 64 35 com.apple.AppKit 0x00007fff45568707 __35-[NSApplication runModalForWindow:]_block_invoke + 70 36 com.apple.AppKit 0x00007fff45567f71 _NSTryRunModal + 100 37 com.apple.AppKit 0x00007fff45567e56 -[NSApplication runModalForWindow:] + 128 38 com.apple.AppKit 0x00007fff457dea35 __19-[NSAlert runModal]_block_invoke_2 + 158 39 com.apple.AppKit 0x00007fff457de984 __19-[NSAlert runModal]_block_invoke + 70 40 com.apple.AppKit 0x00007fff45567f71 _NSTryRunModal + 100 41 com.apple.AppKit 0x00007fff456caa63 -[NSAlert runModal] + 121 42 com.apple.AppKit 0x00007fff4535a538 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 917 43 com.apple.AppKit 0x00007fff4535a164 -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 25 44 com.apple.AppKit 0x00007fff4535a116 -[NSPersistentUIRestorer promptToIgnorePersistentState] + 236 45 com.apple.AppKit 0x00007fff45328c1b -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:completionHandler:] + 171 46 com.apple.AppKit 0x00007fff45328a5e -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 539 47 com.apple.AppKit 0x00007fff453286bb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 688 48 com.apple.Foundation 0x00007fff49fd0700 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 286 49 com.apple.Foundation 0x00007fff49fd057d _NSAppleEventManagerGenericHandler + 102 50 com.apple.AE 0x00007fff48f52397 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 1815 51 com.apple.AE 0x00007fff48f51c29 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 41 52 com.apple.AE 0x00007fff48f51b01 aeProcessAppleEvent + 414 53 com.apple.HIToolbox 0x00007fff46f958b7 AEProcessAppleEvent + 54 54 com.apple.AppKit 0x00007fff45324abd _DPSNextEvent + 1935 55 com.apple.AppKit 0x00007fff4532348b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361 56 com.apple.AppKit 0x00007fff4531d5a8 -[NSApplication run] + 699 57 com.github.Electron.framework 0x00000001092cc5ec v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17356012 58 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 59 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 60 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 61 com.github.Electron.framework 0x000000010861c3b3 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4051635 62 com.github.Electron.framework 0x000000010861ddc2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4058306 63 com.github.Electron.framework 0x0000000108619be8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4041448 64 com.github.Electron.framework 0x00000001084c2f66 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2637414 65 com.github.Electron.framework 0x00000001084c2bbb v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2636475 66 com.github.Electron.framework 0x000000010aa480e8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 41979880 67 com.github.Electron.framework 0x0000000107742b74 ElectronInitializeICUandStartNode + 13827492 68 com.github.Electron.framework 0x0000000106a12d94 ElectronMain + 84 69 com.github.Electron 0x00000001069dc110 0x1069db000 + 4368 70 libdyld.dylib 0x00007fff73c873d5 start + 1 Thread 1: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x00007fff73e7a3f0 start_wqthread + 0 Thread 5:: ThreadPoolServiceThread 0 libsystem_kernel.dylib 0x00007fff73dc40a6 kevent64 + 10 1 com.github.Electron.framework 0x00000001092db941 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17418305 2 com.github.Electron.framework 0x00000001092db7d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17417942 3 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 4 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 5 com.github.Electron.framework 0x0000000109284274 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17060212 6 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 6:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 7:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 5 com.github.Electron.framework 0x000000010928d584 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17097860 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 8:: Chrome_IOThread 0 libsystem_kernel.dylib 0x00007fff73dc40a6 kevent64 + 10 1 com.github.Electron.framework 0x00000001092db941 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17418305 2 com.github.Electron.framework 0x00000001092db7d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17417942 3 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 4 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 5 com.github.Electron.framework 0x000000010861fe66 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4066662 6 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 9:: MemoryInfra 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x0000000109234e47 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16735559 5 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 6 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 7 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 8 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 9 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 10 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 11 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff73dc278e kevent + 10 1 com.github.Electron.framework 0x000000010cafbe4a uv_free_interface_addresses + 1370 2 com.github.Electron.framework 0x000000010caeb3b1 uv_run + 465 3 com.github.Electron.framework 0x000000010ca60766 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 902 4 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x000000010caf6f19 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010ca60968 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1416 4 com.github.Electron.framework 0x000000010ca5e6ab node::options_parser::SplitHostPort(std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; const&amp;, std::__1::vector&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt;, std::__1::allocator&lt;std::__1::basic_string&lt;char, std::__1::char_traits&lt;char&gt;, std::__1::allocator&lt;char&gt; &gt; &gt; &gt;*) + 82299 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 14: 0 libsystem_kernel.dylib 0x00007fff73dbc266 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x000000010caf7480 uv_sem_wait + 16 2 com.github.Electron.framework 0x000000010caad5b3 node::inspector::Agent::GetWsUrl() const + 83 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 15:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff47d2e1ee __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff47d2d75c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff49f9132f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001092cc2f1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17355249 7 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 8 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 9 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 10 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 11 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 12 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 16:: CrShutdownDetector 0 libsystem_kernel.dylib 0x00007fff73dbdef2 read + 10 1 com.github.Electron.framework 0x0000000106ae821f ElectronInitializeICUandStartNode + 873551 2 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 17:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff47d2e1ee __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff47d2d75c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff47d2cebe CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff49f9132f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001092cc2f1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17355249 7 com.github.Electron.framework 0x00000001092cb052 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17350482 8 com.github.Electron.framework 0x000000010927ba13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17025299 9 com.github.Electron.framework 0x0000000109252e23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16858403 10 com.github.Electron.framework 0x0000000109293ef4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17124852 11 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 12 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 18:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 19:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 20:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x000000010928d0a8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096616 4 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 5 com.github.Electron.framework 0x000000010928d614 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098004 6 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 7 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 21:: CompositorTileWorker1 0 libsystem_kernel.dylib 0x00007fff73dbf86a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff73e7e56e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x00000001092c50a4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17325988 3 com.github.Electron.framework 0x000000010a17d1ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32759981 4 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 5 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 22:: ThreadPoolSingleThreadForegroundBlocking0 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x000000010928d09a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096602 5 com.github.Electron.framework 0x000000010928d9fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17099005 6 com.github.Electron.framework 0x000000010928d674 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098100 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 23: 0 libsystem_kernel.dylib 0x00007fff73dbc266 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x000000010caf7480 uv_sem_wait + 16 2 com.github.Electron.framework 0x0000000106b7dbe8 ElectronInitializeICUandStartNode + 1486360 3 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 24:: ThreadPoolSingleThreadSharedBackgroundBlocking1 0 libsystem_kernel.dylib 0x00007fff73dbc22a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff73dbc76c mach_msg + 60 2 com.github.Electron.framework 0x00000001092d0a43 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17373507 3 com.github.Electron.framework 0x00000001092d083f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17372991 4 com.github.Electron.framework 0x000000010928d09a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17096602 5 com.github.Electron.framework 0x000000010928d778 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17098360 6 com.github.Electron.framework 0x000000010928d5b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17097908 7 com.github.Electron.framework 0x00000001092c5f07 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17329671 8 libsystem_pthread.dylib 0x00007fff73e7b2eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff73e7e249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff73e7a40d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x080406e90aa004e1 rbx: 0x00007ffee921b350 rcx: 0x00007ffee921b488 rdx: 0x0000000000000000 rdi: 0x00003d36093313b1 rsi: 0x00003d360a8a286d rbp: 0x00007ffee921b250 rsp: 0x00007ffee921b220 r8: 0x00003d3609330795 r9: 0x00003d360804030d r10: 0x0000000000000000 r11: 0x00007ffee921b3c0 r12: 0x00007ffee921b2b0 r13: 0x00007ffee921b318 r14: 0x00007ffee921b2b0 r15: 0x0000000112637780 rip: 0x000000011263779f rfl: 0x0000000000010206 cr2: 0x00007f80a4eed070 Logical CPU: 0 Error Code: 0x00000000 Trap Number: 13 Binary Images: 0x1069db000 - 0x106a03ff7 +com.github.Electron (9.2.1 - 9.2.1) &lt;B9D044CA-EB1B-3B25-B0B1-0CC03DE1E5CB&gt; /Users/USER/*/Electron.app/Contents/MacOS/Electron 0x106a10000 - 0x10d91cf4f +com.github.Electron.framework (9.2.1) &lt;FF0CC33B-DE47-39EC-859D-0362A56F0D6B&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework 0x10e0b5000 - 0x10e0d0fff +com.github.Squirrel (1.0 - 1) &lt;E4398068-33D3-3A00-9DBE-5ACC9B022501&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10e0f2000 - 0x10e155ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) &lt;701B20DE-3ADD-3643-B52A-E05744C30DB3&gt; /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10e1c7000 - 0x10e1dbfff +org.mantle.Mantle (1.0 - ???) &lt;31915DD6-48E6-3706-A076-C9D4CE17F4F6&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10e3d9000 - 0x10e44370f dyld (655.1.1) &lt;DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A&gt; /usr/lib/dyld 0x10e4a4000 - 0x10e742fff +libffmpeg.dylib (0) &lt;AD9DC742-629A-30AF-B7F5-8770B46B9BE9&gt; /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib 0x11250e000 - 0x112511047 libobjc-trampolines.dylib (756.2) &lt;5795A048-3940-3801-90CE-33D1B1AF81F4&gt; /usr/lib/libobjc-trampolines.dylib 0x112636000 - 0x112637ffb +SimpleNativeAddon.node (0) &lt;D8B8E420-56C9-3809-856A-9FA8F66F2183&gt; /Users/USER/*/SimpleNativeAddon.node 0x7fff3c454000 - 0x7fff3c7adfff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) &lt;AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559&gt; /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff3c7b0000 - 0x7fff3c8bcfff com.apple.AMDMTLBronzeDriver (2.11.20 - 2.1.1) &lt;1D8E8E3B-88F4-35B1-8E83-AE74B558C26C&gt; /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff4239f000 - 0x7fff426d0ff7 com.apple.driver.AppleIntelSKLGraphicsMTLDriver (12.10.12 - 12.1.0) &lt;F3C4A632-1F56-37D8-B6DC-4F5940FD7D63&gt; /System/Library/Extensions/AppleIntelSKLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsMTLDriver 0x7fff43d2c000 - 0x7fff43f08ffb com.apple.avfoundation (2.0 - 1550.4) &lt;5854207B-6106-3DA4-80B6-36C42D042F26&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff43f09000 - 0x7fff43fcefff com.apple.audio.AVFAudio (1.0 - ???) &lt;D454A339-2FC6-3EF6-992F-D676046612DB&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff440d6000 - 0x7fff440d6fff com.apple.Accelerate (1.11 - Accelerate 1.11) &lt;762942CB-CFC9-3A0C-9645-A56523A06426&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff440d7000 - 0x7fff440edff7 libCGInterfaces.dylib (506.22) &lt;1B6C92D9-F4B8-37BA-9635-94C4A56098CE&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff440ee000 - 0x7fff44787fef com.apple.vImage (8.1 - ???) &lt;53FA3611-894E-3158-A654-FBD2F70998FE&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff44788000 - 0x7fff44a01ff3 libBLAS.dylib (1243.200.4) &lt;417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff44a02000 - 0x7fff44a74ffb libBNNS.dylib (38.250.1) &lt;538D12A2-9B9D-3E22-9896-F90F6E69C06E&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff44a75000 - 0x7fff44e1eff3 libLAPACK.dylib (1243.200.4) &lt;92175DF4-863A-3780-909A-A3E5C410F2E9&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff44e1f000 - 0x7fff44e34feb libLinearAlgebra.dylib (1243.200.4) &lt;CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff44e35000 - 0x7fff44e3aff3 libQuadrature.dylib (3.200.2) &lt;1BAE7E22-2862-379F-B334-A3756067730F&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff44e3b000 - 0x7fff44eb7ff3 libSparse.dylib (79.200.5) &lt;E78B33D3-672A-3C53-B512-D3DDB2E9AC8D&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff44eb8000 - 0x7fff44ecbfe3 libSparseBLAS.dylib (1243.200.4) &lt;E9243341-DB77-37C1-97C5-3DFA00DD70FA&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff44ecc000 - 0x7fff450b3ff7 libvDSP.dylib (671.250.4) &lt;7B110627-A9C1-3FB7-A077-0C7741BA25D8&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff450b4000 - 0x7fff45167ff7 libvMisc.dylib (671.250.4) &lt;D5BA4812-BFFC-3CD0-B382-905CD8555DA6&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff45168000 - 0x7fff45168fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) &lt;74288115-EF61-30B6-843F-0593B31D4929&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff4530a000 - 0x7fff460bfffb com.apple.AppKit (6.9 - 1671.60.107) &lt;2F7E5984-E89A-3451-A3DF-FAAA509CF884&gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff46111000 - 0x7fff46111fff com.apple.ApplicationServices (50.1 - 50.1) &lt;84097DEB-E2FC-3901-8DD7-A670EA2274E0&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff46112000 - 0x7fff4617dfff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) &lt;A258DA73-114B-3102-A056-4AAAD3CEB9DD&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff46216000 - 0x7fff4632dfff libFontParser.dylib (228.6.2.3) &lt;3602D55B-3B9E-3B3A-A814-08C1244A8AE4&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff4632e000 - 0x7fff46370fff libFontRegistry.dylib (228.12.2.3) &lt;2A56347B-2809-3407-A8B4-2AB88E484062&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff463ca000 - 0x7fff463fcfff libTrueTypeScaler.dylib (228.6.2.3) &lt;7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff46461000 - 0x7fff46465ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) &lt;C0D9E23C-ABA0-39DE-A4EB-5A41C5499056&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff46500000 - 0x7fff46552ff7 com.apple.HIServices (1.22 - 628) &lt;2BE461FF-80B9-30D3-A574-AED5724B1C1B&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff46553000 - 0x7fff46562fff com.apple.LangAnalysis (1.7.0 - 1.7.0) &lt;F5617A2A-FEA6-3832-B5BA-C2111B98786F&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff46563000 - 0x7fff465acff7 com.apple.print.framework.PrintCore (14.2 - 503.8) &lt;57C2FE32-0E74-3079-B626-C2D52F2D2717&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff465ad000 - 0x7fff465e6ff7 com.apple.QD (3.12 - 407.2) &lt;28C7D39F-59C9-3314-BECC-67045487229C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff465e7000 - 0x7fff465f3fff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) &lt;5E7B9BD4-122B-3012-A044-3259C97E7509&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff465f4000 - 0x7fff4686bff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) &lt;04F482F1-E1C1-3955-8A6C-8AA152AA06F3&gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff4686d000 - 0x7fff4686dfff com.apple.audio.units.AudioUnit (1.14 - 1.14) &lt;ABC54269-002D-310D-9654-46CF960F863E&gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff46bc6000 - 0x7fff46f67fff com.apple.CFNetwork (978.0.7 - 978.0.7) &lt;B2133D0D-1399-3F17-80F0-313E3A241C89&gt; /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff46f7c000 - 0x7fff46f7cfff com.apple.Carbon (158 - 158) &lt;56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff46f7d000 - 0x7fff46f80ffb com.apple.CommonPanels (1.2.6 - 98) &lt;1CD6D56D-8EC7-3528-8CBC-FC69533519B5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff46f81000 - 0x7fff47278fff com.apple.HIToolbox (2.1.1 - 918.7) &lt;13F69D4C-D19F-3E09-9231-1978D783A556&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff47279000 - 0x7fff4727cff3 com.apple.help (1.3.8 - 66) &lt;A08517EB-8958-36C9-AEE0-1A8FEEACBE3F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff4727d000 - 0x7fff47282ff7 com.apple.ImageCapture (9.0 - 1534.2) &lt;DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff47283000 - 0x7fff47318ff3 com.apple.ink.framework (10.9 - 225) &lt;7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff47319000 - 0x7fff47331ff7 com.apple.openscripting (1.7 - 179.1) &lt;9B8C1ECC-5864-3E21-9149-863E884EA25C&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff47351000 - 0x7fff47352ff7 com.apple.print.framework.Print (14.2 - 267.4) &lt;A7A9D2A0-D4E0-35EF-A0F7-50521F707C33&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff47353000 - 0x7fff47355ff7 com.apple.securityhi (9.0 - 55006) &lt;05717F77-7A7B-37E6-AB3E-03F063E9095B&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff47356000 - 0x7fff4735cff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) &lt;3CC050FB-EBCB-3087-8EA5-F378C8F99217&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff4747e000 - 0x7fff4747efff com.apple.Cocoa (6.11 - 23) &lt;8D092DD2-0CA4-34C9-872C-8BBFAE1995A4&gt; /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff4748c000 - 0x7fff475dbff7 com.apple.ColorSync (4.13.0 - 3345.6) &lt;31648BB6-7239-3D0E-81B1-BCF51FEF557F&gt; /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff47767000 - 0x7fff477edfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &lt;1E8E64E6-0E58-375A-97F7-07CB4EE181AC&gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff47851000 - 0x7fff4787bffb com.apple.CoreBluetooth (1.0 - 1) &lt;A73F1709-DD18-3052-9F22-C0015278834B&gt; /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff4787c000 - 0x7fff47c01fef com.apple.CoreData (120 - 866.6) &lt;132CB39B-8D58-30FA-B8AD-49BFFF34B293&gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff47c02000 - 0x7fff47cf2ff7 com.apple.CoreDisplay (101.3 - 110.18) &lt;0EB2A997-FCAD-3D17-B140-9829961E5327&gt; /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff47cf3000 - 0x7fff48137fe7 com.apple.CoreFoundation (6.9 - 1575.19) &lt;B2850F42-CE01-3156-B121-FD4777290C8F&gt; /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff48139000 - 0x7fff487c8fff com.apple.CoreGraphics (2.0 - 1265.9) &lt;BC95B558-EF77-3A57-A0BC-11606C778991&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff487ca000 - 0x7fff48aeafff com.apple.CoreImage (14.4.0 - 750.0.140) &lt;11026E39-D2FF-3CF6-8ACE-7BA293F9853E&gt; /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff48b64000 - 0x7fff48bbaff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) &lt;015D7611-2CC6-3B40-9639-43FB80222239&gt; /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff48bbd000 - 0x7fff48de6fff com.apple.CoreML (1.0 - 1) &lt;9EC1FED2-BA47-307B-A326-43C4D05166E7&gt; /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML 0x7fff48de7000 - 0x7fff48eebfff com.apple.CoreMedia (1.0 - 2290.13) &lt;A739B93D-23C2-3A34-8D61-6AC924B9634F&gt; /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff48eec000 - 0x7fff48f47fff com.apple.CoreMediaIO (900.0 - 5050.1) &lt;63944D63-D138-3774-BAB4-A95679469A43&gt; /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff48f48000 - 0x7fff48f48fff com.apple.CoreServices (946 - 946) &lt;6EC9F377-EBD8-3358-92D1-6586F6F1E8E9&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff48f49000 - 0x7fff48fc5ff7 com.apple.AE (773 - 773) &lt;55AE7C9E-27C3-30E9-A047-3B92A6FD53B4&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff48fc6000 - 0x7fff4929dfff com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) &lt;CB87F0C7-2CD6-3983-8E32-B6A2EC925352&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff4929e000 - 0x7fff492e6ff7 com.apple.DictionaryServices (1.2 - 284.16.4) &lt;746EB200-DC51-30AE-9CBC-608A7B4CC8DA&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff492e7000 - 0x7fff492efffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) &lt;8406D379-8D33-3611-861B-7ABD26DB50D2&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff492f0000 - 0x7fff494a1ff7 com.apple.LaunchServices (946 - 946) &lt;A0C91634-9410-38E8-BC11-7A5A369E6BA5&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff494a2000 - 0x7fff49540ff7 com.apple.Metadata (10.7.0 - 1191.57) &lt;BFFAED00-2560-318A-BB8F-4E7E5123EC61&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff49541000 - 0x7fff4958bff7 com.apple.CoreServices.OSServices (946 - 946) &lt;20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff4958c000 - 0x7fff495f3ff7 com.apple.SearchKit (1.4.0 - 1.4.0) &lt;DA08AA6F-A6F1-36C0-87F4-E26294E51A3A&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff495f4000 - 0x7fff49615ff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) &lt;487A8464-729E-305A-B5D1-E3FE8EB9CFC5&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff49920000 - 0x7fff49a82ff3 com.apple.CoreText (352.0 - 584.26.3.2) &lt;59919B0C-CBD5-3877-8D6F-D6048F1E5F42&gt; /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff49a83000 - 0x7fff49ac3ff3 com.apple.CoreVideo (1.8 - 281.4) &lt;10CF8E52-07E3-382B-8091-2CEEEFFA69B4&gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff49ac4000 - 0x7fff49b53fff com.apple.framework.CoreWLAN (13.0 - 1375.2) &lt;BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92&gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff49cd6000 - 0x7fff49d84fff com.apple.DiscRecording (9.0.3 - 9030.4.5) &lt;D7A28B57-C025-3D44-BB17-82243B7B91BC&gt; /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff49daa000 - 0x7fff49dafffb com.apple.DiskArbitration (2.7 - 2.7) &lt;F481F2C0-884E-3265-8111-ABBEC93F0920&gt; /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff49f72000 - 0x7fff49f74ff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) &lt;205B0C3E-4E8D-3347-A993-469F06ABBFF9&gt; /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff49f75000 - 0x7fff4a322ffb com.apple.Foundation (6.9 - 1575.19) &lt;A85BF812-B784-36B9-89BB-E29772B0708C&gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff4a391000 - 0x7fff4a3c0ffb com.apple.GSS (4.0 - 2.0) &lt;E2B90D08-3857-3155-9FCC-07D778988EC9&gt; /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff4a3c1000 - 0x7fff4a3daff3 com.apple.GameController (1.0 - 1) &lt;9339D37B-54EA-31C5-A4A5-2135288BA992&gt; /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff4a4c0000 - 0x7fff4a5cafff com.apple.Bluetooth (6.0.14 - 6.0.14d3) &lt;C2D1A774-2390-363D-8215-BF51FFCB6CCA&gt; /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff4a62d000 - 0x7fff4a6bcfff com.apple.framework.IOKit (2.0.2 - 1483.260.4) &lt;8A90F547-86EF-3DFB-92FE-0E2C0376DD84&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff4a6be000 - 0x7fff4a6cdffb com.apple.IOSurface (255.6.1 - 255.6.1) &lt;85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE&gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff4a6ce000 - 0x7fff4a720ff3 com.apple.ImageCaptureCore (1.0 - 1534.2) &lt;27942C51-8108-3ED9-B37E-7C365A31EC2D&gt; /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff4a721000 - 0x7fff4a8acfef com.apple.ImageIO.framework (3.3.0 - 1850.2) &lt;75E46A31-D87D-35CE-86A4-96A50971FDB2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff4a8ad000 - 0x7fff4a8b1ffb libGIF.dylib (1850.2) &lt;4774EBDF-583B-3DDD-A0E1-9F427CB6A074&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff4a8b2000 - 0x7fff4a98efef libJP2.dylib (1850.2) &lt;697BB77F-A682-339F-8659-35432962432D&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff4a98f000 - 0x7fff4a9b4feb libJPEG.dylib (1850.2) &lt;171A8AC4-AADA-376F-9F2C-B9C978DB1007&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff4ac77000 - 0x7fff4ac9dfeb libPng.dylib (1850.2) &lt;FBCEE909-F573-3AD6-A45F-AF32612BF8A2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff4ac9e000 - 0x7fff4aca0ffb libRadiance.dylib (1850.2) &lt;56907025-D5CE-3A9E-ACCB-A376C2599853&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff4aca1000 - 0x7fff4aceefe7 libTIFF.dylib (1850.2) &lt;F59557C9-C761-3E6F-85D1-0FBFFD53ED5C&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff4afe9000 - 0x7fff4be49fff com.apple.JavaScriptCore (14607 - 14607.3.9) &lt;9B7D9E8B-619D-34A1-8FA9-E23C0EA3CD02&gt; /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff4be61000 - 0x7fff4be7afff com.apple.Kerberos (3.0 - 1) &lt;DB1E0679-37E1-3B93-9789-32F63D660C3B&gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff4befd000 - 0x7fff4bf1bfff com.apple.CoreAuthentication.SharedUtils (1.0 - 425.270.3) &lt;DDEAC106-D051-385A-9F74-CD9BE230D336&gt; /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff4bf1c000 - 0x7fff4bf30fff com.apple.LocalAuthentication (1.0 - 425.270.3) &lt;23CD2E0C-5A3A-348D-986F-58F302E4FEA4&gt; /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff4c134000 - 0x7fff4c13efff com.apple.MediaAccessibility (1.0 - 114.4) &lt;76C449C5-DB45-3D7F-BFAD-3DACEF15DA21&gt; /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff4c153000 - 0x7fff4c1edffb com.apple.MediaPlayer (1.0 - 1.0) &lt;B29D3221-A7E1-3DA9-AF9C-5EA8B15841D4&gt; /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff4c1ee000 - 0x7fff4c894fff com.apple.MediaToolbox (1.0 - 2290.13) &lt;71BB5D76-34CA-3A30-AECF-24BE29FCC275&gt; /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff4c896000 - 0x7fff4c93eff7 com.apple.Metal (162.2 - 162.2) &lt;FFF7DFF3-7C4E-32C6-A0B5-C356079D3B7C&gt; /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff4c940000 - 0x7fff4c959ff3 com.apple.MetalKit (1.0 - 113) &lt;51CDE966-54A7-3556-971B-1173E9986BB8&gt; /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit 0x7fff4c95a000 - 0x7fff4c979ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) &lt;44CE8362-E972-3697-AD6F-15BC863BAEB8&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff4c97a000 - 0x7fff4c9f6fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) &lt;EE8440DA-66DF-3923-ABBC-E0543211C069&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff4c9f7000 - 0x7fff4ca1efff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) &lt;E64450DF-2B96-331E-B7F4-666E00571C70&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff4ca1f000 - 0x7fff4cb4aff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) &lt;F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff4cb4b000 - 0x7fff4cb65fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) &lt;B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff4cb66000 - 0x7fff4cb67ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) &lt;69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff4d95e000 - 0x7fff4d96aff7 com.apple.NetFS (6.0 - 4.0) &lt;E917806F-0607-3292-B2D6-A15404D61B99&gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff50408000 - 0x7fff5045fff7 com.apple.opencl (2.15.3 - 2.15.3) &lt;056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A&gt; /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff50460000 - 0x7fff5047bff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) &lt;F03D84EB-49B2-3A00-9127-B9A269824026&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff5047c000 - 0x7fff50487ffb com.apple.OpenDirectory (10.14 - 207.200.4) &lt;A8020CEE-5B78-3581-A735-EA2833683F31&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff50dd7000 - 0x7fff50dd9fff libCVMSPluginSupport.dylib (17.7.3) &lt;8E051EA7-55B6-3DF1-9821-72C391DE953B&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff50dda000 - 0x7fff50ddfff3 libCoreFSCache.dylib (166.2) &lt;222C2A4F-7E32-30F6-8459-2FAB98073A3D&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff50de0000 - 0x7fff50de4fff libCoreVMClient.dylib (166.2) &lt;6789ECD4-91DD-32EF-A1FD-F27D2344CD8B&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff50de5000 - 0x7fff50dedff7 libGFXShared.dylib (17.7.3) &lt;8C50BF27-B525-3B23-B86C-F444ADF97851&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff50dee000 - 0x7fff50df9fff libGL.dylib (17.7.3) &lt;2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff50dfa000 - 0x7fff50e34fef libGLImage.dylib (17.7.3) &lt;AA027AFA-C115-3861-89B2-0AE946838952&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff50fa8000 - 0x7fff50fe6fff libGLU.dylib (17.7.3) &lt;CB3B0579-D9A2-3CA5-8942-0C8344FAD054&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff51983000 - 0x7fff51992ffb com.apple.opengl (17.7.3 - 17.7.3) &lt;94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff51d0f000 - 0x7fff51e58ff7 com.apple.QTKit (7.7.3 - 3040) &lt;D42BB4BE-B347-3113-ACA4-3257A5E45F52&gt; /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff51e59000 - 0x7fff520adfff com.apple.imageKit (3.0 - 1067) &lt;4F398AF4-828E-3FC2-9E3D-4EE3F36F7619&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff520ae000 - 0x7fff5219afff com.apple.PDFKit (1.0 - 745.3) &lt;EF7A5FC1-017A-329E-BDAE-3D136CE28E64&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff5219b000 - 0x7fff5266aff7 com.apple.QuartzComposer (5.1 - 370) &lt;9C59494E-8D09-359E-B457-AA893520984C&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff5266b000 - 0x7fff52691ff7 com.apple.quartzfilters (1.10.0 - 83.1) &lt;1CABB0FA-A6DB-3DD5-A598-F298F081E04E&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff52692000 - 0x7fff52793ff7 com.apple.QuickLookUIFramework (5.0 - 775.6) &lt;5660DDBA-2BE4-310A-9E81-370106EDB21D&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff52794000 - 0x7fff52794fff com.apple.quartzframework (1.5 - 23) &lt;31783652-5E36-3773-8847-9FECFE2487F0&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff52795000 - 0x7fff529ecff7 com.apple.QuartzCore (1.11 - 701.14) &lt;33E846BE-1794-3186-9BF2-6ADF62C782A3&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff529ed000 - 0x7fff52a44fff com.apple.QuickLookFramework (5.0 - 775.6) &lt;CB74C63F-E223-3783-9021-8E28091BCDA6&gt; /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff52c0b000 - 0x7fff52c23fff com.apple.SafariServices.framework (14608 - 14608.1.49) &lt;2631FDD1-6A7F-30A7-A4AC-5BD1443741CD&gt; /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff53222000 - 0x7fff53522fff com.apple.security (7.0 - 58286.270.3.0.1) &lt;DF7677A7-9765-3B6A-9D1C-3589145E4B65&gt; /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff53523000 - 0x7fff535affff com.apple.securityfoundation (6.0 - 55185.260.1) &lt;1EE899E6-222A-3526-B505-B0D0B6FA042A&gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff535b0000 - 0x7fff535e0ffb com.apple.securityinterface (10.0 - 55109.200.8) &lt;02B83641-2D21-3DB8-AAB8-6F8AAD0F6264&gt; /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff535e1000 - 0x7fff535e5fff com.apple.xpc.ServiceManagement (1.0 - 1) &lt;FCF7BABA-DDDD-3770-8DAC-7069850203C2&gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff53834000 - 0x7fff5384affb com.apple.StoreKit (1.0 - 1) &lt;5E26D23D-D85C-32EF-AE44-2B0437893274&gt; /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit 0x7fff5397e000 - 0x7fff539ebfff com.apple.SystemConfiguration (1.17 - 1.17) &lt;30C8327F-3EFF-3520-9C50-016F8B6B954F&gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff53c4a000 - 0x7fff53fabfff com.apple.VideoToolbox (1.0 - 2290.13) &lt;7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230&gt; /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff56c27000 - 0x7fff56cccfeb com.apple.APFS (1.0 - 1) &lt;2D22485D-552D-3CB6-9FE1-38547597918F&gt; /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff576e1000 - 0x7fff576e2ff7 com.apple.AggregateDictionary (1.0 - 1) &lt;A6AF8AC4-1F25-37C4-9157-A02E9C200926&gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff57aa0000 - 0x7fff57be3fff com.apple.AnnotationKit (1.0 - 232.3.30) &lt;A35C5450-FBA1-3E76-9F27-4ED0179AE6A6&gt; /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit 0x7fff57ce3000 - 0x7fff57d0fff7 com.apple.framework.Apple80211 (13.0 - 1380.2) &lt;16F093EF-370B-3B90-8DB4-E94624431D15&gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff57e37000 - 0x7fff57e46fc7 com.apple.AppleFSCompression (96.200.3 - 1.0) &lt;3CF60CE8-976E-3CB8-959D-DD0948C1C2DE&gt; /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff57f42000 - 0x7fff57f4dfff com.apple.AppleIDAuthSupport (1.0 - 1) &lt;2E9D1398-DBE6-328B-ADDA-20FA5FAD7405&gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff57f8e000 - 0x7fff57fd7ff3 com.apple.AppleJPEG (1.0 - 1) &lt;4C1F426B-7D77-3980-9633-7DBD8C666B9A&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff5822b000 - 0x7fff5824dfff com.apple.applesauce (1.0 - ???) &lt;F49107C7-3C51-3024-8EF1-C57643BE4F3B&gt; /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff5830d000 - 0x7fff58310ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) &lt;A48BC6D4-224C-3A25-846B-4D06C53568AE&gt; /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff58311000 - 0x7fff58361ff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) &lt;3399D678-8741-3B70-B8D0-7C63C8ACF7DF&gt; /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff583ac000 - 0x7fff583c0ffb com.apple.AssertionServices (1.0 - 1) &lt;456E507A-4561-3628-9FBE-173ACE7429D8&gt; /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff5878f000 - 0x7fff5887bff7 com.apple.AuthKit (1.0 - 1) &lt;2765ABE9-54F2-3E45-8A93-1261E251B90D&gt; /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff58a3d000 - 0x7fff58a45fff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) &lt;2A396FC0-7B79-3088-9A82-FB93C1181A57&gt; /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff58a46000 - 0x7fff58adbfff com.apple.backup.framework (1.10.5 - ???) &lt;4EEC51E2-AE4C-340A-B686-901810152C12&gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff58adc000 - 0x7fff58b49ff3 com.apple.BaseBoard (360.28 - 360.28) &lt;68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0&gt; /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff58b52000 - 0x7fff58b58ffb com.apple.BezelServicesFW (317.5 - 317.5) &lt;25807B30-117A-33D9-93E6-48E8AE90BD63&gt; /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff58bcf000 - 0x7fff58c0bff3 com.apple.bom (14.0 - 197.6) &lt;A99A6F9A-AFDE-3BC6-95CE-AA90B268B805&gt; /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff599a7000 - 0x7fff599f6ff7 com.apple.ChunkingLibrary (201 - 201) &lt;DFE16C42-24E6-386F-AC50-0058F61980A2&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff5a7b4000 - 0x7fff5a7bdffb com.apple.CommonAuth (4.0 - 2.0) &lt;93335CB6-ABEB-3EC7-A040-8A667F40D5F3&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff5a7d1000 - 0x7fff5a7e6ffb com.apple.commonutilities (8.0 - 900) &lt;080E168B-21B7-3CCA-AB84-BB9911D18DAC&gt; /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff5ac56000 - 0x7fff5b039fef com.apple.CoreAUC (274.0.0 - 274.0.0) &lt;C71F1581-E73B-3DA0-958B-E912C3FB3F23&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff5b03a000 - 0x7fff5b068ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) &lt;A04A99B8-DAC5-36FC-BAC7-7431600C1F89&gt; /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff5b0fe000 - 0x7fff5b15cffb com.apple.corebrightness (1.0 - 1) &lt;61040CCD-0AFD-389F-87E8-0FD9D8C3BAE1&gt; /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff5b496000 - 0x7fff5b4a7ff7 com.apple.CoreEmoji (1.0 - 69.19.9) &lt;228457B3-E191-356E-9A5B-3C0438D05FBA&gt; /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff5b650000 - 0x7fff5b73ffff com.apple.CoreHandwriting (161 - 1.2) &lt;7CBB18C3-FE95-3352-9D67-B441E89AD10F&gt; /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting 0x7fff5b911000 - 0x7fff5b927ffb com.apple.CoreMediaAuthoring (2.2 - 959) &lt;86089759-E920-37DB-A3BB-F5621C351E4A&gt; /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff5ba51000 - 0x7fff5bab7ff7 com.apple.CoreNLP (1.0 - 130.15.22) &lt;27877820-17D0-3B02-8557-4014E876CCC7&gt; /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff5bc23000 - 0x7fff5bcaffff com.apple.CorePDF (4.0 - 414) &lt;E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0&gt; /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff5bd64000 - 0x7fff5bd6cff7 com.apple.CorePhoneNumbers (1.0 - 1) &lt;11F97C7E-C183-305F-8E6C-9B374F50E26B&gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff5bee8000 - 0x7fff5bf19ff3 com.apple.CoreServicesInternal (358 - 358) &lt;DD6EF60D-048F-3186-83DA-EB191EDF48AE&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff5c2e0000 - 0x7fff5c364fff com.apple.CoreSymbolication (10.2 - 64490.25.1) &lt;28B2FF2D-3FDE-3A20-B343-341E5BD4E22F&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff5c3f4000 - 0x7fff5c51fff7 com.apple.coreui (2.1 - 499.10) &lt;A80F4B09-F940-346F-A9DF-4EFADD9220A8&gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff5c520000 - 0x7fff5c6c0fff com.apple.CoreUtils (5.9 - 590.16) &lt;66CC50F7-766D-33E2-A388-4DE22840ADFB&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff5c714000 - 0x7fff5c777ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) &lt;CA4B835A-27AC-3FAB-9F44-E48548EA2442&gt; /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff5c778000 - 0x7fff5c789ff7 com.apple.CrashReporterSupport (10.13 - 938.26) &lt;E93D84A6-891D-38EE-BB4F-E9CD681189B7&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff5c819000 - 0x7fff5c828fff com.apple.framework.DFRFoundation (1.0 - 211.1) &lt;E3F02F2A-2059-39CC-85DA-969676EB88EB&gt; /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff5c829000 - 0x7fff5c82dff7 com.apple.DSExternalDisplay (3.1 - 380) &lt;787B9748-B120-3453-B8FE-61D9E363A9E0&gt; /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff5c8ae000 - 0x7fff5c923ffb com.apple.datadetectorscore (7.0 - 590.27) &lt;06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8&gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff5c96f000 - 0x7fff5c9acff7 com.apple.DebugSymbols (190 - 190) &lt;6F4FAACA-E06B-38AD-A0C2-14EA5408A231&gt; /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff5c9ad000 - 0x7fff5cae8ff7 com.apple.desktopservices (1.13.5 - ???) &lt;265C0E94-B8BF-3F58-8D68-EA001EEA0B15&gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff5ccf4000 - 0x7fff5cdbafff com.apple.DiskManagement (12.1 - 1555.270.2) &lt;EB207683-FBD6-3B74-A606-3FE22234372C&gt; /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff5cdbb000 - 0x7fff5cdbfffb com.apple.DisplayServicesFW (3.1 - 380) &lt;62041594-2A4C-3362-87EE-F8E8C8E5BEEC&gt; /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff5ce68000 - 0x7fff5ce6bff3 com.apple.EFILogin (2.0 - 2) &lt;210948F9-FD39-392D-8349-34985B3C751C&gt; /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff5d5a1000 - 0x7fff5d883ff7 com.apple.vision.EspressoFramework (1.0 - 120) &lt;8B56D943-F87B-3A01-B7A4-19DE3312B61C&gt; /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso 0x7fff5da2f000 - 0x7fff5de4afff com.apple.vision.FaceCore (3.3.4 - 3.3.4) &lt;A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD&gt; /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff616fe000 - 0x7fff616fffff libmetal_timestamp.dylib (902.3.2) &lt;05389463-AF2E-33E2-A14F-1416E4A30835&gt; /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff62d9f000 - 0x7fff62da4fff com.apple.GPUWrangler (3.50.12 - 3.50.12) &lt;6C820ED9-F306-3978-B5B8-432AD97BBDAF&gt; /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff63132000 - 0x7fff63156ff3 com.apple.GenerationalStorage (2.0 - 285.101) &lt;84C2E52C-F2C6-3FF8-87E5-3C88A40D3881&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff63bb0000 - 0x7fff63bbffff com.apple.GraphVisualizer (1.0 - 5) &lt;48D020B7-5938-3FAE-B468-E291AEE2C06F&gt; /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff63d25000 - 0x7fff63d99ffb com.apple.Heimdal (4.0 - 2.0) &lt;D97FCF19-EAD6-3E2F-BE88-F817E45CAE96&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff65095000 - 0x7fff6509efff com.apple.IOAccelMemoryInfo (1.0 - 1) &lt;EA04DC2A-F0C8-3471-9E59-BE8697050ADF&gt; /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff6509f000 - 0x7fff650a6ffb com.apple.IOAccelerator (404.14 - 404.14) &lt;11A50171-C8AE-3BBC-9FB9-2A3313FFBD31&gt; /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff650aa000 - 0x7fff650c2fff com.apple.IOPresentment (1.0 - 42.6) &lt;6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A&gt; /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff6546a000 - 0x7fff65497ff7 com.apple.IconServices (379 - 379) &lt;7BAD562D-4FA3-3E11-863C-1EEBE2406D2C&gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff655c1000 - 0x7fff655c5ffb com.apple.InternationalSupport (1.0 - 10.15.6) &lt;6226A905-D055-321D-B665-5B0CC4798A74&gt; /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff6572a000 - 0x7fff6573cff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) &lt;30CFE05C-4108-3879-AFAA-5BB02CBE190B&gt; /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff65757000 - 0x7fff65832ff7 com.apple.LanguageModeling (1.0 - 159.15.15) &lt;3DE3CE61-542B-37B7-883E-4B9717CAC65F&gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff65833000 - 0x7fff6586fff7 com.apple.Lexicon-framework (1.0 - 33.15.10) &lt;4B5E843E-2809-3E70-9560-9254E2656419&gt; /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff65876000 - 0x7fff6587bfff com.apple.LinguisticData (1.0 - 238.25) &lt;F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0&gt; /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff66099000 - 0x7fff6609cfff com.apple.Mangrove (1.0 - 25) &lt;537A5B2E-4C30-3CFD-8BDC-79F9A04AC327&gt; /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff66123000 - 0x7fff66149ff3 com.apple.MarkupUI (1.0 - 232.3.30) &lt;C6A452D8-CA97-3044-A025-8ED4B7264FE2&gt; /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI 0x7fff661b1000 - 0x7fff661e4ff7 com.apple.MediaKit (16 - 907) &lt;5EE0E7DA-5ACC-33F3-9BF0-47A448C011A1&gt; /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff661e5000 - 0x7fff66508fff com.apple.MediaRemote (1.0 - 1) &lt;8AF135B0-781C-3B85-B44A-C0CFAC3EADE0&gt; /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff66509000 - 0x7fff6652cfff com.apple.MediaServices (1.0 - 1) &lt;82718A05-BD2D-37C2-A689-F09542CA988F&gt; /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff66570000 - 0x7fff66598ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) &lt;38BB1FB7-3336-384C-B71F-4D0D402EB606&gt; /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff66599000 - 0x7fff66626ff7 com.apple.gpusw.MetalTools (1.0 - 1) &lt;CBE2176A-8048-3A9C-AFE4-13973D44C704&gt; /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff6663d000 - 0x7fff66656ffb com.apple.MobileAssets (1.0 - 437.250.3) &lt;8BE5B3A0-8F3A-3FAE-9AFF-32836300183C&gt; /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff667d1000 - 0x7fff667ecffb com.apple.MobileKeyBag (2.0 - 1.0) &lt;C7C5DD21-66DE-31D1-92D9-BBEEAAE156FB&gt; /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff667ff000 - 0x7fff66874fff com.apple.Montreal (1.0 - 42.15.9) &lt;17BFD046-4362-3A76-A496-648D00FF3743&gt; /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal 0x7fff66875000 - 0x7fff6689fffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) &lt;42A23EC9-64A7-31C7-BF33-DF4412ED8A3F&gt; /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff66adb000 - 0x7fff66ae5fff com.apple.NetAuth (6.2 - 6.2) &lt;0D01BBE5-0269-310D-B148-D19DAE143DEB&gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff66bbb000 - 0x7fff66bd5ff7 com.apple.network.statistics.framework (1.2 - 1) &lt;B056D329-5C7C-3FB4-991E-7092DB2F9A5B&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff67346000 - 0x7fff67397ff3 com.apple.OTSVG (1.0 - ???) &lt;5BF1A9EB-2694-3267-9514-A4EB3BEF4081&gt; /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff6843b000 - 0x7fff6852efff com.apple.PencilKit (1.0 - 1) &lt;79225726-6980-3680-AC0B-D8C5C5DB2224&gt; /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit 0x7fff6852f000 - 0x7fff6853eff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) &lt;65F3DB3E-6D4E-33A0-B510-EF768D323DAB&gt; /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff6853f000 - 0x7fff68568ff3 com.apple.persistentconnection (1.0 - 1.0) &lt;9ECE64D9-8C5F-3FCE-8A46-29D7B3966920&gt; /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff6a37b000 - 0x7fff6a3cfffb com.apple.ProtectedCloudStorage (1.0 - 1) &lt;53B3C1F3-BB97-379F-8CBA-8FDCDF085793&gt; /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff6a3d0000 - 0x7fff6a3eeff7 com.apple.ProtocolBuffer (1 - 263.2) &lt;907D6C95-D050-31DE-99CA-16A5135BC6F9&gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff6a56c000 - 0x7fff6a56fff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) &lt;69D0DD00-A3D2-3835-91F0-F33BD9D7D740&gt; /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem 0x7fff6a570000 - 0x7fff6a585ff3 com.apple.QuickLookThumbnailing (1.0 - 1) &lt;B5E746AE-1DCB-3299-8626-10CCCBC2D5EE&gt; /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff6a586000 - 0x7fff6a5d6fff com.apple.ROCKit (27.6 - 27.6) &lt;756C2253-E8B1-3C48-9945-DE8D6AD24DE2&gt; /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit 0x7fff6a716000 - 0x7fff6a721fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) &lt;651F994E-21E1-359B-8FEA-6909CE9AAD56&gt; /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff6a734000 - 0x7fff6a756fff com.apple.RemoteViewServices (2.0 - 128) &lt;8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC&gt; /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff6a757000 - 0x7fff6a76aff3 com.apple.xpc.RemoteXPC (1.0 - 1336.261.2) &lt;E7B66B18-F5DF-3819-BA47-E35122BA09E8&gt; /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff6bf60000 - 0x7fff6c07efff com.apple.Sharing (1288.62 - 1288.62) &lt;48B1F247-7910-3C16-814C-B99DE231F7F0&gt; /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff6ce92000 - 0x7fff6d141fff com.apple.SkyLight (1.600.0 - 340.54) &lt;90EB1C2E-B264-3EC4-AF7F-CDE7E7585746&gt; /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff6d8e4000 - 0x7fff6d8f0fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) &lt;7A6A67DB-C813-328E-AAFB-D267A5B50B3D&gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff6df8f000 - 0x7fff6dfcbff3 com.apple.StreamingZip (1.0 - 1) &lt;046FAD5C-E0C5-3013-B1FE-24C018A0DDCF&gt; /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff6e041000 - 0x7fff6e0ccfc7 com.apple.Symbolication (10.2 - 64490.38.1) &lt;9FDCC98D-5B32-35AD-A9BF-94DF2B78507F&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff6e5a3000 - 0x7fff6e5affff com.apple.private.SystemPolicy (1.0 - 1) &lt;9CDA85A3-875C-3615-8818-2DC73E9FFE8B&gt; /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy 0x7fff6e5b4000 - 0x7fff6e5c0ffb com.apple.TCC (1.0 - 1) &lt;73CF6FA9-44CE-30C9-887F-235940976585&gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff6e826000 - 0x7fff6e8eeff3 com.apple.TextureIO (3.8.4 - 3.8.1) &lt;7CEAC05A-D283-3D5A-B1E3-C849285FA0BF&gt; /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff6e9ab000 - 0x7fff6eb62ffb com.apple.UIFoundation (1.0 - 551.2) &lt;917480B5-14BE-30E0-ABE6-9702336CC35A&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6f7de000 - 0x7fff6f8b7fff com.apple.ViewBridge (401.1 - 401.1) &lt;18144EC1-5DEF-369C-8EBA-2826E7142784&gt; /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff7008f000 - 0x7fff70092fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) &lt;7AE3457F-AF40-3508-93FB-1D9E31EB1C9D&gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff70493000 - 0x7fff70495ffb com.apple.loginsupport (1.0 - 1) &lt;3F8D6334-BCD6-36C1-BA20-CC8503A84375&gt; /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff7075f000 - 0x7fff70793fff libCRFSuite.dylib (41.15.4) &lt;406DAC06-0C77-3F90-878B-4D38F11F0256&gt; /usr/lib/libCRFSuite.dylib 0x7fff70796000 - 0x7fff707a0ff7 libChineseTokenizer.dylib (28.15.3) &lt;9B7F6109-3A5D-3641-9A7E-31D2239D73EE&gt; /usr/lib/libChineseTokenizer.dylib 0x7fff707a1000 - 0x7fff7082afff libCoreStorage.dylib (546.50.1) &lt;8E643B27-7986-3351-B37E-038FB6794BF9&gt; /usr/lib/libCoreStorage.dylib 0x7fff7082e000 - 0x7fff7082fffb libDiagnosticMessagesClient.dylib (107) &lt;A14D0819-0970-34CD-8680-80E4D7FE8C2C&gt; /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff70866000 - 0x7fff70abdff3 libFosl_dynamic.dylib (18.3.4) &lt;1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8&gt; /usr/lib/libFosl_dynamic.dylib 0x7fff70add000 - 0x7fff70ae4fff libMatch.1.dylib (31.200.1) &lt;EF8164CB-B599-39D9-9E73-4958A372DC0B&gt; /usr/lib/libMatch.1.dylib 0x7fff70b0e000 - 0x7fff70b2dfff libMobileGestalt.dylib (645.270.1) &lt;99A06C8A-97D6-383D-862C-F453BABB48A4&gt; /usr/lib/libMobileGestalt.dylib 0x7fff70b2e000 - 0x7fff70b2efff libOpenScriptingUtil.dylib (179.1) &lt;4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6&gt; /usr/lib/libOpenScriptingUtil.dylib 0x7fff70c6e000 - 0x7fff70c6fffb libSystem.B.dylib (1252.250.1) &lt;B1006948-7AD0-3CA9-81E0-833F4DD6BFB4&gt; /usr/lib/libSystem.B.dylib 0x7fff70ceb000 - 0x7fff70cecfff libThaiTokenizer.dylib (2.15.1) &lt;ADB37DC3-7D9B-3E73-A72A-BCC3433C937A&gt; /usr/lib/libThaiTokenizer.dylib 0x7fff70cfe000 - 0x7fff70d14ffb libapple_nghttp2.dylib (1.24.1) &lt;6F04250A-6686-3FDC-9A8D-290C64B06502&gt; /usr/lib/libapple_nghttp2.dylib 0x7fff70d15000 - 0x7fff70d3effb libarchive.2.dylib (54.250.1) &lt;47289946-8504-3966-9127-6CE39993DC2C&gt; /usr/lib/libarchive.2.dylib 0x7fff70d3f000 - 0x7fff70dbefff libate.dylib (1.13.8) &lt;92B44EDB-369D-3EE8-AEC5-61F8B9313DBF&gt; /usr/lib/libate.dylib 0x7fff70dc2000 - 0x7fff70dc2ff3 libauto.dylib (187) &lt;3E3780E1-96F3-3A22-91C5-92F9A5805518&gt; /usr/lib/libauto.dylib 0x7fff70e92000 - 0x7fff70ea2ffb libbsm.0.dylib (39.200.18) &lt;CF381E0B-025B-364F-A83D-2527E03F1AA3&gt; /usr/lib/libbsm.0.dylib 0x7fff70ea3000 - 0x7fff70eb0fff libbz2.1.0.dylib (38.200.3) &lt;272953A1-8D36-329B-BDDB-E887B347710F&gt; /usr/lib/libbz2.1.0.dylib 0x7fff70eb1000 - 0x7fff70f04ff7 libc++.1.dylib (400.9.4) &lt;9A60A190-6C34-339F-BB3D-AACE942009A4&gt; /usr/lib/libc++.1.dylib 0x7fff70f05000 - 0x7fff70f1aff7 libc++abi.dylib (400.17) &lt;38C09CED-9090-3719-90F3-04A2749F5428&gt; /usr/lib/libc++abi.dylib 0x7fff70f1b000 - 0x7fff70f1bff3 libcharset.1.dylib (51.200.6) &lt;2A27E064-314C-359C-93FC-8A9B06206174&gt; /usr/lib/libcharset.1.dylib 0x7fff70f1c000 - 0x7fff70f2cffb libcmph.dylib (6.15.1) &lt;9C52B2FE-179F-32AC-B87E-2AFC49ABF817&gt; /usr/lib/libcmph.dylib 0x7fff70f2d000 - 0x7fff70f45ffb libcompression.dylib (52.250.2) &lt;7F4BB18C-1FB4-3825-8D8B-6E6B168774C6&gt; /usr/lib/libcompression.dylib 0x7fff711ba000 - 0x7fff711d0fff libcoretls.dylib (155.220.1) &lt;4C64BE3E-41E3-3020-8BB7-07E90C0C861C&gt; /usr/lib/libcoretls.dylib 0x7fff711d1000 - 0x7fff711d2ff3 libcoretls_cfhelpers.dylib (155.220.1) &lt;0959B3E9-6643-3589-8BB3-21D52CDF0EF1&gt; /usr/lib/libcoretls_cfhelpers.dylib 0x7fff7166b000 - 0x7fff71676ff7 libcsfde.dylib (546.50.1) &lt;7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063&gt; /usr/lib/libcsfde.dylib 0x7fff7167e000 - 0x7fff716d4ff3 libcups.2.dylib (462.12) &lt;095619DC-9233-3937-9E50-5F10D917A40D&gt; /usr/lib/libcups.2.dylib 0x7fff71808000 - 0x7fff71808fff libenergytrace.dylib (17.200.1) &lt;80BB567A-FD18-3497-BF97-353F57D98CDD&gt; /usr/lib/libenergytrace.dylib 0x7fff71809000 - 0x7fff71822ffb libexpat.1.dylib (16.1.1) &lt;28A385F1-4210-32D2-861B-C1B2189A5294&gt; /usr/lib/libexpat.1.dylib 0x7fff7183a000 - 0x7fff7183fff7 libgermantok.dylib (17.15.2) &lt;E5F0F794-FF27-3D64-AE52-C78C6A84DD67&gt; /usr/lib/libgermantok.dylib 0x7fff71840000 - 0x7fff71845ff7 libheimdal-asn1.dylib (520.270.1) &lt;73F60D6F-76F8-35EF-9C86-9A81225EE4BE&gt; /usr/lib/libheimdal-asn1.dylib 0x7fff71870000 - 0x7fff71960fff libiconv.2.dylib (51.200.6) &lt;2047C9B7-3F74-3A95-810D-2ED8F0475A99&gt; /usr/lib/libiconv.2.dylib 0x7fff71961000 - 0x7fff71bc2ffb libicucore.A.dylib (62141.0.1) &lt;A0D63918-76E9-3C1B-B255-46F4C1DA7FE8&gt; /usr/lib/libicucore.A.dylib 0x7fff71c0f000 - 0x7fff71c10fff liblangid.dylib (128.15.1) &lt;22D05C4F-769B-3075-ABCF-44A0EBACE028&gt; /usr/lib/liblangid.dylib 0x7fff71c11000 - 0x7fff71c29ff3 liblzma.5.dylib (10.200.3) &lt;E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0&gt; /usr/lib/liblzma.5.dylib 0x7fff71c41000 - 0x7fff71ce5ff7 libmecab.1.0.0.dylib (779.24.1) &lt;A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2&gt; /usr/lib/libmecab.1.0.0.dylib 0x7fff71ce6000 - 0x7fff71eeafff libmecabra.dylib (779.24.1) &lt;D71F71E0-30E2-3DB3-B636-7DE13D51FB4B&gt; /usr/lib/libmecabra.dylib 0x7fff720c2000 - 0x7fff72413ff7 libnetwork.dylib (1229.250.15) &lt;72C7E9E3-B2BE-3300-BE1B-64606222022C&gt; /usr/lib/libnetwork.dylib 0x7fff724a5000 - 0x7fff72c2afdf libobjc.A.dylib (756.2) &lt;7C312627-43CB-3234-9324-4DEA92D59F50&gt; /usr/lib/libobjc.A.dylib 0x7fff72c3c000 - 0x7fff72c40ffb libpam.2.dylib (22.200.1) &lt;586CF87F-349C-393D-AEEB-FB75F94A5EB7&gt; /usr/lib/libpam.2.dylib 0x7fff72c43000 - 0x7fff72c78fff libpcap.A.dylib (79.250.1) &lt;C0893641-7DFF-3A33-BDAE-190FF54837E8&gt; /usr/lib/libpcap.A.dylib 0x7fff72cce000 - 0x7fff72cd1fff libpmenergy.dylib (194.267.1) &lt;533A839F-37DC-3564-87A8-8CDE6243F15E&gt; /usr/lib/libpmenergy.dylib 0x7fff72cd2000 - 0x7fff72cd4fff libpmsample.dylib (194.267.1) &lt;8B691606-BC20-3DDE-940B-C3937DD72CFE&gt; /usr/lib/libpmsample.dylib 0x7fff72d91000 - 0x7fff72da9ffb libresolv.9.dylib (65.200.2) &lt;893142A5-F153-3437-A22D-407EE542B5C5&gt; /usr/lib/libresolv.9.dylib 0x7fff72dab000 - 0x7fff72de6ff3 libsandbox.1.dylib (851.270.1) &lt;04B924EF-2385-34DF-807E-93AAD9EF3AAB&gt; /usr/lib/libsandbox.1.dylib 0x7fff72dfa000 - 0x7fff72dfbff7 libspindump.dylib (267.3) &lt;A584E403-8C95-3841-9C16-E22664A5A63F&gt; /usr/lib/libspindump.dylib 0x7fff72dfc000 - 0x7fff72fd9fff libsqlite3.dylib (274.26) &lt;6404BA3B-BCA4-301F-B2FE-8776105A2AA3&gt; /usr/lib/libsqlite3.dylib 0x7fff731f2000 - 0x7fff731f5ff7 libutil.dylib (51.200.4) &lt;CE9B18C9-66ED-32D4-9D29-01F8FCB467B0&gt; /usr/lib/libutil.dylib 0x7fff731f6000 - 0x7fff73203fff libxar.1.dylib (417.1) &lt;39CCF46B-C81A-34B1-92A1-58C4E5DA846E&gt; /usr/lib/libxar.1.dylib 0x7fff73208000 - 0x7fff732eaff3 libxml2.2.dylib (32.10) &lt;AA4E1B1F-0FDE-3274-9FA5-75446298D1AC&gt; /usr/lib/libxml2.2.dylib 0x7fff732eb000 - 0x7fff73313ff3 libxslt.1.dylib (16.5) &lt;E330D3A2-E32B-378A-973E-A8D245C0F712&gt; /usr/lib/libxslt.1.dylib 0x7fff73314000 - 0x7fff73326ff7 libz.1.dylib (70.200.4) &lt;B048FC1F-058F-3A08-A1FE-81D5308CB3E6&gt; /usr/lib/libz.1.dylib 0x7fff73b0a000 - 0x7fff73b0eff3 libcache.dylib (81) &lt;1987D1E1-DB11-3291-B12A-EBD55848E02D&gt; /usr/lib/system/libcache.dylib 0x7fff73b0f000 - 0x7fff73b19ff3 libcommonCrypto.dylib (60118.250.2) &lt;1765BB6E-6784-3653-B16B-CB839721DC9A&gt; /usr/lib/system/libcommonCrypto.dylib 0x7fff73b1a000 - 0x7fff73b21ff7 libcompiler_rt.dylib (63.4) &lt;5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8&gt; /usr/lib/system/libcompiler_rt.dylib 0x7fff73b22000 - 0x7fff73b2bff7 libcopyfile.dylib (146.250.1) &lt;98CD00CD-9B91-3B5C-A9DB-842638050FA8&gt; /usr/lib/system/libcopyfile.dylib 0x7fff73b2c000 - 0x7fff73bb0fc3 libcorecrypto.dylib (602.260.2) &lt;01464D24-570C-3B83-9D18-467769E0FCDD&gt; /usr/lib/system/libcorecrypto.dylib 0x7fff73c37000 - 0x7fff73c70ff7 libdispatch.dylib (1008.270.1) &lt;97273678-E94C-3C8C-89F6-2E2020F4B43B&gt; /usr/lib/system/libdispatch.dylib 0x7fff73c71000 - 0x7fff73c9dff7 libdyld.dylib (655.1.1) &lt;002418CC-AD11-3D10-865B-015591D24E6C&gt; /usr/lib/system/libdyld.dylib 0x7fff73c9e000 - 0x7fff73c9effb libkeymgr.dylib (30) &lt;0D0F9CA2-8D5A-3273-8723-59987B5827F2&gt; /usr/lib/system/libkeymgr.dylib 0x7fff73c9f000 - 0x7fff73cabff3 libkxld.dylib (4903.271.2) &lt;FBF128C8-D3F0-36B6-983A-A63B8A3E0E52&gt; /usr/lib/system/libkxld.dylib 0x7fff73cac000 - 0x7fff73cacff7 liblaunch.dylib (1336.261.2) &lt;2B07E27E-D404-3E98-9D28-BCA641E5C479&gt; /usr/lib/system/liblaunch.dylib 0x7fff73cad000 - 0x7fff73cb2fff libmacho.dylib (927.0.3) &lt;A377D608-77AB-3F6E-90F0-B4F251A5C12F&gt; /usr/lib/system/libmacho.dylib 0x7fff73cb3000 - 0x7fff73cb5ffb libquarantine.dylib (86.220.1) &lt;6D0BC770-7348-3608-9254-F7FFBD347634&gt; /usr/lib/system/libquarantine.dylib 0x7fff73cb6000 - 0x7fff73cb7ff7 libremovefile.dylib (45.200.2) &lt;9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6&gt; /usr/lib/system/libremovefile.dylib 0x7fff73cb8000 - 0x7fff73ccfff3 libsystem_asl.dylib (356.200.4) &lt;A62A7249-38B8-33FA-9875-F1852590796C&gt; /usr/lib/system/libsystem_asl.dylib 0x7fff73cd0000 - 0x7fff73cd0ff7 libsystem_blocks.dylib (73) &lt;A453E8EE-860D-3CED-B5DC-BE54E9DB4348&gt; /usr/lib/system/libsystem_blocks.dylib 0x7fff73cd1000 - 0x7fff73d58fff libsystem_c.dylib (1272.250.1) &lt;7EDACF78-2FA3-35B8-B051-D70475A35117&gt; /usr/lib/system/libsystem_c.dylib 0x7fff73d59000 - 0x7fff73d5cffb libsystem_configuration.dylib (963.270.3) &lt;2B4A836D-68A4-33E6-8D48-CD4486B03387&gt; /usr/lib/system/libsystem_configuration.dylib 0x7fff73d5d000 - 0x7fff73d60ff7 libsystem_coreservices.dylib (66) &lt;719F75A4-74C5-3BA6-A09E-0C5A3E5889D7&gt; /usr/lib/system/libsystem_coreservices.dylib 0x7fff73d61000 - 0x7fff73d67fff libsystem_darwin.dylib (1272.250.1) &lt;EC9B39A5-9592-3577-8997-7DC721D20D8C&gt; /usr/lib/system/libsystem_darwin.dylib 0x7fff73d68000 - 0x7fff73d6eff7 libsystem_dnssd.dylib (878.270.2) &lt;E9A5ACCF-E35F-3909-AF0A-2A37CD217276&gt; /usr/lib/system/libsystem_dnssd.dylib 0x7fff73d6f000 - 0x7fff73dbaffb libsystem_info.dylib (517.200.9) &lt;D09D5AE0-2FDC-3A6D-93EC-729F931B1457&gt; /usr/lib/system/libsystem_info.dylib 0x7fff73dbb000 - 0x7fff73de3ff7 libsystem_kernel.dylib (4903.271.2) &lt;EA204E3C-870B-30DD-B4AF-D1BB66420D14&gt; /usr/lib/system/libsystem_kernel.dylib 0x7fff73de4000 - 0x7fff73e2fff7 libsystem_m.dylib (3158.200.7) &lt;F19B6DB7-014F-3820-831F-389CCDA06EF6&gt; /usr/lib/system/libsystem_m.dylib 0x7fff73e30000 - 0x7fff73e5afff libsystem_malloc.dylib (166.270.1) &lt;011F3AD0-8E6A-3A89-AE64-6E5F6840F30A&gt; /usr/lib/system/libsystem_malloc.dylib 0x7fff73e5b000 - 0x7fff73e65ff7 libsystem_networkextension.dylib (767.250.2) &lt;FF06F13A-AEFE-3A27-A073-910EF78AEA36&gt; /usr/lib/system/libsystem_networkextension.dylib 0x7fff73e66000 - 0x7fff73e6dfff libsystem_notify.dylib (172.200.21) &lt;145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE&gt; /usr/lib/system/libsystem_notify.dylib 0x7fff73e6e000 - 0x7fff73e77fef libsystem_platform.dylib (177.270.1) &lt;9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C&gt; /usr/lib/system/libsystem_platform.dylib 0x7fff73e78000 - 0x7fff73e82ff7 libsystem_pthread.dylib (330.250.2) &lt;2D5C08FF-484F-3D59-9132-CE1DCB3F76D7&gt; /usr/lib/system/libsystem_pthread.dylib 0x7fff73e83000 - 0x7fff73e86ff7 libsystem_sandbox.dylib (851.270.1) &lt;9494594B-5199-3186-82AB-5FF8BED6EE16&gt; /usr/lib/system/libsystem_sandbox.dylib 0x7fff73e87000 - 0x7fff73e89ff3 libsystem_secinit.dylib (30.260.2) &lt;EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE&gt; /usr/lib/system/libsystem_secinit.dylib 0x7fff73e8a000 - 0x7fff73e91ff3 libsystem_symptoms.dylib (820.267.1) &lt;03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52&gt; /usr/lib/system/libsystem_symptoms.dylib 0x7fff73e92000 - 0x7fff73ea7fff libsystem_trace.dylib (906.260.1) &lt;FC761C3B-5434-3A52-912D-F1B15FAA8EB2&gt; /usr/lib/system/libsystem_trace.dylib 0x7fff73ea9000 - 0x7fff73eaeffb libunwind.dylib (35.4) &lt;24A97A67-F017-3CFC-B0D0-6BD0224B1336&gt; /usr/lib/system/libunwind.dylib 0x7fff73eaf000 - 0x7fff73edefff libxpc.dylib (1336.261.2) &lt;7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4&gt; /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 126773 thread_create: 0 thread_set_state: 54 VM Region Summary: ReadOnly portion of Libraries: Total=556.9M resident=0K(0%) swapped_out_or_unallocated=556.9M(100%) Writable regions: Total=318.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=318.1M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 CG image 8K 2 CoreAnimation 3508K 8 CoreGraphics 8K 1 CoreServices 88K 1 CoreUI image data 448K 3 CoreUI image file 336K 5 Dispatch continuations 16.0M 1 Foundation 4K 1 Image IO 64K 1 Kernel Alloc Once 8K 1 MALLOC 97.3M 33 MALLOC guard page 32K 6 Mach message 16K 2 Memory Tag 242 12K 1 Memory Tag 251 12K 1 Memory Tag 255 4.0G 46 STACK GUARD 56.1M 25 Stack 154.2M 25 VM_ALLOCATE 204K 10 __DATA 41.9M 316 __FONT_DATA 4K 1 __LINKEDIT 224.9M 10 __TEXT 332.0M 319 __UNICODE 564K 1 mapped file 68.8M 26 shared memory 676K 10 =========== ======= ======= TOTAL 5.0G 858 </code></pre></div>
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li>tested on latest v10.0.0-nightly.20200317 / v9.0.0-beta.9 / v8.1.1</li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>Windows 10 (1909)</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>not known.</li> </ul> </li> <li><strong>Node version the c++ addon(N-api) build against:</strong> <ul dir="auto"> <li>v12.16.1</li> </ul> </li> <li><strong>MSVC version to build the addon:</strong> <ul dir="auto"> <li>Visual Studio 2019 with v140 compiler(VS 2015). Tried v142, too.</li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The C++ addon(using N-api) loaded by electron should work properly.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Crash when c++ addon using some c++ std objects(e.g. std::stringstream). VS debugger shows it is crashed on the RaiseException line in MSVC's delayhlp.cpp since the c++ symbols cannot be found(the pfnRet remains NULL after the last resort in __delayLoadHelper2 function).<br> BTW. using node.exe instead of electron.exe works just fine.</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">(forgiving me for not pushed to a github repo.)<br> a minimal c++ addon project using cmake-js and N-api which cause the electron to crash(built with <code class="notranslate">cmake-js -t v140 -a x64</code>, also tried with just <code class="notranslate">cmake-js</code> which is using default v142):</p> <div class="highlight highlight-source-cmake notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# CMakeLists.txt cmake_minimum_required(VERSION 2.8.2) project(sstream_failure) include_directories(${CMAKE_JS_INC}) add_library(${PROJECT_NAME} SHARED sstream_test.cc ${CMAKE_JS_SRC}) # win_delay_load_hook.cc) # I found a temporary fix later by adding an extra hook. set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX &quot;&quot; SUFFIX &quot;.node&quot;) target_compile_definitions(${PROJECT_NAME} PRIVATE NAPI_CPP_EXCEPTIONS NODE_ADDON_API_DISABLE_DEPRECATED) target_link_libraries(${PROJECT_NAME} ${CMAKE_JS_LIB}) # Include N-API wrappers execute_process( COMMAND node -p &quot;require('node-addon-api').include&quot; WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE NODE_ADDON_API_DIR) string(REPLACE &quot;\n&quot; &quot;&quot; NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR}) string(REPLACE &quot;\&quot;&quot; &quot;&quot; NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR}) target_include_directories(${PROJECT_NAME} PRIVATE ${NODE_ADDON_API_DIR}) message(&quot;NODE_RUNTIME:&quot; ${NODE_RUNTIME}) message(&quot;NODE_RUNTIMEVERSION:&quot; ${NODE_RUNTIMEVERSION}) message(&quot;NODE_ARCH:&quot; ${NODE_ARCH})"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> CMakeLists.txt</span> <span class="pl-c1">cmake_minimum_required</span>(<span class="pl-k">VERSION</span> 2.8.2) <span class="pl-c1">project</span>(sstream_failure) <span class="pl-c1">include_directories</span>(<span class="pl-smi">${CMAKE_JS_INC}</span>) <span class="pl-c1">add_library</span>(<span class="pl-smi">${PROJECT_NAME}</span> <span class="pl-k">SHARED</span> sstream_test.cc <span class="pl-smi">${CMAKE_JS_SRC}</span>) <span class="pl-c"><span class="pl-c">#</span> win_delay_load_hook.cc) # I found a temporary fix later by adding an extra hook.</span> <span class="pl-c1">set_target_properties</span>(<span class="pl-smi">${PROJECT_NAME}</span> <span class="pl-k">PROPERTIES</span> PREFIX <span class="pl-s">""</span> SUFFIX <span class="pl-s">".node"</span>) <span class="pl-c1">target_compile_definitions</span>(<span class="pl-smi">${PROJECT_NAME}</span> <span class="pl-k">PRIVATE</span> NAPI_CPP_EXCEPTIONS NODE_ADDON_API_DISABLE_DEPRECATED) <span class="pl-c1">target_link_libraries</span>(<span class="pl-smi">${PROJECT_NAME}</span> <span class="pl-smi">${CMAKE_JS_LIB}</span>) <span class="pl-c"><span class="pl-c">#</span> Include N-API wrappers</span> <span class="pl-c1">execute_process</span>( <span class="pl-k">COMMAND</span> node -p <span class="pl-s">"require('node-addon-api').include"</span> <span class="pl-k">WORKING_DIRECTORY</span> <span class="pl-smi">${CMAKE_SOURCE_DIR}</span> <span class="pl-k">OUTPUT_VARIABLE</span> NODE_ADDON_API_DIR) <span class="pl-c1">string</span>(<span class="pl-k">REPLACE</span> <span class="pl-s">"<span class="pl-cce">\n</span>"</span> <span class="pl-s">""</span> NODE_ADDON_API_DIR <span class="pl-smi">${NODE_ADDON_API_DIR}</span>) <span class="pl-c1">string</span>(<span class="pl-k">REPLACE</span> <span class="pl-s">"<span class="pl-cce">\"</span>"</span> <span class="pl-s">""</span> NODE_ADDON_API_DIR <span class="pl-smi">${NODE_ADDON_API_DIR}</span>) <span class="pl-c1">target_include_directories</span>(<span class="pl-smi">${PROJECT_NAME}</span> <span class="pl-k">PRIVATE</span> <span class="pl-smi">${NODE_ADDON_API_DIR}</span>) <span class="pl-c1">message</span>(<span class="pl-s">"NODE_RUNTIME:"</span> <span class="pl-smi">${NODE_RUNTIME}</span>) <span class="pl-c1">message</span>(<span class="pl-s">"NODE_RUNTIMEVERSION:"</span> <span class="pl-smi">${NODE_RUNTIMEVERSION}</span>) <span class="pl-c1">message</span>(<span class="pl-s">"NODE_ARCH:"</span> <span class="pl-smi">${NODE_ARCH}</span>)</pre></div> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// sstream_test.cc #include &lt;sstream&gt; #include &quot;napi.h&quot; Napi::Number TestSStream(const Napi::CallbackInfo&amp; info) { std::string name = info[0].As&lt;Napi::String&gt;(); Napi::Function config_cb = info[1].As&lt;Napi::Function&gt;(); Napi::Env env = info.Env(); try { Napi::Object json = env.Global().Get(&quot;JSON&quot;).As&lt;Napi::Object&gt;(); Napi::Function parse = json.Get(&quot;parse&quot;).As&lt;Napi::Function&gt;(); std::stringstream ss; // crashes on here. ss &lt;&lt; &quot;{\&quot;&quot; &lt;&lt; name &lt;&lt; &quot;\&quot;: \&quot;sstream initialized\&quot;}&quot;; Napi::Object result = parse.Call(json, { Napi::String::New(env, ss.str()) }).As&lt;Napi::Object&gt;(); config_cb.Call(env.Global(), { result }); return Napi::Number::New(env, 0); } catch(const std::exception&amp; e) { Napi::TypeError::New(env, std::string(&quot;cli error: &quot;) + e.what()).ThrowAsJavaScriptException(); return Napi::Number::New(env, (double) 1); } } Napi::Object Init(Napi::Env env, Napi::Object exports) { exports.Set(Napi::String::New(env, &quot;testSStream&quot;), Napi::Function::New(env, TestSStream)); return exports; } NODE_API_MODULE(sstream_failure, Init)"><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span> sstream_test.cc</span> #<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&lt;</span>sstream<span class="pl-pds">&gt;</span></span> #<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">"</span>napi.h<span class="pl-pds">"</span></span> Napi::Number <span class="pl-en">TestSStream</span>(<span class="pl-k">const</span> Napi::CallbackInfo&amp; info) { std::string name = info[<span class="pl-c1">0</span>].<span class="pl-smi">As</span>&lt;Napi::String&gt;(); Napi::Function config_cb = info[<span class="pl-c1">1</span>].<span class="pl-smi">As</span>&lt;Napi::Function&gt;(); Napi::Env env = info.<span class="pl-c1">Env</span>(); <span class="pl-k">try</span> { Napi::Object json = env.<span class="pl-c1">Global</span>().<span class="pl-c1">Get</span>(<span class="pl-s"><span class="pl-pds">"</span>JSON<span class="pl-pds">"</span></span>).<span class="pl-smi">As</span>&lt;Napi::Object&gt;(); Napi::Function parse = json.<span class="pl-c1">Get</span>(<span class="pl-s"><span class="pl-pds">"</span>parse<span class="pl-pds">"</span></span>).<span class="pl-smi">As</span>&lt;Napi::Function&gt;(); std::stringstream ss; <span class="pl-c"><span class="pl-c">//</span> crashes on here.</span> ss &lt;&lt; <span class="pl-s"><span class="pl-pds">"</span>{<span class="pl-cce">\"</span><span class="pl-pds">"</span></span> &lt;&lt; name &lt;&lt; <span class="pl-s"><span class="pl-pds">"</span><span class="pl-cce">\"</span>: <span class="pl-cce">\"</span>sstream initialized<span class="pl-cce">\"</span>}<span class="pl-pds">"</span></span>; Napi::Object result = parse.<span class="pl-c1">Call</span>(json, { <span class="pl-c1">Napi::String::New</span>(env, ss.<span class="pl-c1">str</span>()) }).<span class="pl-smi">As</span>&lt;Napi::Object&gt;(); config_cb.<span class="pl-c1">Call</span>(env.<span class="pl-c1">Global</span>(), { result }); <span class="pl-k">return</span> <span class="pl-c1">Napi::Number::New</span>(env, <span class="pl-c1">0</span>); } <span class="pl-k">catch</span>(<span class="pl-k">const</span> std::<span class="pl-c1">exception</span>&amp; e) { <span class="pl-c1">Napi::TypeError::New</span>(env, <span class="pl-c1">std::string</span>(<span class="pl-s"><span class="pl-pds">"</span>cli error: <span class="pl-pds">"</span></span>) + e.<span class="pl-c1">what</span>()).<span class="pl-c1">ThrowAsJavaScriptException</span>(); <span class="pl-k">return</span> <span class="pl-c1">Napi::Number::New</span>(env, (<span class="pl-k">double</span>) <span class="pl-c1">1</span>); } } Napi::Object <span class="pl-en">Init</span>(Napi::Env env, Napi::Object exports) { exports.<span class="pl-c1">Set</span>(<span class="pl-c1">Napi::String::New</span>(env, <span class="pl-s"><span class="pl-pds">"</span>testSStream<span class="pl-pds">"</span></span>), <span class="pl-c1">Napi::Function::New</span>(env, TestSStream)); <span class="pl-k">return</span> exports; } <span class="pl-en">NODE_API_MODULE</span>(sstream_failure, Init)</pre></div> <p dir="auto">and the main.js to call the addon:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var addon = require('/path/to/sstream_failure.node'); addon.testSStream(&quot;Test&quot;, (config_json_str) =&gt; { console.log(config_json_str); });"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">addon</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'/path/to/sstream_failure.node'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">addon</span><span class="pl-kos">.</span><span class="pl-en">testSStream</span><span class="pl-kos">(</span><span class="pl-s">"Test"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">config_json_str</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">config_json_str</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Additional Information</h3> <p dir="auto">Via VS debugger I found that it is because the c++ symbols(std::basic_io, std::streambuf, etc) in my addon could not be found during std::stringstream object initialization(since load_exe_hook replaces the node.exe with electron.exe). Then go through the __delayLoadHelper2 function in delayhlp.cpp(which called the load_exe_hook), I found that in the last effort, it would try load_failure_hook() to get the symbol address, so the temporary solution I found here is as follows:<br> I copied the default win_delay_load_hook.cc and add following hook:</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// load_exe_hook stuff ... static FARPROC WINAPI load_failure_hook(unsigned int event, DelayLoadInfo* info) { if (event == dliFailGetProc) { #ifdef DEBUG HMODULE m = GetModuleHandle(&quot;msvcp140d.dll&quot;); #else HMODULE m = GetModuleHandle(&quot;msvcp140.dll&quot;); #endif // DEBUG return m != NULL ? GetProcAddress(m, info-&gt;dlp.szProcName) : NULL; } } decltype(__pfnDliFailureHook2) __pfnDliFailureHook2 = load_failure_hook;"><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span> load_exe_hook stuff ...</span> <span class="pl-k">static</span> FARPROC WINAPI <span class="pl-en">load_failure_hook</span>(<span class="pl-k">unsigned</span> <span class="pl-k">int</span> event, DelayLoadInfo* info) { <span class="pl-k">if</span> (event == dliFailGetProc) { #<span class="pl-k">ifdef</span> DEBUG HMODULE m = <span class="pl-c1">GetModuleHandle</span>(<span class="pl-s"><span class="pl-pds">"</span>msvcp140d.dll<span class="pl-pds">"</span></span>); #<span class="pl-k">else</span> HMODULE m = <span class="pl-c1">GetModuleHandle</span>(<span class="pl-s"><span class="pl-pds">"</span>msvcp140.dll<span class="pl-pds">"</span></span>); #<span class="pl-k">endif</span> <span class="pl-c"><span class="pl-c">//</span> DEBUG</span> <span class="pl-k">return</span> m != <span class="pl-c1">NULL</span> ? <span class="pl-c1">GetProcAddress</span>(m, info-&gt;<span class="pl-smi">dlp</span>.<span class="pl-smi">szProcName</span>) : <span class="pl-c1">NULL</span>; } } <span class="pl-en">decltype</span>(__pfnDliFailureHook2) __pfnDliFailureHook2 = load_failure_hook;</pre></div> <p dir="auto">Then replace the original ${CMAKE_JS_SRC} by the new win_delay_load_hook.cc file in CMakeLists.txt, and it is now runs well as expected.</p> <p dir="auto">I also found this issue may relate to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="360051996" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/14617" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/14617/hovercard" href="https://github.com/electron/electron/issues/14617">#14617</a> ?</p>
1
<p dir="auto">The following operations would run easily in both Tensorflow and PyTorch (GPU), but would cause OOM in Jax. When it runs on PyTorch, GPU memory usage is only ~2GB.</p> <p dir="auto">Please:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li> </ul> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax.numpy as jnp import jax.random as jrandom A = jrandom.normal(jrandom.PRNGKey(0), [300000, 50]) print(A.shape) jnp.linalg.svd(A, full_matrices=False)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">random</span> <span class="pl-k">as</span> <span class="pl-s1">jrandom</span> <span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">jrandom</span>.<span class="pl-en">normal</span>(<span class="pl-s1">jrandom</span>.<span class="pl-v">PRNGKey</span>(<span class="pl-c1">0</span>), [<span class="pl-c1">300000</span>, <span class="pl-c1">50</span>]) <span class="pl-en">print</span>(<span class="pl-v">A</span>.<span class="pl-s1">shape</span>) <span class="pl-s1">jnp</span>.<span class="pl-s1">linalg</span>.<span class="pl-en">svd</span>(<span class="pl-v">A</span>, <span class="pl-s1">full_matrices</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If applicable, include full error messages/tracebacks.</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) /tmp/ipykernel_57631/2574565684.py in &lt;module&gt; 3 A = jrandom.normal(jrandom.PRNGKey(0), [300000, 50]) 4 print(A.shape) ----&gt; 5 jnp.linalg.svd(A, full_matrices=False) [... skipping hidden 6 frame] /opt/conda/lib/python3.7/site-packages/jax/_src/dispatch.py in _execute_compiled(name, compiled, output_buffer_counts, result_handlers, kept_var_idx, *args) 442 input_bufs = util.flatten( 443 device_put(x, device) for i, x in enumerate(args) if i in kept_var_idx) --&gt; 444 out_bufs = compiled.execute(input_bufs) 445 check_special(name, out_bufs) 446 if output_buffer_counts is None: RuntimeError: RESOURCE_EXHAUSTED: Out of memory while trying to allocate 360336162820 bytes. BufferAssignment OOM Debugging. BufferAssignment stats: parameter allocation: 57.22MiB constant allocation: 0B maybe_live_out allocation: 57.23MiB preallocated temp allocation: 335.59GiB preallocated temp fragmentation: 112B (0.00%) total allocation: 335.70GiB total fragmentation: 10.0KiB (0.00%) Peak buffers: Buffer 1: Size: 335.28GiB XLA Label: custom-call Shape: f32[300000,300000] ========================== Buffer 2: Size: 263.36MiB XLA Label: custom-call Shape: f32[69038144] ========================== Buffer 3: Size: 57.22MiB XLA Label: custom-call Shape: f32[300000,50] ========================== Buffer 4: Size: 57.22MiB Entry Parameter Subshape: f32[300000,50] ========================== Buffer 5: Size: 57.22MiB Operator: op_name=&quot;jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]&quot; source_file=&quot;/tmp/ipykernel_57631/2574565684.py&quot; source_line=5 XLA Label: fusion Shape: f32[300000,50] ========================== Buffer 6: Size: 9.8KiB XLA Label: custom-call Shape: f32[50,50] ========================== Buffer 7: Size: 9.8KiB Operator: op_name=&quot;jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]&quot; source_file=&quot;/tmp/ipykernel_57631/2574565684.py&quot; source_line=5 XLA Label: fusion Shape: f32[50,50] ========================== Buffer 8: Size: 200B Operator: op_name=&quot;jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]&quot; source_file=&quot;/tmp/ipykernel_57631/2574565684.py&quot; source_line=5 XLA Label: fusion Shape: f32[50] ========================== Buffer 9: Size: 48B XLA Label: custom-call Shape: (f32[300000,50], f32[50], f32[300000,300000], f32[50,50], s32[], /*index=5*/f32[69038144]) ========================== Buffer 10: Size: 24B XLA Label: tuple Shape: (f32[300000,50], f32[50], f32[50,50]) ========================== Buffer 11: Size: 4B XLA Label: custom-call Shape: s32[] =========================="><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) /tmp/ipykernel_57631/2574565684.py in &lt;module&gt; 3 A = jrandom.normal(jrandom.PRNGKey(0), [300000, 50]) 4 print(A.shape) ----&gt; 5 jnp.linalg.svd(A, full_matrices=False) [... skipping hidden 6 frame] /opt/conda/lib/python3.7/site-packages/jax/_src/dispatch.py in _execute_compiled(name, compiled, output_buffer_counts, result_handlers, kept_var_idx, *args) 442 input_bufs = util.flatten( 443 device_put(x, device) for i, x in enumerate(args) if i in kept_var_idx) --&gt; 444 out_bufs = compiled.execute(input_bufs) 445 check_special(name, out_bufs) 446 if output_buffer_counts is None: RuntimeError: RESOURCE_EXHAUSTED: Out of memory while trying to allocate 360336162820 bytes. BufferAssignment OOM Debugging. BufferAssignment stats: parameter allocation: 57.22MiB constant allocation: 0B maybe_live_out allocation: 57.23MiB preallocated temp allocation: 335.59GiB preallocated temp fragmentation: 112B (0.00%) total allocation: 335.70GiB total fragmentation: 10.0KiB (0.00%) Peak buffers: Buffer 1: Size: 335.28GiB XLA Label: custom-call Shape: f32[300000,300000] ========================== Buffer 2: Size: 263.36MiB XLA Label: custom-call Shape: f32[69038144] ========================== Buffer 3: Size: 57.22MiB XLA Label: custom-call Shape: f32[300000,50] ========================== Buffer 4: Size: 57.22MiB Entry Parameter Subshape: f32[300000,50] ========================== Buffer 5: Size: 57.22MiB Operator: op_name="jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]" source_file="/tmp/ipykernel_57631/2574565684.py" source_line=5 XLA Label: fusion Shape: f32[300000,50] ========================== Buffer 6: Size: 9.8KiB XLA Label: custom-call Shape: f32[50,50] ========================== Buffer 7: Size: 9.8KiB Operator: op_name="jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]" source_file="/tmp/ipykernel_57631/2574565684.py" source_line=5 XLA Label: fusion Shape: f32[50,50] ========================== Buffer 8: Size: 200B Operator: op_name="jit(svd)/jit(main)/svd[full_matrices=False compute_uv=True]" source_file="/tmp/ipykernel_57631/2574565684.py" source_line=5 XLA Label: fusion Shape: f32[50] ========================== Buffer 9: Size: 48B XLA Label: custom-call Shape: (f32[300000,50], f32[50], f32[300000,300000], f32[50,50], s32[], /*index=5*/f32[69038144]) ========================== Buffer 10: Size: 24B XLA Label: tuple Shape: (f32[300000,50], f32[50], f32[50,50]) ========================== Buffer 11: Size: 4B XLA Label: custom-call Shape: s32[] ========================== </code></pre></div>
<p dir="auto">There is at least one other report of a build failure: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1315728826" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/11597" data-hovercard-type="issue" data-hovercard-url="/google/jax/issues/11597/hovercard" href="https://github.com/google/jax/issues/11597">#11597</a>.</p> <p dir="auto">In conda-forge, our jaxlib builds completely failed for different reasons after trying to update to jaxlib v0.3.15. They fail differently on cuda and non-cuda builds. For cuda, which is the more pertinent error, it looks like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INFO: Found 1 target... [0 / 4] [Prepa] Creating source manifest for //build:build_wheel [27 / 143] Compiling src/google/protobuf/stubs/structurally_valid.cc; 0s local ... (2 actions, 1 running) [38 / 143] Compiling src/google/protobuf/generated_message_util.cc; 1s local ... (2 actions running) ERROR: /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/share/bazel/8372a0709531b2dba2d9a9ce09c7583d/external/com_google_protobuf/BUILD:111:11: Linking external/com_google_protobuf/libprotobuf_lite.lo failed: (Exit 1): ar failed: error executing command (cd /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/share/bazel/8372a0709531b2dba2d9a9ce09c7583d/execroot/__main__ &amp;&amp; \ exec env - \ CUDA_TOOLKIT_PATH=/usr/local/cuda \ CUDNN_INSTALL_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac \ GCC_HOST_COMPILER_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/x86_64-conda-linux-gnu-gcc \ GCC_HOST_COMPILER_PREFIX=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin \ PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/bin:/opt/conda/condabin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/bin:/opt/conda/bin:/opt/conda/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/conda/bin:/usr/local/cuda/bin \ PWD=/proc/self/cwd \ TF_CUDA_COMPUTE_CAPABILITIES=sm_35,sm_50,sm_60,sm_62,sm_70,sm_72,sm_75,sm_80,sm_86,compute_86 \ TF_CUDA_PATHS=/usr/local/cuda,/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac \ TF_CUDA_VERSION=11.2 \ TF_CUDNN_VERSION=8 \ /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/ar @bazel-out/k8-opt/bin/external/com_google_protobuf/libprotobuf_lite.lo-2.params) # Configuration: 740083763ed3206026a09abc2faa9ac5a84e6f9dfcfd22c27729d3542ad1c4a3 # Execution platform: @local_execution_config_platform//:platform src/main/tools/process-wrapper-legacy.cc:80: &quot;execvp(/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/ar, ...)&quot;: No such file or directory Target //build:build_wheel failed to build INFO: Elapsed time: 56.913s, Critical Path: 3.40s INFO: 47 processes: 18 internal, 29 local. FAILED: Build did NOT complete successfully ERROR: Build failed. Not running target FAILED: Build did NOT complete successfully "><pre class="notranslate"><code class="notranslate">INFO: Found 1 target... [0 / 4] [Prepa] Creating source manifest for //build:build_wheel [27 / 143] Compiling src/google/protobuf/stubs/structurally_valid.cc; 0s local ... (2 actions, 1 running) [38 / 143] Compiling src/google/protobuf/generated_message_util.cc; 1s local ... (2 actions running) ERROR: /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/share/bazel/8372a0709531b2dba2d9a9ce09c7583d/external/com_google_protobuf/BUILD:111:11: Linking external/com_google_protobuf/libprotobuf_lite.lo failed: (Exit 1): ar failed: error executing command (cd /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/share/bazel/8372a0709531b2dba2d9a9ce09c7583d/execroot/__main__ &amp;&amp; \ exec env - \ CUDA_TOOLKIT_PATH=/usr/local/cuda \ CUDNN_INSTALL_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac \ GCC_HOST_COMPILER_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/x86_64-conda-linux-gnu-gcc \ GCC_HOST_COMPILER_PREFIX=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin \ PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/bin:/opt/conda/condabin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac:/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/bin:/opt/conda/bin:/opt/conda/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/conda/bin:/usr/local/cuda/bin \ PWD=/proc/self/cwd \ TF_CUDA_COMPUTE_CAPABILITIES=sm_35,sm_50,sm_60,sm_62,sm_70,sm_72,sm_75,sm_80,sm_86,compute_86 \ TF_CUDA_PATHS=/usr/local/cuda,/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac \ TF_CUDA_VERSION=11.2 \ TF_CUDNN_VERSION=8 \ /home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/ar @bazel-out/k8-opt/bin/external/com_google_protobuf/libprotobuf_lite.lo-2.params) # Configuration: 740083763ed3206026a09abc2faa9ac5a84e6f9dfcfd22c27729d3542ad1c4a3 # Execution platform: @local_execution_config_platform//:platform src/main/tools/process-wrapper-legacy.cc:80: "execvp(/home/conda/feedstock_root/build_artifacts/jaxlib_1658602566191/_build_env/bin/ar, ...)": No such file or directory Target //build:build_wheel failed to build INFO: Elapsed time: 56.913s, Critical Path: 3.40s INFO: 47 processes: 18 internal, 29 local. FAILED: Build did NOT complete successfully ERROR: Build failed. Not running target FAILED: Build did NOT complete successfully </code></pre></div> <p dir="auto">On non-cuda, we get this error, which I think is more likely something on our end, but I cannot figure it out yet...</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[6,508 / 6,659] Compiling llvm/lib/Target/X86/X86ISelLowering.cpp; 35s local ... (2 actions running) Target //build:build_wheel up-to-date: bazel-bin/build/build_wheel INFO: Elapsed time: 13046.285s, Critical Path: 205.49s INFO: 7181 processes: 616 internal, 6565 local. INFO: Build completed successfully, 7181 total actions INFO: Running command line: bazel-bin/build/build_wheel '--output_path=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist' '--cpu=x86_64' INFO: Build completed successfully, 7181 total actions /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/lib/python3.8/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( Output wheel: /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist/jaxlib-0.3.15-cp38-none-manylinux2014_x86_64.whl To install the newly-built jaxlib wheel, run: pip install /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist/jaxlib-0.3.15-cp38-none-manylinux2014_x86_64.whl INFO: Reading rc options for 'shutdown' from /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/.jax_configure.bazelrc: Inherited 'common' options: --crosstool_top=//bazel_toolchain:toolchain --logging=6 --verbose_failures --toolchain_resolution_debug --define=PREFIX=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac --define=PROTOBUF_INCLUDE_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/include --local_cpu_resources=2 --cpu k8 ERROR: --crosstool_top=//bazel_toolchain:toolchain :: Unrecognized option: --crosstool_top=//bazel_toolchain:toolchain b''"><pre class="notranslate"><code class="notranslate">[6,508 / 6,659] Compiling llvm/lib/Target/X86/X86ISelLowering.cpp; 35s local ... (2 actions running) Target //build:build_wheel up-to-date: bazel-bin/build/build_wheel INFO: Elapsed time: 13046.285s, Critical Path: 205.49s INFO: 7181 processes: 616 internal, 6565 local. INFO: Build completed successfully, 7181 total actions INFO: Running command line: bazel-bin/build/build_wheel '--output_path=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist' '--cpu=x86_64' INFO: Build completed successfully, 7181 total actions /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/lib/python3.8/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( Output wheel: /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist/jaxlib-0.3.15-cp38-none-manylinux2014_x86_64.whl To install the newly-built jaxlib wheel, run: pip install /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/dist/jaxlib-0.3.15-cp38-none-manylinux2014_x86_64.whl INFO: Reading rc options for 'shutdown' from /home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/work/.jax_configure.bazelrc: Inherited 'common' options: --crosstool_top=//bazel_toolchain:toolchain --logging=6 --verbose_failures --toolchain_resolution_debug --define=PREFIX=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac --define=PROTOBUF_INCLUDE_PATH=/home/conda/feedstock_root/build_artifacts/jaxlib_1658602489386/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/include --local_cpu_resources=2 --cpu k8 ERROR: --crosstool_top=//bazel_toolchain:toolchain :: Unrecognized option: --crosstool_top=//bazel_toolchain:toolchain b'' </code></pre></div> <hr> <ol dir="auto"> <li> <p dir="auto">Could the changelog be updated at some point? Note that at least one more PR seems to be destined for v0.3.15 has been added, even though v0.3.15 has been released already on pypi... <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1315859861" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/11602" data-hovercard-type="pull_request" data-hovercard-url="/google/jax/pull/11602/hovercard" href="https://github.com/google/jax/pull/11602">#11602</a></p> </li> <li> <p dir="auto">Could someone have a look at the above errors and see if something obvious we should be aware of in packaging at conda-forge? As a reminder we have our own custom bazel toolchain, so most likely at least some of the errors are related to that. I am still working on determining what exactly. I only recently got involved in packaging using bazel on conda-forge...</p> </li> </ol> <p dir="auto">Current live PR: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1315814404" data-permission-text="Title is private" data-url="https://github.com/conda-forge/jaxlib-feedstock/issues/118" data-hovercard-type="pull_request" data-hovercard-url="/conda-forge/jaxlib-feedstock/pull/118/hovercard" href="https://github.com/conda-forge/jaxlib-feedstock/pull/118">conda-forge/jaxlib-feedstock#118</a><br> Previous PR with failures: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1315655647" data-permission-text="Title is private" data-url="https://github.com/conda-forge/jaxlib-feedstock/issues/116" data-hovercard-type="pull_request" data-hovercard-url="/conda-forge/jaxlib-feedstock/pull/116/hovercard" href="https://github.com/conda-forge/jaxlib-feedstock/pull/116">conda-forge/jaxlib-feedstock#116</a></p> <hr> <p dir="auto">Please:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Check for duplicate issues.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li> </ul> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax.numpy as jnp print(jnp.arange(10)) # [0 1 2 3 4 5 6 7 8 9]"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span> <span class="pl-en">print</span>(<span class="pl-s1">jnp</span>.<span class="pl-en">arange</span>(<span class="pl-c1">10</span>)) <span class="pl-c"># [0 1 2 3 4 5 6 7 8 9]</span></pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> If applicable, include full error messages/tracebacks.</li> </ul>
0
<p dir="auto">by <strong>mschlimp</strong>:</p> <pre class="notranslate">Before filing a bug, please check whether it has been fixed since the latest release: run "hg pull", "hg update default", rebuild, and retry what you did to reproduce the problem. Thanks. What steps will reproduce the problem? 1. type ViewStruct struct { Func struct{Html HtmlSnippet} Data map[string] interface{} } type HtmlSnippet func(arg string) string func print(s string) string { return s } func (s HtmlSnippet) Stylesheet_link_tag(arg string) string { return s("&lt;link type='text/css' rel='stylesheet' media='all' href='/stylesheets/"+arg+".css'&gt;") } 2. Inside of the template I use the following code to get acess to the function: ... {{.Func.Html.Stylesheet_link_tag "/stylesheets/jquery-ui-1.8.9.custom.css" }} ... What is the expected output? &lt;link type='text/css' rel='stylesheet' media='all' href='/stylesheets/stylesheets/jquery-ui-1.8.9.custom.css.css'&gt; What do you see instead? template: parent:9: wrong number of args for Html: want 1 got 0I Which compiler are you using (5g, 6g, 8g, gccgo)? 6g Which operating system are you using? MacOS: 11.2.0 Darwin Kernel Version 11.2.0 Which revision are you using? (hg identify) 1f5208fb59ff tip</pre>
<pre class="notranslate">This CL broke the linux-arm-luitvd builder: cgo: adjust return value location to account for stack copies. <a href="https://code.google.com/p/go/source/detail?r=b4a82354d4003e8d8df025500916c6a99b5a7598" rel="nofollow">https://code.google.com/p/go/source/detail?r=b4a82354d4003e8d8df025500916c6a99b5a7598</a> with: ... # ../misc/cgo/test --- FAIL: Test8694 (0.00s) issue8694.go:23: C.complexFloatSquared((2+3i)) = (0+0i), want (-5+12i) FAIL exit status 1 FAIL _/tmp/gobuilder/linux-arm-luitvd-8f36a32a9d03/go/misc/cgo/test 3.989s Build complete, duration 55m37.194876138s. Result: error: exit status 1 .... I don't know the hardware details of the luitvd. It's not listed at <a href="https://code.google.com/p/go-wiki/wiki/DashboardBuilders" rel="nofollow">https://code.google.com/p/go-wiki/wiki/DashboardBuilders</a></pre>
0
<p dir="auto">I use a dependency from npm and when I try to bundle my script instead of running it it is throwing errors and won't compile.</p> <p dir="auto">Errors</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: TS2552 [ERROR]: Cannot find name 'global'. Did you mean '_global'? var _global = typeof globalThis !== &quot;undefined&quot; ? globalThis : typeof self !== &quot;undefined&quot; ? self : global; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:1:101 '_global' is declared here. var _global = typeof globalThis !== &quot;undefined&quot; ? globalThis : typeof self !== &quot;undefined&quot; ? self : global; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:1:5 TS2441 [ERROR]: Duplicate identifier 'exports'. Compiler reserves name 'exports' in top level scope of a module. var exports = {}; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:3:5 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data = data; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:12:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length = (this || _global).data.length; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:13:25 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).length = (this || _global).data.length; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:13:52 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. (this || _global).compare = compare; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:14:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length &gt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:16:29 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. for (let i = ((this || _global).length &gt;&gt; 1) - 1; i &gt;= 0; i--) this._down(i); ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:17:41 TS7006 [ERROR]: Parameter 'item' implicitly has an 'any' type. push(item) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:21:10 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data.push(item); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:22:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length++; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:24:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. this._up((this || _global).length - 1); ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:26:34 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length === 0) return undefined; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:30:29 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. const top = (this || _global).data[0]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:31:37 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length--; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:32:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length &gt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:34:29 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:27 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:55 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:78 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data.pop(); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:40:25 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. return (this || _global).data[0]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:46:32 TS7006 [ERROR]: Parameter 'pos' implicitly has an 'any' type. _up(pos) { ~~~ at https://jspm.dev/npm:[email protected]!cjs:49:9 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. data, ~~~~ at https://jspm.dev/npm:[email protected]!cjs:51:9 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. compare ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:52:9 TS7006 [ERROR]: Parameter 'pos' implicitly has an 'any' type. _down(pos) { ~~~ at https://jspm.dev/npm:[email protected]!cjs:67:11 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. data, ~~~~ at https://jspm.dev/npm:[email protected]!cjs:69:9 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. compare ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:70:9 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. const halfLength = (this || _global).length &gt;&gt; 1; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:72:44 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if (right &lt; (this || _global).length &amp;&amp; compare(data[right], best) &lt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:80:39 TS7006 [ERROR]: Parameter 'a' implicitly has an 'any' type. function defaultCompare(a, b) { ^ at https://jspm.dev/npm:[email protected]!cjs:95:27 TS7006 [ERROR]: Parameter 'b' implicitly has an 'any' type. function defaultCompare(a, b) { ^ at https://jspm.dev/npm:[email protected]!cjs:95:30 TS7006 [ERROR]: Parameter 'e1' implicitly has an 'any' type. function checkWhichEventIsLeft(e1, e2) { ~~ at https://jspm.dev/npm:[email protected]!cjs:99:34 TS7006 [ERROR]: Parameter 'e2' implicitly has an 'any' type. function checkWhichEventIsLeft(e1, e2) { ~~ at https://jspm.dev/npm:[email protected]!cjs:99:38 TS7006 [ERROR]: Parameter 'seg1' implicitly has an 'any' type. function checkWhichSegmentHasRightEndpointFirst(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:106:51 TS7006 [ERROR]: Parameter 'seg2' implicitly has an 'any' type. function checkWhichSegmentHasRightEndpointFirst(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:106:57 TS7006 [ERROR]: Parameter 'p' implicitly has an 'any' type. constructor(p) { ^ at https://jspm.dev/npm:[email protected]!cjs:114:17 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. (this || _global).p = { ^ at https://jspm.dev/npm:[email protected]!cjs:115:25 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. (this || _global).otherEvent = null; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:119:25 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. (this || _global).isLeftEndpoint = null; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:120:25 TS7006 [ERROR]: Parameter 'eventToCheck' implicitly has an 'any' type. isSamePoint(eventToCheck) { ~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:123:17 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. return (this || _global).p.x === eventToCheck.p.x &amp;&amp; (this || _global).p.y === eventToCheck.p.y; ^ at https://jspm.dev/npm:[email protected]!cjs:124:32 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. return (this || _global).p.x === eventToCheck.p.x &amp;&amp; (this || _global).p.y === eventToCheck.p.y; ^ at https://jspm.dev/npm:[email protected]!cjs:124:78 TS7006 [ERROR]: Parameter 'geojson' implicitly has an 'any' type. function fillEventQueue(geojson, eventQueue) { ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:129:27 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function fillEventQueue(geojson, eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:129:36 TS7006 [ERROR]: Parameter 'featureOrGeometry' implicitly has an 'any' type. function processFeature(featureOrGeometry, eventQueue) { ~~~~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:141:27 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function processFeature(featureOrGeometry, eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:141:46 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. e1.otherEvent = e2; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:157:14 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. e2.otherEvent = e1; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:158:14 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e2.isLeftEndpoint = true; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:161:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e1.isLeftEndpoint = false; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:162:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e1.isLeftEndpoint = true; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:164:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e2.isLeftEndpoint = false; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:165:16 TS7006 [ERROR]: Parameter 'event' implicitly has an 'any' type. constructor(event) { ~~~~~ at https://jspm.dev/npm:[email protected]!cjs:177:17 TS2339 [ERROR]: Property 'leftSweepEvent' does not exist on type 'Segment'. (this || _global).leftSweepEvent = event; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:178:25 TS2339 [ERROR]: Property 'rightSweepEvent' does not exist on type 'Segment'. (this || _global).rightSweepEvent = event.otherEvent; ~~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:179:25 TS7006 [ERROR]: Parameter 'seg1' implicitly has an 'any' type. function testSegmentIntersect(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:184:33 TS7006 [ERROR]: Parameter 'seg2' implicitly has an 'any' type. function testSegmentIntersect(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:184:39 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function runCheck(eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:217:21 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. for (let i = 0; i &lt; outQueue.data.length; i++) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:228:38 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. const intersection = testSegmentIntersect(segment, outQueue.data[i]); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:229:71 TS7006 [ERROR]: Parameter 'geojson' implicitly has an 'any' type. function sweeplineIntersections(geojson) { ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:243:35 Found 61 errors."><pre class="notranslate"><code class="notranslate">error: TS2552 [ERROR]: Cannot find name 'global'. Did you mean '_global'? var _global = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : global; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:1:101 '_global' is declared here. var _global = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : global; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:1:5 TS2441 [ERROR]: Duplicate identifier 'exports'. Compiler reserves name 'exports' in top level scope of a module. var exports = {}; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:3:5 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data = data; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:12:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length = (this || _global).data.length; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:13:25 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).length = (this || _global).data.length; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:13:52 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. (this || _global).compare = compare; ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:14:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length &gt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:16:29 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. for (let i = ((this || _global).length &gt;&gt; 1) - 1; i &gt;= 0; i--) this._down(i); ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:17:41 TS7006 [ERROR]: Parameter 'item' implicitly has an 'any' type. push(item) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:21:10 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data.push(item); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:22:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length++; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:24:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. this._up((this || _global).length - 1); ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:26:34 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length === 0) return undefined; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:30:29 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. const top = (this || _global).data[0]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:31:37 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).length--; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:32:25 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if ((this || _global).length &gt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:34:29 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:27 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:55 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. (this || _global).data[0] = (this || _global).data[(this || _global).length]; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:35:78 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. (this || _global).data.pop(); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:40:25 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. return (this || _global).data[0]; ~~~~ at https://jspm.dev/npm:[email protected]!cjs:46:32 TS7006 [ERROR]: Parameter 'pos' implicitly has an 'any' type. _up(pos) { ~~~ at https://jspm.dev/npm:[email protected]!cjs:49:9 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. data, ~~~~ at https://jspm.dev/npm:[email protected]!cjs:51:9 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. compare ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:52:9 TS7006 [ERROR]: Parameter 'pos' implicitly has an 'any' type. _down(pos) { ~~~ at https://jspm.dev/npm:[email protected]!cjs:67:11 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. data, ~~~~ at https://jspm.dev/npm:[email protected]!cjs:69:9 TS2339 [ERROR]: Property 'compare' does not exist on type 'TinyQueue'. compare ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:70:9 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. const halfLength = (this || _global).length &gt;&gt; 1; ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:72:44 TS2339 [ERROR]: Property 'length' does not exist on type 'TinyQueue'. if (right &lt; (this || _global).length &amp;&amp; compare(data[right], best) &lt; 0) { ~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:80:39 TS7006 [ERROR]: Parameter 'a' implicitly has an 'any' type. function defaultCompare(a, b) { ^ at https://jspm.dev/npm:[email protected]!cjs:95:27 TS7006 [ERROR]: Parameter 'b' implicitly has an 'any' type. function defaultCompare(a, b) { ^ at https://jspm.dev/npm:[email protected]!cjs:95:30 TS7006 [ERROR]: Parameter 'e1' implicitly has an 'any' type. function checkWhichEventIsLeft(e1, e2) { ~~ at https://jspm.dev/npm:[email protected]!cjs:99:34 TS7006 [ERROR]: Parameter 'e2' implicitly has an 'any' type. function checkWhichEventIsLeft(e1, e2) { ~~ at https://jspm.dev/npm:[email protected]!cjs:99:38 TS7006 [ERROR]: Parameter 'seg1' implicitly has an 'any' type. function checkWhichSegmentHasRightEndpointFirst(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:106:51 TS7006 [ERROR]: Parameter 'seg2' implicitly has an 'any' type. function checkWhichSegmentHasRightEndpointFirst(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:106:57 TS7006 [ERROR]: Parameter 'p' implicitly has an 'any' type. constructor(p) { ^ at https://jspm.dev/npm:[email protected]!cjs:114:17 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. (this || _global).p = { ^ at https://jspm.dev/npm:[email protected]!cjs:115:25 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. (this || _global).otherEvent = null; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:119:25 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. (this || _global).isLeftEndpoint = null; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:120:25 TS7006 [ERROR]: Parameter 'eventToCheck' implicitly has an 'any' type. isSamePoint(eventToCheck) { ~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:123:17 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. return (this || _global).p.x === eventToCheck.p.x &amp;&amp; (this || _global).p.y === eventToCheck.p.y; ^ at https://jspm.dev/npm:[email protected]!cjs:124:32 TS2339 [ERROR]: Property 'p' does not exist on type 'Event'. return (this || _global).p.x === eventToCheck.p.x &amp;&amp; (this || _global).p.y === eventToCheck.p.y; ^ at https://jspm.dev/npm:[email protected]!cjs:124:78 TS7006 [ERROR]: Parameter 'geojson' implicitly has an 'any' type. function fillEventQueue(geojson, eventQueue) { ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:129:27 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function fillEventQueue(geojson, eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:129:36 TS7006 [ERROR]: Parameter 'featureOrGeometry' implicitly has an 'any' type. function processFeature(featureOrGeometry, eventQueue) { ~~~~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:141:27 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function processFeature(featureOrGeometry, eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:141:46 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. e1.otherEvent = e2; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:157:14 TS2339 [ERROR]: Property 'otherEvent' does not exist on type 'Event'. e2.otherEvent = e1; ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:158:14 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e2.isLeftEndpoint = true; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:161:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e1.isLeftEndpoint = false; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:162:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e1.isLeftEndpoint = true; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:164:16 TS2339 [ERROR]: Property 'isLeftEndpoint' does not exist on type 'Event'. e2.isLeftEndpoint = false; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:165:16 TS7006 [ERROR]: Parameter 'event' implicitly has an 'any' type. constructor(event) { ~~~~~ at https://jspm.dev/npm:[email protected]!cjs:177:17 TS2339 [ERROR]: Property 'leftSweepEvent' does not exist on type 'Segment'. (this || _global).leftSweepEvent = event; ~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:178:25 TS2339 [ERROR]: Property 'rightSweepEvent' does not exist on type 'Segment'. (this || _global).rightSweepEvent = event.otherEvent; ~~~~~~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:179:25 TS7006 [ERROR]: Parameter 'seg1' implicitly has an 'any' type. function testSegmentIntersect(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:184:33 TS7006 [ERROR]: Parameter 'seg2' implicitly has an 'any' type. function testSegmentIntersect(seg1, seg2) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:184:39 TS7006 [ERROR]: Parameter 'eventQueue' implicitly has an 'any' type. function runCheck(eventQueue) { ~~~~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:217:21 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. for (let i = 0; i &lt; outQueue.data.length; i++) { ~~~~ at https://jspm.dev/npm:[email protected]!cjs:228:38 TS2339 [ERROR]: Property 'data' does not exist on type 'TinyQueue'. const intersection = testSegmentIntersect(segment, outQueue.data[i]); ~~~~ at https://jspm.dev/npm:[email protected]!cjs:229:71 TS7006 [ERROR]: Parameter 'geojson' implicitly has an 'any' type. function sweeplineIntersections(geojson) { ~~~~~~~ at https://jspm.dev/npm:[email protected]!cjs:243:35 Found 61 errors. </code></pre></div>
<p dir="auto">I was trying to install Deno (ended up with so many errors for revocation function 'n used Chocolaty instead) 'n every time I install Deno, it works in the current working PowerShell session, but as soon as I close it 'n try to use it again, it says Deno is unrecognized.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno : The term 'deno' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + deno + ~~~~ + CategoryInfo : ObjectNotFound: (deno:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException"><pre class="notranslate"><code class="notranslate">deno : The term 'deno' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + deno + ~~~~ + CategoryInfo : ObjectNotFound: (deno:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException </code></pre></div> <p dir="auto">so, I tried upgrading Deno from PowerShell session 'n Avast blocked the upgrade script as show below in the <a href="https://i.imgur.com/TzmjIRN.jpg" rel="nofollow">image</a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/226d2493e92e4722f5a76e1ec426e82f15fcb7af20cf365ffadc11420d46a9e9/68747470733a2f2f692e696d6775722e636f6d2f547a6d6a49524e2e6a7067"><img src="https://camo.githubusercontent.com/226d2493e92e4722f5a76e1ec426e82f15fcb7af20cf365ffadc11420d46a9e9/68747470733a2f2f692e696d6775722e636f6d2f547a6d6a49524e2e6a7067" alt="screenshot from the incident" data-canonical-src="https://i.imgur.com/TzmjIRN.jpg" style="max-width: 100%;"></a></p> <blockquote> <p dir="auto">I guess also Avast has something to do with Deno being temporarily installed then suddenly uninstalled or not recognized</p> </blockquote> <p dir="auto">last thing is, whenever Deno is installed 'n I run Deno then type <code class="notranslate">deno --version</code>, it yields this error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PS C:\WINDOWS\system32&gt; deno Deno 1.33.1 exit using ctrl+d, ctrl+c, or close() REPL is running with all permissions allowed. To specify permissions, run `deno repl` with allow flags. &gt; deno --version parse error: Expected ';', '}' or &lt;eof&gt; at 1:8 &gt; deno repl parse error: Expected ';', '}' or &lt;eof&gt; at 1:6 &gt; deno -help Uncaught ReferenceError: deno is not defined at &lt;anonymous&gt;:2:1"><pre class="notranslate"><code class="notranslate">PS C:\WINDOWS\system32&gt; deno Deno 1.33.1 exit using ctrl+d, ctrl+c, or close() REPL is running with all permissions allowed. To specify permissions, run `deno repl` with allow flags. &gt; deno --version parse error: Expected ';', '}' or &lt;eof&gt; at 1:8 &gt; deno repl parse error: Expected ';', '}' or &lt;eof&gt; at 1:6 &gt; deno -help Uncaught ReferenceError: deno is not defined at &lt;anonymous&gt;:2:1 </code></pre></div>
0
<p dir="auto">by <strong>jcowgar</strong>:</p> <pre class="notranslate">What steps will reproduce the problem? 1. Create a source file: package main import "io" func main() { fmt.Printf("Hello") } What is the expected output? $ govet hello.go hello.go:3 io package imported but not used hello.go:6 fmt package is unknown/not imported What do you see instead? $ govet -v=true hello.go Checking file hello.go $ Which operating system are you using? Linux (ArchLinux) Which revision are you using? (hg identify) 95d2ce135523 (release-branch.r57) release/release.r57.1 Please provide any additional information below.</pre>
<p dir="auto">by <strong>cgmurray</strong>:</p> <pre class="notranslate">What steps will reproduce the problem? run "go test -x ROOT_PACKAGE/..." with go 1.0.3 and tip (13e00572ed0b) What is the expected output? working directory is changed for every package with go 1.1, "cd ... or equivalent" What do you see instead? working directory is not changed for every package as with go 1.0.3 Which compiler are you using (5g, 6g, 8g, gccgo)? - Which operating system are you using? osx Which version are you using? (run 'go version') go version devel +13e00572ed0b Thu Apr 18 17:37:21 2013 -0700 darwin/amd64 Please provide any additional information below. This might break backwards compatibility. In the specific use-case a relative library-path is set with -L</pre>
0
<p dir="auto">Which version of Sharding-Sphere do you using?<br> 3.1.0</p> <p dir="auto">Which project do you using? Sharding-JDBC or Sharding-Proxy?<br> Sharding-JDBC</p> <p dir="auto">if i use one zk center for sharding-jdbc and sharding-proxy, and i use multiple schema, the sharding-jdbc in app needs to know which schema it use~</p>
<h2 dir="auto">Bug Report</h2> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor$1.setCodePointLimit(I)V] with root cause java.lang.NoSuchMethodError: org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor$1.setCodePointLimit(I)V at org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor$1.&lt;init&gt;(ShardingSphereYamlConstructor.java:45) at org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor.&lt;init&gt;(ShardingSphereYamlConstructor.java:42) at org.apache.shardingsphere.infra.util.yaml.YamlEngine.unmarshal(YamlEngine.java:70) at org.apache.shardingsphere.driver.api.yaml.YamlShardingSphereDataSourceFactory.createDataSource(YamlShardingSphereDataSourceFactory.java:94) at org.apache.shardingsphere.driver.jdbc.core.driver.DriverDataSourceCache.createDataSource(DriverDataSourceCache.java:51) at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) at org.apache.shardingsphere.driver.jdbc.core.driver.DriverDataSourceCache.get(DriverDataSourceCache.java:45) at org.apache.shardingsphere.driver.ShardingSphereDriver.connect(ShardingSphereDriver.java:51) at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:121) at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364) at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206) at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476) at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) at com.zaxxer.hikari.pool.HikariPool.&lt;init&gt;(HikariPool.java:115) at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:159) at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:117) at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:80) at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80) at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67) at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:337) at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:86) at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62) at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:151) at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) at com.sun.proxy.$Proxy96.query(Unknown Source) at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) at com.sun.proxy.$Proxy77.selectOne(Unknown Source) at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87) at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145) at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)"><pre class="notranslate"><span class="pl-smi">Servlet</span>.<span class="pl-en">service</span>() <span class="pl-s1">for</span> <span class="pl-s1">servlet</span> [<span class="pl-s1">dispatcherServlet</span>] <span class="pl-s1">in</span> <span class="pl-smi">context</span> <span class="pl-s1">with</span> <span class="pl-smi">path</span> [] <span class="pl-s1">threw</span> <span class="pl-s1">exception</span> [<span class="pl-smi">Handler</span> <span class="pl-s1">dispatch</span> <span class="pl-s1">failed</span>; <span class="pl-smi">nested</span> <span class="pl-s1">exception</span> <span class="pl-smi">is</span> <span class="pl-s1">java</span>.<span class="pl-s1">lang</span>.<span class="pl-s1">NoSuchMethodError</span>: <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">util</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">constructor</span>.<span class="pl-s1">ShardingSphereYamlConstructor$1</span>.<span class="pl-s1">setCodePointLimit</span>(<span class="pl-smi">I</span>)<span class="pl-s1">V</span>] <span class="pl-k">with</span> <span class="pl-smi">root</span> <span class="pl-s1">cause</span> <span class="pl-smi">java</span>.<span class="pl-smi">lang</span>.<span class="pl-smi">NoSuchMethodError</span>: <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">util</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">constructor</span>.<span class="pl-s1">ShardingSphereYamlConstructor$1</span>.<span class="pl-s1">setCodePointLimit</span>(<span class="pl-smi">I</span>)<span class="pl-smi">V</span> <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">util</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">constructor</span>.<span class="pl-s1">ShardingSphereYamlConstructor$1</span>.&lt;<span class="pl-smi">init</span>&gt;(<span class="pl-smi">ShardingSphereYamlConstructor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">45</span>) <span class="pl-smi">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">util</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">constructor</span>.<span class="pl-s1">ShardingSphereYamlConstructor</span>.&lt;<span class="pl-smi">init</span>&gt;(<span class="pl-smi">ShardingSphereYamlConstructor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">42</span>) <span class="pl-smi">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">util</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">YamlEngine</span>.<span class="pl-en">unmarshal</span>(<span class="pl-smi">YamlEngine</span>.<span class="pl-smi">java</span>:<span class="pl-c1">70</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">api</span>.<span class="pl-s1">yaml</span>.<span class="pl-s1">YamlShardingSphereDataSourceFactory</span>.<span class="pl-en">createDataSource</span>(<span class="pl-smi">YamlShardingSphereDataSourceFactory</span>.<span class="pl-smi">java</span>:<span class="pl-c1">94</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">core</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">DriverDataSourceCache</span>.<span class="pl-en">createDataSource</span>(<span class="pl-smi">DriverDataSourceCache</span>.<span class="pl-smi">java</span>:<span class="pl-c1">51</span>) <span class="pl-s1">at</span> <span class="pl-s1">java</span>.<span class="pl-s1">util</span>.<span class="pl-s1">concurrent</span>.<span class="pl-s1">ConcurrentHashMap</span>.<span class="pl-en">computeIfAbsent</span>(<span class="pl-smi">ConcurrentHashMap</span>.<span class="pl-smi">java</span>:<span class="pl-c1">1660</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">core</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">DriverDataSourceCache</span>.<span class="pl-en">get</span>(<span class="pl-smi">DriverDataSourceCache</span>.<span class="pl-smi">java</span>:<span class="pl-c1">45</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">driver</span>.<span class="pl-s1">ShardingSphereDriver</span>.<span class="pl-en">connect</span>(<span class="pl-smi">ShardingSphereDriver</span>.<span class="pl-smi">java</span>:<span class="pl-c1">51</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">util</span>.<span class="pl-s1">DriverDataSource</span>.<span class="pl-en">getConnection</span>(<span class="pl-smi">DriverDataSource</span>.<span class="pl-smi">java</span>:<span class="pl-c1">121</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">pool</span>.<span class="pl-s1">PoolBase</span>.<span class="pl-en">newConnection</span>(<span class="pl-smi">PoolBase</span>.<span class="pl-smi">java</span>:<span class="pl-c1">364</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">pool</span>.<span class="pl-s1">PoolBase</span>.<span class="pl-en">newPoolEntry</span>(<span class="pl-smi">PoolBase</span>.<span class="pl-smi">java</span>:<span class="pl-c1">206</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">pool</span>.<span class="pl-s1">HikariPool</span>.<span class="pl-en">createPoolEntry</span>(<span class="pl-smi">HikariPool</span>.<span class="pl-smi">java</span>:<span class="pl-c1">476</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">pool</span>.<span class="pl-s1">HikariPool</span>.<span class="pl-en">checkFailFast</span>(<span class="pl-smi">HikariPool</span>.<span class="pl-smi">java</span>:<span class="pl-c1">561</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">pool</span>.<span class="pl-s1">HikariPool</span>.&lt;<span class="pl-smi">init</span>&gt;(<span class="pl-smi">HikariPool</span>.<span class="pl-smi">java</span>:<span class="pl-c1">115</span>) <span class="pl-smi">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">zaxxer</span>.<span class="pl-s1">hikari</span>.<span class="pl-s1">HikariDataSource</span>.<span class="pl-en">getConnection</span>(<span class="pl-smi">HikariDataSource</span>.<span class="pl-smi">java</span>:<span class="pl-c1">112</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">springframework</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">datasource</span>.<span class="pl-s1">DataSourceUtils</span>.<span class="pl-en">fetchConnection</span>(<span class="pl-smi">DataSourceUtils</span>.<span class="pl-smi">java</span>:<span class="pl-c1">159</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">springframework</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">datasource</span>.<span class="pl-s1">DataSourceUtils</span>.<span class="pl-en">doGetConnection</span>(<span class="pl-smi">DataSourceUtils</span>.<span class="pl-smi">java</span>:<span class="pl-c1">117</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">springframework</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">datasource</span>.<span class="pl-s1">DataSourceUtils</span>.<span class="pl-en">getConnection</span>(<span class="pl-smi">DataSourceUtils</span>.<span class="pl-smi">java</span>:<span class="pl-c1">80</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">mybatis</span>.<span class="pl-s1">spring</span>.<span class="pl-s1">transaction</span>.<span class="pl-s1">SpringManagedTransaction</span>.<span class="pl-en">openConnection</span>(<span class="pl-smi">SpringManagedTransaction</span>.<span class="pl-smi">java</span>:<span class="pl-c1">80</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">mybatis</span>.<span class="pl-s1">spring</span>.<span class="pl-s1">transaction</span>.<span class="pl-s1">SpringManagedTransaction</span>.<span class="pl-en">getConnection</span>(<span class="pl-smi">SpringManagedTransaction</span>.<span class="pl-smi">java</span>:<span class="pl-c1">67</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">BaseExecutor</span>.<span class="pl-en">getConnection</span>(<span class="pl-smi">BaseExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">337</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">SimpleExecutor</span>.<span class="pl-en">prepareStatement</span>(<span class="pl-smi">SimpleExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">86</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">SimpleExecutor</span>.<span class="pl-en">doQuery</span>(<span class="pl-smi">SimpleExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">62</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">BaseExecutor</span>.<span class="pl-en">queryFromDatabase</span>(<span class="pl-smi">BaseExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">325</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">BaseExecutor</span>.<span class="pl-en">query</span>(<span class="pl-smi">BaseExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">156</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">CachingExecutor</span>.<span class="pl-en">query</span>(<span class="pl-smi">CachingExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">109</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">github</span>.<span class="pl-s1">pagehelper</span>.<span class="pl-s1">PageInterceptor</span>.<span class="pl-en">intercept</span>(<span class="pl-smi">PageInterceptor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">151</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">Plugin</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">Plugin</span>.<span class="pl-smi">java</span>:<span class="pl-c1">62</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">sun</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">$Proxy96</span>.<span class="pl-en">query</span>(<span class="pl-smi">Unknown</span> <span class="pl-s1">Source</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">session</span>.<span class="pl-s1">defaults</span>.<span class="pl-s1">DefaultSqlSession</span>.<span class="pl-en">selectList</span>(<span class="pl-smi">DefaultSqlSession</span>.<span class="pl-smi">java</span>:<span class="pl-c1">151</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">session</span>.<span class="pl-s1">defaults</span>.<span class="pl-s1">DefaultSqlSession</span>.<span class="pl-en">selectList</span>(<span class="pl-smi">DefaultSqlSession</span>.<span class="pl-smi">java</span>:<span class="pl-c1">145</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">session</span>.<span class="pl-s1">defaults</span>.<span class="pl-s1">DefaultSqlSession</span>.<span class="pl-en">selectList</span>(<span class="pl-smi">DefaultSqlSession</span>.<span class="pl-smi">java</span>:<span class="pl-c1">140</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">session</span>.<span class="pl-s1">defaults</span>.<span class="pl-s1">DefaultSqlSession</span>.<span class="pl-en">selectOne</span>(<span class="pl-smi">DefaultSqlSession</span>.<span class="pl-smi">java</span>:<span class="pl-c1">76</span>) <span class="pl-s1">at</span> <span class="pl-s1">sun</span>.<span class="pl-s1">reflect</span>.<span class="pl-s1">NativeMethodAccessorImpl</span>.<span class="pl-en">invoke0</span>(<span class="pl-smi">Native</span> <span class="pl-s1">Method</span>) <span class="pl-s1">at</span> <span class="pl-s1">sun</span>.<span class="pl-s1">reflect</span>.<span class="pl-s1">NativeMethodAccessorImpl</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">NativeMethodAccessorImpl</span>.<span class="pl-smi">java</span>:<span class="pl-c1">62</span>) <span class="pl-s1">at</span> <span class="pl-s1">sun</span>.<span class="pl-s1">reflect</span>.<span class="pl-s1">DelegatingMethodAccessorImpl</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">DelegatingMethodAccessorImpl</span>.<span class="pl-smi">java</span>:<span class="pl-c1">43</span>) <span class="pl-s1">at</span> <span class="pl-s1">java</span>.<span class="pl-s1">lang</span>.<span class="pl-s1">reflect</span>.<span class="pl-s1">Method</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">Method</span>.<span class="pl-smi">java</span>:<span class="pl-c1">498</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">mybatis</span>.<span class="pl-s1">spring</span>.<span class="pl-s1">SqlSessionTemplate$SqlSessionInterceptor</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">SqlSessionTemplate</span>.<span class="pl-smi">java</span>:<span class="pl-c1">427</span>) <span class="pl-s1">at</span> <span class="pl-s1">com</span>.<span class="pl-s1">sun</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">$Proxy77</span>.<span class="pl-en">selectOne</span>(<span class="pl-smi">Unknown</span> <span class="pl-s1">Source</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">mybatis</span>.<span class="pl-s1">spring</span>.<span class="pl-s1">SqlSessionTemplate</span>.<span class="pl-en">selectOne</span>(<span class="pl-smi">SqlSessionTemplate</span>.<span class="pl-smi">java</span>:<span class="pl-c1">160</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">binding</span>.<span class="pl-s1">MapperMethod</span>.<span class="pl-en">execute</span>(<span class="pl-smi">MapperMethod</span>.<span class="pl-smi">java</span>:<span class="pl-c1">87</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">binding</span>.<span class="pl-s1">MapperProxy$PlainMethodInvoker</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">MapperProxy</span>.<span class="pl-smi">java</span>:<span class="pl-c1">145</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">ibatis</span>.<span class="pl-s1">binding</span>.<span class="pl-s1">MapperProxy</span>.<span class="pl-en">invoke</span>(<span class="pl-smi">MapperProxy</span>.<span class="pl-smi">java</span>:<span class="pl-c1">86</span>)</pre></div> <p dir="auto">Before report a bug, make sure you have:</p> <ul dir="auto"> <li>Searched open and closed <a href="https://github.com/apache/shardingsphere/issues">GitHub issues</a>.</li> <li>Read documentation: <a href="https://shardingsphere.apache.org/document/current/en/overview" rel="nofollow">ShardingSphere Doc</a>.</li> </ul> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response anymore and we cannot reproduce it on current information, we will <strong>close it</strong>.</p> <p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">5.3.2</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">ShardingSphere-JDBC</p> <h3 dir="auto">Expected behavior</h3> <h3 dir="auto">Actual behavior</h3> <h3 dir="auto">Reason analyze (If you can)</h3> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3> <h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
0
<p dir="auto">Running the following query on an empty database</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="MATCH (n:L) WHERE n.p XOR (false XOR n.p OR null) RETURN n"><pre class="notranslate"><code class="notranslate">MATCH (n:L) WHERE n.p XOR (false XOR n.p OR null) RETURN n </code></pre></div> <p dir="auto">throws</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Caused by: org.neo4j.graphdb.QueryExecutionException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.kernel.impl.query.QueryExecutionKernelException.asUserException(QueryExecutionKernelException.java:35) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:293) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:274) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:268) ... 4 more Caused by: org.neo4j.kernel.impl.query.QueryExecutionKernelException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:131) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:115) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:285) ... 8 more Caused by: org.neo4j.exceptions.InternalException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.cypher.internal.compiler.planner.logical.steps.VerifyBestPlan$.apply(VerifyBestPlan.scala:70) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.plan(QueryPlanner.scala:121) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.process(QueryPlanner.scala:63) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.process(QueryPlanner.scala:51) at org.neo4j.cypher.internal.frontend.phases.Phase.$anonfun$transform$1(Phase.scala:36) at org.neo4j.cypher.internal.frontend.helpers.package$.$anonfun$closing$1(package.scala:24) at org.neo4j.cypher.internal.frontend.helpers.package$.using(package.scala:32) at org.neo4j.cypher.internal.frontend.helpers.package$.closing(package.scala:24) at org.neo4j.cypher.internal.frontend.phases.Phase.transform(Phase.scala:35) at org.neo4j.cypher.internal.frontend.phases.Phase.transform$(Phase.scala:33) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.transform(QueryPlanner.scala:51) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:79) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.If.transform(Transformer.scala:96) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:79) at org.neo4j.cypher.internal.compiler.CypherPlanner.planPreparedQuery(CypherPlanner.scala:70) at org.neo4j.cypher.internal.planning.CypherPlanner.doCreatePlan(CypherPlanner.scala:404) at org.neo4j.cypher.internal.planning.CypherPlanner.org$neo4j$cypher$internal$planning$CypherPlanner$$createPlan$1(CypherPlanner.scala:352) at org.neo4j.cypher.internal.planning.CypherPlanner$$anon$1.compile(CypherPlanner.scala:361) at org.neo4j.cypher.internal.planning.CypherPlanner$$anon$1.compile(CypherPlanner.scala:360) at org.neo4j.cypher.internal.QueryCache.$anonfun$compileAndCache$1(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.compileOrCompileWithExpressionCodeGenAndCache(QueryCache.scala:304) at org.neo4j.cypher.internal.QueryCache.compileAndCache(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.computeIfAbsentOrStale(QueryCache.scala:193) at org.neo4j.cypher.internal.planning.CypherPlanner.doPlan(CypherPlanner.scala:379) at org.neo4j.cypher.internal.planning.CypherPlanner.parseAndPlan(CypherPlanner.scala:269) at org.neo4j.cypher.internal.CypherCurrentCompiler.compile(CypherCurrentCompiler.scala:152) at org.neo4j.cypher.internal.MasterCompiler.compile(MasterCompiler.scala:86) at org.neo4j.cypher.internal.ExecutionEngine.$anonfun$compilerWithExpressionCodeGenOption$2(ExecutionEngine.scala:229) at org.neo4j.cypher.internal.ExecutionEngine$$anon$2.compile(ExecutionEngine.scala:237) at org.neo4j.cypher.internal.ExecutionEngine$$anon$2.compile(ExecutionEngine.scala:231) at org.neo4j.cypher.internal.QueryCache.$anonfun$compileAndCache$1(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.compileOrCompileWithExpressionCodeGenAndCache(QueryCache.scala:304) at org.neo4j.cypher.internal.QueryCache.compileAndCache(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.computeIfAbsentOrStale(QueryCache.scala:193) at org.neo4j.cypher.internal.ExecutionEngine.getOrCompile(ExecutionEngine.scala:287) at org.neo4j.cypher.internal.ExecutionEngine.doExecute(ExecutionEngine.scala:200) at org.neo4j.cypher.internal.ExecutionEngine.$anonfun$executeSubquery$1(ExecutionEngine.scala:178) at org.neo4j.cypher.internal.ExecutionEngine.closing(ExecutionEngine.scala:183) at org.neo4j.cypher.internal.ExecutionEngine.executeSubquery(ExecutionEngine.scala:175) at org.neo4j.cypher.internal.ExecutionEngine.execute(ExecutionEngine.scala:125) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:127) ... 10 more"><pre class="notranslate"><code class="notranslate">Caused by: org.neo4j.graphdb.QueryExecutionException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.kernel.impl.query.QueryExecutionKernelException.asUserException(QueryExecutionKernelException.java:35) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:293) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:274) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:268) ... 4 more Caused by: org.neo4j.kernel.impl.query.QueryExecutionKernelException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:131) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:115) at org.neo4j.kernel.impl.coreapi.TransactionImpl.execute(TransactionImpl.java:285) ... 8 more Caused by: org.neo4j.exceptions.InternalException: Expected RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Instead, got: RegularSinglePlannerQuery(QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']},InterestingOrder(RequiredOrderCandidate(List()),List()),RegularQueryProjection(Map(n -&gt; Variable(n)),QueryPagination(None,None),Selections(Set())),None,None) Plan: ProduceResult(List(n)) { LHS -&gt; Selection(Ands(Vector(Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Null()))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(Property(Variable(n),PropertyKeyName(p))), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Property(Variable(n),PropertyKeyName(p)), Property(Variable(n),PropertyKeyName(p)), Null())), Ors(List(Property(Variable(n),PropertyKeyName(p)), Not(False()), Not(Property(Variable(n),PropertyKeyName(p))), Null())), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False()), Property(Variable(n),PropertyKeyName(p)))), Ors(List(Not(Property(Variable(n),PropertyKeyName(p))), Not(False())))))) { LHS -&gt; Distinct(Map(n -&gt; Variable(n))) { LHS -&gt; Union() { LHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } RHS -&gt; Selection(Ands(Vector(Not(Property(Variable(n),PropertyKeyName(p)))))) { LHS -&gt; NodeByLabelScan(n, LabelName(L), Set(), IndexOrderNone) {} } } } } } Differences: - QueryGraph A: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} B: QueryGraph {Nodes: ['n'], Predicates: ['not n.p OR not NULL', 'n.p OR not false OR not n.p OR NULL', 'not n.p OR not false OR n.p', 'not n.p', 'n:L', 'n.p OR n.p OR NULL', 'not n.p OR not n.p', 'not n.p OR not false', 'not n.p OR not n.p OR n.p']} at org.neo4j.cypher.internal.compiler.planner.logical.steps.VerifyBestPlan$.apply(VerifyBestPlan.scala:70) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.plan(QueryPlanner.scala:121) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.process(QueryPlanner.scala:63) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.process(QueryPlanner.scala:51) at org.neo4j.cypher.internal.frontend.phases.Phase.$anonfun$transform$1(Phase.scala:36) at org.neo4j.cypher.internal.frontend.helpers.package$.$anonfun$closing$1(package.scala:24) at org.neo4j.cypher.internal.frontend.helpers.package$.using(package.scala:32) at org.neo4j.cypher.internal.frontend.helpers.package$.closing(package.scala:24) at org.neo4j.cypher.internal.frontend.phases.Phase.transform(Phase.scala:35) at org.neo4j.cypher.internal.frontend.phases.Phase.transform$(Phase.scala:33) at org.neo4j.cypher.internal.compiler.planner.logical.QueryPlanner$.transform(QueryPlanner.scala:51) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:79) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:78) at org.neo4j.cypher.internal.frontend.phases.If.transform(Transformer.scala:96) at org.neo4j.cypher.internal.frontend.phases.PipeLine.transform(Transformer.scala:79) at org.neo4j.cypher.internal.compiler.CypherPlanner.planPreparedQuery(CypherPlanner.scala:70) at org.neo4j.cypher.internal.planning.CypherPlanner.doCreatePlan(CypherPlanner.scala:404) at org.neo4j.cypher.internal.planning.CypherPlanner.org$neo4j$cypher$internal$planning$CypherPlanner$$createPlan$1(CypherPlanner.scala:352) at org.neo4j.cypher.internal.planning.CypherPlanner$$anon$1.compile(CypherPlanner.scala:361) at org.neo4j.cypher.internal.planning.CypherPlanner$$anon$1.compile(CypherPlanner.scala:360) at org.neo4j.cypher.internal.QueryCache.$anonfun$compileAndCache$1(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.compileOrCompileWithExpressionCodeGenAndCache(QueryCache.scala:304) at org.neo4j.cypher.internal.QueryCache.compileAndCache(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.computeIfAbsentOrStale(QueryCache.scala:193) at org.neo4j.cypher.internal.planning.CypherPlanner.doPlan(CypherPlanner.scala:379) at org.neo4j.cypher.internal.planning.CypherPlanner.parseAndPlan(CypherPlanner.scala:269) at org.neo4j.cypher.internal.CypherCurrentCompiler.compile(CypherCurrentCompiler.scala:152) at org.neo4j.cypher.internal.MasterCompiler.compile(MasterCompiler.scala:86) at org.neo4j.cypher.internal.ExecutionEngine.$anonfun$compilerWithExpressionCodeGenOption$2(ExecutionEngine.scala:229) at org.neo4j.cypher.internal.ExecutionEngine$$anon$2.compile(ExecutionEngine.scala:237) at org.neo4j.cypher.internal.ExecutionEngine$$anon$2.compile(ExecutionEngine.scala:231) at org.neo4j.cypher.internal.QueryCache.$anonfun$compileAndCache$1(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.compileOrCompileWithExpressionCodeGenAndCache(QueryCache.scala:304) at org.neo4j.cypher.internal.QueryCache.compileAndCache(QueryCache.scala:276) at org.neo4j.cypher.internal.QueryCache.computeIfAbsentOrStale(QueryCache.scala:193) at org.neo4j.cypher.internal.ExecutionEngine.getOrCompile(ExecutionEngine.scala:287) at org.neo4j.cypher.internal.ExecutionEngine.doExecute(ExecutionEngine.scala:200) at org.neo4j.cypher.internal.ExecutionEngine.$anonfun$executeSubquery$1(ExecutionEngine.scala:178) at org.neo4j.cypher.internal.ExecutionEngine.closing(ExecutionEngine.scala:183) at org.neo4j.cypher.internal.ExecutionEngine.executeSubquery(ExecutionEngine.scala:175) at org.neo4j.cypher.internal.ExecutionEngine.execute(ExecutionEngine.scala:125) at org.neo4j.cypher.internal.javacompat.ExecutionEngine.executeQuery(ExecutionEngine.java:127) ... 10 more </code></pre></div> <p dir="auto">This might be a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1222979550" data-permission-text="Title is private" data-url="https://github.com/neo4j/neo4j/issues/12877" data-hovercard-type="issue" data-hovercard-url="/neo4j/neo4j/issues/12877/hovercard" href="https://github.com/neo4j/neo4j/issues/12877">#12877</a> but the query is slightly different so I reported it just in case.</p> <p dir="auto"><strong>Neo4j Version:</strong> 4.4.6<br> <strong>Operating System:</strong> 5.17.6 Arch Linux<br> <strong>API:</strong> Java</p> <h3 dir="auto">Expected behavior</h3> <p dir="auto">I would expect the query not to throw any exception.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">An exception is thrown.</p>
<p dir="auto">Given an empty database, using asynchronous HTTP requests and the same exact MERGE command in rapid succession causes the neo4j server to create multiple instances of the same node. Tested on CentOS and Mac OS X using 2.1.5 release and local builds from master. Following is python code to trigger the issue:</p> <p dir="auto">import requests # using requests instead of future requests "alleviates" the issue<br> from requests_futures.sessions import FuturesSession<br> from bson.json_util import dumps, loads</p> <p dir="auto">def handleWedgeResponses(sess, r):<br> print r.text</p> <p dir="auto">session = FuturesSession()<br> for i in range(2):<br> statements = []<br> statements.append({"statement": "MERGE (a:Author {name: 'abc'})"})<br> r = session.post("<a href="http://localhost:7474/db/data/transaction/commit" rel="nofollow">http://localhost:7474/db/data/transaction/commit</a>", data=dumps({"statements": statements}), headers={'content-type': 'application/json'}, background_callback=handleWedgeResponses)</p>
0
<p dir="auto">My issue is about to solve a sparse linear system is much slower in Scipy than in Matlab.</p> <h3 dir="auto">Reproducing code example:</h3> <p dir="auto">I tried the following script in python</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np import scipy.sparse.linalg import time N = 6 diagonals = np.zeros((3, N)) # 3 diagonals diagonals[0,:] = np.linspace(-1, -N, N) diagonals[1,:] = -2 diagonals[2,:] = np.linspace(1, N, N) time1 = time.time() A = scipy.sparse.spdiags(diagonals, [-1,0,1], N, N, format='csc') print &quot;spdiags takes &quot; + str(time.time()-time1) x = np.linspace(-1, 1, N) # choose solution b = A.dot(x) # sparse matrix vector product time1 = time.time() x = scipy.sparse.linalg.spsolve(A, b) print &quot;solve a linear system takes&quot; + str(time.time()-time1) print x"><pre lang="import" class="notranslate"><code class="notranslate">import numpy as np import scipy.sparse.linalg import time N = 6 diagonals = np.zeros((3, N)) # 3 diagonals diagonals[0,:] = np.linspace(-1, -N, N) diagonals[1,:] = -2 diagonals[2,:] = np.linspace(1, N, N) time1 = time.time() A = scipy.sparse.spdiags(diagonals, [-1,0,1], N, N, format='csc') print "spdiags takes " + str(time.time()-time1) x = np.linspace(-1, 1, N) # choose solution b = A.dot(x) # sparse matrix vector product time1 = time.time() x = scipy.sparse.linalg.spsolve(A, b) print "solve a linear system takes" + str(time.time()-time1) print x </code></pre></div> <p dir="auto">Result:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="spdiags takes 0.000300168991089 solve a linear system takes0.000184059143066 [-1. -0.6 -0.2 0.2 0.6 1. ]"><pre class="notranslate"><code class="notranslate">spdiags takes 0.000300168991089 solve a linear system takes0.000184059143066 [-1. -0.6 -0.2 0.2 0.6 1. ] </code></pre></div> <p dir="auto">I also tried the following code in Matlab:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="N = 6; diagonals = zeros(N, 3); diagonals(:,1) = linspace(-1, -N, N); diagonals(:,2) = -2; diagonals(:,3) = linspace(1, N, N); tic A = spdiags(diagonals, -1:1,N,N); toc x = linspace(-1, 1, N)'; b = A * x; tic x = A\b; toc x"><pre class="notranslate"><code class="notranslate">N = 6; diagonals = zeros(N, 3); diagonals(:,1) = linspace(-1, -N, N); diagonals(:,2) = -2; diagonals(:,3) = linspace(1, N, N); tic A = spdiags(diagonals, -1:1,N,N); toc x = linspace(-1, 1, N)'; b = A * x; tic x = A\b; toc x </code></pre></div> <p dir="auto">Result:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Elapsed time is 0.000452 seconds. Elapsed time is 0.000073 seconds. x = -1.0000 -0.6000 -0.2000 0.2000 0.6000 1.0000"><pre class="notranslate"><code class="notranslate">Elapsed time is 0.000452 seconds. Elapsed time is 0.000073 seconds. x = -1.0000 -0.6000 -0.2000 0.2000 0.6000 1.0000 </code></pre></div> <p dir="auto">It only takes 0.000073 seconds in Matlab while 0.000184059143066 in Scipy.</p> <h3 dir="auto">Scipy/Numpy/Python version information:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) ('1.1.0', '1.13.3', sys.version_info(major=2, minor=7, micro=14, releaselevel='final', serial=0))"><pre class="notranslate"><code class="notranslate">import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) ('1.1.0', '1.13.3', sys.version_info(major=2, minor=7, micro=14, releaselevel='final', serial=0)) </code></pre></div>
<p dir="auto">I've found that on some page you have trouble with the latex markup</p> <p dir="auto"><a href="http://docs.scipy.org/doc/scipy-0.15.1/reference/tutorial/linalg.html" rel="nofollow">http://docs.scipy.org/doc/scipy-0.15.1/reference/tutorial/linalg.html</a></p> <p dir="auto">there is a lot of [ and ] that appear all over the text.</p>
0
<p dir="auto"><em>Please make sure that this is a build/installation issue. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em></p> <p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 7/64</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</li> <li>TensorFlow installed from (source or binary): pip</li> <li>TensorFlow version: 2.0</li> <li>Python version: 3.6</li> <li>Installed using virtualenv? pip? conda?: pip</li> <li>Bazel version (if compiling from source):</li> <li>GCC/Compiler version (if compiling from source):</li> <li>CUDA/cuDNN version:</li> <li>GPU model and memory:</li> </ul> <p dir="auto"><strong>Describe the problem</strong></p> <p dir="auto"><strong>Provide the exact sequence of commands / steps that you executed before running into the problem</strong></p> <p dir="auto"><strong>Any other info / logs</strong><br> Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p>
<p dir="auto">Hi,</p> <p dir="auto">is it possible to use Inception-v3 to classify images only for dogs?The example at tensorflow/examples/label_image/ classify images into 1000 classes.</p>
0
<p dir="auto">I want to be able to recompile only dependencies (rather than everything in a crate), like SML's compilation manager or GHC's <code class="notranslate">--make</code> mode. I don't really care about the approach so long as it works and the outcome is that adding one <code class="notranslate">#debug</code> call in one file doesn't trigger recompilation of 100 other files in the same crate :-) I am volunteering to work on this after 0.3, but suggestions are welcome. Patrick suggested a good place to start would be to generate a (visualizable) graph of item dependencies, which makes sense to me.</p>
<p dir="auto">rustc 1.0.0-nightly (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/2b01a37ec38db9301239f0c0abcf3c695055b0ff/hovercard" href="https://github.com/rust-lang/rust/commit/2b01a37ec38db9301239f0c0abcf3c695055b0ff"><tt>2b01a37</tt></a> 2015-02-21) (built 2015-02-22)</p> <p dir="auto">I try to compile file:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use std::sync::{Arc, Mutex}; fn main() { } fn compile_ok() -&gt; Result&lt;(), ()&gt; { let hash_lock = Arc::new(Mutex::new(&quot;test&quot;.to_string())); let result = match hash_lock.lock() { Ok(_) =&gt; Ok(()), Err(_) =&gt; Ok(()) }; result } fn compile_fail() -&gt; Result&lt;(), ()&gt; { let hash_lock = Arc::new(Mutex::new(&quot;test&quot;.to_string())); match hash_lock.lock() { Ok(_) =&gt; Ok(()), Err(_) =&gt; Ok(()) } }"><pre class="notranslate"><code class="notranslate">use std::sync::{Arc, Mutex}; fn main() { } fn compile_ok() -&gt; Result&lt;(), ()&gt; { let hash_lock = Arc::new(Mutex::new("test".to_string())); let result = match hash_lock.lock() { Ok(_) =&gt; Ok(()), Err(_) =&gt; Ok(()) }; result } fn compile_fail() -&gt; Result&lt;(), ()&gt; { let hash_lock = Arc::new(Mutex::new("test".to_string())); match hash_lock.lock() { Ok(_) =&gt; Ok(()), Err(_) =&gt; Ok(()) } } </code></pre></div> <p dir="auto">And get error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sample.rs:17:8: 17:17 error: `hash_lock` does not live long enough sample.rs:17 match hash_lock.lock() { ^~~~~~~~~ sample.rs:15:37: 21:2 note: reference must be valid for the destruction scope surrounding block at 15:36... sample.rs:15 fn compile_fail() -&gt; Result&lt;(), ()&gt; { sample.rs:16 let hash_lock = Arc::new(Mutex::new(&quot;test&quot;.to_string())); sample.rs:17 match hash_lock.lock() { sample.rs:18 Ok(_) =&gt; Ok(()), sample.rs:19 Err(_) =&gt; Ok(()) sample.rs:20 } ... sample.rs:16:58: 21:2 note: ...but borrowed value is only valid for the block suffix following statement 0 at 16:57 sample.rs:16 let hash_lock = Arc::new(Mutex::new(&quot;test&quot;.to_string())); sample.rs:17 match hash_lock.lock() { sample.rs:18 Ok(_) =&gt; Ok(()), sample.rs:19 Err(_) =&gt; Ok(()) sample.rs:20 } sample.rs:21 } error: aborting due to previous error"><pre class="notranslate"><code class="notranslate">sample.rs:17:8: 17:17 error: `hash_lock` does not live long enough sample.rs:17 match hash_lock.lock() { ^~~~~~~~~ sample.rs:15:37: 21:2 note: reference must be valid for the destruction scope surrounding block at 15:36... sample.rs:15 fn compile_fail() -&gt; Result&lt;(), ()&gt; { sample.rs:16 let hash_lock = Arc::new(Mutex::new("test".to_string())); sample.rs:17 match hash_lock.lock() { sample.rs:18 Ok(_) =&gt; Ok(()), sample.rs:19 Err(_) =&gt; Ok(()) sample.rs:20 } ... sample.rs:16:58: 21:2 note: ...but borrowed value is only valid for the block suffix following statement 0 at 16:57 sample.rs:16 let hash_lock = Arc::new(Mutex::new("test".to_string())); sample.rs:17 match hash_lock.lock() { sample.rs:18 Ok(_) =&gt; Ok(()), sample.rs:19 Err(_) =&gt; Ok(()) sample.rs:20 } sample.rs:21 } error: aborting due to previous error </code></pre></div>
0
<p dir="auto">Hi,<br> I'm wondering which steps are necessary to move from the greedy decoder currently implemented to an actual beam search decoder. Is this enhancement already in someone's roadmap? If not, could anyone tell me which is the right point in the code where to add this functionality?<br> Thanks a lot!<br> Marcello</p>
<p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No</li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): 16.04</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: Yes</li> <li>TensorFlow installed from (source or binary): binary</li> <li>TensorFlow version (use command below): 1.13.0-dev20181222</li> <li>Python version: 3.6</li> <li>Bazel version (if compiling from source): /</li> <li>GCC/Compiler version (if compiling from source): /</li> <li>CUDA/cuDNN version: 9.1</li> <li>GPU model and memory: 1080 Ti with 11Gib memory</li> </ul> <p dir="auto">You can collect some of this information using our environment capture <a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">script</a><br> You can also obtain the TensorFlow version with<br> python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</p> <p dir="auto"><strong>Code to reproduce the issue</strong><br> I was trying to convert the model in <a href="https://github.com/MIT-HAN-LAB/ProxylessNAS">https://github.com/MIT-HAN-LAB/ProxylessNAS</a> to TFLite, however, when following the tutorial, I got errors below</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import tensorflow as tf from proxyless_nas_tensorflow import proxyless_cpu, proxyless_gpu, proxyless_mobile, proxyless_mobile_14 net = proxyless_cpu() net.is_training = False converter = tf.lite.TFLiteConverter.from_session(net.sess, [net.images, net.labels], [net.cross_entropy]) tflite_model = converter.convert() ''' ~/anaconda3/envs/tf-nightly/lib/python3.6/site-packages/tensorflow/lite/python/convert.py in toco_convert_protos(model_flags_str, toco_flags_str, input_data_str) 206 stderr = _try_convert_to_unicode(stderr) 207 raise ConverterError( --&gt; 208 &quot;TOCO failed. See console for info.\n%s\n%s\n&quot; % (stdout, stderr)) 209 finally: 210 # Must manually cleanup files. ConverterError: TOCO failed. See console for info. 2018-12-22 13:38:13.626047: F tensorflow/core/framework/function.cc:1626] Check failed: GetOpGradFactory()-&gt;insert({op, func}).second Duplicated gradient for ReadVariableOp Aborted (core dumped) '''"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">tensorflow</span> <span class="pl-k">as</span> <span class="pl-s1">tf</span> <span class="pl-k">from</span> <span class="pl-s1">proxyless_nas_tensorflow</span> <span class="pl-k">import</span> <span class="pl-s1">proxyless_cpu</span>, <span class="pl-s1">proxyless_gpu</span>, <span class="pl-s1">proxyless_mobile</span>, <span class="pl-s1">proxyless_mobile_14</span> <span class="pl-s1">net</span> <span class="pl-c1">=</span> <span class="pl-en">proxyless_cpu</span>() <span class="pl-s1">net</span>.<span class="pl-s1">is_training</span> <span class="pl-c1">=</span> <span class="pl-c1">False</span> <span class="pl-s1">converter</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">lite</span>.<span class="pl-v">TFLiteConverter</span>.<span class="pl-en">from_session</span>(<span class="pl-s1">net</span>.<span class="pl-s1">sess</span>, [<span class="pl-s1">net</span>.<span class="pl-s1">images</span>, <span class="pl-s1">net</span>.<span class="pl-s1">labels</span>], [<span class="pl-s1">net</span>.<span class="pl-s1">cross_entropy</span>]) <span class="pl-s1">tflite_model</span> <span class="pl-c1">=</span> <span class="pl-s1">converter</span>.<span class="pl-en">convert</span>() <span class="pl-s">'''</span> <span class="pl-s">~/anaconda3/envs/tf-nightly/lib/python3.6/site-packages/tensorflow/lite/python/convert.py in toco_convert_protos(model_flags_str, toco_flags_str, input_data_str)</span> <span class="pl-s"> 206 stderr = _try_convert_to_unicode(stderr)</span> <span class="pl-s"> 207 raise ConverterError(</span> <span class="pl-s">--&gt; 208 "TOCO failed. See console for info.<span class="pl-cce">\n</span>%s<span class="pl-cce">\n</span>%s<span class="pl-cce">\n</span>" % (stdout, stderr))</span> <span class="pl-s"> 209 finally:</span> <span class="pl-s"> 210 # Must manually cleanup files.</span> <span class="pl-s"></span> <span class="pl-s">ConverterError: TOCO failed. See console for info.</span> <span class="pl-s">2018-12-22 13:38:13.626047: F tensorflow/core/framework/function.cc:1626] Check failed: GetOpGradFactory()-&gt;insert({op, func}).second Duplicated gradient for ReadVariableOp</span> <span class="pl-s">Aborted (core dumped)</span> <span class="pl-s">'''</span></pre></div> <p dir="auto">Any advice would be appreciated!</p>
0
<ul dir="auto"> <li>Electron version: [email protected]</li> <li>Operating system: MAC OS X Yosemite 10.10.5</li> </ul> <p dir="auto">I have this sample setup:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const BrowserWindow = electron.BrowserWindow; // ... rest of electron boilerplate function createMainWindow() { const win = new electron.BrowserWindow({ width: 600, height: 400 }); win.on('blur', blurHandler); win.on('focus', blurHandler); win.loadURL(`file://${__dirname}/index.html`); win.on('closed', onClosed); return win; } function blurHandler() { let focusedWindow = BrowserWindow.getFocusedWindow(); if (focusedWindow) { console.log('There is a focused window!'); } else { console.log('no focused window. :('); } }"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-v">BrowserWindow</span> <span class="pl-c1">=</span> <span class="pl-s1">electron</span><span class="pl-kos">.</span><span class="pl-c1">BrowserWindow</span><span class="pl-kos">;</span> <span class="pl-c">// ... rest of electron boilerplate</span> <span class="pl-k">function</span> <span class="pl-en">createMainWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">win</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-s1">electron</span><span class="pl-kos">.</span><span class="pl-c1">BrowserWindow</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">width</span>: <span class="pl-c1">600</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">400</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'blur'</span><span class="pl-kos">,</span> <span class="pl-s1">blurHandler</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'focus'</span><span class="pl-kos">,</span> <span class="pl-s1">blurHandler</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">loadURL</span><span class="pl-kos">(</span><span class="pl-s">`file://<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">__dirname</span><span class="pl-kos">}</span></span>/index.html`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'closed'</span><span class="pl-kos">,</span> <span class="pl-s1">onClosed</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">win</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">function</span> <span class="pl-en">blurHandler</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> <span class="pl-s1">focusedWindow</span> <span class="pl-c1">=</span> <span class="pl-v">BrowserWindow</span><span class="pl-kos">.</span><span class="pl-en">getFocusedWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">focusedWindow</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'There is a focused window!'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'no focused window. :('</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">The above code simply calls <code class="notranslate">blurHandler()</code> on the <code class="notranslate">blur</code> and <code class="notranslate">focus</code> events.</p> <p dir="auto"><strong>The expected behavior:</strong> is to get the console output of "<code class="notranslate">There is a focused window!</code>" when I click back (to get focus) on the only Electron window, and to get the output of "<code class="notranslate">no focused window. :(</code>" when I click on any other application windows, or otherwise trigger the <code class="notranslate">blur</code> event on the electron window.</p> <p dir="auto"><strong>The actual behavior:</strong> No matter the method of gaining focus on the electron window I can never get the <code class="notranslate">BrowserWindow.getFocusedWindow()</code> method to return anything except <code class="notranslate">undefined</code>. My log just looks like this:</p> <pre class="notranslate">no focused window. :( no focused window. :( no focused window. :( no focused window. :( no focused window. :( no focused window. :( </pre> <p dir="auto">Can anyone see what I am doing wrong here, or have I found a bug?</p>
<p dir="auto">Hi,</p> <p dir="auto">I'm working on a new feature in our App which relate with focus behaviour. The feature is to capture if an atom-shell app is totally lost focused. Since my App can have multiple windows, I can not simply do this by using one window's <code class="notranslate">blur</code> and <code class="notranslate">focus</code> events. Instead, I try to do this by detecting if all of my windows get unfocused when a <code class="notranslate">blur</code> event fired.</p> <p dir="auto">Here is my script to do this:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" this.nativeWin.on ( 'blur', function () { if ( !BrowserWindow.getFocusedWindow() ) { /// none of my atom-shell windows get focused, safely send 'totally-blur' message here! } }.bind(this) );"><pre class="notranslate"> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">nativeWin</span><span class="pl-kos">.</span><span class="pl-en">on</span> <span class="pl-kos">(</span> <span class="pl-s">'blur'</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span> <span class="pl-c1">!</span><span class="pl-v">BrowserWindow</span><span class="pl-kos">.</span><span class="pl-en">getFocusedWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">/// none of my atom-shell windows get focused, safely send 'totally-blur' message here!</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">.</span><span class="pl-en">bind</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Actually the above script works correctly in Mac OSX, but when I test it in Windows platform, the <code class="notranslate">getFocusedWindow()</code> will still return the window who fired <code class="notranslate">blur</code> there. What I expect is a null/undefined here.</p> <h3 dir="auto">Another suggestion:</h3> <p dir="auto">I think the <code class="notranslate">focus</code> and <code class="notranslate">blur</code> event can carry more information from its event. The event should known which window get lost and which one get focus to (if that is an atom-shell window). This is very similar to what we have in DOM event. The <code class="notranslate">focus-in</code>, <code class="notranslate">focus-out</code>, <code class="notranslate">focus</code> and <code class="notranslate">blur</code> event have a parameter named event.relatedTarget, which will holding the next focus or last blur element, and will become null/undefined if user just click mouse outside browser.</p> <p dir="auto">Besides, like what we discussed in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="53607634" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/981" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/981/hovercard" href="https://github.com/electron/electron/issues/981">#981</a> , if we have the ability to detect DevTools' window behaviour, that would be perfect for detecting totally blur in my case.</p> <h3 dir="auto">Test environment:</h3> <p dir="auto">I test this under Windows 7/8, Mac OSX 10.10.1 with atom-shell v0.20.4.</p>
1
<p dir="auto">The bug can occur in special cases e.g. when the divisor is scalar and equal to 9 or 13 and the dividend is array contains consecutive duplicate values of 233.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import numpy as np &gt;&gt;&gt; a = np.full(64, 233, dtype=np.uint8) &gt;&gt;&gt; a // 9 array([25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26], dtype=uint8)"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">full</span>(<span class="pl-c1">64</span>, <span class="pl-c1">233</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">uint8</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">a</span> <span class="pl-c1">//</span> <span class="pl-c1">9</span> <span class="pl-en">array</span>([<span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>, <span class="pl-c1">25</span>, <span class="pl-c1">26</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">uint8</span>)</pre></div> <h3 dir="auto">NumPy/Python version information:</h3> <p dir="auto">main, after <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="775015560" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/18075" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/18075/hovercard" href="https://github.com/numpy/numpy/pull/18075">#18075</a>. related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="787552054" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/18178" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/18178/hovercard" href="https://github.com/numpy/numpy/pull/18178">#18178</a></p>
<p dir="auto">NumPy contains SIMD vectorized code for x86 SSE and AVX. This issue is a feature request to implement native, equivalent enablement for Power VSX, achieving equivalent speedup appropriate for the SIMD vector width of VSX (128 bits).</p> <p dir="auto">EDIT (by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rgommers/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rgommers">@rgommers</a>): link to bounty: <a href="https://www.bountysource.com/issues/73221262-optimize-numpy-simd-algorithms-for-power-vsx" rel="nofollow">https://www.bountysource.com/issues/73221262-optimize-numpy-simd-algorithms-for-power-vsx</a></p> <p dir="auto">The focus is PPC64LE Linux. If the optimization can be portable to AIX (big endian) that's great, but not a strict requirement. In other words, if AIX continues to use the scalar code for now, that's okay.</p>
0
<p dir="auto">When using native networking in in AWS (i.e. with options <code class="notranslate">cloud-provider=aws</code>, <code class="notranslate">cluster-name=&lt;cluster_name&gt;</code>, <code class="notranslate">allocate-node-cidrs=true</code>, <code class="notranslate">cluster-cidr=&lt;pod_network&gt;</code>, <code class="notranslate">configure-cbr0=true</code>, <code class="notranslate">bridge=cbr0</code>, <code class="notranslate">iptables=false</code>, and <code class="notranslate">ip-msq=false</code> as appropriate to <code class="notranslate">kube-apiserve</code>r, <code class="notranslate">kube-controller-manager</code>, <code class="notranslate">kubelet</code>, and <code class="notranslate">docker</code>), everything works except that Pods, including kube-dns, can't make DNS queries to the Amazon provided DNS server in the subnet. That means Pods can't resolve external hostnames.</p> <p dir="auto">It appears that the Amazon provided DNS server won't respond to queries with an address other than one within the subnet. The solution to the problem is to masquerade traffic from the Pod network to the Amazon provided DNS server in the subnet.</p> <p dir="auto"><code class="notranslate">sudo iptables --table nat -A POSTROUTING -s &lt;pod_cidr&gt; -d &lt;dns_ip&gt;/32 -j MASQUERADE</code></p> <p dir="auto">Arguably this should be done by <code class="notranslate">kubelet</code>when it is passed the <code class="notranslate">configure-cbr0</code> option alongside the <code class="notranslate">cloud-provider=aws</code> option.</p>
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): no</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): s3, bucket, permissions</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): 1.3.0</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: AWS</li> <li><strong>OS</strong> (e.g. from /etc/os-release): the one used by kube-up.sh</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): the one used by kube-up.sh</li> <li><strong>Install tools</strong>: kube-up.sh</li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>:</p> <p dir="auto">The <a href="https://github.com/kubernetes/kubernetes/blob/release-1.3.0/cluster/aws/util.sh#L667-L675">S3 bucket created by kube-up</a> is publicly accesible.</p> <p dir="auto">Also, the <a href="https://github.com/kubernetes/kubernetes/blob/release-1.3.0/cluster/aws/templates/iam/kubernetes-minion-policy.json#L8">S3 IAM permissions</a> don't respect the value of the <code class="notranslate">AWS_S3_BUCKET</code> env variable and are hardcoded to <code class="notranslate">kubernetes-*</code></p> <p dir="auto"><strong>What you expected to happen</strong>:</p> <p dir="auto">I don't think the bucket should be public.</p> <p dir="auto">If it is public for a good reason, the IAM policies shouldn't contain explicit permission for S3 or at the very least they should follow the bucket name set by <code class="notranslate">AWS_S3_BUCKET</code></p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <p dir="auto">Just calling <code class="notranslate">kube-up.sh</code></p> <p dir="auto"><strong>Anything else do we need to know</strong>:</p> <p dir="auto">Not really</p>
0
<p dir="auto">Hello.</p> <p dir="auto">I am trying to install matplotlib on MacOS Catalina (version 10.15.6) and Python 3.9 with this command:</p> <p dir="auto"><code class="notranslate">pip3 install matplotlib</code></p> <p dir="auto">But I get this long error:</p> <p dir="auto">`pip3 install matplotlib<br> Collecting matplotlib<br> Using cached matplotlib-3.3.2.tar.gz (37.9 MB)<br> ERROR: Command errored out with exit status 1:<br> command: /Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py'"'"'; <strong>file</strong>='"'"'/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(<strong>file</strong>);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, <strong>file</strong>, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa<br> cwd: /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/<br> Complete output (62 lines):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Edit setup.cfg to change the build options; suppress output with --quiet. BUILDING MATPLOTLIB matplotlib: yes [3.3.2] python: yes [3.9.0 (v3.9.0:9cf6752276, Oct 5 2020, 11:29:23) [Clang 6.0 (clang-600.0.57)]] platform: yes [darwin] sample_data: yes [installing] tests: no [skipping due to configuration] macosx: yes [installing] running egg_info creating /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info writing /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/PKG-INFO writing dependency_links to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/dependency_links.txt writing namespace_packages to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/namespace_packages.txt writing requirements to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/requires.txt writing top-level names to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/top_level.txt writing manifest file '/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/SOURCES.txt' init_dgelsd failed init Traceback (most recent call last): File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; File &quot;/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py&quot;, line 242, in &lt;module&gt; setup( # Finally, pass this all along to distutils to do the heavy lifting. File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/__init__.py&quot;, line 153, in setup return distutils.core.setup(**attrs) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/core.py&quot;, line 148, in setup dist.run_commands() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py&quot;, line 966, in run_commands self.run_command(cmd) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py&quot;, line 985, in run_command cmd_obj.run() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 298, in run self.find_sources() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 305, in find_sources mm.run() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 536, in run self.add_defaults() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 572, in add_defaults sdist.add_defaults(self) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py&quot;, line 228, in add_defaults self._add_defaults_ext() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py&quot;, line 311, in _add_defaults_ext build_ext = self.get_finalized_command('build_ext') File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py&quot;, line 299, in get_finalized_command cmd_obj.ensure_finalized() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py&quot;, line 107, in ensure_finalized self.finalize_options() File &quot;/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py&quot;, line 88, in finalize_options self.distribution.ext_modules[:] = [ File &quot;/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py&quot;, line 91, in &lt;listcomp&gt; for ext in package.get_extensions() File &quot;/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setupext.py&quot;, line 345, in get_extensions add_numpy_flags(ext) File &quot;/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setupext.py&quot;, line 469, in add_numpy_flags import numpy as np File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/numpy/__init__.py&quot;, line 286, in &lt;module&gt; raise RuntimeError(msg) RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy. RankWarning: Polyfit may be poorly conditioned ----------------------------------------"><pre class="notranslate"><code class="notranslate">Edit setup.cfg to change the build options; suppress output with --quiet. BUILDING MATPLOTLIB matplotlib: yes [3.3.2] python: yes [3.9.0 (v3.9.0:9cf6752276, Oct 5 2020, 11:29:23) [Clang 6.0 (clang-600.0.57)]] platform: yes [darwin] sample_data: yes [installing] tests: no [skipping due to configuration] macosx: yes [installing] running egg_info creating /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info writing /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/PKG-INFO writing dependency_links to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/dependency_links.txt writing namespace_packages to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/namespace_packages.txt writing requirements to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/requires.txt writing top-level names to /private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/top_level.txt writing manifest file '/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-pip-egg-info-tan2fixa/matplotlib.egg-info/SOURCES.txt' init_dgelsd failed init Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py", line 242, in &lt;module&gt; setup( # Finally, pass this all along to distutils to do the heavy lifting. File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup return distutils.core.setup(**attrs) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/core.py", line 148, in setup dist.run_commands() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 966, in run_commands self.run_command(cmd) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 298, in run self.find_sources() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 305, in find_sources mm.run() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 536, in run self.add_defaults() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 572, in add_defaults sdist.add_defaults(self) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py", line 228, in add_defaults self._add_defaults_ext() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py", line 311, in _add_defaults_ext build_ext = self.get_finalized_command('build_ext') File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py", line 299, in get_finalized_command cmd_obj.ensure_finalized() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py", line 107, in ensure_finalized self.finalize_options() File "/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py", line 88, in finalize_options self.distribution.ext_modules[:] = [ File "/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setup.py", line 91, in &lt;listcomp&gt; for ext in package.get_extensions() File "/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setupext.py", line 345, in get_extensions add_numpy_flags(ext) File "/private/var/folders/20/l7ql06pw8xjf_x0059b44jsh0000gq/T/pip-install-e4h4p2_1/matplotlib/setupext.py", line 469, in add_numpy_flags import numpy as np File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/numpy/__init__.py", line 286, in &lt;module&gt; raise RuntimeError(msg) RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy. RankWarning: Polyfit may be poorly conditioned ---------------------------------------- </code></pre></div> <p dir="auto">ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.<br> `</p> <p dir="auto">Any ideas?</p> <p dir="auto">Thanks to anyone in advance.</p> <p dir="auto">All the best,<br> Fab.</p>
<p dir="auto">Collecting matplotlib<br> Using cached matplotlib-3.3.2.tar.gz (37.9 MB)<br> ERROR: Command errored out with exit status 1:<br> command: /Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py'"'"'; <strong>file</strong>='"'"'/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(<strong>file</strong>);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, <strong>file</strong>, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr<br> cwd: /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/<br> Complete output (63 lines):<br> WARNING: The wheel package is not available.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Edit setup.cfg to change the build options; suppress output with --quiet. BUILDING MATPLOTLIB matplotlib: yes [3.3.2] python: yes [3.9.0 (v3.9.0:9cf6752276, Oct 5 2020, 11:29:23) [Clang 6.0 (clang-600.0.57)]] platform: yes [darwin] sample_data: yes [installing] tests: no [skipping due to configuration] macosx: yes [installing] running egg_info creating /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info writing /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/PKG-INFO writing dependency_links to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/dependency_links.txt writing namespace_packages to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/namespace_packages.txt writing requirements to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/requires.txt writing top-level names to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/top_level.txt writing manifest file '/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/SOURCES.txt' init_dgelsd failed init Traceback (most recent call last): File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py&quot;, line 242, in &lt;module&gt; setup( # Finally, pass this all along to distutils to do the heavy lifting. File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/__init__.py&quot;, line 165, in setup return distutils.core.setup(**attrs) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/core.py&quot;, line 148, in setup dist.run_commands() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py&quot;, line 966, in run_commands self.run_command(cmd) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py&quot;, line 985, in run_command cmd_obj.run() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 297, in run self.find_sources() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 304, in find_sources mm.run() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 535, in run self.add_defaults() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py&quot;, line 571, in add_defaults sdist.add_defaults(self) File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py&quot;, line 228, in add_defaults self._add_defaults_ext() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py&quot;, line 311, in _add_defaults_ext build_ext = self.get_finalized_command('build_ext') File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py&quot;, line 299, in get_finalized_command cmd_obj.ensure_finalized() File &quot;/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py&quot;, line 107, in ensure_finalized self.finalize_options() File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py&quot;, line 88, in finalize_options self.distribution.ext_modules[:] = [ File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py&quot;, line 91, in &lt;listcomp&gt; for ext in package.get_extensions() File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setupext.py&quot;, line 345, in get_extensions add_numpy_flags(ext) File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setupext.py&quot;, line 469, in add_numpy_flags import numpy as np File &quot;/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/.eggs/numpy-1.19.2-py3.9-macosx-10.9-x86_64.egg/numpy/__init__.py&quot;, line 286, in &lt;module&gt; raise RuntimeError(msg) RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy. RankWarning: Polyfit may be poorly conditioned ----------------------------------------"><pre class="notranslate"><code class="notranslate">Edit setup.cfg to change the build options; suppress output with --quiet. BUILDING MATPLOTLIB matplotlib: yes [3.3.2] python: yes [3.9.0 (v3.9.0:9cf6752276, Oct 5 2020, 11:29:23) [Clang 6.0 (clang-600.0.57)]] platform: yes [darwin] sample_data: yes [installing] tests: no [skipping due to configuration] macosx: yes [installing] running egg_info creating /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info writing /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/PKG-INFO writing dependency_links to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/dependency_links.txt writing namespace_packages to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/namespace_packages.txt writing requirements to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/requires.txt writing top-level names to /private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/top_level.txt writing manifest file '/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-pip-egg-info-aq680rqr/matplotlib.egg-info/SOURCES.txt' init_dgelsd failed init Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py", line 242, in &lt;module&gt; setup( # Finally, pass this all along to distutils to do the heavy lifting. File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/__init__.py", line 165, in setup return distutils.core.setup(**attrs) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/core.py", line 148, in setup dist.run_commands() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 966, in run_commands self.run_command(cmd) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 297, in run self.find_sources() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 304, in find_sources mm.run() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 535, in run self.add_defaults() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/command/egg_info.py", line 571, in add_defaults sdist.add_defaults(self) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py", line 228, in add_defaults self._add_defaults_ext() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/command/sdist.py", line 311, in _add_defaults_ext build_ext = self.get_finalized_command('build_ext') File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py", line 299, in get_finalized_command cmd_obj.ensure_finalized() File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/cmd.py", line 107, in ensure_finalized self.finalize_options() File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py", line 88, in finalize_options self.distribution.ext_modules[:] = [ File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setup.py", line 91, in &lt;listcomp&gt; for ext in package.get_extensions() File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setupext.py", line 345, in get_extensions add_numpy_flags(ext) File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/setupext.py", line 469, in add_numpy_flags import numpy as np File "/private/var/folders/_b/73g4h5qs7qv51ctyl5tby0040000gn/T/pip-install-p_zq0z2f/matplotlib/.eggs/numpy-1.19.2-py3.9-macosx-10.9-x86_64.egg/numpy/__init__.py", line 286, in &lt;module&gt; raise RuntimeError(msg) RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy. RankWarning: Polyfit may be poorly conditioned ---------------------------------------- </code></pre></div> <p dir="auto">ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.</p>
1
<p dir="auto">Hello, community</p> <p dir="auto">We have previously roughly discussed the problems with Dubbo's metadata in GitHub issues and mailing list, here when saying metadata I mainly refer to URL in Dubbo. Now I think it's time to bring the discussion onto the table and consider solving it. Below is the proposal I've drafted:</p> <p dir="auto"><strong>Problems</strong></p> <p dir="auto">URL works as the carrier for Dubbo internal data transfer at runtime, and is also works as a protocol integrating with the external system: registration center, service query, service management, etc., resulting in serious coupling between the configuration and the registration center, and the data load pushed by the registration center is too large.</p> <p dir="auto"><strong>Targets</strong></p> <ul dir="auto"> <li>Keep URL unchanged at runtime, and even enrich the runtime URL; Keep the immutability of the URL during a single invoke from start to end.</li> <li>Simplify Registry url as much as possible.</li> <li>Refactor the way of doing service configuration, rely on Registry currently, switch to third-party Config Center while keeping compatible with old Overrides protocol.</li> <li>Some data in URL are for service query purpose, we should register this part to another place instead of Registry. And it should be realized as extensible and users can decide to enable it or not.</li> </ul> <p dir="auto"><strong>Solutions</strong></p> <p dir="auto">Here is a typical URL in Registry:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dubbo://10.122.111.22:20880/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?anyhost=true&amp;application=goods-compose&amp;default.actives=400&amp;default.delay=-1&amp;default.dispatcher=all&amp;default.group=online&amp;default.loadbalance=leastactive&amp;default.service.filter=-monitor&amp;default.threads=400&amp;default.timeout=2000&amp;default.version=1.0&amp;delay=1&amp;dubbo=2.6.2&amp;environment=product&amp;interface=com.xxx.compose.ic.service.vas.ValueAddServiceCompose&amp;logger=slf4j&amp;methods=queryValueAddServiceEditVOs,auditPassByValueAddServiceIdList,getValueAddServiceVOByServiceIds,getValueAddServiceInfoByGoodsIdList,getRuleMatchVOByGoodsIdList,getValueAddServiceEditVOById,getValueAddServiceEditVOByIds,queryValueAddServiceVOs,disableValueAddService,auditRejectByValueAddServiceIdList,saveValueAddServiceEditVO,enableValueAddService&amp;organization=someorg&amp;owner=somebody&amp;pid=54812&amp;revision=1.18.0628.3&amp;side=provider&amp;timestamp=1530671441040"><pre class="notranslate"><code class="notranslate">dubbo://10.122.111.22:20880/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?anyhost=true&amp;application=goods-compose&amp;default.actives=400&amp;default.delay=-1&amp;default.dispatcher=all&amp;default.group=online&amp;default.loadbalance=leastactive&amp;default.service.filter=-monitor&amp;default.threads=400&amp;default.timeout=2000&amp;default.version=1.0&amp;delay=1&amp;dubbo=2.6.2&amp;environment=product&amp;interface=com.xxx.compose.ic.service.vas.ValueAddServiceCompose&amp;logger=slf4j&amp;methods=queryValueAddServiceEditVOs,auditPassByValueAddServiceIdList,getValueAddServiceVOByServiceIds,getValueAddServiceInfoByGoodsIdList,getRuleMatchVOByGoodsIdList,getValueAddServiceEditVOById,getValueAddServiceEditVOByIds,queryValueAddServiceVOs,disableValueAddService,auditRejectByValueAddServiceIdList,saveValueAddServiceEditVO,enableValueAddService&amp;organization=someorg&amp;owner=somebody&amp;pid=54812&amp;revision=1.18.0628.3&amp;side=provider&amp;timestamp=1530671441040 </code></pre></div> <p dir="auto">We can see this URL showed here is really long and redundant, here are my suggestions to refactor it step by step:</p> <ol dir="auto"> <li>Only keep necessary part in Registry<br> For example:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dubbo://10.122.111.22:20880/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?timeout=1000&amp;group=online&amp;version=1.0&amp;weight=100&amp;timestamp=1530671441040"><pre class="notranslate"><code class="notranslate">dubbo://10.122.111.22:20880/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?timeout=1000&amp;group=online&amp;version=1.0&amp;weight=100&amp;timestamp=1530671441040 </code></pre></div> <ol start="2" dir="auto"> <li>Find a new place for those parameters only for query purpose<br> For example:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="delay=1&amp;dubbo=2.6.2&amp;interface=com.xxx.compose.ic.service.vas.ValueAddServiceCompose&amp;logger=slf4j&amp;methods=queryValueAddServiceEditVOs,auditPassByValueAddServiceIdList,getValueAddServiceVOByServiceIds,getValueAddServiceInfoByGoodsIdList,getRuleMatchVOByGoodsIdList,getValueAddServiceEditVOById,getValueAddServiceEditVOByIds,queryValueAddServiceVOs,disableValueAddService,auditRejectByValueAddServiceIdList,saveValueAddServiceEditVO,enableValueAddService&amp;organization=someorg&amp;owner=somebody&amp;pid=54812&amp;revision=1.18.0628.3&amp;side=provider"><pre class="notranslate"><code class="notranslate">delay=1&amp;dubbo=2.6.2&amp;interface=com.xxx.compose.ic.service.vas.ValueAddServiceCompose&amp;logger=slf4j&amp;methods=queryValueAddServiceEditVOs,auditPassByValueAddServiceIdList,getValueAddServiceVOByServiceIds,getValueAddServiceInfoByGoodsIdList,getRuleMatchVOByGoodsIdList,getValueAddServiceEditVOById,getValueAddServiceEditVOByIds,queryValueAddServiceVOs,disableValueAddService,auditRejectByValueAddServiceIdList,saveValueAddServiceEditVO,enableValueAddService&amp;organization=someorg&amp;owner=somebody&amp;pid=54812&amp;revision=1.18.0628.3&amp;side=provider </code></pre></div> <ol start="3" dir="auto"> <li>Deprecate the Override protocol in Registry<br> Typical Override protocol to change timeout value at runtime:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" override://0.0.0.0/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?category=configurators&amp;dynamic=false&amp;application=foo&amp;timeout=1000"><pre class="notranslate"><code class="notranslate"> override://0.0.0.0/com.xxx.compose.ic.service.vas.ValueAddServiceCompose?category=configurators&amp;dynamic=false&amp;application=foo&amp;timeout=1000 </code></pre></div> <p dir="auto">We can instead integrate with thirdparty Config Center to do that, like Apollo, Archaius, Diamond and so on, these systems are more likely to be used in a miscroservice architecture.</p> <p dir="auto">Furthermore, we can also consider separate the routing rule config from Registry and switch to Config Center, using Config Center to dynamically add new group policies that can group service instances into different groups according to environments.</p> <p dir="auto">Kindly ask for your suggestions, don't hesitate to let us know if you have any different ideas.</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.7-SNAPSHOT</li> <li>Operating System version: MacOS</li> <li>Java version: OpenJDK 13</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>Open the dubbo-demo-xml project</li> <li>Modify the registry center both of provider and consumer to Nacos;Open the check switch of consumer</li> <li>Run the provider<br> 4.Run the consumer</li> </ol> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <p dir="auto">The rpc can work properly.</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">It fails.</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception in thread &quot;main&quot; org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'demoService': FactoryBean threw exception on object creation; nested exception is java.lang.IllegalStateException: Failed to check the status of the service org.apache.dubbo.demo.DemoService. No provider available for the service org.apache.dubbo.demo.DemoService from the url nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?application=demo-consumer&amp;dubbo=2.0.2&amp;init=false&amp;interface=org.apache.dubbo.demo.DemoService&amp;methods=sayHello,sayHelloAsync&amp;pid=90344&amp;qos.port=33333&amp;register.ip=127.0.0.1&amp;side=consumer&amp;sticky=false&amp;timestamp=1584323664330 to the consumer 127.0.0.1 use dubbo version at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:177) at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:103) at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1640) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:254) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1086) at org.apache.dubbo.demo.consumer.Application.main(Application.java:33) Caused by: java.lang.IllegalStateException: Failed to check the status of the service org.apache.dubbo.demo.DemoService. No provider available for the service org.apache.dubbo.demo.DemoService from the url nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?application=demo-consumer&amp;dubbo=2.0.2&amp;init=false&amp;interface=org.apache.dubbo.demo.DemoService&amp;methods=sayHello,sayHelloAsync&amp;pid=90344&amp;qos.port=33333&amp;register.ip=127.0.0.1&amp;side=consumer&amp;sticky=false&amp;timestamp=1584323664330 to the consumer 127.0.0.1 use dubbo version at org.apache.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:350) at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:258) at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:158) at org.apache.dubbo.config.spring.ReferenceBean.getObject(ReferenceBean.java:68) at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:170) ... 6 more"><pre class="notranslate"><code class="notranslate">Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'demoService': FactoryBean threw exception on object creation; nested exception is java.lang.IllegalStateException: Failed to check the status of the service org.apache.dubbo.demo.DemoService. No provider available for the service org.apache.dubbo.demo.DemoService from the url nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?application=demo-consumer&amp;dubbo=2.0.2&amp;init=false&amp;interface=org.apache.dubbo.demo.DemoService&amp;methods=sayHello,sayHelloAsync&amp;pid=90344&amp;qos.port=33333&amp;register.ip=127.0.0.1&amp;side=consumer&amp;sticky=false&amp;timestamp=1584323664330 to the consumer 127.0.0.1 use dubbo version at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:177) at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:103) at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1640) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:254) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1086) at org.apache.dubbo.demo.consumer.Application.main(Application.java:33) Caused by: java.lang.IllegalStateException: Failed to check the status of the service org.apache.dubbo.demo.DemoService. No provider available for the service org.apache.dubbo.demo.DemoService from the url nacos://127.0.0.1:8848/org.apache.dubbo.registry.RegistryService?application=demo-consumer&amp;dubbo=2.0.2&amp;init=false&amp;interface=org.apache.dubbo.demo.DemoService&amp;methods=sayHello,sayHelloAsync&amp;pid=90344&amp;qos.port=33333&amp;register.ip=127.0.0.1&amp;side=consumer&amp;sticky=false&amp;timestamp=1584323664330 to the consumer 127.0.0.1 use dubbo version at org.apache.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:350) at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:258) at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:158) at org.apache.dubbo.config.spring.ReferenceBean.getObject(ReferenceBean.java:68) at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:170) ... 6 more </code></pre></div>
0
<p dir="auto">I updated to 0.10.10 today, hoping to try out the new JavaScript support with Salsa. Unfortunately, my Intellisense has stopped working. I am using type definition files from definitely typed (e.g. the express.d.ts).</p> <p dir="auto">For example, using 0.10.8:</p> <p dir="auto">var exp = require("express");<br> exp.Router</p> <p dir="auto">I will see the content assist for the "Router" function and I can visit the definition file by right clicking on "Router" &gt; Go to Definition</p> <p dir="auto">Now when I do the same thing in 0.10.10, I don't see "Router" in the Intellisense list. In addition, the list seems to have variables I had defined earlier in my code (which doesn't apply to express at all).</p>
<p dir="auto">It would be useful for extension developers to get a range of visible positions (or lines) in the editor.</p> <p dir="auto">This would be useful when the extension is dealing with the visual aspect of the VSCode since the extension does not need to update the visual on invisible area.</p> <p dir="auto">For example, <a href="https://marketplace.visualstudio.com/items?itemName=spywhere.guides" rel="nofollow">Guides</a> needs to update its indentation guide lines but this has impact the extension performance (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="159549768" data-permission-text="Title is private" data-url="https://github.com/spywhere/vscode-guides/issues/6" data-hovercard-type="issue" data-hovercard-url="/spywhere/vscode-guides/issues/6/hovercard" href="https://github.com/spywhere/vscode-guides/issues/6">spywhere/vscode-guides#6</a>) due to a calculation on whole file which cause the lag on the VSCode. With this API, Guides can now update only visible area, reduce the necessity of update the invisible area which can improve the performance a lot.</p>
0
<p dir="auto">Using Elasticsearch 1.4.1 and running on Ubuntu Trusty with Java 1.7.0_72, the following call in the start method of a river plugin never returns:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="client.admin().indices().prepareExists(&quot;common&quot;).execute().actionGet();"><pre class="notranslate"><span class="pl-s1">client</span>.<span class="pl-en">admin</span>().<span class="pl-en">indices</span>().<span class="pl-en">prepareExists</span>(<span class="pl-s">"common"</span>).<span class="pl-en">execute</span>().<span class="pl-en">actionGet</span>();</pre></div> <p dir="auto">It works using Elasticsearch 1.3.6.</p> <p dir="auto">It also works without using <code class="notranslate">admin()</code>:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="client.prepareExists(&quot;common&quot;).execute().actionGet();"><pre class="notranslate"><span class="pl-s1">client</span>.<span class="pl-en">prepareExists</span>(<span class="pl-s">"common"</span>).<span class="pl-en">execute</span>().<span class="pl-en">actionGet</span>();</pre></div> <p dir="auto">It also works on MacOS.</p> <p dir="auto">Maybe this is related to <a href="https://github.com/elasticsearch/elasticsearch-river-couchdb/issues/78">https://github.com/elasticsearch/elasticsearch-river-couchdb/issues/78</a> ?</p>
<p dir="auto">The Elasticsearch API supports all CRUD operations on every single document, topped by things like optimistic versioning controls and real time get API. To achieve this we need several data structures that support looking up existing documents both in real time (before a refresh) and if not found there, we need to do a lookup by ID in Lucene to make sure we find and replace any existing document. For certain use cases, if our users can guarantee that documents are inserted once and are never changed again (like, for example logging, metrics or a one off re-indexing of existing data) this turns out to be a significant overhead in terms of indexing speed, without adding any real value. We sometimes refer to these scenarios as the "append only usecase" as well.</p> <p dir="auto">In the past, we have tried to <a href="https://github.com/elastic/elasticsearch/pull/5917" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/5917/hovercard">introduce optimizations</a> in this area, but had to go and <a href="https://github.com/elastic/elasticsearch/pull/9468" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/9468/hovercard">revert them</a> as their have proven to be <a href="https://github.com/elastic/elasticsearch/issues/8788" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/8788/hovercard">unsafe</a> under cetrain race/error condition in our distributed system.</p> <p dir="auto">Since then things have evolved and we now have more tools at our disposal. This issue is to track the list of things it will take to optimize the append only use case, while keeping it safe. Most concretely, we should explore not maintaining the <a href="https://github.com/elastic/elasticsearch/blob/master/core/src/main/java/org/elasticsearch/index/engine/LiveVersionMap.java">LiveVersionMap</a> and always use <code class="notranslate">addDocument</code> (rather then <code class="notranslate">updateDocument</code>) when indexing to Lucene. Some of the things listed here are already done. Some require more work.</p> <p dir="auto">The list is mostly focused on dealing with the main issue in this cases: when an indexing operation is sent to the primary, it maybe be that the sending node is disconnect from the node with a primary and thus have no idea if the operation was successful or failed. In those cases, the node will resend it's request once the connection is restored. This may result in a duplicate delivery on the primary as thus requires the usage of <code class="notranslate">updateDocument</code>. It is easy to add a 'isRetry` flag on those retry requests but we still run the danger of the retry request being processed before the original, in which case we will have duplicates. This scenario needs to be avoided at all costs.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Disable optimization when shard is recovering and do things as we do today. During recovery document may be written twice to a shard.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Rely in primary terms to solve collisions between request originating from an old primary and a retry.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Rely on the task manager to avoid have an original request and a retry request executing concurrently on a node. For this we need to make sure they use the same task id and reject/have one wait on another.</del></li> </ul> <p dir="auto"><del>Having dealt with concurrency, we need to deal with the case where the retry request is already executed and removed form the task manager. This can be done as follows:</del></p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Introduce a new “connection generation” id (a long) that is incremented every time a connection is (re)established between the nodes. This generation id will be added to every request and will also be exchanged as part of establishing a connection, making sure the target node is aware of the new generation id before exposing the connection outside of the transport service.</del></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Networking threads on the target node will check that the generation id of a request is still the current one <em>after</em> adding the request to the task manager. If this is not the case the request will be removed from the task manager and will be failed (though there is no way to respond now, because the channel is closed). This guarantees that an old request will never be executed <em>after</em> a new connection was established. This in turn means it can not be processed after a retry request was processed.</del></li> </ul> <p dir="auto">Instead of the above we went with a simpler approach of dealing with concurrency:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> add a timestamp to each request with an autogen id and create a "safety" barrier guaranteeing that all problematic requests (i.e., an original request that is processed after a retry is request) have a lower timestamp. This allows us to identify them and do the the right things. See details <a href="https://github.com/elastic/elasticsearch/issues/19813#issuecomment-243079678" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/19813/hovercard">below</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Use an index level settings to indicate to the engine it can disable the <code class="notranslate">LiveVersionMap</code> and use <code class="notranslate">addDocument</code>, when the shard is started. This can be updated on a closed index.</del></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Disable real time get API on these indices.</del></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <del>Disable indexing with an id.</del></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ~~Disable delete &amp; update API ~~</li> </ul> <p dir="auto">Instead of disabling single doc update/delete/index with id, we have managed to come up with a scheme to skip adding append only operations to the <code class="notranslate">LiveVersionMap</code> and marking it as unsafe. Whenever a non-append only indexing operation comes along we detect that and force a refresh. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="281016456" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/27752" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/27752/hovercard" href="https://github.com/elastic/elasticsearch/pull/27752">#27752</a></p>
0
<p dir="auto">The code generated for loading big fields is currently very bad. Here is a small example:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="mutable struct Mut data::NTuple{10, Int} end struct Immut data::NTuple{10, Int} end load(x, i::Int) = @inbounds x.data[i]"><pre class="notranslate"><span class="pl-k">mutable struct</span> Mut data<span class="pl-k">::</span><span class="pl-c1">NTuple{10, Int}</span> <span class="pl-k">end</span> <span class="pl-k">struct</span> Immut data<span class="pl-k">::</span><span class="pl-c1">NTuple{10, Int}</span> <span class="pl-k">end</span> <span class="pl-en">load</span>(x, i<span class="pl-k">::</span><span class="pl-c1">Int</span>) <span class="pl-k">=</span> <span class="pl-c1">@inbounds</span> x<span class="pl-k">.</span>data[i]</pre></div> <p dir="auto">Comparing the generated code (on the offial julia-0.7.0 linux x64 binaries):<br> <code class="notranslate">code_native(load, (Immut, Int))</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mov rax, qword ptr [rdi + 8*rsi - 8] ret"><pre class="notranslate"><code class="notranslate">mov rax, qword ptr [rdi + 8*rsi - 8] ret </code></pre></div> <p dir="auto">with:<br> <code class="notranslate">code_native(load, (Mut, Int))</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="movups xmm0, xmmword ptr [rdi] movups xmm1, xmmword ptr [rdi + 16] movups xmm2, xmmword ptr [rdi + 32] movups xmm3, xmmword ptr [rdi + 48] movups xmm4, xmmword ptr [rdi + 64] movaps xmmword ptr [rsp - 88], xmm0 movaps xmmword ptr [rsp - 72], xmm1 movaps xmmword ptr [rsp - 56], xmm2 movaps xmmword ptr [rsp - 40], xmm3 movaps xmmword ptr [rsp - 24], xmm4 mov rax, qword ptr [rsp + 8*rsi - 96] ret"><pre class="notranslate"><code class="notranslate">movups xmm0, xmmword ptr [rdi] movups xmm1, xmmword ptr [rdi + 16] movups xmm2, xmmword ptr [rdi + 32] movups xmm3, xmmword ptr [rdi + 48] movups xmm4, xmmword ptr [rdi + 64] movaps xmmword ptr [rsp - 88], xmm0 movaps xmmword ptr [rsp - 72], xmm1 movaps xmmword ptr [rsp - 56], xmm2 movaps xmmword ptr [rsp - 40], xmm3 movaps xmmword ptr [rsp - 24], xmm4 mov rax, qword ptr [rsp + 8*rsi - 96] ret </code></pre></div> <p dir="auto">In the mutable case, the tuple is first copied to the stack and then loaded from there.<br> This currently makes <code class="notranslate">MArray</code> (from <code class="notranslate">StaticArrays</code>) very slow in some cases, e.g. <code class="notranslate">sort!</code> slows down proportional to the size of the MArray. It would be possible to do the loads through a pointer, but this inhibits a lot of optimisations on the Julia side.</p> <p dir="auto">I looked at the emitted llvm code, and in the difference is apparently, that in the mutable case Julia generates <code class="notranslate">alloca + load + store</code> and in the immutable one just a <code class="notranslate">getelementptr</code>, LLVM is not able to optimize this code.</p>
<p dir="auto">It looks like the logging facilities (e.g. <code class="notranslate">@info</code>, <code class="notranslate">@warn</code>, etc.) have docstrings but are not in the manual. It would be great to have a section of the manual devoted to logging now that we have the framework for it.</p>
0
<p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexandrudima/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexandrudima">@alexandrudima</a> on January 27, 2016 13:6</em></p> <p dir="auto">Testing <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="60046420" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/2218" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/TypeScript/pull/2218/hovercard" href="https://github.com/microsoft/TypeScript/pull/2218">#2218</a></p> <p dir="auto">I have the following settings:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Place your settings in this file to overwrite default and user settings. { &quot;typescript.tsdk&quot;: &quot;C:\\Alex\\salsa\\node_modules\\typescript\\lib&quot;, &quot;editor.tabSize&quot;: 4, &quot;editor.insertSpaces&quot;: false }"><pre class="notranslate"><span class="pl-ii">// Place your settings in this file to overwrite default and user settings.</span> { <span class="pl-ent">"typescript.tsdk"</span>: <span class="pl-s"><span class="pl-pds">"</span>C:<span class="pl-cce">\\</span>Alex<span class="pl-cce">\\</span>salsa<span class="pl-cce">\\</span>node_modules<span class="pl-cce">\\</span>typescript<span class="pl-cce">\\</span>lib<span class="pl-pds">"</span></span>, <span class="pl-ent">"editor.tabSize"</span>: <span class="pl-c1">4</span>, <span class="pl-ent">"editor.insertSpaces"</span>: <span class="pl-c1">false</span> }</pre></div> <p dir="auto">If I have a function indented with 5 spaces, and choose format, the 5 spaces get replaced with a tab:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function howdyAgain(name) { return 'hi'; }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">howdyAgain</span><span class="pl-kos">(</span><span class="pl-s1">name</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s">'hi'</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">If I have the same function indented with 4 spaces, and choose format, the 4 spaces do not get replaced with a tab:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function howdyAgain(name) { return 'hi'; }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">howdyAgain</span><span class="pl-kos">(</span><span class="pl-s1">name</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s">'hi'</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="129137702" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/2443" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/2443/hovercard" href="https://github.com/microsoft/vscode/issues/2443">microsoft/vscode#2443</a></em></p>
<p dir="auto">The formatter described in the link below currently doesn't seem to offer a way to indent by using tabs.<br> <a href="https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API#pretty-printer-using-the-ls-formatter">https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API#pretty-printer-using-the-ls-formatter</a></p> <p dir="auto">Could that be added?<br> Thanks!</p>
1
<p dir="auto">Please fix the side bar toggle on React Documentation it does not work on my non-touch screen PC....i think it should be scroll-able, it works on my touch screen PC<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/38891189/91824890-61694e80-ec33-11ea-9c5b-17a21679d0a8.png"><img src="https://user-images.githubusercontent.com/38891189/91824890-61694e80-ec33-11ea-9c5b-17a21679d0a8.png" alt="reactbug" style="max-width: 100%;"></a></p>
0
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">During schema reflection SQLAlchemy fails with AssertionError</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;/tmp/sqla2.py&quot;, line 190, in &lt;module&gt; concentrate=False # Don't try to join the relation lines together File &quot;/tmp/sqla2.py&quot;, line 132, in create_schema_graph metadata.reflect() File &quot;/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py&quot;, line 1733, in reflect Table(name, self, **reflect_opts) File &quot;/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py&quot;, line 108, in __call__ return type.__call__(self, name, metadata, *args, **kwargs) File &quot;/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py&quot;, line 236, in __init__ _bind_or_error(metadata).reflecttable(self, include_columns=include_columns) File &quot;/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/engine/base.py&quot;, line 1265, in reflecttable self.dialect.reflecttable(conn, table, include_columns) File &quot;/mnt/tmp/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/databases/firebird.py&quot;, line 502, in reflecttable assert row['fdefault']('fdefault').upper().startswith('DEFAULT '), row AssertionError: (u'DATAREJ ', 1, u'DATE ', None, 4, None, 0, ' DEFAULT CURRENT_DATE')"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "/tmp/sqla2.py", line 190, in &lt;module&gt; concentrate=False # Don't try to join the relation lines together File "/tmp/sqla2.py", line 132, in create_schema_graph metadata.reflect() File "/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py", line 1733, in reflect Table(name, self, **reflect_opts) File "/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py", line 108, in __call__ return type.__call__(self, name, metadata, *args, **kwargs) File "/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/schema.py", line 236, in __init__ _bind_or_error(metadata).reflecttable(self, include_columns=include_columns) File "/home/filip/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/engine/base.py", line 1265, in reflecttable self.dialect.reflecttable(conn, table, include_columns) File "/mnt/tmp/tefnet/teferp/workspace/tefobjects/lib/python2.5/site-packages/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/databases/firebird.py", line 502, in reflecttable assert row['fdefault']('fdefault').upper().startswith('DEFAULT '), row AssertionError: (u'DATAREJ ', 1, u'DATE ', None, 4, None, 0, ' DEFAULT CURRENT_DATE') </code></pre></div> <p dir="auto">The problem is because 'DEFAULT' sometimes has whitespaces at the begining</p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/1582/tef_firebird_default_reflection.patch">tef_firebird_default_reflection.patch</a></p>
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">Reflecting columns with default values fails assertion test. This may not happen on all tables, but did on at least one of mine. The problem is in lines 502 and 503 of firebird.py. They were:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="assert row['fdefault']('fdefault').upper().startswith('DEFAULT '), row defvalue = row['fdefault']('fdefault')![8:](8:)"><pre class="notranslate"><code class="notranslate">assert row['fdefault']('fdefault').upper().startswith('DEFAULT '), row defvalue = row['fdefault']('fdefault')![8:](8:) </code></pre></div> <p dir="auto">The problem was, at least in my case, that there was a space before the word DEFAULT in row<a target="_blank" rel="noopener noreferrer" href="'fdefault'"><img src="'fdefault'" alt="'fdefault'" style="max-width: 100%;"></a>. This caused the assertion to fail. I fixed it with the following code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="assert row['fdefault']('fdefault').upper().lstrip().startswith('DEFAULT '), row defvalue = row['fdefault']('fdefault').lstrip()![8:](8:)"><pre class="notranslate"><code class="notranslate">assert row['fdefault']('fdefault').upper().lstrip().startswith('DEFAULT '), row defvalue = row['fdefault']('fdefault').lstrip()![8:](8:) </code></pre></div> <p dir="auto">Everything worked fine after that.</p>
1
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; :4.1:</li> <li>Operating System / Platform =&gt; :Ubuntu 19.04 64 Bit:</li> <li>Compiler =&gt; :g++ 4.8.2</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">I try to initialiaze a variable in order to compute the BRISQUE descriptor and I received the error message:</p> <p dir="auto">terminate called after throwing an instance of 'std::logic_error'<br> what(): basic_string::_S_construct null not valid<br> Aborted (core dumped)</p> <h5 dir="auto">Steps to reproduce</h5> <details> General configuration for OpenCV 4.1.0 ===================================== Version control: 4.1.0 <p dir="auto">Extra modules:<br> Location (extra): /io/opencv_contrib/modules<br> Version control (extra): 4.1.0</p> <p dir="auto">Platform:<br> Timestamp: 2019-04-11T17:07:54Z<br> Host: Linux 4.4.0-101-generic x86_64<br> CMake: 3.9.0<br> CMake generator: Unix Makefiles<br> CMake build tool: /usr/bin/gmake<br> Configuration: Release</p> <p dir="auto">CPU/HW features:<br> Baseline: SSE SSE2 SSE3<br> requested: SSE3<br> Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2<br> requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX<br> SSE4_1 (13 files): + SSSE3 SSE4_1<br> SSE4_2 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2<br> FP16 (0 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX<br> AVX (4 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX<br> AVX2 (27 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2</p> <p dir="auto">C/C++:<br> Built as dynamic libs?: NO<br> C++ Compiler: /usr/lib/ccache/compilers/c++ (ver 4.8.2)<br> C++ flags (Release): -Wl,-strip-all -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wsign-promo -Wuninitialized -Winit-self -Wno-delete-non-virtual-dtor -Wno-comment -Wno-missing-field-initializers -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG<br> C++ flags (Debug): -Wl,-strip-all -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wsign-promo -Wuninitialized -Winit-self -Wno-delete-non-virtual-dtor -Wno-comment -Wno-missing-field-initializers -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG<br> C Compiler: /usr/lib/ccache/compilers/cc<br> C flags (Release): -Wl,-strip-all -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wuninitialized -Winit-self -Wno-comment -Wno-missing-field-initializers -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG<br> C flags (Debug): -Wl,-strip-all -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wuninitialized -Winit-self -Wno-comment -Wno-missing-field-initializers -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG<br> Linker flags (Release): -L/root/ffmpeg_build/lib -Wl,--gc-sections<br> Linker flags (Debug): -L/root/ffmpeg_build/lib -Wl,--gc-sections<br> ccache: YES<br> Precompiled headers: NO<br> Extra dependencies: ade /opt/Qt4.8.7/lib/libQtGui.so /opt/Qt4.8.7/lib/libQtTest.so /opt/Qt4.8.7/lib/libQtCore.so /lib64/libz.so /opt/libjpeg-turbo/lib64/libjpeg.a dl m pthread rt<br> 3rdparty dependencies: ittnotify libprotobuf libwebp libpng libtiff libjasper IlmImf quirc</p> <p dir="auto">OpenCV modules:<br> To be built: aruco bgsegm bioinspired calib3d ccalib core datasets dnn dnn_objdetect dpm face features2d flann fuzzy gapi hfs highgui img_hash imgcodecs imgproc line_descriptor ml objdetect optflow phase_unwrapping photo plot python3 quality reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking video videoio videostab xfeatures2d ximgproc xobjdetect xphoto<br> Disabled: world<br> Disabled by dependency: -<br> Unavailable: cnn_3dobj cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev cvv freetype hdf java js matlab ovis python2 sfm ts viz<br> Applications: -<br> Documentation: NO<br> Non-free algorithms: NO</p> <p dir="auto">GUI:<br> QT: YES (ver 4.8.7 EDITION = OpenSource)<br> QT OpenGL support: NO<br> GTK+: NO<br> VTK support: NO</p> <p dir="auto">Media I/O:<br> ZLib: /lib64/libz.so (ver 1.2.3)<br> JPEG: /opt/libjpeg-turbo/lib64/libjpeg.a (ver 62)<br> WEBP: build (ver encoder: 0x020e)<br> PNG: build (ver 1.6.36)<br> TIFF: build (ver 42 - 4.0.10)<br> JPEG 2000: build (ver 1.900.1)<br> OpenEXR: build (ver 1.7.1)<br> HDR: YES<br> SUNRASTER: YES<br> PXM: YES<br> PFM: YES</p> <p dir="auto">Video I/O:<br> DC1394: NO<br> FFMPEG: YES<br> avcodec: YES (58.47.106)<br> avformat: YES (58.26.101)<br> avutil: YES (56.26.100)<br> swscale: YES (5.4.100)<br> avresample: NO<br> GStreamer: NO<br> v4l/v4l2: YES (linux/videodev2.h)</p> <p dir="auto">Parallel framework: pthreads</p> <p dir="auto">Trace: YES (with Intel ITT)</p> <p dir="auto">Other third-party libraries:<br> Lapack: NO<br> Eigen: NO<br> Custom HAL: NO<br> Protobuf: build (3.5.1)</p> <p dir="auto">OpenCL: YES (no extra features)<br> Include path: /io/opencv/3rdparty/include/opencl/1.2<br> Link libraries: Dynamic load</p> <p dir="auto">Python 3:<br> Interpreter: /opt/python/cp36-cp36m/bin/python (ver 3.6.8)<br> Libraries: libpython3.6m.a (ver 3.6.8)<br> numpy: /opt/python/cp36-cp36m/lib/python3.6/site-packages/numpy/core/include (ver 1.11.3)<br> install path: python</p> <p dir="auto">Python (for build): /opt/python/cp36-cp36m/bin/python</p> <p dir="auto">Java:<br> ant: NO<br> JNI: NO<br> Java wrappers: NO<br> Java tests: NO</p> </details>
<p dir="auto">Hello,</p> <h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.0</li> <li>Operating System / Platform =&gt; Windows 10 64 bit</li> <li>Compiler =&gt; mingw-w64 GCC 8.1.0</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">The use of <em>strcpy_s</em> and <em>strcat_s</em> in <em>window_w32.cpp</em> makes OpenCV impossible to build with GCC (on Windows) which doesn't have the optional <em>_s</em> functions from C11. I'm not an expert in C/C++ so I would suggest to replace the use of the above with <em>strncpy</em> and <em>strncat</em> which should be present in all compilers (MSVC, GCC, Clang).</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">Try to build OpenCV 4.0 beta with mingw-w64 GCC 8.1 on Windows.</p> <p dir="auto">Thanks.</p>
0
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Seemingly out of nowhere, my app started crashing on startup. Initially I thought it might be due to recent changes, so I backed out to a prior build that I knew to be working. That also failed. So I tried with a brand new project:</p> <ol dir="auto"> <li><code class="notranslate">flutter create repro</code></li> <li><code class="notranslate">cd repro</code></li> <li><code class="notranslate">flutter run</code></li> </ol> <p dir="auto"><em>That also fails</em>.</p> <p dir="auto">Note that the same app built via <code class="notranslate">flutter build apk</code> does work when I deploy it to my device.</p> <p dir="auto">I've tried:</p> <ul dir="auto"> <li><code class="notranslate">flutter clean</code></li> <li>restarting my machine</li> <li>plugging/unplugging my device</li> </ul> <p dir="auto">None of these things worked, but switching channels to alpha did. So I assume this has to do with the fact that I upgraded flutter earlier this morning and master is currently broken? Super weird that it didn't trigger any problem for <em>hours</em> after the upgrade.</p> <h2 dir="auto">Logs</h2> <p dir="auto">Output from <code class="notranslate">flutter run</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter run Launching lib/main.dart on Pixel in debug mode... Initializing gradle... 0.8s Resolving dependencies... 1.3s Running 'gradlew assembleDebug'... 2.2s Built build\app\outputs\apk\debug\app-debug.apk (25.3MB)."><pre class="notranslate"><code class="notranslate">flutter run Launching lib/main.dart on Pixel in debug mode... Initializing gradle... 0.8s Resolving dependencies... 1.3s Running 'gradlew assembleDebug'... 2.2s Built build\app\outputs\apk\debug\app-debug.apk (25.3MB). </code></pre></div> <p dir="auto">Output from <code class="notranslate">flutter analyze</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter analyze Analyzing C:\Users\kent\Repository\repro... No issues found! Ran in 5.3s"><pre class="notranslate"><code class="notranslate">flutter analyze Analyzing C:\Users\kent\Repository\repro... No issues found! Ran in 5.3s </code></pre></div> <p dir="auto">Output in logcat:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="02-08 15:13:48.967: A/libc(23708): Fatal signal 4 (SIGILL), code 1, fault addr 0x7ad3fc0400 in tid 23746 (ui_thread), pid 23708 (m.example.repro) 02-08 15:13:48.990: I/Icing(20243): App usage reports: 1 02-08 15:13:48.990: I/Icing(20243): Usage reports ok 1, Failed Usage reports 0, indexed 0, rejected 0, imm upload false 02-08 15:13:49.001: I/crash_dump64(23752): obtaining output fd from tombstoned, type: kDebuggerdTombstone 02-08 15:13:49.002: I//system/bin/tombstoned(743): received crash request for pid 23708 02-08 15:13:49.005: I/crash_dump64(23752): performing dump of process 23708 (target tid = 23746) 02-08 15:13:49.006: A/DEBUG(23752): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 02-08 15:13:49.006: A/DEBUG(23752): Build fingerprint: 'google/sailfish/sailfish:8.1.0/OPM1.171019.012/4470837:user/release-keys' 02-08 15:13:49.006: A/DEBUG(23752): Revision: '0' 02-08 15:13:49.006: A/DEBUG(23752): ABI: 'arm64' 02-08 15:13:49.006: A/DEBUG(23752): pid: 23708, tid: 23746, name: ui_thread &gt;&gt;&gt; com.example.repro &lt;&lt;&lt; 02-08 15:13:49.006: A/DEBUG(23752): signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x7ad3fc0400 02-08 15:13:49.006: A/DEBUG(23752): x0 0000007ad3480821 x1 0000007ad3480821 x2 0000007ad3400c20 x3 0000007ad3480820 02-08 15:13:49.006: A/DEBUG(23752): x4 0000007ad4042e01 x5 0000007ad34a9d31 x6 0000007ad34808e1 x7 0000000000000001 02-08 15:13:49.006: A/DEBUG(23752): x8 0000007ae4e5ca00 x9 0000000000000000 x10 0000000000000001 x11 000000000000000d 02-08 15:13:49.006: A/DEBUG(23752): x12 ffffffffffffe000 x13 0000007ad34aa050 x14 000f714b96000000 x15 0000007ad3dbec70 02-08 15:13:49.006: A/DEBUG(23752): x16 00000000000c0600 x17 0000007ad34a9da1 x18 0000007ad6771000 x19 0000007ae4e5ca00 02-08 15:13:49.006: A/DEBUG(23752): x20 0000000000000000 x21 0000007ae4eba338 x22 0000007ae4eba348 x23 0000007ae4eba368 02-08 15:13:49.006: A/DEBUG(23752): x24 0000007ad4043961 x25 0000007ad3dbdc80 x26 0000007ae4e5ca00 x27 0000007ad34aa050 02-08 15:13:49.006: A/DEBUG(23752): x28 0000007ad6f262a8 x29 0000007ad3dbecb0 x30 0000007ad3400ce4 02-08 15:13:49.006: A/DEBUG(23752): sp 0000007ad3dbdcc0 pc 0000007ad3fc0400 pstate 0000000040000000 02-08 15:13:49.007: A/DEBUG(23752): backtrace: 02-08 15:13:49.007: A/DEBUG(23752): #00 pc 0000000000000400 &lt;anonymous:0000007ad3fc0000&gt; 02-08 15:13:49.007: A/DEBUG(23752): #01 pc 0000000000000ce0 &lt;anonymous:0000007ad3400000&gt; 02-08 15:13:49.013: I/Icing(20243): Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false 02-08 15:13:49.507: E//system/bin/tombstoned(743): Tombstone written to: /data/tombstones/tombstone_07"><pre class="notranslate"><code class="notranslate">02-08 15:13:48.967: A/libc(23708): Fatal signal 4 (SIGILL), code 1, fault addr 0x7ad3fc0400 in tid 23746 (ui_thread), pid 23708 (m.example.repro) 02-08 15:13:48.990: I/Icing(20243): App usage reports: 1 02-08 15:13:48.990: I/Icing(20243): Usage reports ok 1, Failed Usage reports 0, indexed 0, rejected 0, imm upload false 02-08 15:13:49.001: I/crash_dump64(23752): obtaining output fd from tombstoned, type: kDebuggerdTombstone 02-08 15:13:49.002: I//system/bin/tombstoned(743): received crash request for pid 23708 02-08 15:13:49.005: I/crash_dump64(23752): performing dump of process 23708 (target tid = 23746) 02-08 15:13:49.006: A/DEBUG(23752): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 02-08 15:13:49.006: A/DEBUG(23752): Build fingerprint: 'google/sailfish/sailfish:8.1.0/OPM1.171019.012/4470837:user/release-keys' 02-08 15:13:49.006: A/DEBUG(23752): Revision: '0' 02-08 15:13:49.006: A/DEBUG(23752): ABI: 'arm64' 02-08 15:13:49.006: A/DEBUG(23752): pid: 23708, tid: 23746, name: ui_thread &gt;&gt;&gt; com.example.repro &lt;&lt;&lt; 02-08 15:13:49.006: A/DEBUG(23752): signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x7ad3fc0400 02-08 15:13:49.006: A/DEBUG(23752): x0 0000007ad3480821 x1 0000007ad3480821 x2 0000007ad3400c20 x3 0000007ad3480820 02-08 15:13:49.006: A/DEBUG(23752): x4 0000007ad4042e01 x5 0000007ad34a9d31 x6 0000007ad34808e1 x7 0000000000000001 02-08 15:13:49.006: A/DEBUG(23752): x8 0000007ae4e5ca00 x9 0000000000000000 x10 0000000000000001 x11 000000000000000d 02-08 15:13:49.006: A/DEBUG(23752): x12 ffffffffffffe000 x13 0000007ad34aa050 x14 000f714b96000000 x15 0000007ad3dbec70 02-08 15:13:49.006: A/DEBUG(23752): x16 00000000000c0600 x17 0000007ad34a9da1 x18 0000007ad6771000 x19 0000007ae4e5ca00 02-08 15:13:49.006: A/DEBUG(23752): x20 0000000000000000 x21 0000007ae4eba338 x22 0000007ae4eba348 x23 0000007ae4eba368 02-08 15:13:49.006: A/DEBUG(23752): x24 0000007ad4043961 x25 0000007ad3dbdc80 x26 0000007ae4e5ca00 x27 0000007ad34aa050 02-08 15:13:49.006: A/DEBUG(23752): x28 0000007ad6f262a8 x29 0000007ad3dbecb0 x30 0000007ad3400ce4 02-08 15:13:49.006: A/DEBUG(23752): sp 0000007ad3dbdcc0 pc 0000007ad3fc0400 pstate 0000000040000000 02-08 15:13:49.007: A/DEBUG(23752): backtrace: 02-08 15:13:49.007: A/DEBUG(23752): #00 pc 0000000000000400 &lt;anonymous:0000007ad3fc0000&gt; 02-08 15:13:49.007: A/DEBUG(23752): #01 pc 0000000000000ce0 &lt;anonymous:0000007ad3400000&gt; 02-08 15:13:49.013: I/Icing(20243): Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false 02-08 15:13:49.507: E//system/bin/tombstoned(743): Tombstone written to: /data/tombstones/tombstone_07 </code></pre></div> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter doctor Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (on Microsoft Windows [Version 10.0.16299.192], locale en-AU, channel master) [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) [√] Android Studio (version 3.0) [√] IntelliJ IDEA Community Edition (version 2017.3) [√] VS Code (version 1.19.3) [√] Connected devices • No issues found!"><pre class="notranslate"><code class="notranslate">flutter doctor Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (on Microsoft Windows [Version 10.0.16299.192], locale en-AU, channel master) [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) [√] Android Studio (version 3.0) [√] IntelliJ IDEA Community Edition (version 2017.3) [√] VS Code (version 1.19.3) [√] Connected devices • No issues found! </code></pre></div>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">I updated flutter and compiled the app and tried to run. It crashed immediately. Tried it several times.</p> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="02-04 17:10:10.083 10693-10936/com.raisedbythebeat.teacherfinder A/libc: Fatal signal 4 (SIGILL), code 1, fault addr 0x75f8880400 in tid 10936 (ui_thread) 02-04 17:10:10.147 10941-10941/? W/crash_dump64: type=1400 audit(0.0:132690): avc: denied { search } for name=&quot;com.google.android.gms&quot; dev=&quot;dm-0&quot; ino=2704 scontext=u:r:crash_dump:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=0 02-04 17:10:10.175 10941-10941/? I/crash_dump64: obtaining output fd from tombstoned 02-04 17:10:10.177 3239-3239/? I//system/bin/tombstoned: received crash request for pid 10693 02-04 17:10:10.180 10941-10941/? I/crash_dump64: performing dump of process 10693 (target tid = 10936) 02-04 17:10:10.181 10941-10941/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 02-04 17:10:10.181 10941-10941/? A/DEBUG: Build fingerprint: 'OnePlus/OnePlus3/OnePlus3T:8.0.0/OPR6.170623.013/01101100:user/release-keys' 02-04 17:10:10.181 10941-10941/? A/DEBUG: Revision: '0' 02-04 17:10:10.181 10941-10941/? A/DEBUG: ABI: 'arm64' 02-04 17:10:10.181 10941-10941/? A/DEBUG: pid: 10693, tid: 10936, name: ui_thread &gt;&gt;&gt; com.raisedbythebeat.teacherfinder &lt;&lt;&lt; 02-04 17:10:10.181 10941-10941/? A/DEBUG: signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x75f8880400 02-04 17:10:10.181 10941-10941/? A/DEBUG: x0 00000075f58007f1 x1 00000075f58007f1 x2 00000075f5780c20 x3 00000075f58007f0 02-04 17:10:10.181 10941-10941/? A/DEBUG: x4 00000075f8e42e01 x5 00000075f5829d01 x6 00000075f58008b1 x7 0000000000000001 02-04 17:10:10.181 10941-10941/? A/DEBUG: x8 0000007602f46400 x9 0000000000000000 x10 0000000000000001 x11 0000000000000029 02-04 17:10:10.181 10941-10941/? A/DEBUG: x12 0000000000000028 x13 00000075f582a020 x14 0004cb1d75f981a3 x15 00000075f617ec70 02-04 17:10:10.182 10941-10941/? A/DEBUG: x16 00000000000c0600 x17 00000075f5829d71 x18 00000075f7cf0000 x19 0000007602f46400 02-04 17:10:10.182 10941-10941/? A/DEBUG: x20 0000000000000000 x21 00000075f5e5e738 x22 00000075f5e5e748 x23 00000075f5e5e768 02-04 17:10:10.182 10941-10941/? A/DEBUG: x24 00000075f8e43961 x25 00000075f617dc80 x26 0000007602f46400 x27 00000075f582a020 02-04 17:10:10.182 10941-10941/? A/DEBUG: x28 00000075f84a52a8 x29 00000075f617ecb0 x30 00000075f5780ce4 02-04 17:10:10.182 10941-10941/? A/DEBUG: sp 00000075f617dcc0 pc 00000075f8880400 pstate 0000000040000000 02-04 17:10:10.183 10941-10941/? A/DEBUG: backtrace: 02-04 17:10:10.183 10941-10941/? A/DEBUG: #00 pc 0000000000000400 &lt;anonymous:00000075f8880000&gt; 02-04 17:10:10.183 10941-10941/? A/DEBUG: #01 pc 0000000000000ce0 &lt;anonymous:00000075f5780000&gt;"><pre class="notranslate"><code class="notranslate">02-04 17:10:10.083 10693-10936/com.raisedbythebeat.teacherfinder A/libc: Fatal signal 4 (SIGILL), code 1, fault addr 0x75f8880400 in tid 10936 (ui_thread) 02-04 17:10:10.147 10941-10941/? W/crash_dump64: type=1400 audit(0.0:132690): avc: denied { search } for name="com.google.android.gms" dev="dm-0" ino=2704 scontext=u:r:crash_dump:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=0 02-04 17:10:10.175 10941-10941/? I/crash_dump64: obtaining output fd from tombstoned 02-04 17:10:10.177 3239-3239/? I//system/bin/tombstoned: received crash request for pid 10693 02-04 17:10:10.180 10941-10941/? I/crash_dump64: performing dump of process 10693 (target tid = 10936) 02-04 17:10:10.181 10941-10941/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 02-04 17:10:10.181 10941-10941/? A/DEBUG: Build fingerprint: 'OnePlus/OnePlus3/OnePlus3T:8.0.0/OPR6.170623.013/01101100:user/release-keys' 02-04 17:10:10.181 10941-10941/? A/DEBUG: Revision: '0' 02-04 17:10:10.181 10941-10941/? A/DEBUG: ABI: 'arm64' 02-04 17:10:10.181 10941-10941/? A/DEBUG: pid: 10693, tid: 10936, name: ui_thread &gt;&gt;&gt; com.raisedbythebeat.teacherfinder &lt;&lt;&lt; 02-04 17:10:10.181 10941-10941/? A/DEBUG: signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x75f8880400 02-04 17:10:10.181 10941-10941/? A/DEBUG: x0 00000075f58007f1 x1 00000075f58007f1 x2 00000075f5780c20 x3 00000075f58007f0 02-04 17:10:10.181 10941-10941/? A/DEBUG: x4 00000075f8e42e01 x5 00000075f5829d01 x6 00000075f58008b1 x7 0000000000000001 02-04 17:10:10.181 10941-10941/? A/DEBUG: x8 0000007602f46400 x9 0000000000000000 x10 0000000000000001 x11 0000000000000029 02-04 17:10:10.181 10941-10941/? A/DEBUG: x12 0000000000000028 x13 00000075f582a020 x14 0004cb1d75f981a3 x15 00000075f617ec70 02-04 17:10:10.182 10941-10941/? A/DEBUG: x16 00000000000c0600 x17 00000075f5829d71 x18 00000075f7cf0000 x19 0000007602f46400 02-04 17:10:10.182 10941-10941/? A/DEBUG: x20 0000000000000000 x21 00000075f5e5e738 x22 00000075f5e5e748 x23 00000075f5e5e768 02-04 17:10:10.182 10941-10941/? A/DEBUG: x24 00000075f8e43961 x25 00000075f617dc80 x26 0000007602f46400 x27 00000075f582a020 02-04 17:10:10.182 10941-10941/? A/DEBUG: x28 00000075f84a52a8 x29 00000075f617ecb0 x30 00000075f5780ce4 02-04 17:10:10.182 10941-10941/? A/DEBUG: sp 00000075f617dcc0 pc 00000075f8880400 pstate 0000000040000000 02-04 17:10:10.183 10941-10941/? A/DEBUG: backtrace: 02-04 17:10:10.183 10941-10941/? A/DEBUG: #00 pc 0000000000000400 &lt;anonymous:00000075f8880000&gt; 02-04 17:10:10.183 10941-10941/? A/DEBUG: #01 pc 0000000000000ce0 &lt;anonymous:00000075f5780000&gt; </code></pre></div> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Mac OS X 10.13.1 17B1003, locale de-DE, channel master) • Flutter version 0.0.23-pre.34 at /Users/boni/Documents/Programmieren/Dart/flutter • Framework revision f0f0f09707 (2 days ago), 2018-02-02 16:13:56 -0800 • Engine revision d5338ed143 • Tools Dart version 2.0.0-dev.19.0 • Engine Dart version 2.0.0-edge.7078f6be58802c4e274625b8b59b4c855ddc4fb7 [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at /Users/boni/Library/Android/sdk • Android NDK at /Users/boni/Library/Android/sdk/ndk-bundle • Platform android-27, build-tools 27.0.3 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08) [✓] iOS toolchain - develop for iOS devices (Xcode 9.2) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.2, Build version 9C40b • ios-deploy 1.9.2 • CocoaPods version 1.4.0 [✓] Android Studio • Android Studio at /Applications/Android Studio 3.1 Preview.app/Contents • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [✓] Android Studio (version 3.0) • Android Studio at /Applications/Android Studio.app/Contents • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08) [✓] Connected devices • ONEPLUS A3003 • 75aef492 • android-arm64 • Android 8.0.0 (API 26) • No issues found! "><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Mac OS X 10.13.1 17B1003, locale de-DE, channel master) • Flutter version 0.0.23-pre.34 at /Users/boni/Documents/Programmieren/Dart/flutter • Framework revision f0f0f09707 (2 days ago), 2018-02-02 16:13:56 -0800 • Engine revision d5338ed143 • Tools Dart version 2.0.0-dev.19.0 • Engine Dart version 2.0.0-edge.7078f6be58802c4e274625b8b59b4c855ddc4fb7 [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at /Users/boni/Library/Android/sdk • Android NDK at /Users/boni/Library/Android/sdk/ndk-bundle • Platform android-27, build-tools 27.0.3 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08) [✓] iOS toolchain - develop for iOS devices (Xcode 9.2) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.2, Build version 9C40b • ios-deploy 1.9.2 • CocoaPods version 1.4.0 [✓] Android Studio • Android Studio at /Applications/Android Studio 3.1 Preview.app/Contents • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [✓] Android Studio (version 3.0) • Android Studio at /Applications/Android Studio.app/Contents • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08) [✓] Connected devices • ONEPLUS A3003 • 75aef492 • android-arm64 • Android 8.0.0 (API 26) • No issues found! </code></pre></div>
1
<p dir="auto">It has to move to intrinsic anyways. Duplicated for now, awaiting snapshot.</p>
<p dir="auto">rustc --version --verbose:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustc 1.0.0-nightly (f4f10dba2 2015-01-17 20:31:08 +0000) binary: rustc commit-hash: f4f10dba2975b51c2d2c92157018db3ac13d4d4a commit-date: 2015-01-17 20:31:08 +0000 host: x86_64-pc-windows-gnu release: 1.0.0-nightly"><pre class="notranslate"><code class="notranslate">rustc 1.0.0-nightly (f4f10dba2 2015-01-17 20:31:08 +0000) binary: rustc commit-hash: f4f10dba2975b51c2d2c92157018db3ac13d4d4a commit-date: 2015-01-17 20:31:08 +0000 host: x86_64-pc-windows-gnu release: 1.0.0-nightly </code></pre></div> <p dir="auto">Backtrace: (the offending line 111 is at the bottom of the source snippet below)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="source.rs:111:22: 111:78 error: internal compiler error: aliasability violation with closure source.rs:111 try_consume( key, &amp;|&amp;: value| item.effects.effects.push( consume( value ) ) ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html note: run with `RUST_BACKTRACE=1` for a backtrace thread 'rustc' panicked at 'Box&lt;Any&gt;', C:\bot\slave\nightly-dist-rustc-win-64\build\src\libsyntax\diagnostic.rs:126 stack backtrace: 1: 0x69beb95b - sys::backtrace::write::h3574a74d3ac66ba0Dcu 2: 0x69bff6c3 - rt::unwind::register::hb202fe2a2fd24f5eyYz 3: 0x69b8363f - rt::unwind::begin_unwind_inner::h24cce2e033842dba7Vz 4: 0x6f89b58c - diagnostic::SpanHandler::span_bug::he7f492467f6ccae95qF 5: 0x6f89b543 - diagnostic::SpanHandler::span_bug::he7f492467f6ccae95qF 6: 0x591d82 - session::Session::span_bug::hbbd1fa2194e20c7cfBp 7: 0x705e170c - borrowck::move_data::MovePathIndex...std..cmp..PartialEq::ne::h1a3439607cb47b24mTd 8: 0x705e84bd - borrowck::gather_loans::GatherLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::mutate::hdc7adcebb6b13c04Nsc 9: 0x705e66c9 - borrowck::gather_loans::GatherLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::borrow::h4842d9e140720d87kqc 10: 0x705d92f3 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 11: 0x705d5152 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 12: 0x705d8ef6 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 13: 0x705d4d13 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 14: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 15: 0x705d51df - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 16: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 17: 0x705d3b11 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 18: 0x705d3fc7 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 19: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 20: 0x705d3c0a - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 21: 0x705fcc12 - borrowck::check_crate::hb708c27b837bb24bUIe 22: 0x705f9986 - borrowck::BorrowckCtxt&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_fn::h85e169569b3db6adOHe 23: 0x705fbb13 - borrowck::check_crate::hb708c27b837bb24bUIe Could not compile `DotA_Simulator`."><pre class="notranslate"><code class="notranslate">source.rs:111:22: 111:78 error: internal compiler error: aliasability violation with closure source.rs:111 try_consume( key, &amp;|&amp;: value| item.effects.effects.push( consume( value ) ) ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html note: run with `RUST_BACKTRACE=1` for a backtrace thread 'rustc' panicked at 'Box&lt;Any&gt;', C:\bot\slave\nightly-dist-rustc-win-64\build\src\libsyntax\diagnostic.rs:126 stack backtrace: 1: 0x69beb95b - sys::backtrace::write::h3574a74d3ac66ba0Dcu 2: 0x69bff6c3 - rt::unwind::register::hb202fe2a2fd24f5eyYz 3: 0x69b8363f - rt::unwind::begin_unwind_inner::h24cce2e033842dba7Vz 4: 0x6f89b58c - diagnostic::SpanHandler::span_bug::he7f492467f6ccae95qF 5: 0x6f89b543 - diagnostic::SpanHandler::span_bug::he7f492467f6ccae95qF 6: 0x591d82 - session::Session::span_bug::hbbd1fa2194e20c7cfBp 7: 0x705e170c - borrowck::move_data::MovePathIndex...std..cmp..PartialEq::ne::h1a3439607cb47b24mTd 8: 0x705e84bd - borrowck::gather_loans::GatherLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::mutate::hdc7adcebb6b13c04Nsc 9: 0x705e66c9 - borrowck::gather_loans::GatherLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::borrow::h4842d9e140720d87kqc 10: 0x705d92f3 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 11: 0x705d5152 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 12: 0x705d8ef6 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 13: 0x705d4d13 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 14: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 15: 0x705d51df - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 16: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 17: 0x705d3b11 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 18: 0x705d3fc7 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 19: 0x705d8c17 - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 20: 0x705d3c0a - borrowck::check_loans::CheckLoanCtxt&lt;'a, 'tcx&gt;.euv..Delegate&lt;'tcx&gt;::decl_without_init::h9c67fbfec08849cbHoa 21: 0x705fcc12 - borrowck::check_crate::hb708c27b837bb24bUIe 22: 0x705f9986 - borrowck::BorrowckCtxt&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_fn::h85e169569b3db6adOHe 23: 0x705fbb13 - borrowck::check_crate::hb708c27b837bb24bUIe Could not compile `DotA_Simulator`. </code></pre></div> <p dir="auto">Source code (only the parts related to the problem):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="... let string = File::open( &amp;Path::new( filename ) ).read_to_string().unwrap(); let json = json::from_str( string.as_slice() ).unwrap(); let object = json.as_object().unwrap(); let mut item = Item::new(); item.name = object[&quot;Name&quot;.to_string()].as_string().unwrap().to_string(); item.cost = object[&quot;ItemCost&quot;.to_string()].as_f64().unwrap(); //get the corresponding f64 to a key let get_f64 = |&amp;: key: &amp;str| -&gt; f64 { object.get( &amp;key.to_string() ).unwrap().as_f64().unwrap() }; //Checks if all keys are mapped let contains_all = |&amp;: keys: &amp;[&amp;str]| -&gt; bool { for k in keys.iter() { if !object.contains_key( &amp;k.to_string() ) { return false; } } true }; //Consumes a value if its key exists. let try_consume = |&amp;: key: &amp;str, consume: &amp;Fn(f64)| { match object.get(&amp;key.to_string()) { Some(ref json) =&gt; consume( json.as_f64().unwrap() ), None =&gt; () }; }; { //Same as above but consume creates an Effect that gets pushed onto the item. //This is in a separate scope because the Closure captures item.effects.effects until it goes out of scope. let try_consume_push = |&amp;: key: &amp;str, consume: &amp;Fn(f64) -&gt; Effect| { try_consume( key, &amp;|&amp;: value| item.effects.effects.push( consume( value ) ) ); }; ..."><pre class="notranslate"><code class="notranslate">... let string = File::open( &amp;Path::new( filename ) ).read_to_string().unwrap(); let json = json::from_str( string.as_slice() ).unwrap(); let object = json.as_object().unwrap(); let mut item = Item::new(); item.name = object["Name".to_string()].as_string().unwrap().to_string(); item.cost = object["ItemCost".to_string()].as_f64().unwrap(); //get the corresponding f64 to a key let get_f64 = |&amp;: key: &amp;str| -&gt; f64 { object.get( &amp;key.to_string() ).unwrap().as_f64().unwrap() }; //Checks if all keys are mapped let contains_all = |&amp;: keys: &amp;[&amp;str]| -&gt; bool { for k in keys.iter() { if !object.contains_key( &amp;k.to_string() ) { return false; } } true }; //Consumes a value if its key exists. let try_consume = |&amp;: key: &amp;str, consume: &amp;Fn(f64)| { match object.get(&amp;key.to_string()) { Some(ref json) =&gt; consume( json.as_f64().unwrap() ), None =&gt; () }; }; { //Same as above but consume creates an Effect that gets pushed onto the item. //This is in a separate scope because the Closure captures item.effects.effects until it goes out of scope. let try_consume_push = |&amp;: key: &amp;str, consume: &amp;Fn(f64) -&gt; Effect| { try_consume( key, &amp;|&amp;: value| item.effects.effects.push( consume( value ) ) ); }; ... </code></pre></div> <p dir="auto">If some info about my code matters:<br> I have a json object from which I want to extract a bunch of values that are all f64 and which get turned into a struct called Effect depending on their key which are put into a struct called Item. To have less duplicate code I define a few helper closures that use the same json object, Item and eachother.<br> The closures take other closures as arguments which I pass by reference because the compiler complains about them not being sized otherwise.</p>
0
<h2 dir="auto">suggestion</h2> <p dir="auto">I suggess to add the following command :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno bundleForNode {filename.js/ts} -- --output o.js "><pre class="notranslate"><code class="notranslate">deno bundleForNode {filename.js/ts} -- --output o.js </code></pre></div> <p dir="auto">like deno bundleForNode {filename.js/ts} -- --output o.js<br> but</p> <ul dir="auto"> <li>finlename.js/ts can access any node api</li> <li>node can run o.js without problem</li> <li>deno run --compet o.js may failed if the some node api not supported by --compat are used</li> </ul> <h2 dir="auto">use case</h2> <ul dir="auto"> <li>allow develop to use deno ecosystem for develop frontend using framwork like svelte, vue ... with little effort</li> </ul>
<h2 dir="auto">suggestion</h2> <p dir="auto">I suggess to add the following command :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno bundleForNode {filename.js/ts} -- --output o.js "><pre class="notranslate"><code class="notranslate">deno bundleForNode {filename.js/ts} -- --output o.js </code></pre></div> <p dir="auto">like deno bundle {filename.js/ts} -- --output o.js<br> but with differance</p> <ul dir="auto"> <li>filename.js/ts can access any node api</li> <li>node can run o.js without problem</li> <li>deno run --compet o.js may failed if the some node api not supported by --compat are used</li> </ul> <h2 dir="auto">use case</h2> <ul dir="auto"> <li>allow develop to use deno ecosystem for develop frontend using framwork like svelte, vue ... with little effort</li> </ul>
1