text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" In [97]: s1 = pd.Series([1,2,3], index=[4,5,6]) In [98]: s2 = pd.Series([1,3,2], index=s1) In [99]: s2 Out[101]: 1 1 2 3 3 2 dtype: int64"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">97</span>]: <span class="pl-s1">s1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>([<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>], <span class="pl-s1">index</span><span class="pl-c1">=</span>[<span class="pl-c1">4</span>,<span class="pl-c1">5</span>,<span class="pl-c1">6</span>]) <span class="pl-v">In</span> [<span class="pl-c1">98</span>]: <span class="pl-s1">s2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>([<span class="pl-c1">1</span>,<span class="pl-c1">3</span>,<span class="pl-c1">2</span>], <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">s1</span>) <span class="pl-v">In</span> [<span class="pl-c1">99</span>]: <span class="pl-s1">s2</span> <span class="pl-v">Out</span>[<span class="pl-c1">101</span>]: <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">3</span> <span class="pl-c1">3</span> <span class="pl-c1">2</span> <span class="pl-s1">dtype</span>: <span class="pl-s1">int64</span></pre></div> <p dir="auto">so far so good, now lets try a boolean series</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [101]: s3 = pd.Series([1,3,2], index=(s1==2)) In [102]: s3 ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/core/indexes/base.py in _format_with_header(self, header, na_rep, **kwargs) 1905 values = np.array(values) 1906 elif is_object_dtype(values.dtype): -&gt; 1907 values = lib.maybe_convert_objects(values, safe=1) 1908 1909 if is_object_dtype(values.dtype): TypeError: Argument 'objects' has incorrect type (expected numpy.ndarray, got Series) In [103]: s3.index ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/core/indexes/base.py in inferred_type(self) 1567 def inferred_type(self): 1568 &quot;&quot;&quot; return a string of the type inferred from the values &quot;&quot;&quot; -&gt; 1569 return lib.infer_dtype(self) 1570 1571 def _is_memory_usage_qualified(self): pandas/_libs/src/inference.pyx in pandas._libs.lib.infer_dtype (pandas/_libs/lib.c:47002)() ValueError: cannot infer type for &lt;class 'NoneType'&gt;"><pre class="notranslate"><code class="notranslate">In [101]: s3 = pd.Series([1,3,2], index=(s1==2)) In [102]: s3 ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/core/indexes/base.py in _format_with_header(self, header, na_rep, **kwargs) 1905 values = np.array(values) 1906 elif is_object_dtype(values.dtype): -&gt; 1907 values = lib.maybe_convert_objects(values, safe=1) 1908 1909 if is_object_dtype(values.dtype): TypeError: Argument 'objects' has incorrect type (expected numpy.ndarray, got Series) In [103]: s3.index ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/core/indexes/base.py in inferred_type(self) 1567 def inferred_type(self): 1568 """ return a string of the type inferred from the values """ -&gt; 1569 return lib.infer_dtype(self) 1570 1571 def _is_memory_usage_qualified(self): pandas/_libs/src/inference.pyx in pandas._libs.lib.infer_dtype (pandas/_libs/lib.c:47002)() ValueError: cannot infer type for &lt;class 'NoneType'&gt; </code></pre></div> <p dir="auto">now a dataframe</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [178]: df = pd.DataFrame([[1,2],[3,4],[5,6]], index=[3,6,9]) In [180]: s4 = pd.Series([1,3,2], index=df) In [181]: s4 ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/io/formats/format.py in &lt;lambda&gt;(x) 1967 1968 def _format_strings(self): -&gt; 1969 formatter = self.formatter or (lambda x: '% d' % x) 1970 fmt_values = [formatter(x) for x in self.values] 1971 return fmt_values TypeError: %d format: a number is required, not numpy.ndarray In [182]: s4.index Out[182]: Int64Index([[1, 2], [3, 4], [5, 6]], dtype='int64') "><pre class="notranslate"><code class="notranslate">In [178]: df = pd.DataFrame([[1,2],[3,4],[5,6]], index=[3,6,9]) In [180]: s4 = pd.Series([1,3,2], index=df) In [181]: s4 ... ... ~/anaconda3/lib/python3.5/site-packages/pandas/io/formats/format.py in &lt;lambda&gt;(x) 1967 1968 def _format_strings(self): -&gt; 1969 formatter = self.formatter or (lambda x: '% d' % x) 1970 fmt_values = [formatter(x) for x in self.values] 1971 return fmt_values TypeError: %d format: a number is required, not numpy.ndarray In [182]: s4.index Out[182]: Int64Index([[1, 2], [3, 4], [5, 6]], dtype='int64') </code></pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">I would expect passing a boolean Series as the index= parameter to either act as Series.index (as in the example where the integer Series s1 is used as an index) or Series.values (as the docs seem imply <a href="http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.html" rel="nofollow">http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.html</a> "<em>index : <strong>array-like</strong> or Index (1d)</em>")</p> <p dir="auto">For the DataFrame case, it could either use df.index, or fail early with a ValueError</p> <p dir="auto">[this should explain <strong>why</strong> the current behaviour is a problem and why the expected output is a better solution.]</p> <p dir="auto"><strong>Note</strong>: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!</p> <p dir="auto"><strong>Note</strong>: Many problems can be resolved by simply upgrading <code class="notranslate">pandas</code> to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if <code class="notranslate">master</code> addresses this issue, but that is not necessary.</p> <p dir="auto">For documentation-related issues, you can check the latest versions of the docs on <code class="notranslate">master</code> here:</p> <p dir="auto"><a href="https://pandas-docs.github.io/pandas-docs-travis/" rel="nofollow">https://pandas-docs.github.io/pandas-docs-travis/</a></p> <p dir="auto">If the issue has not been resolved there, go ahead and file it in the issue tracker.</p> <h4 dir="auto">Expected Output</h4> <p dir="auto">either</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [101]: s3 = pd.Series([1,3,2], index=(s1==2)) In [102]: s3 Out[119]: 4 1 5 3 6 2 dtype: int64 In [103]: s4 = pd.Series([1,2,3], index=df) In [104]: s4 Out[104]: 4 1 5 2 6 3 dtype: int64"><pre class="notranslate"><code class="notranslate">In [101]: s3 = pd.Series([1,3,2], index=(s1==2)) In [102]: s3 Out[119]: 4 1 5 3 6 2 dtype: int64 In [103]: s4 = pd.Series([1,2,3], index=df) In [104]: s4 Out[104]: 4 1 5 2 6 3 dtype: int64 </code></pre></div> <p dir="auto">OR</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [121]: s3 Out[121]: False 1 True 3 False 2 dtype: int64 s4 = pd.Series([1,3,2], index=df) ValueError"><pre class="notranslate"><code class="notranslate">In [121]: s3 Out[121]: False 1 True 3 False 2 dtype: int64 s4 = pd.Series([1,3,2], index=df) ValueError </code></pre></div> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> <h2 dir="auto">[paste the output of <code class="notranslate">pd.show_versions()</code> here below this line]<br> INSTALLED VERSIONS</h2> <p dir="auto">commit: None<br> python: 3.5.4.final.0<br> python-bits: 64<br> OS: Darwin<br> OS-release: 17.2.0<br> machine: x86_64<br> processor: i386<br> byteorder: little<br> LC_ALL: None<br> LANG: en_GB.UTF-8<br> LOCALE: en_GB.UTF-8</p> <p dir="auto">pandas: 0.20.3<br> pytest: 3.2.1<br> pip: 9.0.1<br> setuptools: 36.4.0<br> Cython: 0.26<br> numpy: 1.12.1<br> scipy: 0.19.1<br> xarray: None<br> IPython: 6.1.0<br> sphinx: 1.6.3<br> patsy: 0.4.1<br> dateutil: 2.6.1<br> pytz: 2017.2<br> blosc: None<br> bottleneck: 1.2.1<br> tables: 3.4.2<br> numexpr: 2.6.2<br> feather: None<br> matplotlib: 2.0.2<br> openpyxl: 2.4.8<br> xlrd: 1.1.0<br> xlwt: 1.3.0<br> xlsxwriter: 0.9.8<br> lxml: 3.8.0<br> bs4: 4.6.0<br> html5lib: 0.9999999<br> sqlalchemy: 1.1.13<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.9.6<br> s3fs: None<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; d = pandas.Series({('1ab','2'): 3, ('1ab',3):4}, ) &gt;&gt;&gt; d = pandas.concat([d,d]) &gt;&gt;&gt; d = pandas.concat([d,d], axis=1) &gt;&gt;&gt; pickle.loads(pickle.dumps(d)) 0 1 1ab 3 4 4 2 3 3 3 4 4 2 3 3 &gt;&gt;&gt; pickle.loads(pickle.dumps(d.T)) Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/usr/lib64/python2.7/pickle.py&quot;, line 1382, in loads return Unpickler(file).load() File &quot;/usr/lib64/python2.7/pickle.py&quot;, line 858, in load dispatch[key](self) File &quot;/usr/lib64/python2.7/pickle.py&quot;, line 1217, in load_build setstate(state) File &quot;venv/lib/python2.7/site-packages/pandas/core/internals.py&quot;, line 2063, in __setstate__ placement=self.axes[0].get_indexer(items)) File &quot;venv/lib/python2.7/site-packages/pandas/core/index.py&quot;, line 3200, in get_indexer raise Exception('Reindexing only valid with uniquely valued Index ' Exception: Reindexing only valid with uniquely valued Index objects"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; d = pandas.Series({('1ab','2'): 3, ('1ab',3):4}, ) &gt;&gt;&gt; d = pandas.concat([d,d]) &gt;&gt;&gt; d = pandas.concat([d,d], axis=1) &gt;&gt;&gt; pickle.loads(pickle.dumps(d)) 0 1 1ab 3 4 4 2 3 3 3 4 4 2 3 3 &gt;&gt;&gt; pickle.loads(pickle.dumps(d.T)) Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/usr/lib64/python2.7/pickle.py", line 1382, in loads return Unpickler(file).load() File "/usr/lib64/python2.7/pickle.py", line 858, in load dispatch[key](self) File "/usr/lib64/python2.7/pickle.py", line 1217, in load_build setstate(state) File "venv/lib/python2.7/site-packages/pandas/core/internals.py", line 2063, in __setstate__ placement=self.axes[0].get_indexer(items)) File "venv/lib/python2.7/site-packages/pandas/core/index.py", line 3200, in get_indexer raise Exception('Reindexing only valid with uniquely valued Index ' Exception: Reindexing only valid with uniquely valued Index objects </code></pre></div>
0
<p dir="auto">Maybe it does not cover main idea of 6to5 compiler, but it will be great if we will have ability to specify for which environment we wrote our application.<br> For example, I wrote some modern application of latest version of Firefox and Google Chrome, but according this table <a href="http://kangax.github.io/compat-table/es6/" rel="nofollow">http://kangax.github.io/compat-table/es6/</a>, we actually have native support for a lot of things from ES6 in these browsers.<br> This means that it is not necessary to compile a lot of things into ES5.</p> <p dir="auto">I like approach from <a href="https://github.com/postcss/autoprefixer#browsers">autoprefixer</a><br> where we can configure our build like <code class="notranslate">last 2 versions</code> or <code class="notranslate">&gt; 5%.</code></p>
<p dir="auto">Possibly through a <code class="notranslate">blacklistUserAgent</code> option or something. Would use the kangax compat-table. Important to note that it does not guarantee complete spec compliancy on the vendors end.</p> <p dir="auto">References:</p> <ul dir="auto"> <li><a href="https://github.com/kangax/compat-table">https://github.com/kangax/compat-table</a></li> <li><a href="https://github.com/Fyrd/caniuse">https://github.com/Fyrd/caniuse</a></li> <li><a href="https://github.com/3rd-Eden/useragent">https://github.com/3rd-Eden/useragent</a></li> </ul>
1
<p dir="auto">When input GLTF file contains accessors with stride that doesn't match the expected stride based on the accessor type, GLTFLoader creates the interleaved attribute as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType; var ib = parser.cache.get( ibCacheKey ); if ( ! ib ) { // Use the full buffer if it's interleaved. array = new TypedArray( bufferView ); // Integer parameters to IB/IBA are in array elements, not bytes. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes ); parser.cache.add( ibCacheKey, ib ); } bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, byteOffset / elementBytes, normalized );"><pre class="notranslate"><code class="notranslate">var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType; var ib = parser.cache.get( ibCacheKey ); if ( ! ib ) { // Use the full buffer if it's interleaved. array = new TypedArray( bufferView ); // Integer parameters to IB/IBA are in array elements, not bytes. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes ); parser.cache.add( ibCacheKey, ib ); } bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, byteOffset / elementBytes, normalized ); </code></pre></div> <p dir="auto">As a result, the attribute objects that are created have <code class="notranslate">.count</code> property reflect the full size of the buffer view. If multiple meshes share the same buffer view, then what will happen is that all of them will have the same <code class="notranslate">.count</code> (that is equal to the total vertex count across all meshes), but access to <code class="notranslate">.getX()</code> etc. will apply the byte offset for each mesh.</p> <p dir="auto">This is a problem. For example, in this code in <code class="notranslate">computeBoundingSphere</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for ( var i = 0, il = position.count; i &lt; il; i ++ ) { vector.fromBufferAttribute( position, i ); maxRadiusSq = Math.max( maxRadiusSq, center.distanceToSquared( vector ) ); }"><pre class="notranslate"><code class="notranslate">for ( var i = 0, il = position.count; i &lt; il; i ++ ) { vector.fromBufferAttribute( position, i ); maxRadiusSq = Math.max( maxRadiusSq, center.distanceToSquared( vector ) ); } </code></pre></div> <p dir="auto">For each mesh we'll iterate over the number of elements in the buffer view, but during access in <code class="notranslate">fromBufferAttribute</code> an offset will be applied, which - for meshes with offset != 0 - will result in <code class="notranslate">vector</code> being undefined and <code class="notranslate">maxRadiusSq</code> equal to NaN.</p> <p dir="auto">I'm considering options for how to fix this.</p> <p dir="auto">One option is to make caching logic more involved by incorporating accessor count into the cache, and only storing a slice of the buffer view that matches the accessor count; something along these lines:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var ibSlice = Math.floor( byteOffset / byteStride ); var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count; var ib = parser.cache.get( ibCacheKey ); if ( ! ib ) { array = new TypedArray( bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes ); // Integer parameters to IB/IBA are in array elements, not bytes. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes ); parser.cache.add( ibCacheKey, ib ); } bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, (byteOffset - ibSlice * byteStride) / elementBytes, normalized );"><pre class="notranslate"><code class="notranslate">var ibSlice = Math.floor( byteOffset / byteStride ); var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count; var ib = parser.cache.get( ibCacheKey ); if ( ! ib ) { array = new TypedArray( bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes ); // Integer parameters to IB/IBA are in array elements, not bytes. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes ); parser.cache.add( ibCacheKey, ib ); } bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, (byteOffset - ibSlice * byteStride) / elementBytes, normalized ); </code></pre></div> <p dir="auto">Another option is to change <code class="notranslate">InterleavedBufferAttribute.count</code> to a field that's computed in the constructor from an optional extra <code class="notranslate">count</code> argument like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function InterleavedBufferAttribute( interleavedBuffer, itemSize, offset, normalized, count ) { this.data = interleavedBuffer; this.itemSize = itemSize; this.offset = offset; this.count = count || interleavedBuffer.count; this.normalized = normalized === true; }"><pre class="notranslate"><code class="notranslate">function InterleavedBufferAttribute( interleavedBuffer, itemSize, offset, normalized, count ) { this.data = interleavedBuffer; this.itemSize = itemSize; this.offset = offset; this.count = count || interleavedBuffer.count; this.normalized = normalized === true; } </code></pre></div> <p dir="auto">Thoughts?</p>
<p dir="auto">The main source code has recently been ported to ES2015 modules (see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164650131" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/9310" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/9310/hovercard" href="https://github.com/mrdoob/three.js/pull/9310">#9310</a>); however, some parts are still relying on global namespace pollution and have thus become unusable.</p> <p dir="auto">Specifically the things in <code class="notranslate">/examples/js/</code> haven't been transformed to support modules yet; this makes them currently unusable from within environments such as webpack or SystemJS.</p> <p dir="auto">Edit, 11-20-2016: They <em>can</em> be used, but it requires a lot of setup: <a href="https://github.com/systemjs/systemjs/issues/666" data-hovercard-type="issue" data-hovercard-url="/systemjs/systemjs/issues/666/hovercard">SystemJS</a>, <a href="https://github.com/webpack/imports-loader">webpack</a>. If you need assistance with these: Sorry, but this is the wrong thread to announce it! 😄</p>
0
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>create new plugin<br> <code class="notranslate">flutter create --org com.example --template=plugin utf8err</code></li> <li>modify file <code class="notranslate">utf8err\android\src\main\java\com\example\utf8err\Utf8errPlugin.java</code> content to:</li> </ol> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package com.example.utf8err; import io.flutter.plugin.common.MethodChannel; import io.flutter.plugin.common.MethodChannel.MethodCallHandler; import io.flutter.plugin.common.MethodChannel.Result; import io.flutter.plugin.common.MethodCall; import io.flutter.plugin.common.PluginRegistry.Registrar; /** * Utf8errPlugin */ public class Utf8errPlugin implements MethodCallHandler { /** * Plugin registration. */ public static void registerWith(Registrar registrar) { final MethodChannel channel = new MethodChannel(registrar.messenger(), &quot;utf8err&quot;); JavaError;//&lt;--------------Any wrong statement channel.setMethodCallHandler(new Utf8errPlugin()); } @Override public void onMethodCall(MethodCall call, Result result) { if (call.method.equals(&quot;getPlatformVersion&quot;)) { result.success(&quot;Android &quot; + android.os.Build.VERSION.RELEASE); } else { result.notImplemented(); } } }"><pre class="notranslate"><span class="pl-k">package</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">utf8err</span>; <span class="pl-k">import</span> <span class="pl-s1">io</span>.<span class="pl-s1">flutter</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">common</span>.<span class="pl-s1">MethodChannel</span>; <span class="pl-k">import</span> <span class="pl-s1">io</span>.<span class="pl-s1">flutter</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">common</span>.<span class="pl-s1">MethodChannel</span>.<span class="pl-s1">MethodCallHandler</span>; <span class="pl-k">import</span> <span class="pl-s1">io</span>.<span class="pl-s1">flutter</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">common</span>.<span class="pl-s1">MethodChannel</span>.<span class="pl-s1">Result</span>; <span class="pl-k">import</span> <span class="pl-s1">io</span>.<span class="pl-s1">flutter</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">common</span>.<span class="pl-s1">MethodCall</span>; <span class="pl-k">import</span> <span class="pl-s1">io</span>.<span class="pl-s1">flutter</span>.<span class="pl-s1">plugin</span>.<span class="pl-s1">common</span>.<span class="pl-s1">PluginRegistry</span>.<span class="pl-s1">Registrar</span>; <span class="pl-c">/**</span> <span class="pl-c"> * Utf8errPlugin</span> <span class="pl-c"> */</span> <span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">Utf8errPlugin</span> <span class="pl-k">implements</span> <span class="pl-smi">MethodCallHandler</span> { <span class="pl-c">/**</span> <span class="pl-c"> * Plugin registration.</span> <span class="pl-c"> */</span> <span class="pl-k">public</span> <span class="pl-k">static</span> <span class="pl-smi">void</span> <span class="pl-en">registerWith</span>(<span class="pl-smi">Registrar</span> <span class="pl-s1">registrar</span>) { <span class="pl-k">final</span> <span class="pl-smi">MethodChannel</span> <span class="pl-s1">channel</span> = <span class="pl-k">new</span> <span class="pl-smi">MethodChannel</span>(<span class="pl-s1">registrar</span>.<span class="pl-en">messenger</span>(), <span class="pl-s">"utf8err"</span>); <span class="pl-s1">JavaError</span>;<span class="pl-c">//&lt;--------------Any wrong statement</span> <span class="pl-s1">channel</span>.<span class="pl-en">setMethodCallHandler</span>(<span class="pl-k">new</span> <span class="pl-smi">Utf8errPlugin</span>()); } <span class="pl-c1">@</span><span class="pl-c1">Override</span> <span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">onMethodCall</span>(<span class="pl-smi">MethodCall</span> <span class="pl-s1">call</span>, <span class="pl-smi">Result</span> <span class="pl-s1">result</span>) { <span class="pl-k">if</span> (<span class="pl-s1">call</span>.<span class="pl-s1">method</span>.<span class="pl-en">equals</span>(<span class="pl-s">"getPlatformVersion"</span>)) { <span class="pl-s1">result</span>.<span class="pl-en">success</span>(<span class="pl-s">"Android "</span> + <span class="pl-s1">android</span>.<span class="pl-s1">os</span>.<span class="pl-s1">Build</span>.<span class="pl-c1">VERSION</span>.<span class="pl-c1">RELEASE</span>); } <span class="pl-k">else</span> { <span class="pl-s1">result</span>.<span class="pl-en">notImplemented</span>(); } } }</pre></div> <ol start="3" dir="auto"> <li>run the example:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter run"><pre lang="cd" class="notranslate"><code class="notranslate">flutter run </code></pre></div> <h2 dir="auto">Logs</h2> <p dir="auto">Run your application with <code class="notranslate">flutter run</code> and attach all the log output.</p> <div class="highlight highlight-text-md notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Launching lib/main.dart on EVA CL00 in debug mode... Initializing gradle... 1.8s Resolving dependencies... 4.0s Running 'gradlew assembleDebug'... \ Oops; flutter has exited unexpectedly. Sending crash report to Google. Failed to send crash report due to a network error: SocketException: OS Error: 信号灯超时时间已到 , errno = 121, address = clients2.google.com, port = 26221 Crash report written to D:\skydrive\flutter\utf8err\example\flutter_01.log; please let us know at https://github.com/flutter/flutter/issues."><pre class="notranslate">Launching lib/main.dart on EVA CL00 in debug mode... Initializing gradle... 1.8s Resolving dependencies... 4.0s Running 'gradlew assembleDebug'... <span class="pl-c1">\</span> Oops; flutter has exited unexpectedly. Sending crash report to Google. Failed to send crash report due to a network error: SocketException: OS Error: 信号灯超时时间已到 , errno = 121, address = clients2.google.com, port = 26221 Crash report written to D:\skydrive\flutter\utf8err\example\flutter_01.log; please let us know at <span class="pl-corl">https://github.com/flutter/flutter/issues</span>.</pre></div> <p dir="auto">the flutter_01.log:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Flutter crash report; please file at https://github.com/flutter/flutter/issues. ## command flutter run ## exception FormatException: FormatException: Bad UTF-8 encoding 0xb4 (at offset 93) `` #0 _Utf8Decoder.convert (dart:convert/utf.dart:574) #1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:345) #2 _Utf8ConversionSink.add (dart:convert/string_conversion.dart:341) #3 _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:86) #4 _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:120) #5 _rootRunUnary (dart:async/zone.dart:1134) #6 _CustomZone.runUnary (dart:async/zone.dart:1031) #7 _CustomZone.runUnaryGuarded (dart:async/zone.dart:933) #8 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:330) #9 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:257) #10 _StreamController&amp;&amp;_SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:763) #11 _StreamController._add (dart:async/stream_controller.dart:639) #12 _StreamController.add (dart:async/stream_controller.dart:585) #13 _Socket._onData (dart:io-patch/socket_patch.dart:1654) #14 _rootRunUnary (dart:async/zone.dart:1138) #15 _CustomZone.runUnary (dart:async/zone.dart:1031) #16 _CustomZone.runUnaryGuarded (dart:async/zone.dart:933) #17 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:330) #18 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:257) #19 _StreamController&amp;&amp;_SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:763) #20 _StreamController._add (dart:async/stream_controller.dart:639) #21 _StreamController.add (dart:async/stream_controller.dart:585) #22 new _RawSocket.&lt;anonymous closure&gt; (dart:io-patch/socket_patch.dart:1231) #23 _NativeSocket.issueReadEvent.issue (dart:io-patch/socket_patch.dart:784) #24 _microtaskLoop (dart:async/schedule_microtask.dart:41) #25 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) #26 _runPendingImmediateCallback (dart:isolate-patch/dart:isolate/isolate_patch.dart:113) #27 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:166) ``"><pre class="notranslate"><code class="notranslate">Flutter crash report; please file at https://github.com/flutter/flutter/issues. ## command flutter run ## exception FormatException: FormatException: Bad UTF-8 encoding 0xb4 (at offset 93) `` #0 _Utf8Decoder.convert (dart:convert/utf.dart:574) #1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:345) #2 _Utf8ConversionSink.add (dart:convert/string_conversion.dart:341) #3 _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:86) #4 _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:120) #5 _rootRunUnary (dart:async/zone.dart:1134) #6 _CustomZone.runUnary (dart:async/zone.dart:1031) #7 _CustomZone.runUnaryGuarded (dart:async/zone.dart:933) #8 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:330) #9 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:257) #10 _StreamController&amp;&amp;_SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:763) #11 _StreamController._add (dart:async/stream_controller.dart:639) #12 _StreamController.add (dart:async/stream_controller.dart:585) #13 _Socket._onData (dart:io-patch/socket_patch.dart:1654) #14 _rootRunUnary (dart:async/zone.dart:1138) #15 _CustomZone.runUnary (dart:async/zone.dart:1031) #16 _CustomZone.runUnaryGuarded (dart:async/zone.dart:933) #17 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:330) #18 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:257) #19 _StreamController&amp;&amp;_SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:763) #20 _StreamController._add (dart:async/stream_controller.dart:639) #21 _StreamController.add (dart:async/stream_controller.dart:585) #22 new _RawSocket.&lt;anonymous closure&gt; (dart:io-patch/socket_patch.dart:1231) #23 _NativeSocket.issueReadEvent.issue (dart:io-patch/socket_patch.dart:784) #24 _microtaskLoop (dart:async/schedule_microtask.dart:41) #25 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) #26 _runPendingImmediateCallback (dart:isolate-patch/dart:isolate/isolate_patch.dart:113) #27 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:166) `` </code></pre></div> <p dir="auto">Run <code class="notranslate">flutter analyze</code> and attach any output of that command also.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing D:\skydrive\flutter\utf8err\example... No issues found! Ran in 8.0s"><pre class="notranslate"><code class="notranslate">Analyzing D:\skydrive\flutter\utf8err\example... No issues found! Ran in 8.0s </code></pre></div> <h2 dir="auto">Flutter Doctor</h2> <p dir="auto">Paste the output of running <code class="notranslate">flutter doctor -v</code> here.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (Channel beta, v0.1.5, on Microsoft Windows [Version 10.0.16299.309], locale zh-CN) • Flutter version 0.1.5 at C:\flutter • Framework revision 3ea4d06340 (4 weeks ago), 2018-02-22 11:12:39 -0800 • Engine revision ead227f118 • Dart version 2.0.0-dev.28.0.flutter-0b4f01f759 [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at C:\AndroidSDK • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • ANDROID_HOME = C:\AndroidSDK • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] Android Studio (version 3.0) • Android Studio at C:\Program Files\Android\Android Studio • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [!] IntelliJ IDEA Ultimate Edition (version 2017.2) X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.io/intellij-setup/#installing-the-plugins [√] VS Code (version 1.21.1) • VS Code at C:\Program Files\Microsoft VS Code • Dart Code extension version 2.10.0 [√] Connected devices (1 available) • EVA CL00 • GXK0216410000254 • android-arm64 • Android 7.0 (API 24) ! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[√] Flutter (Channel beta, v0.1.5, on Microsoft Windows [Version 10.0.16299.309], locale zh-CN) • Flutter version 0.1.5 at C:\flutter • Framework revision 3ea4d06340 (4 weeks ago), 2018-02-22 11:12:39 -0800 • Engine revision ead227f118 • Dart version 2.0.0-dev.28.0.flutter-0b4f01f759 [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at C:\AndroidSDK • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • ANDROID_HOME = C:\AndroidSDK • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] Android Studio (version 3.0) • Android Studio at C:\Program Files\Android\Android Studio • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [!] IntelliJ IDEA Ultimate Edition (version 2017.2) X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.io/intellij-setup/#installing-the-plugins [√] VS Code (version 1.21.1) • VS Code at C:\Program Files\Microsoft VS Code • Dart Code extension version 2.10.0 [√] Connected devices (1 available) • EVA CL00 • GXK0216410000254 • android-arm64 • Android 7.0 (API 24) ! Doctor found issues in 1 category. </code></pre></div> <blockquote> <p dir="auto">For more information about diagnosing and reporting Flutter bugs, please see <a href="https://flutter.io/bug-reports/" rel="nofollow">https://flutter.io/bug-reports/</a>.</p> </blockquote>
<h2 dir="auto">Steps to Reproduce</h2> <ul dir="auto"> <li>Create a Material scaffold flutter app that <strong>does not</strong> use push.</li> <li>Make sure <code class="notranslate">aps-environment</code> is not set.</li> <li>And that the App ID settings on the Developer portal do not have Push enabled.</li> <li>Build for iOS</li> <li>Submit a build to Apple TestFlight.</li> <li>You'll get an email warning you that you haven't set your <code class="notranslate">aps-environment</code> entitlement.</li> <li>It's not going to get the app rejected, but it's annoying.</li> </ul> <p dir="auto">Is there a dependency in Flutter that is causing this? We can't find a trace of APNS usage in our app. Thanks!</p> <p dir="auto">Tobin</p>
0
<p dir="auto">Currently there are <code class="notranslate">MuiCardHeader</code> and <code class="notranslate">MuiCardContent</code> stylesheets available for overrides, there is not <code class="notranslate">MuiCard</code> though. I need to globally override Card top and bottom margins.</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> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { createMuiTheme } from 'material-ui/styles'; const defaultTheme = createMuiTheme(); export const createTheme = () =&gt; { return createMuiTheme({ overrides: { MuiCard { root: { marginTop: 2 * defaultTheme.spacing.unit, marginBottom: 2 * defaultTheme.spacing.unit, }, }, }, }); };"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">createMuiTheme</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'material-ui/styles'</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">defaultTheme</span> <span class="pl-c1">=</span> <span class="pl-en">createMuiTheme</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-en">createTheme</span> <span class="pl-c1">=</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-k">return</span> <span class="pl-en">createMuiTheme</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">overrides</span>: <span class="pl-kos">{</span> <span class="pl-v">MuiCard</span> <span class="pl-kos">{</span> <span class="pl-c1">root</span>: <span class="pl-kos">{</span> <span class="pl-c1">marginTop</span>: <span class="pl-c1">2</span> <span class="pl-c1">*</span> <span class="pl-s1">defaultTheme</span><span class="pl-kos">.</span><span class="pl-c1">spacing</span><span class="pl-kos">.</span><span class="pl-c1">unit</span><span class="pl-kos">,</span> <span class="pl-c1">marginBottom</span>: <span class="pl-c1">2</span> <span class="pl-c1">*</span> <span class="pl-s1">defaultTheme</span><span class="pl-kos">.</span><span class="pl-c1">spacing</span><span class="pl-kos">.</span><span class="pl-c1">unit</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-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></pre></div> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Currently, this is how I have to do it.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { createMuiTheme } from 'material-ui/styles'; const defaultTheme = createMuiTheme(); export const createTheme = () =&gt; { return createMuiTheme({ overrides: { MuiCardHeader: { root: { marginTop: 2 * defaultTheme.spacing.unit, }, }, MuiCardContent: { root: { marginBottom: 2 * defaultTheme.spacing.unit, }, }, }, }); };"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">createMuiTheme</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'material-ui/styles'</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">defaultTheme</span> <span class="pl-c1">=</span> <span class="pl-en">createMuiTheme</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-en">createTheme</span> <span class="pl-c1">=</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-k">return</span> <span class="pl-en">createMuiTheme</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">overrides</span>: <span class="pl-kos">{</span> <span class="pl-c1">MuiCardHeader</span>: <span class="pl-kos">{</span> <span class="pl-c1">root</span>: <span class="pl-kos">{</span> <span class="pl-c1">marginTop</span>: <span class="pl-c1">2</span> <span class="pl-c1">*</span> <span class="pl-s1">defaultTheme</span><span class="pl-kos">.</span><span class="pl-c1">spacing</span><span class="pl-kos">.</span><span class="pl-c1">unit</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">MuiCardContent</span>: <span class="pl-kos">{</span> <span class="pl-c1">root</span>: <span class="pl-kos">{</span> <span class="pl-c1">marginBottom</span>: <span class="pl-c1">2</span> <span class="pl-c1">*</span> <span class="pl-s1">defaultTheme</span><span class="pl-kos">.</span><span class="pl-c1">spacing</span><span class="pl-kos">.</span><span class="pl-c1">unit</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-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></pre></div> <p dir="auto">Btw, pls notice that I use <code class="notranslate">createMuiTheme</code> twice, 1st is to get <code class="notranslate">defaultTheme.spacing.unit</code> to keep everything DRY. Is there any way to get theme defaults without line <code class="notranslate">const defaultTheme = createMuiTheme()</code>? If this is not possible and you think this could be added potentially, I could create a separate issue for this.</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.31</td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>any</td> </tr> </tbody> </table>
<h2 dir="auto">FontIcon inside an IconButton loose is color from props</h2> <p dir="auto">In material-ui.alpha.1 when you put a FontIcon with color props inside an IconButton the prop will not work.<br> I think is related to this commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/mui/material-ui/commit/a99451a4d6d7f20457cdbd16ea5668080eb72bbf/hovercard" href="https://github.com/mui/material-ui/commit/a99451a4d6d7f20457cdbd16ea5668080eb72bbf"><tt>a99451a</tt></a></p> <p dir="auto">Before styles was merged like that:<br> <code class="notranslate">this.mergeStyles({styles.root, style, { color: this.state.hovered ? onColor : offColor })</code></p> <p dir="auto">And now it is:<br> <code class="notranslate">Object.assign({styles.root, style})</code></p> <h2 dir="auto">Versions</h2> <ul dir="auto"> <li>Material-UI: v0.15.0-alpha.1</li> <li>React: 0.14.7</li> <li>Browser: chrome 48.0.2564.116</li> </ul>
0
<p dir="auto">% RUST_BACKTRACE=1 rustc z.rs<br> z.rs:32:23: 32:27 error: internal compiler error: this path should not cause illegal move<br> z.rs:32 let xs = unsafe { *x.s };<br> ^~~~<br> note: the compiler unexpectedly panicked. this is a bug.<br> note: we would appreciate a bug report: <a href="http://doc.rust-lang.org/complement-bugreport.html" rel="nofollow">http://doc.rust-lang.org/complement-bugreport.html</a><br> note: run with <code class="notranslate">RUST_BACKTRACE=1</code> for a backtrace<br> thread 'rustc' panicked at 'Box', /Users/swizard/distr/rust/src/libsyntax/diagnostic.rs:129</p> <p dir="auto">stack backtrace:<br> 1: 0x109ab2287 - sys::backtrace::write::h2b97e0c0d0aa5194lOu<br> 2: 0x109ad85f2 - failure::on_fail::h32ddd7e1e3390facx5B<br> 3: 0x109a33b88 - rt::unwind::begin_unwind_inner::hb37dbcf6d204588dZMB<br> 4: 0x1091a094f - rt::unwind::begin_unwind::h8510903163256875893<br> 5: 0x1091a08fc - diagnostic::SpanHandler::span_bug::hfcb4ef83c0f1c5bdUNE<br> 6: 0x10691b76d - session::Session::span_bug::hb8a1a20581917af1F2p<br> 7: 0x106895a2d - borrowck::build_borrowck_dataflow_data::h06a69dcffbac8f96gVe<br> 8: 0x106890f48 - borrowck::borrowck_fn::h7e0284b073f72b9eDSe<br> 9: 0x106891ef5 - borrowck::borrowck_item::hdde643940f987691BRe<br> 10: 0x1068925df - borrowck::check_crate::hbd8fcf67d63856aetMe<br> 11: 0x105fe9718 - driver::phase_3_run_analysis_passes::h96113b6369fd2034pGa<br> 12: 0x105fcd5a7 - driver::compile_input::hd95a9a5f39416926Cba<br> 13: 0x1060a0e3e - run_compiler::hae062a80d6febfab2ac<br> 14: 0x10609de2f - thunk::F.Invoke&lt;A, R&gt;::invoke::h7970639354112803481<br> 15: 0x10609cac0 - rt::unwind::try::try_fn::h3125464406127530110<br> 16: 0x109b51ce9 - rust_try_inner<br> 17: 0x109b51cd6 - rust_try<br> 18: 0x10609d180 - thunk::F.Invoke&lt;A, R&gt;::invoke::h13905946553486041138<br> 19: 0x109ac2bf3 - sys:<g-emoji class="g-emoji" alias="thread" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f9f5.png">🧵</g-emoji>:thread_start::h8b9ffeb7ea0667f4xVx<br> 20: 0x7fff87bec268 - _pthread_body<br> 21: 0x7fff87bec1e5 - _pthread_body</p> <p dir="auto">% rustc --version --verbose<br> rustc 1.0.0-dev (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/7858cb432d3f2efc0374424cb2b51518f697c172/hovercard" href="https://github.com/rust-lang/rust/commit/7858cb432d3f2efc0374424cb2b51518f697c172"><tt>7858cb4</tt></a> 2015-02-03 03:44:05 +0000)<br> binary: rustc<br> commit-hash: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/7858cb432d3f2efc0374424cb2b51518f697c172/hovercard" href="https://github.com/rust-lang/rust/commit/7858cb432d3f2efc0374424cb2b51518f697c172"><tt>7858cb4</tt></a><br> commit-date: 2015-02-03 03:44:05 +0000<br> host: x86_64-apple-darwin<br> release: 1.0.0-dev</p> <p dir="auto">% uname -a<br> Darwin pair 14.1.0 Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64 x86_64</p> <p dir="auto">% cat z.rs</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#![feature(libc,core,std_misc)] extern crate libc; use libc::{size_t, c_void}; use std::{mem}; extern { fn malloc(size: size_t) -&gt; *mut c_void; } #[repr(C)] #[derive(Debug)] #[allow(raw_pointer_derive)] struct S_ { ext_value: *mut c_void, } #[derive(Debug)] #[allow(raw_pointer_derive)] pub struct S { s: *mut S_, } impl S { fn new() -&gt; S { let obj = unsafe { malloc(mem::size_of::&lt;S_&gt;() as size_t) as *mut S_ }; S { s: obj } } } fn main() { let x = S::new(); let xs = unsafe { *x.s }; println!(&quot;x = {:?}, x.s = {:?}&quot;, x, xs); }"><pre class="notranslate"><span class="pl-c1">#!<span class="pl-kos">[</span>feature<span class="pl-kos">(</span>libc<span class="pl-kos">,</span>core<span class="pl-kos">,</span>std_misc<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">extern</span> <span class="pl-k">crate</span> libc<span class="pl-kos">;</span> <span class="pl-k">use</span> libc<span class="pl-kos">::</span><span class="pl-kos">{</span>size_t<span class="pl-kos">,</span> c_void<span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">use</span> std<span class="pl-kos">::</span><span class="pl-kos">{</span>mem<span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">extern</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">malloc</span><span class="pl-kos">(</span><span class="pl-s1">size</span><span class="pl-kos">:</span> <span class="pl-smi">size_t</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">c_void</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c1">#<span class="pl-kos">[</span>repr<span class="pl-kos">(</span><span class="pl-v">C</span><span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-c1">#<span class="pl-kos">[</span>derive<span class="pl-kos">(</span><span class="pl-v">Debug</span><span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-c1">#<span class="pl-kos">[</span>allow<span class="pl-kos">(</span>raw_pointer_derive<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">struct</span> <span class="pl-smi">S_</span> <span class="pl-kos">{</span> <span class="pl-c1">ext_value</span><span class="pl-kos">:</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">c_void</span><span class="pl-kos">,</span> <span class="pl-kos">}</span> <span class="pl-c1">#<span class="pl-kos">[</span>derive<span class="pl-kos">(</span><span class="pl-v">Debug</span><span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-c1">#<span class="pl-kos">[</span>allow<span class="pl-kos">(</span>raw_pointer_derive<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">pub</span> <span class="pl-k">struct</span> <span class="pl-smi">S</span> <span class="pl-kos">{</span> <span class="pl-c1">s</span><span class="pl-kos">:</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">S_</span><span class="pl-kos">,</span> <span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">S</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">S</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> obj = <span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-en">malloc</span><span class="pl-kos">(</span>mem<span class="pl-kos">::</span><span class="pl-en">size_of</span><span class="pl-kos">::</span><span class="pl-kos">&lt;</span><span class="pl-smi">S_</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">size_t</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">S_</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-smi">S</span> <span class="pl-kos">{</span> <span class="pl-c1">s</span><span class="pl-kos">:</span> obj <span class="pl-kos">}</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> x = <span class="pl-smi">S</span><span class="pl-kos">::</span><span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">let</span> xs = <span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-c1">*</span>x<span class="pl-kos">.</span><span class="pl-c1">s</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">"x = {:?}, x.s = {:?}"</span>, x, xs<span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto">Input:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="struct T(u8); fn t() -&gt; *mut T { unsafe { 0u8 as *mut T } } fn main() { let a = unsafe { *t() }; }"><pre class="notranslate"><span class="pl-k">struct</span> <span class="pl-smi">T</span><span class="pl-kos">(</span><span class="pl-smi">u8</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">fn</span> <span class="pl-en">t</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</span> <span class="pl-kos">{</span> <span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-c1">0u8</span> <span class="pl-k">as</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</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> a = <span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-c1">*</span><span class="pl-en">t</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> <p dir="auto">Output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc ../test.rs ../test.rs:9:19: 9:23 error: internal compiler error: this path should not cause illegal move ../test.rs:9 let a = unsafe { *t() }; ^~~~ 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;', /Users/John/Documents/dev/rust/src/libsyntax/diagnostic.rs:123 stack backtrace: 1: 0x10f825b75 - sys::backtrace::write::h757d4037fec4513elCt 2: 0x10f84800f - failure::on_fail::he99e1d2cd81a67a80Hz 3: 0x10f7b3c8a - rt::unwind::begin_unwind_inner::hede15ebc165353e0Qpz 4: 0x10d508707 - rt::unwind::begin_unwind::h5150449308391082809 5: 0x10d50869c - diagnostic::SpanHandler::span_bug::h1cc7aa850b4525b9nQF 6: 0x10c93bc1d - session::Session::span_bug::h9dff6f0c981e0b95mRq 7: 0x10c547999 - borrowck::build_borrowck_dataflow_data::hbfab9f3785e58ec8QRe 8: 0x10c5432fb - borrowck::borrowck_fn::h9d4d5a57ec1e26a2cPe 9: 0x10c5440f2 - borrowck::borrowck_item::hd3de64f0b51b624a9Ne 10: 0x10c54461f - borrowck::check_crate::hab49ad1d67fb67e9ZIe 11: 0x10c09e8aa - driver::phase_3_run_analysis_passes::h3bf5eb3f470c8788gwa 12: 0x10c082d90 - driver::compile_input::h63293298907e332cxba 13: 0x10c14e7ba - monitor::unboxed_closure.22558 14: 0x10c14cf15 - thunk::F.Invoke&lt;A, R&gt;::invoke::h15985566512806182469 15: 0x10c14bcf0 - rt::unwind::try::try_fn::h5957420952141477940 16: 0x10f8b1189 - rust_try_inner 17: 0x10f8b1176 - rust_try 18: 0x10c14c3ec - thunk::F.Invoke&lt;A, R&gt;::invoke::h12578415658120090831 19: 0x10f835814 - sys::thread::thread_start::he6c5dcba45c95bf2drw 20: 0x7fff933e22fc - _pthread_body 21: 0x7fff933e2279 - _pthread_body"><pre class="notranslate"><code class="notranslate">$ rustc ../test.rs ../test.rs:9:19: 9:23 error: internal compiler error: this path should not cause illegal move ../test.rs:9 let a = unsafe { *t() }; ^~~~ 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;', /Users/John/Documents/dev/rust/src/libsyntax/diagnostic.rs:123 stack backtrace: 1: 0x10f825b75 - sys::backtrace::write::h757d4037fec4513elCt 2: 0x10f84800f - failure::on_fail::he99e1d2cd81a67a80Hz 3: 0x10f7b3c8a - rt::unwind::begin_unwind_inner::hede15ebc165353e0Qpz 4: 0x10d508707 - rt::unwind::begin_unwind::h5150449308391082809 5: 0x10d50869c - diagnostic::SpanHandler::span_bug::h1cc7aa850b4525b9nQF 6: 0x10c93bc1d - session::Session::span_bug::h9dff6f0c981e0b95mRq 7: 0x10c547999 - borrowck::build_borrowck_dataflow_data::hbfab9f3785e58ec8QRe 8: 0x10c5432fb - borrowck::borrowck_fn::h9d4d5a57ec1e26a2cPe 9: 0x10c5440f2 - borrowck::borrowck_item::hd3de64f0b51b624a9Ne 10: 0x10c54461f - borrowck::check_crate::hab49ad1d67fb67e9ZIe 11: 0x10c09e8aa - driver::phase_3_run_analysis_passes::h3bf5eb3f470c8788gwa 12: 0x10c082d90 - driver::compile_input::h63293298907e332cxba 13: 0x10c14e7ba - monitor::unboxed_closure.22558 14: 0x10c14cf15 - thunk::F.Invoke&lt;A, R&gt;::invoke::h15985566512806182469 15: 0x10c14bcf0 - rt::unwind::try::try_fn::h5957420952141477940 16: 0x10f8b1189 - rust_try_inner 17: 0x10f8b1176 - rust_try 18: 0x10c14c3ec - thunk::F.Invoke&lt;A, R&gt;::invoke::h12578415658120090831 19: 0x10f835814 - sys::thread::thread_start::he6c5dcba45c95bf2drw 20: 0x7fff933e22fc - _pthread_body 21: 0x7fff933e2279 - _pthread_body </code></pre></div>
1
<p dir="auto">Summary.<br> Python 3.7.0b3 has a new warning:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".../python3.7/site-packages/requests/models.py:177: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if isinstance(hook, collections.Callable):"><pre lang="text" class="notranslate"><code class="notranslate">.../python3.7/site-packages/requests/models.py:177: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if isinstance(hook, collections.Callable): </code></pre></div> <h2 dir="auto">Expected Result</h2> <p dir="auto">Need to change this line (and other references) to <code class="notranslate">if isinstance(hook, collections.abc.Callable):</code></p> <p dir="auto">What you expected.</p> <h2 dir="auto">Actual Result</h2> <p dir="auto">What happened instead.</p> <h2 dir="auto">Reproduction Steps</h2> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span></pre></div> <h2 dir="auto">System Information</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -m requests.help"><pre class="notranslate"><code class="notranslate">$ python -m requests.help </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;chardet&quot;: { &quot;version&quot;: &quot;3.0.4&quot; }, &quot;cryptography&quot;: { &quot;version&quot;: &quot;&quot; }, &quot;idna&quot;: { &quot;version&quot;: &quot;2.6&quot; }, &quot;implementation&quot;: { &quot;name&quot;: &quot;CPython&quot;, &quot;version&quot;: &quot;3.7.0b3&quot; }, &quot;platform&quot;: { &quot;release&quot;: &quot;16.7.0&quot;, &quot;system&quot;: &quot;Darwin&quot; }, &quot;pyOpenSSL&quot;: { &quot;openssl_version&quot;: &quot;&quot;, &quot;version&quot;: null }, &quot;requests&quot;: { &quot;version&quot;: &quot;2.18.4&quot; }, &quot;system_ssl&quot;: { &quot;version&quot;: &quot;1010007f&quot; }, &quot;urllib3&quot;: { &quot;version&quot;: &quot;1.22&quot; }, &quot;using_pyopenssl&quot;: false } "><pre class="notranslate"><code class="notranslate">{ "chardet": { "version": "3.0.4" }, "cryptography": { "version": "" }, "idna": { "version": "2.6" }, "implementation": { "name": "CPython", "version": "3.7.0b3" }, "platform": { "release": "16.7.0", "system": "Darwin" }, "pyOpenSSL": { "openssl_version": "", "version": null }, "requests": { "version": "2.18.4" }, "system_ssl": { "version": "1010007f" }, "urllib3": { "version": "1.22" }, "using_pyopenssl": false } </code></pre></div> <p dir="auto">This command is only available on Requests v2.16.4 and greater. Otherwise,<br> please provide some basic information about your system (Python version,<br> operating system, &amp;c).</p>
<p dir="auto">~/requests/models.py:170: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working<br> if isinstance(hook, collections.Callable):</p> <p dir="auto">I created a venv in Python 3.7 and got the warning when using pip.</p>
1
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 4.0.1</li> <li>Platform: Linux-4.15.0-132-generic-x86_64-with-glibc2.10</li> <li>Python version: 3.8.5</li> <li>PyTorch version (GPU?): 1.7.1+cu110 (True)</li> <li>Tensorflow version (GPU?): not installed (NA)</li> <li>Using GPU in script?: </li> <li>Using distributed or parallel set-up in script?: no</li> </ul> <p dir="auto">Note also: cookiecutter dependency is not included in pip install transformers so transformers-cli env initially fails</p> <h3 dir="auto">Who can help</h3> <p dir="auto">(T5) <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/patrickvonplaten/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/patrickvonplaten">@patrickvonplaten</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/patil-suraj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/patil-suraj">@patil-suraj</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sshleifer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sshleifer">@sshleifer</a></p> <p dir="auto">When using <code class="notranslate">T5ForConditionalGeneration.from_pretrained('t5-base')</code>, I get the following warning at load:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Some weights of the model checkpoint at t5-large were not used when initializing T5ForConditionalGeneration: ['decoder.block.0.layer.1.EncDecAttention.relative_attention_bias.weight'] - This IS expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining m odel). - This IS NOT expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification mode l). "><pre class="notranslate"><code class="notranslate">Some weights of the model checkpoint at t5-large were not used when initializing T5ForConditionalGeneration: ['decoder.block.0.layer.1.EncDecAttention.relative_attention_bias.weight'] - This IS expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining m odel). - This IS NOT expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification mode l). </code></pre></div> <p dir="auto">If I load from a checkpoint that I create (i.e. local file), I get the same message.</p> <p dir="auto">But I think that all weights are, in fact, identical:</p> <ul dir="auto"> <li>evaluation code on the model I finetune before saving AND</li> <li>evaluation code on the model I finetune, save, and then reload<br> are identical.</li> </ul> <p dir="auto">This suggests that <em>all</em> weights are identical, since performance is identical. This contradicts the warning message.</p> <p dir="auto">Questions:</p> <ol dir="auto"> <li>Are some weights actually not being loaded? If so, how could I observe identical behavior on metrics. Or is this warning wrong?</li> <li>If this warning is correct, how can I force the model to fully load the model exactly as I saved it.</li> <li>Is there any other difference (randomly initialized head, randomly initialized weights) between the t5 that is pretrained and the T5ForConditionalGeneration?</li> </ol>
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 4.0.0</li> <li>Platform: Linux 18.04</li> <li>Python version: 3.6.9</li> <li>PyTorch version (GPU?): 1.70 (True)</li> <li>Tensorflow version (GPU?): N/A</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/patrickvonplaten/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/patrickvonplaten">@patrickvonplaten</a></p> <h2 dir="auto">Information</h2> <p dir="auto">Model I am using: T5ForConditionalGeneration, specifically the "allenai/unifiedqa-t5-large" checkpoint from the model hub</p> <p dir="auto">The problem arises when I try to load the checkpoint following standard loading procedures under <code class="notranslate">transformers==4.0.0</code>. The same doesn't happen in version <code class="notranslate">3.5.0</code>.</p> <h2 dir="auto">To reproduce</h2> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from transformers import AutoTokenizer, T5ForConditionalGeneration model_name_or_path = &quot;allenai/unifiedqa-t5-large&quot; tokenizer = AutoTokenizer.from_pretrained(model_name_or_path) # Warnings in version 4.0, not in 3.5.0 an preceding ones model = T5ForConditionalGeneration.from_pretrained(model_name_or_path)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">transformers</span> <span class="pl-k">import</span> <span class="pl-v">AutoTokenizer</span>, <span class="pl-v">T5ForConditionalGeneration</span> <span class="pl-s1">model_name_or_path</span> <span class="pl-c1">=</span> <span class="pl-s">"allenai/unifiedqa-t5-large"</span> <span class="pl-s1">tokenizer</span> <span class="pl-c1">=</span> <span class="pl-v">AutoTokenizer</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s1">model_name_or_path</span>) <span class="pl-c"># Warnings in version 4.0, not in 3.5.0 an preceding ones</span> <span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-v">T5ForConditionalGeneration</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s1">model_name_or_path</span>)</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Some weights of the model checkpoint at allenai/unifiedqa-t5-large were not used when initializing T5ForConditionalGeneration: ['decoder.blo ck.0.layer.1.EncDecAttention.relative_attention_bias.weight'] - This IS expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model). - This IS NOT expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model that you expect to be exactly ident ical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model)."><pre class="notranslate"><code class="notranslate">Some weights of the model checkpoint at allenai/unifiedqa-t5-large were not used when initializing T5ForConditionalGeneration: ['decoder.blo ck.0.layer.1.EncDecAttention.relative_attention_bias.weight'] - This IS expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model). - This IS NOT expected if you are initializing T5ForConditionalGeneration from the checkpoint of a model that you expect to be exactly ident ical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model). </code></pre></div> <h2 dir="auto">Expected behavior</h2> <p dir="auto">A consistent behavior across versions, either always or never raising the warning at loading time.</p>
1
<p dir="auto">Using commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/7fbbfe6bf29b984275c9bc59754e8ec053838781/hovercard" href="https://github.com/rust-lang/rust/commit/7fbbfe6bf29b984275c9bc59754e8ec053838781"><tt>7fbbfe6</tt></a> I am experiencing this failure during <code class="notranslate">make check</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="metrics saved to: tmp/check-stage2-T-x86_64-unknown-linux-gnu-H-x86_64-unknown-linux-gnu-std-metrics.json failures: ---- io::process::tests::test_override_env::green stdout ---- task 'io::process::tests::test_override_env::green' failed at 'called `Result::unwrap()` on an `Err` value: no such file or directory (no such file or directory)', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libcore/result.rs:808 ---- io::process::tests::test_override_env::native stdout ---- task 'io::process::tests::test_override_env::native' failed at 'receiving on a closed channel', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libsync/comm/mod.rs:837 failures: io::process::tests::test_override_env::green io::process::tests::test_override_env::native test result: FAILED. 833 passed; 2 failed; 63 ignored; 0 measured task '&lt;main&gt;' failed at 'Some tests failed', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libtest/lib.rs:243 make: *** [tmp/check-stage2-T-x86_64-unknown-linux-gnu-H-x86_64-unknown-linux-gnu-std.ok] Error 101"><pre class="notranslate"><code class="notranslate">metrics saved to: tmp/check-stage2-T-x86_64-unknown-linux-gnu-H-x86_64-unknown-linux-gnu-std-metrics.json failures: ---- io::process::tests::test_override_env::green stdout ---- task 'io::process::tests::test_override_env::green' failed at 'called `Result::unwrap()` on an `Err` value: no such file or directory (no such file or directory)', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libcore/result.rs:808 ---- io::process::tests::test_override_env::native stdout ---- task 'io::process::tests::test_override_env::native' failed at 'receiving on a closed channel', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libsync/comm/mod.rs:837 failures: io::process::tests::test_override_env::green io::process::tests::test_override_env::native test result: FAILED. 833 passed; 2 failed; 63 ignored; 0 measured task '&lt;main&gt;' failed at 'Some tests failed', /tmp/nix-build-rustc-0.12.0-pre-7fbbfe6bf.drv-0/git-export/src/libtest/lib.rs:243 make: *** [tmp/check-stage2-T-x86_64-unknown-linux-gnu-H-x86_64-unknown-linux-gnu-std.ok] Error 101 </code></pre></div> <p dir="auto">Initially I thought it was because my OS (NixOS) did not install <code class="notranslate">env</code> in /usr/bin (in fact, /usr doesn't even exist, but env is in the PATH), but even then, that does not explain why other env tests succeed (such as test_add_to_env, which is almost exactly the same code as test_override_env).</p> <p dir="auto">However, if I copy/paste the code from the test into a new program and run it, it seems to work fine.</p> <p dir="auto">Furthermore, this exact <code class="notranslate">make check</code> failure seems to be repeatable, even after updating to a newer commit and compiling everything from scratch.</p> <p dir="auto">This seems quite mysterious to me... any ideas as to what the problem might be?</p>
<p dir="auto">It seems that <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="53628346" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/20692" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/20692/hovercard" href="https://github.com/rust-lang/rust/issues/20692">#20692</a> is not only a case for duplicate error messages as shown by</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fn main() { let array = [1, 2, 3]; for a in array { println!( &quot;{}&quot;, a); } }"><pre class="notranslate"><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> array = <span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-c1">3</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-k">for</span> a <span class="pl-k">in</span> array <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>, a<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">Which print the error 3 times.</p> <p dir="auto">It is the same as the other case about map </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/rust-lang/rust/blob/7ae4a8e9f3150f62964151ef54b3da3cd24ee123/src/librustc/middle/traits/object_safety.rs#L78-L85">rust/src/librustc/middle/traits/object_safety.rs</a> </p> <p class="mb-0 color-fg-muted"> Lines 78 to 85 in <a data-pjax="true" class="commit-tease-sha" href="/rust-lang/rust/commit/7ae4a8e9f3150f62964151ef54b3da3cd24ee123">7ae4a8e</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="L78" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="78"></td> <td id="LC78" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">object_safety_violations</span><span class="pl-kos">&lt;</span><span class="pl-c1">'</span><span class="pl-ent">tcx</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">tcx</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span>ty<span class="pl-kos">::</span><span class="pl-smi">ctxt</span><span class="pl-kos">&lt;</span><span class="pl-c1">'</span><span class="pl-ent">tcx</span><span class="pl-kos">&gt;</span><span class="pl-kos">,</span> </td> </tr> <tr class="border-0"> <td id="L79" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="79"></td> <td id="LC79" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">trait_def_id</span><span class="pl-kos">:</span> ast<span class="pl-kos">::</span><span class="pl-smi">DefId</span><span class="pl-kos">)</span> </td> </tr> <tr class="border-0"> <td id="L80" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="80"></td> <td id="LC80" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> -&gt; <span class="pl-smi">Vec</span><span class="pl-kos">&lt;</span><span class="pl-smi">ObjectSafetyViolation</span><span class="pl-kos">&lt;</span><span class="pl-c1">'</span><span class="pl-ent">tcx</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span> </td> </tr> <tr class="border-0"> <td id="L81" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="81"></td> <td id="LC81" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-kos">{</span> </td> </tr> <tr class="border-0"> <td id="L82" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="82"></td> <td id="LC82" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> traits<span class="pl-kos">::</span><span class="pl-en">supertrait_def_ids</span><span class="pl-kos">(</span>tcx<span class="pl-kos">,</span> trait_def_id<span class="pl-kos">)</span> </td> </tr> <tr class="border-0"> <td id="L83" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="83"></td> <td id="LC83" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-kos">.</span><span class="pl-en">flat_map</span><span class="pl-kos">(</span>|def_id| <span class="pl-en">object_safety_violations_for_trait</span><span class="pl-kos">(</span>tcx<span class="pl-kos">,</span> def_id<span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">into_iter</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> </td> </tr> <tr class="border-0"> <td id="L84" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="84"></td> <td id="LC84" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-kos">.</span><span class="pl-en">collect</span><span class="pl-kos">(</span><span class="pl-kos">)</span> </td> </tr> <tr class="border-0"> <td id="L85" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="85"></td> <td id="LC85" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-kos">}</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">originally spot at <a href="https://users.rust-lang.org/t/iterator-and-differences-between-array-and-array/2672" rel="nofollow">https://users.rust-lang.org/t/iterator-and-differences-between-array-and-array/2672</a></p> <hr> <p dir="auto">I think implementing <code class="notranslate">distinct</code>so that you can collect only the different items could be a good way to start solving this in the board way (all across scala error reporting).</p>
0
<p dir="auto">I guess this is as designed, but should we somehow improve this experience?<br> Windows.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1926584/12579941/f0de0b08-c42b-11e5-9609-16f45e790013.png"><img src="https://cloud.githubusercontent.com/assets/1926584/12579941/f0de0b08-c42b-11e5-9609-16f45e790013.png" alt="image" style="max-width: 100%;"></a></p>
<ul dir="auto"> <li>VSCode Version:</li> </ul> <p dir="auto">1.1.1</p> <ul dir="auto"> <li>OS Version:</li> </ul> <p dir="auto">Windows 7</p> <p dir="auto">Scenario 1:</p> <p dir="auto">We have git hooks installed (a mix of #!/bin/sh and #!/bin/node). The printout messages from these do not show in the VSCode console, only when running from command line (in this case, CMD)</p> <p dir="auto">Steps</p> <ol dir="auto"> <li>Try to commit something with an improper commit message</li> <li>VSC says the commit failed, offers to show console output for git. Console does not contain output message.</li> </ol> <p dir="auto">Scenario 2:</p> <p dir="auto">We use git pull rebase by default (git config --global pull.rebase true). When Syncing or pulling, VSC will show an error if it didn't succeed. When you show the console output for the error, it does not contain the output message.</p> <p dir="auto">Steps</p> <ol dir="auto"> <li>Try to rebase after all your commits are in</li> <li>VSC says the action failed, offers to show console output for git. Console does not contain rebase output</li> </ol> <p dir="auto">Scenario 3:</p> <p dir="auto">All git console output just randomly stops sometimes (sometimes totally blank) and won't fix until restarting the editor. Dies again shortly after after usually. It may be dying from one of the above scenarios, however.</p> <p dir="auto">Summary:</p> <p dir="auto">In all scenarios, git from the command line produces output just fine.</p>
0
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">When using <code class="notranslate">_app.js</code> page for common stuff (like creating redux store) - these libraries are duplicated between pages.</p> <h2 dir="auto">To Reproduce</h2> <ol dir="auto"> <li>Checkout <a href="https://github.com/cherniavskii/nextjs-app-code-splitting-reproduction">https://github.com/cherniavskii/nextjs-app-code-splitting-reproduction</a> locally</li> <li>Run <code class="notranslate">npm install</code></li> <li>Run <code class="notranslate">npm run analyze</code></li> <li>See bundle analyzer report</li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto"><code class="notranslate">redux</code> and <code class="notranslate">react-redux</code> are bundled once.</p> <h2 dir="auto">Actual behaviour:</h2> <p dir="auto"><code class="notranslate">redux</code> and <code class="notranslate">react-redux</code> are bundled many times - once in <code class="notranslate">_app.js</code> and in every page which is connected with Redux (<code class="notranslate">index.js</code> and <code class="notranslate">home.js</code>)</p> <h2 dir="auto">Screenshots</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13808724/42033681-4af62666-7ae6-11e8-9fac-048a920c5819.png"><img src="https://user-images.githubusercontent.com/13808724/42033681-4af62666-7ae6-11e8-9fac-048a920c5819.png" alt="next-code-splitting" style="max-width: 100%;"></a></p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: Windows</li> <li>Browser (if applies) N/A</li> <li>Version of Next.js: 6.1.0</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">This app contains 6 pages:</p> <ul dir="auto"> <li> <p dir="auto"><code class="notranslate">_app.js</code> - initializes redux store</p> </li> <li> <p dir="auto"><code class="notranslate">index.js</code> - connects with redux store</p> </li> <li> <p dir="auto"><code class="notranslate">home.js</code> - connects with redux store</p> </li> <li> <p dir="auto"><code class="notranslate">about.js</code> - renders single element, doesn't connect with redux</p> </li> <li> <p dir="auto"><code class="notranslate">contacts.js</code> - renders single element, doesn't connect with redux</p> </li> <li> <p dir="auto"><code class="notranslate">offer.js</code> - renders single element, doesn't connect with redux</p> </li> </ul> <p dir="auto">This issue reproduces only when most of pages aren't connected with Redux (that's the way how code splitting works in Next.js).</p> <p dir="auto">But IMHO <code class="notranslate">_app.js</code> bundle should be treated like the "second <code class="notranslate">main</code>" bundle - since every page is wrapped in <code class="notranslate">_app</code> page.<br> There's no sense to duplicate libraries bundled in <code class="notranslate">_app</code>, since <code class="notranslate">_app</code> is always loaded</p>
<p dir="auto">When running next.js on top of Docker with express my app is not hot reloading. It hot reloads without Docker as expected.</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">The app should hot reload.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">The app is not hot reloading, nor does the page reflect changes after I manually refresh the page.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Command:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ docker run -p 3000:3000 betterpt/patientapp-dev-nextjs:latest"><pre class="notranslate"><code class="notranslate">$ docker run -p 3000:3000 betterpt/patientapp-dev-nextjs:latest </code></pre></div> <p dir="auto">Contents of my <code class="notranslate">Dockerfile</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM node:alpine # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY . /usr/src/app RUN npm install EXPOSE 3000 CMD [ &quot;npm&quot;, &quot;run&quot;, &quot;dev&quot; ]"><pre class="notranslate"><code class="notranslate">FROM node:alpine # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY . /usr/src/app RUN npm install EXPOSE 3000 CMD [ "npm", "run", "dev" ] </code></pre></div> <p dir="auto">Contents of my <code class="notranslate">server.js</code> file:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const express = require('express'); const next = require('next'); const webpack = require('webpack'); // const remotedev = require('remotedev-server'); const routes = require('./dist/routes'); const { parse } = require('url'); const minifyJsPlugin = require('babel-minify-webpack-plugin'); const env = process.env.NODE_ENV || 'development'; const app = next({ dev: env === 'development', dir: `${__dirname}/dist`, conf: { webpack: function(config) { return { ...config, externals: { 'mapbox-gl': 'mapboxgl', }, }; }, webpackDevMiddleware: (config) =&gt; { config.watchOptions = { poll: 1000, aggregateTimeout: 300, }; return config } }, }); const handler = routes.getRequestHandler(app); const PORT = 3000; console.log(PORT); app .prepare() .then(() =&gt; { express() .get('*', (req, res, next) =&gt; { if (req.url === '/robots.txt') { return res.sendFile(`${__dirname}/dist/static/robots.txt`); } if (req.url === '/video-sitemap.xml') { return res.sendFile(`${__dirname}/dist/static/video-sitemap.xml`); } if (req.url === '/sitemap.xml') { return res.sendFile(`${__dirname}/dist/static/sitemap.xml`); } next(); }) .use(handler) .listen(PORT); }) .catch(ex =&gt; { console.error(ex.stack); process.exit(1); });"><pre class="notranslate"><code class="notranslate">const express = require('express'); const next = require('next'); const webpack = require('webpack'); // const remotedev = require('remotedev-server'); const routes = require('./dist/routes'); const { parse } = require('url'); const minifyJsPlugin = require('babel-minify-webpack-plugin'); const env = process.env.NODE_ENV || 'development'; const app = next({ dev: env === 'development', dir: `${__dirname}/dist`, conf: { webpack: function(config) { return { ...config, externals: { 'mapbox-gl': 'mapboxgl', }, }; }, webpackDevMiddleware: (config) =&gt; { config.watchOptions = { poll: 1000, aggregateTimeout: 300, }; return config } }, }); const handler = routes.getRequestHandler(app); const PORT = 3000; console.log(PORT); app .prepare() .then(() =&gt; { express() .get('*', (req, res, next) =&gt; { if (req.url === '/robots.txt') { return res.sendFile(`${__dirname}/dist/static/robots.txt`); } if (req.url === '/video-sitemap.xml') { return res.sendFile(`${__dirname}/dist/static/video-sitemap.xml`); } if (req.url === '/sitemap.xml') { return res.sendFile(`${__dirname}/dist/static/sitemap.xml`); } next(); }) .use(handler) .listen(PORT); }) .catch(ex =&gt; { console.error(ex.stack); process.exit(1); }); </code></pre></div> <h2 dir="auto">Context</h2> <p dir="auto">I am unable to run a development environment with Docker.</p> <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.0</td> </tr> <tr> <td>node</td> <td>8.40</td> </tr> <tr> <td>OS</td> <td>macOS High Sierra</td> </tr> <tr> <td>browser</td> <td>Chrome</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
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 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"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li> <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" checked=""> 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" checked=""> 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" checked=""> 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"> I have tried reproducing the issue with autoscaling, retries,<br> ETA/Countdown &amp; rate limits disabled.</li> <li>[ x ] 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="501265323" data-permission-text="Title is private" data-url="https://github.com/celery/kombu/issues/1102" data-hovercard-type="issue" data-hovercard-url="/celery/kombu/issues/1102/hovercard" href="https://github.com/celery/kombu/issues/1102">celery/kombu#1102</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="501265323" data-permission-text="Title is private" data-url="https://github.com/celery/kombu/issues/1102" data-hovercard-type="issue" data-hovercard-url="/celery/kombu/issues/1102/hovercard" href="https://github.com/celery/kombu/issues/1102">celery/kombu#1102</a></li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> <p dir="auto"><strong>Celery version</strong>:<br> 5.0.0rc3 (singularity)</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="[ec2-user@ip-172-31-50-49 ~]$ celery -A celery_worker report software -&gt; celery:5.0.0rc3 (singularity) kombu:5.0.2 py:3.7.9 billiard:3.6.3.0 sqs:N/A platform -&gt; system:Linux arch:64bit, ELF kernel version:4.14.193-149.317.amzn2.x86_64 imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:sqs results:disabled broker_url: 'sqs://localhost//'"><pre class="notranslate"><code class="notranslate">[ec2-user@ip-172-31-50-49 ~]$ celery -A celery_worker report software -&gt; celery:5.0.0rc3 (singularity) kombu:5.0.2 py:3.7.9 billiard:3.6.3.0 sqs:N/A platform -&gt; system:Linux arch:64bit, ELF kernel version:4.14.193-149.317.amzn2.x86_64 imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:sqs results:disabled broker_url: 'sqs://localhost//' </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>: N/A or Unknown</li> <li><strong>Minimal Celery Version</strong>: 4.4.3</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>: N/A or Unknown</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><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="amqp==5.0.1 awscli==1.18.139 backcall==0.2.0 billiard==3.6.3.0 boto3==1.14.62 botocore==1.17.62 celery==5.0.0rc3 click==7.1.2 click-didyoumean==0.0.3 click-repl==0.1.6 colorama==0.4.3 decorator==4.4.2 docutils==0.15.2 importlib-metadata==1.7.0 ipython==7.18.1 ipython-genutils==0.2.0 jedi==0.17.2 jmespath==0.10.0 kombu==5.0.2 parso==0.7.1 pexpect==4.8.0 pickleshare==0.7.5 prompt-toolkit==3.0.7 ptyprocess==0.6.0 pyasn1==0.4.8 pycurl==7.43.0.6 Pygments==2.7.0 python-dateutil==2.8.1 pytz==2020.1 PyYAML==5.3.1 rsa==4.5 s3transfer==0.3.3 six==1.15.0 traitlets==5.0.4 urllib3==1.25.10 vine==5.0.0 wcwidth==0.2.5 zipp==3.1.0"><pre class="notranslate"><code class="notranslate">amqp==5.0.1 awscli==1.18.139 backcall==0.2.0 billiard==3.6.3.0 boto3==1.14.62 botocore==1.17.62 celery==5.0.0rc3 click==7.1.2 click-didyoumean==0.0.3 click-repl==0.1.6 colorama==0.4.3 decorator==4.4.2 docutils==0.15.2 importlib-metadata==1.7.0 ipython==7.18.1 ipython-genutils==0.2.0 jedi==0.17.2 jmespath==0.10.0 kombu==5.0.2 parso==0.7.1 pexpect==4.8.0 pickleshare==0.7.5 prompt-toolkit==3.0.7 ptyprocess==0.6.0 pyasn1==0.4.8 pycurl==7.43.0.6 Pygments==2.7.0 python-dateutil==2.8.1 pytz==2020.1 PyYAML==5.3.1 rsa==4.5 s3transfer==0.3.3 six==1.15.0 traitlets==5.0.4 urllib3==1.25.10 vine==5.0.0 wcwidth==0.2.5 zipp==3.1.0 </code></pre></div> <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> <details> <p dir="auto"> </p><p dir="auto">Schedule 1000 simple <code class="notranslate">4+4</code> tasks from howto guide, launch worker.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [33]: %time for x in range(1000):add.apply_async(args=(4, 4)) CPU times: user 3.4 s, sys: 61.7 ms, total: 3.46 s Wall time: 12.7 s from celery import Celery app = Celery('tasks', broker='sqs://') @app.task def add(x, y): return x + y"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">33</span>]: <span class="pl-c1">%</span><span class="pl-s1">time</span> <span class="pl-s1">for</span> <span class="pl-s1">x</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">1000</span>):<span class="pl-s1">add</span>.<span class="pl-en">apply_async</span>(<span class="pl-s1">args</span><span class="pl-c1">=</span>(<span class="pl-c1">4</span>, <span class="pl-c1">4</span>)) <span class="pl-v">CPU</span> <span class="pl-s1">times</span>: <span class="pl-s1">user</span> <span class="pl-c1">3.4</span> <span class="pl-s1">s</span>, <span class="pl-s1">sys</span>: <span class="pl-c1">61.7</span> <span class="pl-s1">ms</span>, <span class="pl-s1">total</span>: <span class="pl-c1">3.46</span> <span class="pl-s1">s</span> <span class="pl-v">Wall</span> <span class="pl-s1">time</span>: <span class="pl-c1">12.7</span> <span class="pl-s1">s</span> <span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">'tasks'</span>, <span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">'sqs://'</span>) <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-s1">task</span></span> <span class="pl-k">def</span> <span class="pl-en">add</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>): <span class="pl-k">return</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">y</span></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Expected Behavior</h1> <p dir="auto">Higher throughput with higher CPU utilisation</p> <h1 dir="auto">Actual Behavior</h1> <p dir="auto">Worker processes ~10 messages per second. CPU utilisation is low, looks like celery waits most of the time.<br> Celery and all test code runs was tested on fresh EC2 instance in <code class="notranslate">us-east-1</code>, with SQS in the same region.<br> At the same time following code allows to consume all 1000 messages from queue in ~10 seconds, event without using bulk deletes or any async APIs:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [30]: %time for x in range(1000):add.apply_async(args=(4, 4)) CPU times: user 3.44 s, sys: 80.7 ms, total: 3.52 s Wall time: 12.9 s In [31]: def get_all(): ...: while True: ...: messages = client.receive_message(QueueUrl='https://queue.amazonaws.com/385755224306/celery', MaxNumberOfMessages=10) ...: if 'Messages' not in messages: ...: break ...: for message in messages['Messages']: ...: client.delete_message(QueueUrl='https://queue.amazonaws.com/385755224306/celery', ReceiptHandle=message['ReceiptHandle']) ...: In [35]: %time get_all() CPU times: user 2.9 s, sys: 84.9 ms, total: 2.98 s Wall time: 9.72 s"><pre class="notranslate"><code class="notranslate">In [30]: %time for x in range(1000):add.apply_async(args=(4, 4)) CPU times: user 3.44 s, sys: 80.7 ms, total: 3.52 s Wall time: 12.9 s In [31]: def get_all(): ...: while True: ...: messages = client.receive_message(QueueUrl='https://queue.amazonaws.com/385755224306/celery', MaxNumberOfMessages=10) ...: if 'Messages' not in messages: ...: break ...: for message in messages['Messages']: ...: client.delete_message(QueueUrl='https://queue.amazonaws.com/385755224306/celery', ReceiptHandle=message['ReceiptHandle']) ...: In [35]: %time get_all() CPU times: user 2.9 s, sys: 84.9 ms, total: 2.98 s Wall time: 9.72 s </code></pre></div> <p dir="auto">There are visible delays in celery worker log output, for example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2020-09-16 14:02:14,573: INFO/ForkPoolWorker-1] Task celery_worker.add[88d2fce8-0d0b-49fe-b0a7-2713b8ab6248] succeeded in 4.8579999202047475e-05s: 8 [2020-09-16 14:02:15,489: INFO/MainProcess] Received task: celery_worker.add[76ec9b77-bd42-4042-9933-35554e678506]"><pre class="notranslate"><code class="notranslate">[2020-09-16 14:02:14,573: INFO/ForkPoolWorker-1] Task celery_worker.add[88d2fce8-0d0b-49fe-b0a7-2713b8ab6248] succeeded in 4.8579999202047475e-05s: 8 [2020-09-16 14:02:15,489: INFO/MainProcess] Received task: celery_worker.add[76ec9b77-bd42-4042-9933-35554e678506] </code></pre></div> <p dir="auto">Looks like delay always happens once tasks have finished execution, but before new tasks were received from queue.<br> Tests and timings:</p> <ul dir="auto"> <li>-c1, default prefetch -&gt; 9m30s</li> <li>-c5, default prefetch -&gt; 3m30s</li> <li>-c10, default prefetch -&gt; 1m45s</li> <li>-c20, default prefetch -&gt; 1m44s</li> <li>-c1, prefetch 100 -&gt; 1m45s<br> Looks like celery throughput somehow gets limited by SQS <code class="notranslate">MaxNumberOfMessages=10</code> limitation, despite concurrency or prefetch settings. However, boto3 sample script shows that AWS API allows to consume messages match faster, so there should be some possible optimisation for Celery/Kombu.</li> </ul>
<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 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=""> This has already been asked to the <a href="https://github.com/celery/celery/discussions">discussions forum</a> first.</li> <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" checked=""> 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"> 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"> 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"> 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"> 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>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> <p dir="auto"><strong>Celery version</strong>: 5.2.1 (dawn-chorus)</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="Traceback (most recent call last): File &quot;/tmp/test/venv/bin/celery&quot;, line 8, in &lt;module&gt; sys.exit(main()) File &quot;/tmp/test/venv/lib/python3.9/site-packages/celery/__main__.py&quot;, line 15, in main sys.exit(_main()) File &quot;/tmp/test/venv/lib/python3.9/site-packages/celery/bin/celery.py&quot;, line 213, in main return celery(auto_envvar_prefix=&quot;CELERY&quot;) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1128, in __call__ return self.main(*args, **kwargs) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1053, in main rv = self.invoke(ctx) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1659, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1395, in invoke return ctx.invoke(self.callback, **ctx.params) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 754, in invoke return __callback(*args, **kwargs) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/decorators.py&quot;, line 26, in new_func return f(get_current_context(), *args, **kwargs) TypeError: report() got an unexpected keyword argument 'ini'"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "/tmp/test/venv/bin/celery", line 8, in &lt;module&gt; sys.exit(main()) File "/tmp/test/venv/lib/python3.9/site-packages/celery/__main__.py", line 15, in main sys.exit(_main()) File "/tmp/test/venv/lib/python3.9/site-packages/celery/bin/celery.py", line 213, in main return celery(auto_envvar_prefix="CELERY") File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1128, in __call__ return self.main(*args, **kwargs) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1053, in main rv = self.invoke(ctx) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1659, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1395, in invoke return ctx.invoke(self.callback, **ctx.params) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 754, in invoke return __callback(*args, **kwargs) File "/tmp/test/venv/lib/python3.9/site-packages/click/decorators.py", line 26, in new_func return f(get_current_context(), *args, **kwargs) TypeError: report() got an unexpected keyword argument 'ini' </code></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Steps to Reproduce</h1> <p dir="auto">Define customer user option and run <code class="notranslate">celery -A proj multi start --my-custom-option=foo</code>.</p> <h2 dir="auto">Required Dependencies</h2> <ul dir="auto"> <li><strong>Minimal Python Version</strong>: N/A or Unknown</li> <li><strong>Minimal Celery Version</strong>: N/A or Unknown</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>: N/A or Unknown</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><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> <h3 dir="auto">Other Dependencies</h3> <details> <p dir="auto"> N/A </p> </details> <h2 dir="auto">Minimally Reproducible Test Case</h2> <details> <p dir="auto"> </p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Expected Behavior</h1> <p dir="auto"><code class="notranslate">Celery multi</code> should work with user options like <code class="notranslate">celery worker</code></p> <h1 dir="auto">Actual Behavior</h1> <p dir="auto">Starting an application that has custom options with <code class="notranslate">celery multi start</code> fails.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# celery -A proj multi start worker1 \ --ini=config.ini \ --concurrency=4 -Q celery /tmp/test/venv/lib/python3.9/site-packages/pkg_resources/__init__.py:116: PkgResourcesDeprecationWarning: 1.14.0-unknown is an invalid version and will not be supported in a future release warnings.warn( Traceback (most recent call last): File &quot;/tmp/test/venv/bin/celery&quot;, line 8, in &lt;module&gt; sys.exit(main()) File &quot;/tmp/test/venv/lib/python3.9/site-packages/celery/__main__.py&quot;, line 15, in main sys.exit(_main()) File &quot;/tmp/test/venv/lib/python3.9/site-packages/celery/bin/celery.py&quot;, line 213, in main return celery(auto_envvar_prefix=&quot;CELERY&quot;) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1128, in __call__ return self.main(*args, **kwargs) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1053, in main rv = self.invoke(ctx) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1659, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 1395, in invoke return ctx.invoke(self.callback, **ctx.params) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/core.py&quot;, line 754, in invoke return __callback(*args, **kwargs) File &quot;/tmp/test/venv/lib/python3.9/site-packages/click/decorators.py&quot;, line 26, in new_func return f(get_current_context(), *args, **kwargs) File &quot;/tmp/test/venv/lib/python3.9/site-packages/celery/bin/base.py&quot;, line 134, in caller return f(ctx, *args, **kwargs) TypeError: multi() got an unexpected keyword argument 'ini'"><pre class="notranslate"><code class="notranslate"># celery -A proj multi start worker1 \ --ini=config.ini \ --concurrency=4 -Q celery /tmp/test/venv/lib/python3.9/site-packages/pkg_resources/__init__.py:116: PkgResourcesDeprecationWarning: 1.14.0-unknown is an invalid version and will not be supported in a future release warnings.warn( Traceback (most recent call last): File "/tmp/test/venv/bin/celery", line 8, in &lt;module&gt; sys.exit(main()) File "/tmp/test/venv/lib/python3.9/site-packages/celery/__main__.py", line 15, in main sys.exit(_main()) File "/tmp/test/venv/lib/python3.9/site-packages/celery/bin/celery.py", line 213, in main return celery(auto_envvar_prefix="CELERY") File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1128, in __call__ return self.main(*args, **kwargs) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1053, in main rv = self.invoke(ctx) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1659, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 1395, in invoke return ctx.invoke(self.callback, **ctx.params) File "/tmp/test/venv/lib/python3.9/site-packages/click/core.py", line 754, in invoke return __callback(*args, **kwargs) File "/tmp/test/venv/lib/python3.9/site-packages/click/decorators.py", line 26, in new_func return f(get_current_context(), *args, **kwargs) File "/tmp/test/venv/lib/python3.9/site-packages/celery/bin/base.py", line 134, in caller return f(ctx, *args, **kwargs) TypeError: multi() got an unexpected keyword argument 'ini' </code></pre></div> <p dir="auto">The multi function in <code class="notranslate">celery/celery/bin/multi.py</code> only accepts the <code class="notranslate">ctx</code> parameter, but<br> the <code class="notranslate">handle_preload_options</code> decorator is calling <code class="notranslate">f(ctx, *args, **kwargs)</code>.</p>
0
<p dir="auto">I have a screenshot test using flutter_driver where I'm taking a screenshot of a Widget which contains an Image widget which is created via <code class="notranslate">new Image.asset('myasset.png', key: const Key('a'))</code>. The test code looks like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test('Widget with Image', () async { await driver.waitFor(find.byValueKey('a')); await driver.waitUntilNoTransientCallbacks(); await scuba.diffScreenshot('opportunities'); });"><pre class="notranslate"><code class="notranslate">test('Widget with Image', () async { await driver.waitFor(find.byValueKey('a')); await driver.waitUntilNoTransientCallbacks(); await scuba.diffScreenshot('opportunities'); }); </code></pre></div> <p dir="auto">This takes a screenshot where the Image is in the tree (I can tell because it changes the alignment of the other elements in the Widget), but has not yet been loaded (it's blank). Very occasionally (&lt;5% of the time), the test will take a screenshot where the image is loaded and visible.</p> <p dir="auto">If I add <code class="notranslate">await new Future.delayed(const Duration(seconds: 1));</code>, then the Image is always loaded, but this is likely wasting some amount of time and/or prone to flaking. I think that <code class="notranslate">waitUntilNoTransientCallbacks</code> is probably supposed to be await'ing whatever asset loading is happening in the background; if not, could we expose some other hook that would enable this?</p> <p dir="auto">Thanks!</p>
<p dir="auto">Collecting a screenshot with <code class="notranslate">driver.screenshot()</code> after calling <code class="notranslate">driver.waitUntilNoTransientCallbacks()</code> doesn't guarantee that the current frame's display list will have reached the GPU before the screenshot is taken.</p>
1
<p dir="auto">v1-beta12</p> <p dir="auto">As per title. If you swipe on an element with a button/button base (i.e. a list item with an action on it), the ripple effect fires.</p> <p dir="auto">This isn't usually that bad of a problem, however if you are scrolling through a list of items with actions on mobile it is really jarring and janky.</p> <p dir="auto">As you tap to scroll, the ripple fires on the element you started your tap swipe on.<br> It's misleading for the user (as releasing your finger doesn't actually fire the onclick handler), and it looks plain old janky.</p> <p dir="auto">The solution (i think) would be to wait a few cycles before firing the ripple, and cancelling the ripple if there was pointer movement above a certain threshold.</p>
<p dir="auto">In a case of mine, I am opening a slider onClick and then unmounting it through render logic.</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/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">Should not throw an error to a reference</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Uncaught TypeError: Cannot read property 'getBoundingClientRect' of null(…)getTrackOffset @ Slider.js:594(anonymous function) @ makeAssimilatePrototype.js:15(anonymous function) @ Slider.js:634 "><pre class="notranslate"><code class="notranslate">Uncaught TypeError: Cannot read property 'getBoundingClientRect' of null(…)getTrackOffset @ Slider.js:594(anonymous function) @ makeAssimilatePrototype.js:15(anonymous function) @ Slider.js:634 </code></pre></div> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Throws a reference error on an event after its unmounted</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Basically mount the slider, but then stop rendering it on an if statement.</p> <p dir="auto">There are some events that you have not cleaned up?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if (!this.state.DurationSliderOpen) { this.buttons.push(&lt;CanvasBox name=&quot;Duration&quot; dimensions={this.calc.Presentation.Duration} onClick={() =&gt; { this.setComponentState({DurationSliderOpen: true}); }}&gt; &lt;CanvasText percentSize={.3}&gt; &lt;IconButton style={{paddingTop: 9}}&gt;&lt;Down color={&quot;white&quot;}/&gt;&lt;/IconButton&gt;&lt;span style={{color: &quot;white&quot;}}&gt;Duration: {this.parentState.Room.VideoConference.Duration} minutes&lt;/span&gt; &lt;/CanvasText&gt; &lt;/CanvasBox&gt;); } else { this.buttons.push(&lt;CanvasBox name=&quot;Duration&quot; dimensions={this.calc.Presentation.Duration}&gt; &lt;span&gt;&lt;Slider onChange={(e, v) =&gt; { session_functions.VelocityDump(e,v ) this.setParentState({ Room: { VideoConference: { Duration: v.toString() } } }); }} onDragStop={(e, v) =&gt; { this.setComponentState({ DurationSliderOpen: false, }, () =&gt; { this.setParentState({ Room: { VideoConference: { Duration: this.parentState.Room.VideoConference.Duration.toString() } } }, () =&gt; { window.api.post({action:&quot;RoomSave&quot;, state: this.parentState, leaveStateAlone:true}); }); }); }} min={30} max={240} step={5} value={parseInt(this.parentState.Room.VideoConference.Duration)} style={{widht: 218}}/&gt;&lt;/span&gt; &lt;/CanvasBox&gt;); }"><pre class="notranslate"><code class="notranslate"> if (!this.state.DurationSliderOpen) { this.buttons.push(&lt;CanvasBox name="Duration" dimensions={this.calc.Presentation.Duration} onClick={() =&gt; { this.setComponentState({DurationSliderOpen: true}); }}&gt; &lt;CanvasText percentSize={.3}&gt; &lt;IconButton style={{paddingTop: 9}}&gt;&lt;Down color={"white"}/&gt;&lt;/IconButton&gt;&lt;span style={{color: "white"}}&gt;Duration: {this.parentState.Room.VideoConference.Duration} minutes&lt;/span&gt; &lt;/CanvasText&gt; &lt;/CanvasBox&gt;); } else { this.buttons.push(&lt;CanvasBox name="Duration" dimensions={this.calc.Presentation.Duration}&gt; &lt;span&gt;&lt;Slider onChange={(e, v) =&gt; { session_functions.VelocityDump(e,v ) this.setParentState({ Room: { VideoConference: { Duration: v.toString() } } }); }} onDragStop={(e, v) =&gt; { this.setComponentState({ DurationSliderOpen: false, }, () =&gt; { this.setParentState({ Room: { VideoConference: { Duration: this.parentState.Room.VideoConference.Duration.toString() } } }, () =&gt; { window.api.post({action:"RoomSave", state: this.parentState, leaveStateAlone:true}); }); }); }} min={30} max={240} step={5} value={parseInt(this.parentState.Room.VideoConference.Duration)} style={{widht: 218}}/&gt;&lt;/span&gt; &lt;/CanvasBox&gt;); } </code></pre></div> <h2 dir="auto">Context</h2> <p dir="auto">None.</p> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.18.6</td> </tr> <tr> <td>React</td> <td>15.4.2</td> </tr> <tr> <td>browser</td> <td>Linux Version 54.0.2840.90 (64-bit)</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<hr> <h3 dir="auto">System information</h3> <ul dir="auto"> <li>**Xcode 9.3 and Mac OS is 10.13.4 **:</li> <li><strong>TensorFlow r1.2</strong>:</li> <li><strong>iPhone 7 plus</strong>:</li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">NSString* graph_path = FilePathForResourceName(model_file_name, @"tflite");<br> model = <strong>tflite::FlatBufferModel::BuildFromFile</strong>([graph_path UTF8String]);<br> if (!model) {<br> LOG(FATAL) &lt;&lt; "Failed to mmap model " &lt;&lt; graph_path;<br> }<br> LOG(INFO) &lt;&lt; "Loaded model " &lt;&lt; graph_path;<br> model-&gt;error_reporter();<br> LOG(INFO) &lt;&lt; "resolved reporter";</p> <h3 dir="auto">Source code / logs</h3> <p dir="auto">After "tflite::FlatBufferModel::BuildFromFile" is excuted, and it returns<br> nnapi error: unable to open library libneuralnetworks.so<br> Loaded model 1resolved reporter(lldb)</p> <p dir="auto">Does anyone know how to solve this issue? Thanks in advance.</p>
<p dir="auto">It be nice to have autocompletion for the tensorboard arguments.<br> I experimented a bit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/Era-Dorta/tensorflow/commit/3c217767cd47560c776232207a05b08b6f2cb166/hovercard" href="https://github.com/Era-Dorta/tensorflow/commit/3c217767cd47560c776232207a05b08b6f2cb166">Era-Dorta@<tt>3c21776</tt></a> with the <a href="https://argcomplete.readthedocs.io/en/latest/" rel="nofollow">argcomplete</a>, however the completion is too sluggish to be useful.<br> The entry point for the completion is after the flags are defined and the slugginesh is due to too much stuff being done before that.<br> Another option would be to use <a href="https://github.com/scop/bash-completion">native completion</a>, but that would require to duplicate the flag definitions for tensorboard.</p>
0
<p dir="auto">tensorflow 1.2 release will support python 3.6?</p>
<p dir="auto">The current .whl does not support python 3.6. Please update to support the latest version of python. Thanks!</p> <p dir="auto">C:\WINDOWS\system32&gt;python --version<br> Python 3.6.0</p> <p dir="auto">C:\WINDOWS\system32&gt;pip install --upgrade <a href="https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl" rel="nofollow">https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl</a><br> tensorflow-0.12.1-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.</p>
1
<h1 dir="auto">Description of the new feature/enhancement</h1> <p dir="auto">Arguments to the program. for example the ability to specify which mingw one would want to load, mingw64, mingw32, or msys2. like we can in VSCode</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">This is accomplished in VSCode via this directive in <code class="notranslate">settings.json</code></p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &quot;terminal.integrated.env.windows&quot;: { &quot;MSYSTEM&quot;: &quot;MINGW64&quot;, &quot;CHERE_INVOKING&quot;:&quot;1&quot; },"><pre class="notranslate"> <span class="pl-ent">"terminal.integrated.env.windows"</span>: { <span class="pl-ent">"MSYSTEM"</span>: <span class="pl-s"><span class="pl-pds">"</span>MINGW64<span class="pl-pds">"</span></span>, <span class="pl-ent">"CHERE_INVOKING"</span>:<span class="pl-s"><span class="pl-pds">"</span>1<span class="pl-pds">"</span></span> },</pre></div> <p dir="auto">My thougt process allowed something like</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&quot;commandlineEnv&quot; : { &quot;MSYSTEM&quot; : &quot;MINGW64&quot; },"><pre class="notranslate"><span class="pl-ent">"commandlineEnv"</span> : { <span class="pl-ent">"MSYSTEM"</span> : <span class="pl-s"><span class="pl-pds">"</span>MINGW64<span class="pl-pds">"</span></span> },</pre></div> <p dir="auto">In the settins.json file example. just like VSCode</p> <p dir="auto">Please do note, i know little to nothing about this language that this program is written in, so i don't know how difficult it would be to implement.</p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">Current tab styling is ugly, it would be better if some customization options are added:</p> <ol dir="auto"> <li>Custom Tabs Position: {Top, Bottom, Sides}</li> <li>Custom Tabs height and font size (Affects oversized + button and down pointing arrow too)</li> <li>Tab opacity and color.</li> <li>Dynamic app icon set per active tab.</li> <li>Custom static text for tab name</li> <li>Tab controls are too far away from window controls, reduce distance or change sides when tabs are on superior position</li> </ol> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">Adding configuration options to the profiles.json accordingly should do the job</p>
0
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">Other Airflow 2 version (please specify below)</p> <h3 dir="auto">What happened</h3> <p dir="auto">I am running airflow 2.4.2 in EKS 1.22 with minor tweaks to official helm chart. I am observing in UI, in task logs each log line is coming twice. Attaching a screen-shot below of the issue. As visible here all log lines are repeated twice in task log file.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/95409716/203499788-5e6dd417-1a25-46e0-aa5a-73c0d56bdc3b.png"><img width="1736" alt="Screenshot 2022-11-23 at 1 51 39 PM" src="https://user-images.githubusercontent.com/95409716/203499788-5e6dd417-1a25-46e0-aa5a-73c0d56bdc3b.png" style="max-width: 100%;"></a></p> <h3 dir="auto">What you think should happen instead</h3> <p dir="auto">Each log line should be coming once in task logs, this is important as task logs will take twice the space as required.</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">Should be able to reproduce by running any dag on airflow 2.4.2 with official helm chart on EKS v1.22 and observing task logs.</p> <h3 dir="auto">Operating System</h3> <p dir="auto">PRETTY_NAME=“Debian GNU/Linux 11 (bullseye)” NAME=“Debian GNU/Linux” VERSION_ID=“11” VERSION=“11 (bullseye)” VERSION_CODENAME=bullseye ID=debian</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Deployment</h3> <p dir="auto">Official Apache Airflow Helm Chart</p> <h3 dir="auto">Deployment details</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Anything else</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.4.2</p> <h3 dir="auto">What happened</h3> <p dir="auto">We upgraded airflow from 2.4.1 to 2.4.2 and immediately notice that every task log line is duplicated <em>into</em> CloudWatch. Comparing logs from tasks run before upgrade and after upgrade indicates that the issue is not in how the logs are displayed in Airflow, but rather that it now produces two log lines instead of one.</p> <p dir="auto">When observing both the CloudWatch log streams and the Airflow UI, we can see duplicate log lines for <del><em>all</em></del> most log entries post upgrade, whilst seeing single log lines in tasks before upgrade.</p> <p dir="auto">This happens <em>both</em> for tasks ran in a remote <code class="notranslate">EcsRunTaskOperator</code>'s as well as in regular <code class="notranslate">PythonOperator</code>'s.</p> <h3 dir="auto">What you think should happen instead</h3> <p dir="auto">A single non-duplicate log line should be produced into CloudWatch.</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">From my understanding now, any setup on 2.4.2 that uses CloudWatch remote logging will produce duplicate log lines. (But I have not been able to confirm other setups)</p> <h3 dir="auto">Operating System</h3> <p dir="auto">Docker: <code class="notranslate">apache/airflow:2.4.2-python3.9</code> - Running on AWS ECS Fargate</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apache-airflow[celery,postgres,apache.hive,jdbc,mysql,ssh,amazon,google,google_auth]==2.4.2 apache-airflow-providers-amazon==6.0.0"><pre class="notranslate"><code class="notranslate">apache-airflow[celery,postgres,apache.hive,jdbc,mysql,ssh,amazon,google,google_auth]==2.4.2 apache-airflow-providers-amazon==6.0.0 </code></pre></div> <h3 dir="auto">Deployment</h3> <p dir="auto">Other Docker-based deployment</p> <h3 dir="auto">Deployment details</h3> <p dir="auto">We are running a docker inside Fargate ECS on AWS.</p> <p dir="auto">The following environment variables + config in CloudFormation control remote logging:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" - Name: AIRFLOW__LOGGING__REMOTE_LOGGING Value: True - Name: AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER Value: !Sub &quot;cloudwatch://${TasksLogGroup.Arn}&quot;"><pre class="notranslate"><code class="notranslate"> - Name: AIRFLOW__LOGGING__REMOTE_LOGGING Value: True - Name: AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER Value: !Sub "cloudwatch://${TasksLogGroup.Arn}" </code></pre></div> <h3 dir="auto">Anything else</h3> <p dir="auto">We did not change any other configuration during the upgrade, simply bumped the requirements for provider list + docker image from 2.4.1 to 2.4.2.</p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
1
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>no</td> </tr> <tr> <td>Feature request?</td> <td>yes</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>3.3.0</td> </tr> </tbody> </table> <p dir="auto">I have recently started using the Guard component to handle formless authentication. Great addition BTW (Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weaverryan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weaverryan">@weaverryan</a>).</p> <p dir="auto">With the traditional <code class="notranslate">'form_login'</code>, we have the option to add many routes directly under the <code class="notranslate">'firewalls'</code> key. For example the <code class="notranslate">'default_target_path'</code>. Using <code class="notranslate">'guard'</code> we don't have these options. I understand that any key/value pairs can be defined under the implementing bundle, but IMO bundle configuration and firewall configurations should be separate.</p> <p dir="auto">Would it be possible to add the configurations, under 'guard', for <code class="notranslate">'default_target_path</code>', <code class="notranslate">'always_use_default_target_path</code>', <code class="notranslate">'use_referer</code>', <code class="notranslate">'login_path</code>' and <code class="notranslate">'failure_path</code>'. Then make these configurations available, as possibly a container parameter, so they can be passed into our 'GuardAuthenticator' constructor?</p> <p dir="auto">This will keep firewall configuration nice and tidy, and also allow for the easier development of 3rd party bundles.</p>
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>no</td> </tr> <tr> <td>Feature request?</td> <td>maybe?</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>no</td> </tr> </tbody> </table> <p dir="auto">What is the recommended way to do per-firewall guard configuration options? Just add logic based on the request in the Guard? My current use case is redirection settings. Based on what firewall you are using a Guard from you might want different redirection to occur. It would be nice to define some configuration options like this per firewall like you can with the form_login approach.</p> <p dir="auto">Currently it seems like the only way would be to add logic to the <code class="notranslate">onAuthenticationSuccess()</code> and <code class="notranslate">onAuthenticationFailure()</code> methods and inspect the Request object. Maybe it should stay that way due to the generic nature of the Guard in general? Thoughts?</p>
1
<p dir="auto">Updated to 0.189 and i see this :<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/419606/6994170/e01d57aa-db34-11e4-905e-de5abc8ed118.png"><img src="https://cloud.githubusercontent.com/assets/419606/6994170/e01d57aa-db34-11e4-905e-de5abc8ed118.png" alt="garbage" style="max-width: 100%;"></a></p> <p dir="auto">there is one garbage char on the left side of each line number.</p>
<p dir="auto">Since the last update Atom is displaying what seems to be a control character on empty rows as well as in front of single row numbers. I am using this font in Atom for a long time and this only started showing recently / in the last version. Other fonts seem to have an empty symbol in place for this.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4440614/6139416/b4d432ee-b18b-11e4-99d4-4ce1eccaf55c.png"><img src="https://cloud.githubusercontent.com/assets/4440614/6139416/b4d432ee-b18b-11e4-99d4-4ce1eccaf55c.png" alt="styles_less_-_users_cschmidt_securemount_mp_dev_sabm-domo-tool-_atom" style="max-width: 100%;"></a></p>
1
<p dir="auto">Version: 1.0.0<br> OS Version: Microsoft Windows NT 10.0.19041.0<br> IntPtr Length: 8<br> x64: True<br> Date: 08/10/2020 14:52:44<br> Exception:<br> System.ObjectDisposedException: Cannot access a disposed object.<br> Object name: 'Timer'.<br> at System.Timers.Timer.set_Enabled(Boolean value)<br> at System.Timers.Timer.Start()<br> at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br> at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br> at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br> at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br> at System.Windows.UIElement.UpdateIsVisibleCache()<br> at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br> at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br> at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br> at System.Windows.Window.SetRootVisual()<br> at System.Windows.Window.SetRootVisualAndUpdateSTC()<br> at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br> at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br> at System.Windows.Window.CreateSourceWindowDuringShow()<br> at System.Windows.Window.SafeCreateWindowDuringShow()<br> at System.Windows.Window.ShowHelper(Object booleanBox)<br> at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br> at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p>
<p dir="auto">Popup tells me to give y'all this.</p> <p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5009460/2020-07-31.txt">2020-07-31.txt</a></p> <p dir="auto">Version: 1.0.0<br> OS Version: Microsoft Windows NT 10.0.19041.0<br> IntPtr Length: 8<br> x64: True<br> Date: 07/31/2020 17:29:59<br> Exception:<br> System.ObjectDisposedException: Cannot access a disposed object.<br> Object name: 'Timer'.<br> at System.Timers.Timer.set_Enabled(Boolean value)<br> at System.Timers.Timer.Start()<br> at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br> at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br> at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br> at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br> at System.Windows.UIElement.UpdateIsVisibleCache()<br> at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br> at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br> at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br> at System.Windows.Window.SetRootVisual()<br> at System.Windows.Window.SetRootVisualAndUpdateSTC()<br> at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br> at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br> at System.Windows.Window.CreateSourceWindowDuringShow()<br> at System.Windows.Window.SafeCreateWindowDuringShow()<br> at System.Windows.Window.ShowHelper(Object booleanBox)<br> at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br> at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p>
1
<p dir="auto">I have a hard time replicating this issue since it will require me filling up the disk again, but in a nutshell the problem is that when I edit a file in Atom, if the disk space is not enough to save it, I find that the file content is erased.</p> <p dir="auto">This happened to me more than once (yeah I need more Gbs of disk space) so I can certify that it is Atom the one causing the issue. The issue appears whenever I edit the file, not when I just open it. The problem is not that Atom is not being able to save the file (that would make sense if there is no disk space available), the problem is that Atom <em>removes all the content</em>, and of course I'm afterwards not able to recover it.</p> <p dir="auto">I have no clue of why may this be happening</p>
<p dir="auto">Copying code from another source and pasting into an untitled doc causes Atom to crash with no error message. Still happening after restart.</p> <p dir="auto">Running Xubuntu 14.04</p>
0
<p dir="auto"><em>Please make sure that this is a bug. 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:bug_template</em></p> <p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li> <p dir="auto">Have I written custom code (as opposed to using a stock example script provided in TensorFlow):<br> Yes I have written code which takes an image from a OpenFX framework and passes it as input to a Tensorflow session in C++, runs the feed forward and returns the result to a pixel buffer</p> </li> <li> <p dir="auto">OS Platform and Distribution (e.g., Linux Ubuntu 16.04):<br> Linux CentOS 6.10, using gcc/4.8.5 and bazel 0.11.0 with CUDA 9.1 and cuDNN 7.1.2</p> </li> <li> <p dir="auto">Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</p> </li> <li> <p dir="auto">TensorFlow installed from (source or binary):<br> from source v1.6.0 zip here:<br> <a href="https://github.com/tensorflow/tensorflow/archive/v1.6.0.zip">https://github.com/tensorflow/tensorflow/archive/v1.6.0.zip</a></p> </li> <li> <p dir="auto">TensorFlow version (use command below):<br> NA</p> </li> <li> <p dir="auto">Python version:<br> 2.7.13 NA</p> </li> <li> <p dir="auto">Bazel version (if compiling from source):<br> 0.11.0</p> </li> <li> <p dir="auto">GCC/Compiler version (if compiling from source):<br> gcc 4.8.5</p> </li> <li> <p dir="auto">CUDA/cuDNN version:<br> CUDA 9.1 with 3 updates, cuDNN 7.1.3</p> </li> <li> <p dir="auto">GPU model and memory:<br> GTX 1060 6Gb</p> </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>Describe the current behavior</strong><br> the code will no longer compile when I moved to a machine with a GPU</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" CXX Linux-64-debug/rotobot.o rotobot.cpp: In function ‘void drawMasks(OpenImageIO::v1_6::ImageBuf&amp;, std::unique_ptr&lt;tensorflow::Session&gt;&amp;, OpenImageIO::v1_6::ImageBuf&amp;, std::string&amp;, bool, const bool*, const bool*, const bool*, double, double, double, double, double, double, bool)’: rotobot.cpp:435:68: error: ‘inputTensor2’ was not declared in this scope tensorflow::Status run_status = tfSession-&gt;Run({ { &quot;input_image&quot;, inputTensor2 },{ &quot;input_image_meta&quot;, inputMetadataTensor } }, ^ rotobot.cpp:439:11: error: no matching function for call to ‘tensorflow::Session::Run(&lt;brace-enclosed initializer list&gt;, &lt;brace-enclosed initializer list&gt;, &lt;brace-enclosed initializer list&gt;, std::vector&lt;tensorflow::Tensor&gt;*)’ &amp;outputs); ^ rotobot.cpp:439:11: note: candidates are: In file included from rotobot.cpp:32:0: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:121:18: note: virtual tensorflow::Status tensorflow::Session::Run(const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, std::vector&lt;tensorflow::Tensor&gt;*) virtual Status Run(const std::vector&lt;std::pair&lt;string, Tensor&gt; &gt;&amp; inputs, ^ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:121:18: note: no known conversion for argument 1 from ‘&lt;brace-enclosed initializer list&gt;’ to ‘const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;’ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:150:18: note: virtual tensorflow::Status tensorflow::Session::Run(const tensorflow::RunOptions&amp;, const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, std::vector&lt;tensorflow::Tensor&gt;*, tensorflow::RunMetadata*) virtual Status Run(const RunOptions&amp; run_options, ^ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:150:18: note: candidate expects 6 arguments, 4 provided In file included from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:23:0, from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:24, from rotobot.cpp:32: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long int&gt;’: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:566:46: required from ‘typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor tensorflow::Tensor::tensor() [with T = long int; long unsigned int NDIMS = 3ul; typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor = Eigen::TensorMap&lt;Eigen::Tensor&lt;long int, 3, 1, long int&gt;, 16, Eigen::MakePointer&gt;]’ rotobot.cpp:1743:53: required from here /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, &quot;Specified Data Type not supported&quot;); ^ In file included from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:24:0, from rotobot.cpp:32: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h: In instantiation of ‘typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor tensorflow::Tensor::tensor() [with T = long int; long unsigned int NDIMS = 3ul; typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor = Eigen::TensorMap&lt;Eigen::Tensor&lt;long int, 3, 1, long int&gt;, 16, Eigen::MakePointer&gt;]’: rotobot.cpp:1743:53: required from here /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:566:46: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long int&gt;’ "><pre class="notranslate"><code class="notranslate"> CXX Linux-64-debug/rotobot.o rotobot.cpp: In function ‘void drawMasks(OpenImageIO::v1_6::ImageBuf&amp;, std::unique_ptr&lt;tensorflow::Session&gt;&amp;, OpenImageIO::v1_6::ImageBuf&amp;, std::string&amp;, bool, const bool*, const bool*, const bool*, double, double, double, double, double, double, bool)’: rotobot.cpp:435:68: error: ‘inputTensor2’ was not declared in this scope tensorflow::Status run_status = tfSession-&gt;Run({ { "input_image", inputTensor2 },{ "input_image_meta", inputMetadataTensor } }, ^ rotobot.cpp:439:11: error: no matching function for call to ‘tensorflow::Session::Run(&lt;brace-enclosed initializer list&gt;, &lt;brace-enclosed initializer list&gt;, &lt;brace-enclosed initializer list&gt;, std::vector&lt;tensorflow::Tensor&gt;*)’ &amp;outputs); ^ rotobot.cpp:439:11: note: candidates are: In file included from rotobot.cpp:32:0: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:121:18: note: virtual tensorflow::Status tensorflow::Session::Run(const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, std::vector&lt;tensorflow::Tensor&gt;*) virtual Status Run(const std::vector&lt;std::pair&lt;string, Tensor&gt; &gt;&amp; inputs, ^ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:121:18: note: no known conversion for argument 1 from ‘&lt;brace-enclosed initializer list&gt;’ to ‘const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;’ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:150:18: note: virtual tensorflow::Status tensorflow::Session::Run(const tensorflow::RunOptions&amp;, const std::vector&lt;std::pair&lt;std::basic_string&lt;char&gt;, tensorflow::Tensor&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, const std::vector&lt;std::basic_string&lt;char&gt; &gt;&amp;, std::vector&lt;tensorflow::Tensor&gt;*, tensorflow::RunMetadata*) virtual Status Run(const RunOptions&amp; run_options, ^ /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:150:18: note: candidate expects 6 arguments, 4 provided In file included from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:23:0, from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:24, from rotobot.cpp:32: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long int&gt;’: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:566:46: required from ‘typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor tensorflow::Tensor::tensor() [with T = long int; long unsigned int NDIMS = 3ul; typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor = Eigen::TensorMap&lt;Eigen::Tensor&lt;long int, 3, 1, long int&gt;, 16, Eigen::MakePointer&gt;]’ rotobot.cpp:1743:53: required from here /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, "Specified Data Type not supported"); ^ In file included from /home/sam/dev/tensorflow-1.6.0/tensorflow/core/public/session.h:24:0, from rotobot.cpp:32: /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h: In instantiation of ‘typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor tensorflow::Tensor::tensor() [with T = long int; long unsigned int NDIMS = 3ul; typename tensorflow::TTypes&lt;T, NDIMS&gt;::Tensor = Eigen::TensorMap&lt;Eigen::Tensor&lt;long int, 3, 1, long int&gt;, 16, Eigen::MakePointer&gt;]’: rotobot.cpp:1743:53: required from here /home/sam/dev/tensorflow-1.6.0/tensorflow/core/framework/tensor.h:566:46: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long int&gt;’ </code></pre></div> <p dir="auto"><strong>Describe the expected behavior</strong><br> The code was compiling previously</p> <p dir="auto">The previous build environment was v1.6.0.2-gcbc6580</p> <p dir="auto">But was built without CUDA options.</p> <p dir="auto">I am linking against<br> <code class="notranslate"> -ltensorflow -ltensorflow_cc and -ltensorflow_framework -lnsync</code></p> <p dir="auto">and a few more</p> <p dir="auto">but I am not compiling yet.</p> <p dir="auto">lines 31,32,33 respectively are:</p> <p dir="auto">#include &lt;tensorflow/core/platform/init_main.h&gt;<br> #include &lt;tensorflow/core/public/session.h&gt;<br> #include &lt;tensorflow/core/framework/tensor_shape.h&gt;</p> <p dir="auto"><strong>Code to reproduce the issue</strong><br> Provide a reproducible test case that is the bare minimum necessary to generate the problem.</p> <p dir="auto">lines 31,32,33 respectively are:</p> <p dir="auto">#include &lt;tensorflow/core/platform/init_main.h&gt;<br> #include &lt;tensorflow/core/public/session.h&gt;<br> #include &lt;tensorflow/core/framework/tensor_shape.h&gt;</p> <p dir="auto"><strong>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">see:<br> <a href="https://stackoverflow.com/questions/54033100/tensorflow-1-6-0-with-cuda-support-on-centos-6-10-c-linking-against-libtensorf" rel="nofollow">https://stackoverflow.com/questions/54033100/tensorflow-1-6-0-with-cuda-support-on-centos-6-10-c-linking-against-libtensorf</a></p>
<h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: Yes</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Linux Mint 18.2 Sonya (based on Ubuntu 16.04)</li> <li><strong>TensorFlow installed from (source or binary)</strong>: Source</li> <li><strong>TensorFlow version (use command below)</strong>: latest master (last commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tensorflow/tensorflow/commit/b2fe2a874bade4782aaca5c44bf29e7ff6c39200/hovercard" href="https://github.com/tensorflow/tensorflow/commit/b2fe2a874bade4782aaca5c44bf29e7ff6c39200"><tt>b2fe2a8</tt></a>)</li> <li><strong>Python version</strong>: 3.5.2</li> <li><strong>Bazel version (if compiling from source)</strong>: 0.15.0</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: 7.3.0</li> <li><strong>CUDA/cuDNN version</strong>: 9.2/7.1</li> <li><strong>GPU model and memory</strong>: GX1080Ti 11GB</li> <li><strong>Exact command to reproduce</strong>: N/A</li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">When writing a custom op and registering a kernel builder using <code class="notranslate">REGISTER_KERNEL_BUILDER</code>, specifying a type constraint of int64_t will fail on some machines. This also fails for unsigned types too (as you would expect).</p> <p dir="auto">The problem occurs due to lines 381-403 in <code class="notranslate">tensorflow/core/framework/types.h</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="MATCH_TYPE_AND_ENUM(float, DT_FLOAT); MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); MATCH_TYPE_AND_ENUM(int32, DT_INT32); MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); MATCH_TYPE_AND_ENUM(int16, DT_INT16); MATCH_TYPE_AND_ENUM(int8, DT_INT8); MATCH_TYPE_AND_ENUM(string, DT_STRING); MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); MATCH_TYPE_AND_ENUM(int64, DT_INT64); MATCH_TYPE_AND_ENUM(uint64, DT_UINT64); MATCH_TYPE_AND_ENUM(bool, DT_BOOL); MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT);"><pre class="notranslate"><code class="notranslate">MATCH_TYPE_AND_ENUM(float, DT_FLOAT); MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); MATCH_TYPE_AND_ENUM(int32, DT_INT32); MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); MATCH_TYPE_AND_ENUM(int16, DT_INT16); MATCH_TYPE_AND_ENUM(int8, DT_INT8); MATCH_TYPE_AND_ENUM(string, DT_STRING); MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); MATCH_TYPE_AND_ENUM(int64, DT_INT64); MATCH_TYPE_AND_ENUM(uint64, DT_UINT64); MATCH_TYPE_AND_ENUM(bool, DT_BOOL); MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); </code></pre></div> <p dir="auto">In this case, <code class="notranslate">int64</code> is being <code class="notranslate">typedef</code>'d to <code class="notranslate">long long</code> (<code class="notranslate">tensorflow/core/platform/default/integral_types.h</code>), however on some systems <code class="notranslate">int64_t</code> is <code class="notranslate">typedef</code>'d as <code class="notranslate">__int64</code> (or potentially some other variation that results in a 64-bit signed type). Because of this <code class="notranslate">int64_t != to int64</code> and the type constraint check fails.</p> <p dir="auto">On my system in particular, this code</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include &lt;cstdint&gt; #include &lt;iostream&gt; int main(void) { std::cout &lt;&lt; &quot;int64_t...............: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(int64_t).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(int64_t) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;long..................: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(long).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(long) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;long int..............: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(long int).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(long int) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;long long int.........: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(long long int).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(long long int) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;long long.............: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(long long).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(long long) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;uint64_t..............: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(uint64_t).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(int64_t) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;unsigned long.........: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(unsigned long).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(unsigned long) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;unsigned long int.....: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(unsigned long int).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(unsigned long int) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;unsigned long long int: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(unsigned long long int).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(unsigned long long int) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;unsigned long long....: &quot; &lt;&lt; &quot;(&quot; &lt;&lt; typeid(unsigned long long).name() &lt;&lt; &quot;) &quot; &lt;&lt; sizeof(unsigned long long) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;long long == int64_t? &quot; &lt;&lt; (std::is_same&lt;long long, int64_t&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;(sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? &quot; &lt;&lt; ((sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;(sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? &quot; &lt;&lt; ((sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;unsigned long long == uint64_t? &quot; &lt;&lt; (std::is_same&lt;unsigned long long, uint64_t&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;(sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? &quot; &lt;&lt; ((sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; std::cout &lt;&lt; &quot;(sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? &quot; &lt;&lt; ((sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value ? &quot;yes&quot; : &quot;no&quot;) &lt;&lt; std::endl; return 0; } "><pre class="notranslate"><code class="notranslate">#include &lt;cstdint&gt; #include &lt;iostream&gt; int main(void) { std::cout &lt;&lt; "int64_t...............: " &lt;&lt; "(" &lt;&lt; typeid(int64_t).name() &lt;&lt; ") " &lt;&lt; sizeof(int64_t) &lt;&lt; std::endl; std::cout &lt;&lt; "long..................: " &lt;&lt; "(" &lt;&lt; typeid(long).name() &lt;&lt; ") " &lt;&lt; sizeof(long) &lt;&lt; std::endl; std::cout &lt;&lt; "long int..............: " &lt;&lt; "(" &lt;&lt; typeid(long int).name() &lt;&lt; ") " &lt;&lt; sizeof(long int) &lt;&lt; std::endl; std::cout &lt;&lt; "long long int.........: " &lt;&lt; "(" &lt;&lt; typeid(long long int).name() &lt;&lt; ") " &lt;&lt; sizeof(long long int) &lt;&lt; std::endl; std::cout &lt;&lt; "long long.............: " &lt;&lt; "(" &lt;&lt; typeid(long long).name() &lt;&lt; ") " &lt;&lt; sizeof(long long) &lt;&lt; std::endl; std::cout &lt;&lt; "uint64_t..............: " &lt;&lt; "(" &lt;&lt; typeid(uint64_t).name() &lt;&lt; ") " &lt;&lt; sizeof(int64_t) &lt;&lt; std::endl; std::cout &lt;&lt; "unsigned long.........: " &lt;&lt; "(" &lt;&lt; typeid(unsigned long).name() &lt;&lt; ") " &lt;&lt; sizeof(unsigned long) &lt;&lt; std::endl; std::cout &lt;&lt; "unsigned long int.....: " &lt;&lt; "(" &lt;&lt; typeid(unsigned long int).name() &lt;&lt; ") " &lt;&lt; sizeof(unsigned long int) &lt;&lt; std::endl; std::cout &lt;&lt; "unsigned long long int: " &lt;&lt; "(" &lt;&lt; typeid(unsigned long long int).name() &lt;&lt; ") " &lt;&lt; sizeof(unsigned long long int) &lt;&lt; std::endl; std::cout &lt;&lt; "unsigned long long....: " &lt;&lt; "(" &lt;&lt; typeid(unsigned long long).name() &lt;&lt; ") " &lt;&lt; sizeof(unsigned long long) &lt;&lt; std::endl; std::cout &lt;&lt; "long long == int64_t? " &lt;&lt; (std::is_same&lt;long long, int64_t&gt;::value ? "yes" : "no") &lt;&lt; std::endl; std::cout &lt;&lt; "(sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? " &lt;&lt; ((sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value ? "yes" : "no") &lt;&lt; std::endl; std::cout &lt;&lt; "(sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? " &lt;&lt; ((sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value ? "yes" : "no") &lt;&lt; std::endl; std::cout &lt;&lt; "unsigned long long == uint64_t? " &lt;&lt; (std::is_same&lt;unsigned long long, uint64_t&gt;::value ? "yes" : "no") &lt;&lt; std::endl; std::cout &lt;&lt; "(sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? " &lt;&lt; ((sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value ? "yes" : "no") &lt;&lt; std::endl; std::cout &lt;&lt; "(sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? " &lt;&lt; ((sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value ? "yes" : "no") &lt;&lt; std::endl; return 0; } </code></pre></div> <p dir="auto">produces this output</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="int64_t...............: (l) 8 long..................: (l) 8 long int..............: (l) 8 long long int.........: (x) 8 long long.............: (x) 8 uint64_t..............: (m) 8 unsigned long.........: (m) 8 unsigned long int.....: (m) 8 unsigned long long int: (y) 8 unsigned long long....: (y) 8 long long == int64_t? no (sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? yes (sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? yes unsigned long long == uint64_t? no (sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? yes (sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? yes "><pre class="notranslate"><code class="notranslate">int64_t...............: (l) 8 long..................: (l) 8 long int..............: (l) 8 long long int.........: (x) 8 long long.............: (x) 8 uint64_t..............: (m) 8 unsigned long.........: (m) 8 unsigned long int.....: (m) 8 unsigned long long int: (y) 8 unsigned long long....: (y) 8 long long == int64_t? no (sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? yes (sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? yes unsigned long long == uint64_t? no (sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? yes (sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? yes </code></pre></div> <p dir="auto">On a system where the current type constraint check works, the same code outputs this</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="int64_t...............: (x) 8 long..................: (l) 8 long int..............: (l) 8 long long int.........: (x) 8 long long.............: (x) 8 uint64_t..............: (y) 8 unsigned long.........: (m) 8 unsigned long int.....: (m) 8 unsigned long long int: (y) 8 unsigned long long....: (y) 8 long long == int64_t? yes (sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? yes (sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? yes unsigned long long == uint64_t? yes (sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? yes (sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? yes"><pre class="notranslate"><code class="notranslate">int64_t...............: (x) 8 long..................: (l) 8 long int..............: (l) 8 long long int.........: (x) 8 long long.............: (x) 8 uint64_t..............: (y) 8 unsigned long.........: (m) 8 unsigned long int.....: (m) 8 unsigned long long int: (y) 8 unsigned long long....: (y) 8 long long == int64_t? yes (sizeof(long long) == 8) &amp;&amp; std::is_signed&lt;long long&gt;::value? yes (sizeof(int64_t) == 8) &amp;&amp; std::is_signed&lt;int64_t&gt;::value? yes unsigned long long == uint64_t? yes (sizeof(unsigned long long) == 8) &amp;&amp; !std::is_signed&lt;unsigned long long&gt;::value? yes (sizeof(uint64_t) == 8) &amp;&amp; !std::is_signed&lt;uint64_t&gt;::value? yes </code></pre></div> <p dir="auto">Since using an <code class="notranslate">int64_t</code> should be supported (as it is equivalent to <code class="notranslate">long long</code>), I propose that the code be modified to either use the integral types defined in <code class="notranslate">cstdint</code> (<code class="notranslate">int8_t</code>, <code class="notranslate">int16_t</code>, <code class="notranslate">int32_t</code>, <code class="notranslate">int64_t</code>), or the check should be changed to look for a 64-bit type that is signed using a combination of <code class="notranslate">sizeof</code> and <code class="notranslate">std::is_signed</code></p> <h3 dir="auto">Source code / logs</h3> <p dir="auto">The following example produces the error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include &lt;tensorflow/core/framework/op.h&gt; #include &lt;tensorflow/core/framework/op_kernel.h&gt; REGISTER_OP(&quot;ExampleOp&quot;).Attr(&quot;T: {int32, int64, uint32, uint64}&quot;); template &lt;typename T&gt; class ExampleOp : public tensorflow::OpKernel { public: explicit ExampleOp(tensorflow::OpKernelConstruction* context) : OpKernel(context) {} void Compute(tensorflow::OpKernelContext* context) override {} }; REGISTER_KERNEL_BUILDER(Name(&quot;ExampleOp&quot;).Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;int32_t&gt;(&quot;T&quot;), ExampleOp&lt;int32_t&gt;); REGISTER_KERNEL_BUILDER(Name(&quot;ExampleOp&quot;).Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;int64_t&gt;(&quot;T&quot;), ExampleOp&lt;int64_t&gt;); REGISTER_KERNEL_BUILDER(Name(&quot;ExampleOp&quot;).Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;uint32_t&gt;(&quot;T&quot;), ExampleOp&lt;uint32_t&gt;); REGISTER_KERNEL_BUILDER(Name(&quot;ExampleOp&quot;).Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;uint64_t&gt;(&quot;T&quot;), ExampleOp&lt;uint64_t&gt;);"><pre class="notranslate"><code class="notranslate">#include &lt;tensorflow/core/framework/op.h&gt; #include &lt;tensorflow/core/framework/op_kernel.h&gt; REGISTER_OP("ExampleOp").Attr("T: {int32, int64, uint32, uint64}"); template &lt;typename T&gt; class ExampleOp : public tensorflow::OpKernel { public: explicit ExampleOp(tensorflow::OpKernelConstruction* context) : OpKernel(context) {} void Compute(tensorflow::OpKernelContext* context) override {} }; REGISTER_KERNEL_BUILDER(Name("ExampleOp").Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;int32_t&gt;("T"), ExampleOp&lt;int32_t&gt;); REGISTER_KERNEL_BUILDER(Name("ExampleOp").Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;int64_t&gt;("T"), ExampleOp&lt;int64_t&gt;); REGISTER_KERNEL_BUILDER(Name("ExampleOp").Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;uint32_t&gt;("T"), ExampleOp&lt;uint32_t&gt;); REGISTER_KERNEL_BUILDER(Name("ExampleOp").Device(tensorflow::DEVICE_CPU).TypeConstraint&lt;uint64_t&gt;("T"), ExampleOp&lt;uint64_t&gt;); </code></pre></div> <p dir="auto">Here is the resulting compilation log</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/bin/c++ -Dmwe_EXPORTS -isystem /usr/local/lib/python3.5/dist-packages/tensorflow/include -I../src -march=native -mtune=native -fPIC -O3 -DNDEBUG -fPIC -march=native -mtune=native -MD -MT CMakeFiles/mwe.dir/mwe.cpp.o -MF CMakeFiles/mwe.dir/mwe.cpp.o.d -o CMakeFiles/mwe.dir/mwe.cpp.o -c ../mwe.cpp In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/tensor.h:23:0, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/device_base.h:23, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:26, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long int&gt;’: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: required from ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long int]’ ../mwe.cpp:16:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, &quot;Specified Data Type not supported&quot;); ^~~~~~~~~~~~~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:28:0, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h: In instantiation of ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long int]’: ../mwe.cpp:16:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long int&gt;’ return this-&gt;TypeConstraint(attr_name, DataTypeToEnum&lt;T&gt;::v()); ~~~~~~~~~~~~~~~~~~~~^~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/tensor.h:23:0, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/device_base.h:23, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:26, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long unsigned int&gt;’: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: required from ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long unsigned int]’ ../mwe.cpp:20:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, &quot;Specified Data Type not supported&quot;); ^~~~~~~~~~~~~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:28:0, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h: In instantiation of ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long unsigned int]’: ../mwe.cpp:20:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long unsigned int&gt;’ return this-&gt;TypeConstraint(attr_name, DataTypeToEnum&lt;T&gt;::v()); ~~~~~~~~~~~~~~~~~~~~^~"><pre class="notranslate"><code class="notranslate">/usr/bin/c++ -Dmwe_EXPORTS -isystem /usr/local/lib/python3.5/dist-packages/tensorflow/include -I../src -march=native -mtune=native -fPIC -O3 -DNDEBUG -fPIC -march=native -mtune=native -MD -MT CMakeFiles/mwe.dir/mwe.cpp.o -MF CMakeFiles/mwe.dir/mwe.cpp.o.d -o CMakeFiles/mwe.dir/mwe.cpp.o -c ../mwe.cpp In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/tensor.h:23:0, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/device_base.h:23, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:26, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long int&gt;’: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: required from ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long int]’ ../mwe.cpp:16:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, "Specified Data Type not supported"); ^~~~~~~~~~~~~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:28:0, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h: In instantiation of ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long int]’: ../mwe.cpp:16:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long int&gt;’ return this-&gt;TypeConstraint(attr_name, DataTypeToEnum&lt;T&gt;::v()); ~~~~~~~~~~~~~~~~~~~~^~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/tensor.h:23:0, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/device_base.h:23, from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:26, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h: In instantiation of ‘struct tensorflow::DataTypeToEnum&lt;long unsigned int&gt;’: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: required from ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long unsigned int]’ ../mwe.cpp:20:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/types.h:356:3: error: static assertion failed: Specified Data Type not supported static_assert(IsValidDataType&lt;T&gt;::value, "Specified Data Type not supported"); ^~~~~~~~~~~~~ In file included from /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:28:0, from ../mwe.cpp:2: /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h: In instantiation of ‘tensorflow::KernelDefBuilder&amp; tensorflow::KernelDefBuilder::TypeConstraint(const char*) [with T = long unsigned int]’: ../mwe.cpp:20:1: required from here /usr/local/lib/python3.5/dist-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:82:62: error: ‘v’ is not a member of ‘tensorflow::DataTypeToEnum&lt;long unsigned int&gt;’ return this-&gt;TypeConstraint(attr_name, DataTypeToEnum&lt;T&gt;::v()); ~~~~~~~~~~~~~~~~~~~~^~ </code></pre></div> <p dir="auto">EDIT: Added a minimal working example</p>
1
<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>yes/no</td> </tr> <tr> <td>Symfony version</td> <td>3.2.2</td> </tr> </tbody> </table> <p dir="auto">When executing a command which throws a null error the isSuccessFul() method of Symfony\Component\Process\Process returns true.</p> <p dir="auto">For example, when executing the following command:</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class FailingCronCommand extends ContainerAwareCommand { protected function configure() { $this-&gt;setName('command:fail'); } protected function execute(InputInterface $input, OutputInterface $output) { $testNull = null; // throw new \Exception('FAIL'); if ($testNull-&gt;getName() === null) { // never gets here because $testNull is null and trying getName() throws an error } } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">FailingCronCommand</span> <span class="pl-k">extends</span> <span class="pl-v">ContainerAwareCommand</span> { <span class="pl-k">protected</span> <span class="pl-k">function</span> <span class="pl-en">configure</span>() { <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">setName</span>(<span class="pl-s">'command:fail'</span>); } <span class="pl-k">protected</span> <span class="pl-k">function</span> <span class="pl-en">execute</span>(<span class="pl-smi"><span class="pl-smi">InputInterface</span></span> <span class="pl-s1"><span class="pl-c1">$</span>input</span>, <span class="pl-smi"><span class="pl-smi">OutputInterface</span></span> <span class="pl-s1"><span class="pl-c1">$</span>output</span>) { <span class="pl-s1"><span class="pl-c1">$</span>testNull</span> = <span class="pl-c1">null</span>; <span class="pl-c">// throw new \Exception('FAIL');</span> <span class="pl-k">if</span> (<span class="pl-s1"><span class="pl-c1">$</span>testNull</span>-&gt;<span class="pl-en">getName</span>() === <span class="pl-c1">null</span>) { <span class="pl-c">// never gets here because $testNull is null and trying getName() throws an error</span> } } }</pre></div> <p dir="auto">using the following code:</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/** * $console contains the full path to bin/console * @var Symfony\Component\Process\Process $process */ $process = new Process('php ' .self::$console. ' command:fail'); $process-&gt;run(); $process-&gt;isSuccessful(); // returns true $process-&gt;getExitCode(); // returns 0 (OK) $process-&gt;getErrorOutput(); /** [Symfony\Component\Debug\Exception\FatalThrowableError] Call to a member function getName() on null **/"><pre class="notranslate"><span class="pl-c">/**</span> <span class="pl-c"> * $console contains the full path to bin/console</span> <span class="pl-c"> * @var Symfony\Component\Process\Process $process</span> <span class="pl-c"> */</span> <span class="pl-s1"><span class="pl-c1">$</span>process</span> = <span class="pl-k">new</span> <span class="pl-v">Process</span>(<span class="pl-s">'php '</span> .<span class="pl-smi">self</span>::<span class="pl-s1"><span class="pl-c1">$</span>console</span>. <span class="pl-s">' command:fail'</span>); <span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">run</span>(); <span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">isSuccessful</span>(); <span class="pl-c">// returns true</span> <span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">getExitCode</span>(); <span class="pl-c">// returns 0 (OK)</span> <span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">getErrorOutput</span>(); <span class="pl-c">/**</span> <span class="pl-c"> [Symfony\Component\Debug\Exception\FatalThrowableError]</span> <span class="pl-c"> Call to a member function getName() on null</span> <span class="pl-c">**/</span></pre></div> <p dir="auto">When throwing a custom exception in <code class="notranslate">command:fail</code> the process I get the following output:</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$process-&gt;isSuccessful(); // returns false $process-&gt;getExitCode(); // returns 1 (general error)"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">isSuccessful</span>(); <span class="pl-c">// returns false</span> <span class="pl-s1"><span class="pl-c1">$</span>process</span>-&gt;<span class="pl-en">getExitCode</span>(); <span class="pl-c">// returns 1 (general error)</span></pre></div> <p dir="auto">I also tried setting the "suppress_errors" option to false, but that did not seem to make any difference.</p>
<p dir="auto">Given an new symfony 3.2 project, with this simple Command :</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;?php namespace AppBundle\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class DemoCommand extends Command { protected function configure() { $this-&gt;setName('app:demo'); } protected function execute(InputInterface $input, OutputInterface $output) { $input-&gt;checkYourself(); } }"><pre class="notranslate"><span class="pl-ent">&lt;?php</span> <span class="pl-k">namespace</span> <span class="pl-v">AppBundle</span>\<span class="pl-v">Command</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Console</span>\<span class="pl-v">Command</span>\<span class="pl-v">Command</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Console</span>\<span class="pl-v">Input</span>\<span class="pl-v">InputInterface</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Console</span>\<span class="pl-v">Output</span>\<span class="pl-v">OutputInterface</span>; <span class="pl-k">class</span> <span class="pl-v">DemoCommand</span> <span class="pl-k">extends</span> <span class="pl-v">Command</span> { <span class="pl-k">protected</span> <span class="pl-k">function</span> <span class="pl-en">configure</span>() { <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">setName</span>(<span class="pl-s">'app:demo'</span>); } <span class="pl-k">protected</span> <span class="pl-k">function</span> <span class="pl-en">execute</span>(<span class="pl-smi"><span class="pl-smi">InputInterface</span></span> <span class="pl-s1"><span class="pl-c1">$</span>input</span>, <span class="pl-smi"><span class="pl-smi">OutputInterface</span></span> <span class="pl-s1"><span class="pl-c1">$</span>output</span>) { <span class="pl-s1"><span class="pl-c1">$</span>input</span>-&gt;<span class="pl-en">checkYourself</span>(); } }</pre></div> <p dir="auto">Running under PHP 5.6.24 :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="bin/console app:demo [output an UndefinedMethodException] echo $? 255"><pre class="notranslate"><code class="notranslate">bin/console app:demo [output an UndefinedMethodException] echo $? 255 </code></pre></div> <p dir="auto">Running under PHP 7.0.8 :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="bin/console app:demo [output an UndefinedMethodException] echo $? 0"><pre class="notranslate"><code class="notranslate">bin/console app:demo [output an UndefinedMethodException] echo $? 0 </code></pre></div>
1
<h1 dir="auto">Describe the bug</h1> <p dir="auto">With the new version <code class="notranslate">1.4.0</code> the call <code class="notranslate">engine.dialect.has_table</code> fails for sqlite. This didn't happen in the previous version <code class="notranslate">1.3.23</code>.</p> <p dir="auto"><strong>Note</strong><br> Starting with version <code class="notranslate">1.4.0</code> it's recommended to use</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="sqlalchemy.inspect(engine).has_table(table_name)"><pre class="notranslate"><span class="pl-s1">sqlalchemy</span>.<span class="pl-en">inspect</span>(<span class="pl-s1">engine</span>).<span class="pl-en">has_table</span>(<span class="pl-s1">table_name</span>)</pre></div> <p dir="auto">this works OK.</p> <p dir="auto">This call</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="engine.has_table(table_name)"><pre class="notranslate"><span class="pl-s1">engine</span>.<span class="pl-en">has_table</span>(<span class="pl-s1">table_name</span>)</pre></div> <p dir="auto">also works fine.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">This should not fail.</p> <h1 dir="auto">To Reproduce</h1> <p dir="auto">Here's a self-contained example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# check_table.py import os import sqlite3 import sqlalchemy table_name = &quot;test_table&quot; db_name = &quot;example.db&quot; # Create a temporary SQLite database if os.path.exists(db_name): os.remove(db_name) con = sqlite3.connect(&quot;example.db&quot;) cur = con.cursor() cur.execute(f&quot;CREATE TABLE {table_name} (name TEXT)&quot;) con.commit() con.close() # Create an engine and check if the table exists engine = sqlalchemy.create_engine(f&quot;sqlite:///{db_name}&quot;) print(f&quot;Does the table {table_name} exist:&quot;, engine.dialect.has_table(engine, table_name)) # Remove the temporary SQLite database os.remove(db_name)"><pre class="notranslate"><span class="pl-c"># check_table.py</span> <span class="pl-k">import</span> <span class="pl-s1">os</span> <span class="pl-k">import</span> <span class="pl-s1">sqlite3</span> <span class="pl-k">import</span> <span class="pl-s1">sqlalchemy</span> <span class="pl-s1">table_name</span> <span class="pl-c1">=</span> <span class="pl-s">"test_table"</span> <span class="pl-s1">db_name</span> <span class="pl-c1">=</span> <span class="pl-s">"example.db"</span> <span class="pl-c"># Create a temporary SQLite database</span> <span class="pl-k">if</span> <span class="pl-s1">os</span>.<span class="pl-s1">path</span>.<span class="pl-en">exists</span>(<span class="pl-s1">db_name</span>): <span class="pl-s1">os</span>.<span class="pl-en">remove</span>(<span class="pl-s1">db_name</span>) <span class="pl-s1">con</span> <span class="pl-c1">=</span> <span class="pl-s1">sqlite3</span>.<span class="pl-en">connect</span>(<span class="pl-s">"example.db"</span>) <span class="pl-s1">cur</span> <span class="pl-c1">=</span> <span class="pl-s1">con</span>.<span class="pl-en">cursor</span>() <span class="pl-s1">cur</span>.<span class="pl-en">execute</span>(<span class="pl-s">f"CREATE TABLE <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">table_name</span><span class="pl-kos">}</span></span> (name TEXT)"</span>) <span class="pl-s1">con</span>.<span class="pl-en">commit</span>() <span class="pl-s1">con</span>.<span class="pl-en">close</span>() <span class="pl-c"># Create an engine and check if the table exists</span> <span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-en">create_engine</span>(<span class="pl-s">f"sqlite:///<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">db_name</span><span class="pl-kos">}</span></span>"</span>) <span class="pl-en">print</span>(<span class="pl-s">f"Does the table <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">table_name</span><span class="pl-kos">}</span></span> exist:"</span>, <span class="pl-s1">engine</span>.<span class="pl-s1">dialect</span>.<span class="pl-en">has_table</span>(<span class="pl-s1">engine</span>, <span class="pl-s1">table_name</span>)) <span class="pl-c"># Remove the temporary SQLite database</span> <span class="pl-s1">os</span>.<span class="pl-en">remove</span>(<span class="pl-s1">db_name</span>)</pre></div> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pip install sqlalchemy==1.4.0 python check_table.py"><pre class="notranslate">pip install sqlalchemy==1.4.0 python check_table.py</pre></div> <p dir="auto"><strong>Error</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;check_table.py&quot;, line 21, in &lt;module&gt; print(f&quot;Does the table {table_name} exist:&quot;, engine.dialect.has_table(engine, table_name)) File &quot;/Users/me/venv/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py&quot;, line 1998, in has_table info = self._get_table_pragma( File &quot;/Users/me/venv/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py&quot;, line 2520, in _get_table_pragma cursor = connection.exec_driver_sql(statement) AttributeError: 'Engine' object has no attribute 'exec_driver_sql'"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "check_table.py", line 21, in &lt;module&gt; print(f"Does the table {table_name} exist:", engine.dialect.has_table(engine, table_name)) File "/Users/me/venv/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py", line 1998, in has_table info = self._get_table_pragma( File "/Users/me/venv/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py", line 2520, in _get_table_pragma cursor = connection.exec_driver_sql(statement) AttributeError: 'Engine' object has no attribute 'exec_driver_sql' </code></pre></div> <h1 dir="auto">Versions</h1> <ul dir="auto"> <li>OS: macOS Catalina 10.15.7</li> <li>Python: <code class="notranslate">3.8.6</code></li> <li>SQLAlchemy: <code class="notranslate">1.4.0</code></li> <li>Database: SQLite</li> <li>DBAPI: <code class="notranslate">sqlite</code></li> </ul>
<p dir="auto"><strong>Describe the bug</strong><br> This code</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import sqlalchemy print(sqlalchemy.__version__) engine = sqlalchemy.create_engine('sqlite://') # this works on 1.3.20 engine.dialect.has_table(engine, 'mytable')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">sqlalchemy</span> <span class="pl-en">print</span>(<span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">__version__</span>) <span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-en">create_engine</span>(<span class="pl-s">'sqlite://'</span>) <span class="pl-c"># this works on 1.3.20</span> <span class="pl-s1">engine</span>.<span class="pl-s1">dialect</span>.<span class="pl-en">has_table</span>(<span class="pl-s1">engine</span>, <span class="pl-s">'mytable'</span>)</pre></div> <p dir="auto">Raises the following exception:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="% python bug.py 1.4.0b1 Traceback (most recent call last): File &quot;bug.py&quot;, line 6, in &lt;module&gt; engine.dialect.has_table(engine, 'mytable') File &quot;/Users/gbrown/.virtualenvs/foo/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py&quot;, line 1650, in has_table info = self._get_table_pragma( File &quot;/Users/gbrown/.virtualenvs/foo/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py&quot;, line 2172, in _get_table_pragma cursor = connection.exec_driver_sql(statement) AttributeError: 'Engine' object has no attribute 'exec_driver_sql'"><pre class="notranslate"><code class="notranslate">% python bug.py 1.4.0b1 Traceback (most recent call last): File "bug.py", line 6, in &lt;module&gt; engine.dialect.has_table(engine, 'mytable') File "/Users/gbrown/.virtualenvs/foo/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py", line 1650, in has_table info = self._get_table_pragma( File "/Users/gbrown/.virtualenvs/foo/lib/python3.8/site-packages/sqlalchemy/dialects/sqlite/base.py", line 2172, in _get_table_pragma cursor = connection.exec_driver_sql(statement) AttributeError: 'Engine' object has no attribute 'exec_driver_sql' </code></pre></div> <p dir="auto"><strong>Expected behavior</strong><br> I expected it to return <code class="notranslate">False</code> with no traceback as it used to under 1.3.20.</p> <p dir="auto"><strong>To Reproduce</strong><br> See bug description above.</p> <p dir="auto"><strong>Versions.</strong></p> <ul dir="auto"> <li>OS: macOS Catalina</li> <li>Python: 3.8.6</li> <li>SQLAlchemy: 1.4.0b1</li> <li>Database: SQLite</li> <li>DBAPI:</li> </ul> <p dir="auto"><strong>Additional context</strong><br> Maybe I should have been using <code class="notranslate">engine.has_table('mytable')</code> and I see that is being deprecated. I know how to fix my code to avoid this. I just registering as an FYI. Thanks.</p> <p dir="auto"><strong>Have a nice day!</strong><br> You too. Cheers.</p>
1
<p dir="auto">As a rule of thumb, naming conventions should always include some kind of a package/namespace/prefix/suffix to indicate which plugin objects belong to.</p> <p dir="auto">In this case, there was none of that and ".modal" was used which is now causing a conflict when you use any other plugins with the same name which, in this case, happens to occur quite often.</p>
<p dir="auto"><a href="http://jsfiddle.net/colllin/jZUbB/" rel="nofollow">http://jsfiddle.net/colllin/jZUbB/</a></p> <p dir="auto">Unless I'm using it incorrectly... sorry for the bad news :)</p>
1
<h3 dir="auto">Description</h3> <p dir="auto">Just like the author of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="527656071" data-permission-text="Title is private" data-url="https://github.com/tiangolo/fastapi/issues/731" data-hovercard-type="issue" data-hovercard-url="/tiangolo/fastapi/issues/731/hovercard" href="https://github.com/tiangolo/fastapi/issues/731">#731</a>, I don't want a 307 temporary redirect which is automatically sent by uvicorn when there's a missing trailing slash in the api call. However, the solution given in that issue, i.e. route path like "/?" no longer works in the versions after this April as reported in in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="665405788" data-permission-text="Title is private" data-url="https://github.com/tiangolo/fastapi/issues/1787" data-hovercard-type="issue" data-hovercard-url="/tiangolo/fastapi/issues/1787/hovercard" href="https://github.com/tiangolo/fastapi/issues/1787">#1787</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="647771966" data-permission-text="Title is private" data-url="https://github.com/tiangolo/fastapi/issues/1648" data-hovercard-type="issue" data-hovercard-url="/tiangolo/fastapi/issues/1648/hovercard" href="https://github.com/tiangolo/fastapi/issues/1648">#1648</a> and else. Certain developers states this is an unexpected behavior and won't be supported in the future. In this case, I'm wondering what is the current elegant way to realize this. Or there's any way to handle both "" and "/" two paths simultaneously?</p>
<h3 dir="auto">First check</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> After submitting this, I commit to one of: <ul dir="auto"> <li>Read open issues with questions until I find 2 issues where I can help someone and add a comment to help there.</li> <li>I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.</li> <li>Implement a Pull Request for a confirmed bug.</li> </ul> </li> </ul> <h3 dir="auto">Example</h3> <p dir="auto">Here's a self-contained, example with my use case. :</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from fastapi import FastAPI app = FastAPI() @app.post(&quot;/{name}&quot;) def read_root(name): &quot;&quot;&quot; Some descriptive doc-string &quot;&quot;&quot; return f&quot;Hello {name}&quot;"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>() <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>(<span class="pl-s">"/{name}"</span>)</span> <span class="pl-k">def</span> <span class="pl-en">read_root</span>(<span class="pl-s1">name</span>): <span class="pl-s">"""</span> <span class="pl-s"> Some descriptive doc-string</span> <span class="pl-s"> """</span> <span class="pl-k">return</span> <span class="pl-s">f"Hello <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">name</span><span class="pl-kos">}</span></span>"</span></pre></div> <h3 dir="auto">Description</h3> <ul dir="auto"> <li>Open the browser and call the endpoint <code class="notranslate">/</code>.</li> <li>Navigate to the /docs</li> <li>note that swagger can allow you to set examples for the query param, but there is no obvious way to do this with swagger docs generated from fast api.</li> </ul> <h3 dir="auto">Environment</h3> <p dir="auto">osx, plus from pip freeze:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="certifi==2020.12.5 click==7.1.2 fastapi==0.63.0 h11==0.12.0 pydantic==1.8 starlette==0.13.6 typing-extensions==3.7.4.3 uvicorn==0.13.4"><pre class="notranslate"><code class="notranslate">certifi==2020.12.5 click==7.1.2 fastapi==0.63.0 h11==0.12.0 pydantic==1.8 starlette==0.13.6 typing-extensions==3.7.4.3 uvicorn==0.13.4 </code></pre></div> <ul dir="auto"> <li>Python version: 3.8</li> </ul> <h3 dir="auto">Additional context</h3> <p dir="auto">Is there some pattern with pydoc or something with setting examples that I am mising? or with pydantic?</p> <p dir="auto">I would like to be able to use the swagger docs for some endpoint development, so it would be great to be able to use swagger to remember an example UUID for example, so speed up the tests, and let me skip duplicating all the endpoints to postman.</p>
0
<h3 dir="auto">Describe your issue.</h3> <p dir="auto">There is a serious bug in the implementation of Kummer's hypergeometric function. If the first two parameters a, b are real, we have that hyp1f1(a, b, z) should be the conjugate of hyp1f1(a, b, np.conj(z)). This is not always the case. Examples are provided below.</p> <p dir="auto">Mathematica is one of the industry standards for doing scientific computations. For many arguments hyp1f1(a, b, z) does not agree with Mathematica's output given the same input. Examples are provided below.</p> <p dir="auto">If one does not have Mathematica installed, one can go to <a href="https://www.wolframalpha.com/" rel="nofollow">https://www.wolframalpha.com/</a>. There one can generate the output for one of the examples below by entering<br> <code class="notranslate">z = (5+10*Pi*I); N[Hypergeometric1F1[1/3,1+1/3,z], 10]</code><br> in the input cell.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&quot;&quot;&quot; EXAMPLE NUMBER 1: Code Mathematica: s = (-4.559190954155+51.659216953928I); sconj=Conjugate[s]; Hypergeometric1F1[1/2,3/2,-s] Hypergeometric1F1[1/2,3/2,-sconj] Output Mathematica: Out[12]= 1.\[VeryThinSpace]+1.99922*^-11 \[ImaginaryI] Out[13]= 1.\[VeryThinSpace]-1.99922*^-11 \[ImaginaryI] For the given value of s we see that Mathematica computes that the function value equals 1 for all practical purposes. &quot;&quot;&quot; # Code Python: import scipy.special as sc import numpy as np # Parameters, arguments etc: p=2 s = -4.559190954155 + 51.659216953928*1j # Evaluation: result = sc.hyp1f1(1/p, 1/p + 1, -s) tol = 1e-6 msg = f'The above output of {result} from scipy is far from 1, i.e. in large disagreement with Mathematica' assert abs(result - 1)&lt;tol, msg # print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}') &quot;&quot;&quot; EXAMPLE NUMBER 2: Because the parameters 1/p and 1/p+1 are real, we know that if we replace s by its conjugate, the output should be the conjugate of the first output. This turns out not to be the case: &quot;&quot;&quot; # z complex: z = 5+10*np.pi*1j result1 = sc.hyp1f1(1/3, 1+1/3, z) result2 = sc.hyp1f1(1/3, 1+1/3, np.conj(z)) print(f'sc.hyp1f1(1/3, 1+1/3, z) = {result1}') print(f'sc.hyp1f1(1/3, 1+1/3, np.conj(z)) = {result2}') tol = 1e-6 msg = f'np.conj(result2) does not equal result1 as it should' assert abs(result1-np.conj(result2))&lt;tol , msg &quot;&quot;&quot; Code Mathematica: z = (5+10*Pi*I); zconj=Conjugate[z]; N[Hypergeometric1F1[1/3,1+1/3,z], 10] N[Hypergeometric1F1[1/3,1+1/3,zconj], 10] Output Mathematica: Out[15]= 0.449118650-1.390784314 \[ImaginaryI] Out[16]= 0.449118650+1.390784314 \[ImaginaryI] &quot;&quot;&quot; tol = 1e-6 result1_mathematica = 0.449118650-1.390784314j result2_mathematica = 0.449118650+-1.390784314j assert abs(result1-result1_mathematica)&lt;tol, 'result1 not eqal result1_mathematica' assert abs(result2-result2_mathematica)&lt;tol, 'result2 not eqal result2_mathematica'"><pre class="notranslate"><span class="pl-s">"""</span> <span class="pl-s"></span> <span class="pl-s">EXAMPLE NUMBER 1:</span> <span class="pl-s"></span> <span class="pl-s"></span> <span class="pl-s"></span> <span class="pl-s">Code Mathematica:</span> <span class="pl-s"></span> <span class="pl-s">s = (-4.559190954155+51.659216953928I);</span> <span class="pl-s">sconj=Conjugate[s];</span> <span class="pl-s">Hypergeometric1F1[1/2,3/2,-s]</span> <span class="pl-s">Hypergeometric1F1[1/2,3/2,-sconj]</span> <span class="pl-s"></span> <span class="pl-s"></span> <span class="pl-s">Output Mathematica:</span> <span class="pl-s">Out[12]= 1.\[VeryThinSpace]+1.99922*^-11 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">Out[13]= 1.\[VeryThinSpace]-1.99922*^-11 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">For the given value of s we see that Mathematica computes that the function </span> <span class="pl-s">value equals 1 for all practical purposes.</span> <span class="pl-s">"""</span> <span class="pl-c"># Code Python:</span> <span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">special</span> <span class="pl-k">as</span> <span class="pl-s1">sc</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-c"># Parameters, arguments etc:</span> <span class="pl-s1">p</span><span class="pl-c1">=</span><span class="pl-c1">2</span> <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">4.559190954155</span> <span class="pl-c1">+</span> <span class="pl-c1">51.659216953928</span><span class="pl-c1">*</span><span class="pl-c1">1j</span> <span class="pl-c"># Evaluation:</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-s1">p</span>, <span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-s1">p</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span>, <span class="pl-c1">-</span><span class="pl-s1">s</span>) <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-s">f'The above output of <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result</span><span class="pl-kos">}</span></span> from scipy is far from 1, i.e. in large disagreement with Mathematica'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result</span> <span class="pl-c1">-</span> <span class="pl-c1">1</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s1">msg</span> <span class="pl-c"># print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}')</span> <span class="pl-s">"""</span> <span class="pl-s"></span> <span class="pl-s">EXAMPLE NUMBER 2:</span> <span class="pl-s"></span> <span class="pl-s">Because the parameters 1/p and 1/p+1 are real, we know that if we replace </span> <span class="pl-s">s by its conjugate, the output should be the conjugate of the first output. </span> <span class="pl-s">This turns out not to be the case:</span> <span class="pl-s">"""</span> <span class="pl-c"># z complex:</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-c1">+</span><span class="pl-c1">10</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span><span class="pl-c1">*</span><span class="pl-c1">1j</span> <span class="pl-s1">result1</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-c1">1</span><span class="pl-c1">+</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-s1">z</span>) <span class="pl-s1">result2</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-c1">1</span><span class="pl-c1">+</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-s1">np</span>.<span class="pl-en">conj</span>(<span class="pl-s1">z</span>)) <span class="pl-en">print</span>(<span class="pl-s">f'sc.hyp1f1(1/3, 1+1/3, z) = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result1</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-en">print</span>(<span class="pl-s">f'sc.hyp1f1(1/3, 1+1/3, np.conj(z)) = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result2</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-s">f'np.conj(result2) does not equal result1 as it should'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result1</span><span class="pl-c1">-</span><span class="pl-s1">np</span>.<span class="pl-en">conj</span>(<span class="pl-s1">result2</span>))<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span> , <span class="pl-s1">msg</span> <span class="pl-s">"""</span> <span class="pl-s">Code Mathematica:</span> <span class="pl-s"></span> <span class="pl-s">z = (5+10*Pi*I);</span> <span class="pl-s">zconj=Conjugate[z];</span> <span class="pl-s">N[Hypergeometric1F1[1/3,1+1/3,z], 10]</span> <span class="pl-s">N[Hypergeometric1F1[1/3,1+1/3,zconj], 10]</span> <span class="pl-s"></span> <span class="pl-s">Output Mathematica:</span> <span class="pl-s">Out[15]= 0.449118650-1.390784314 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">Out[16]= 0.449118650+1.390784314 \[ImaginaryI]</span> <span class="pl-s">"""</span> <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">result1_mathematica</span> <span class="pl-c1">=</span> <span class="pl-c1">0.449118650</span><span class="pl-c1">-</span><span class="pl-c1">1.390784314j</span> <span class="pl-s1">result2_mathematica</span> <span class="pl-c1">=</span> <span class="pl-c1">0.449118650</span><span class="pl-c1">+</span><span class="pl-c1">-</span><span class="pl-c1">1.390784314j</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result1</span><span class="pl-c1">-</span><span class="pl-s1">result1_mathematica</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s">'result1 not eqal result1_mathematica'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result2</span><span class="pl-c1">-</span><span class="pl-s1">result2_mathematica</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s">'result2 not eqal result2_mathematica'</span></pre></div> <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="&quot;&quot;&quot; EXAMPLE NUMBER 1: Code Mathematica: s = (-4.559190954155+51.659216953928I); sconj=Conjugate[s]; Hypergeometric1F1[1/2,3/2,-s] Hypergeometric1F1[1/2,3/2,-sconj] Output Mathematica: Out[12]= 1.\[VeryThinSpace]+1.99922*^-11 \[ImaginaryI] Out[13]= 1.\[VeryThinSpace]-1.99922*^-11 \[ImaginaryI] For the given value of s we see that Mathematica computes that the function value equals 1 for all practical purposes. &quot;&quot;&quot; # Code Python: import scipy.special as sc import numpy as np # Parameters, arguments etc: p=2 s = -4.559190954155 + 51.659216953928*1j # Evaluation: result = sc.hyp1f1(1/p, 1/p + 1, -s) tol = 1e-6 msg = f'The above output of {result} from scipy is far from 1, i.e. in large disagreement with Mathematica' assert abs(result - 1)&lt;tol, msg # print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}') &quot;&quot;&quot; EXAMPLE NUMBER 2: Because the parameters 1/p and 1/p+1 are real, we know that if we replace s by its conjugate, the output should be the conjugate of the first output. This turns out not to be the case: &quot;&quot;&quot; # z complex: z = 5+10*np.pi*1j result1 = sc.hyp1f1(1/3, 1+1/3, z) result2 = sc.hyp1f1(1/3, 1+1/3, np.conj(z)) print(f'sc.hyp1f1(1/3, 1+1/3, z) = {result1}') print(f'sc.hyp1f1(1/3, 1+1/3, np.conj(z)) = {result2}') tol = 1e-6 msg = f'np.conj(result2) does not equal result1 as it should' assert abs(result1-np.conj(result2))&lt;tol , msg &quot;&quot;&quot; Code Mathematica: z = (5+10*Pi*I); zconj=Conjugate[z]; N[Hypergeometric1F1[1/3,1+1/3,z], 10] N[Hypergeometric1F1[1/3,1+1/3,zconj], 10] Output Mathematica: Out[15]= 0.449118650-1.390784314 \[ImaginaryI] Out[16]= 0.449118650+1.390784314 \[ImaginaryI] &quot;&quot;&quot; tol = 1e-6 result1_mathematica = 0.449118650-1.390784314j result2_mathematica = 0.449118650+-1.390784314j assert abs(result1-result1_mathematica)&lt;tol, 'result1 not eqal result1_mathematica' assert abs(result2-result2_mathematica)&lt;tol, 'result2 not eqal result2_mathematica'"><pre class="notranslate"><span class="pl-s">"""</span> <span class="pl-s">EXAMPLE NUMBER 1:</span> <span class="pl-s"></span> <span class="pl-s">Code Mathematica:</span> <span class="pl-s"></span> <span class="pl-s">s = (-4.559190954155+51.659216953928I);</span> <span class="pl-s">sconj=Conjugate[s];</span> <span class="pl-s">Hypergeometric1F1[1/2,3/2,-s]</span> <span class="pl-s">Hypergeometric1F1[1/2,3/2,-sconj]</span> <span class="pl-s"></span> <span class="pl-s">Output Mathematica:</span> <span class="pl-s">Out[12]= 1.\[VeryThinSpace]+1.99922*^-11 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">Out[13]= 1.\[VeryThinSpace]-1.99922*^-11 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">For the given value of s we see that Mathematica computes that the function </span> <span class="pl-s">value equals 1 for all practical purposes.</span> <span class="pl-s">"""</span> <span class="pl-c"># Code Python:</span> <span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">special</span> <span class="pl-k">as</span> <span class="pl-s1">sc</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-c"># Parameters, arguments etc:</span> <span class="pl-s1">p</span><span class="pl-c1">=</span><span class="pl-c1">2</span> <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">4.559190954155</span> <span class="pl-c1">+</span> <span class="pl-c1">51.659216953928</span><span class="pl-c1">*</span><span class="pl-c1">1j</span> <span class="pl-c"># Evaluation:</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-s1">p</span>, <span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-s1">p</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span>, <span class="pl-c1">-</span><span class="pl-s1">s</span>) <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-s">f'The above output of <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result</span><span class="pl-kos">}</span></span> from scipy is far from 1, i.e. in large disagreement with Mathematica'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result</span> <span class="pl-c1">-</span> <span class="pl-c1">1</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s1">msg</span> <span class="pl-c"># print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}')</span> <span class="pl-s">"""</span> <span class="pl-s">EXAMPLE NUMBER 2:</span> <span class="pl-s"></span> <span class="pl-s">Because the parameters 1/p and 1/p+1 are real, we know that if we replace </span> <span class="pl-s">s by its conjugate, the output should be the conjugate of the first output. </span> <span class="pl-s">This turns out not to be the case:</span> <span class="pl-s">"""</span> <span class="pl-c"># z complex:</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-c1">+</span><span class="pl-c1">10</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span><span class="pl-c1">*</span><span class="pl-c1">1j</span> <span class="pl-s1">result1</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-c1">1</span><span class="pl-c1">+</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-s1">z</span>) <span class="pl-s1">result2</span> <span class="pl-c1">=</span> <span class="pl-s1">sc</span>.<span class="pl-en">hyp1f1</span>(<span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-c1">1</span><span class="pl-c1">+</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">3</span>, <span class="pl-s1">np</span>.<span class="pl-en">conj</span>(<span class="pl-s1">z</span>)) <span class="pl-en">print</span>(<span class="pl-s">f'sc.hyp1f1(1/3, 1+1/3, z) = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result1</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-en">print</span>(<span class="pl-s">f'sc.hyp1f1(1/3, 1+1/3, np.conj(z)) = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">result2</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-s">f'np.conj(result2) does not equal result1 as it should'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result1</span><span class="pl-c1">-</span><span class="pl-s1">np</span>.<span class="pl-en">conj</span>(<span class="pl-s1">result2</span>))<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span> , <span class="pl-s1">msg</span> <span class="pl-s">"""</span> <span class="pl-s">Code Mathematica:</span> <span class="pl-s"></span> <span class="pl-s">z = (5+10*Pi*I);</span> <span class="pl-s">zconj=Conjugate[z];</span> <span class="pl-s">N[Hypergeometric1F1[1/3,1+1/3,z], 10]</span> <span class="pl-s">N[Hypergeometric1F1[1/3,1+1/3,zconj], 10]</span> <span class="pl-s"></span> <span class="pl-s">Output Mathematica:</span> <span class="pl-s">Out[15]= 0.449118650-1.390784314 \[ImaginaryI]</span> <span class="pl-s"></span> <span class="pl-s">Out[16]= 0.449118650+1.390784314 \[ImaginaryI]</span> <span class="pl-s">"""</span> <span class="pl-s1">tol</span> <span class="pl-c1">=</span> <span class="pl-c1">1e-6</span> <span class="pl-s1">result1_mathematica</span> <span class="pl-c1">=</span> <span class="pl-c1">0.449118650</span><span class="pl-c1">-</span><span class="pl-c1">1.390784314j</span> <span class="pl-s1">result2_mathematica</span> <span class="pl-c1">=</span> <span class="pl-c1">0.449118650</span><span class="pl-c1">+</span><span class="pl-c1">-</span><span class="pl-c1">1.390784314j</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result1</span><span class="pl-c1">-</span><span class="pl-s1">result1_mathematica</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s">'result1 not eqal result1_mathematica'</span> <span class="pl-k">assert</span> <span class="pl-en">abs</span>(<span class="pl-s1">result2</span><span class="pl-c1">-</span><span class="pl-s1">result2_mathematica</span>)<span class="pl-c1">&lt;</span><span class="pl-s1">tol</span>, <span class="pl-s">'result2 not eqal result2_mathematica'</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="--------------------------------------------------------------------------- AssertionError Traceback (most recent call last) &lt;ipython-input-47-f81c740ef128&gt; in &lt;module&gt; 40 tol = 1e-6 41 msg = f'The above output of {result} from scipy is far from 1, i.e. in large disagreement with Mathematica' ---&gt; 42 assert abs(result - 1)&lt;tol, msg 43 44 # print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}') AssertionError: The above output of (0.833788272795157+0.18152681828629416j) from scipy is far from 1, i.e. in large disagreement with Mathematica"><pre class="notranslate">--------------------------------------------------------------------------- AssertionError Traceback (most recent call last) <span class="pl-k">&lt;</span>ipython-input-47-f81c740ef<span class="pl-k">128&gt;</span> <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> 40 tol = 1e-6 41 msg = f<span class="pl-s"><span class="pl-pds">'</span>The above output of {result} from scipy is far from 1, i.e. in large disagreement with Mathematica<span class="pl-pds">'</span></span> ---<span class="pl-k">&gt;</span> 42 assert abs(result - 1)<span class="pl-k">&lt;</span>tol, msg 43 44 <span class="pl-c"><span class="pl-c">#</span> print(f'sc.hyp1f1(1/p, 1/p + 1, -s) = {result}')</span> AssertionError: The above output of (0.833788272795157+0.18152681828629416j) from scipy is far from 1, i.e. <span class="pl-k">in</span> large disagreement with Mathematica</pre></div> <h3 dir="auto">SciPy/NumPy/Python version information</h3> <p dir="auto">import sys, scipy, numpy; print(scipy.<strong>version</strong>, numpy.<strong>version</strong>, sys.version_info)</p>
<p dir="auto">I am using the <code class="notranslate">quad</code> function from <code class="notranslate">scipy.integrate v0.19.1</code> to integrate functions with a square-root like singularity at each end of the integration interval such as for example</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: quad(lambda x: 1/sqrt(1-x**2), -1, 1)"><pre class="notranslate"><code class="notranslate">In [1]: quad(lambda x: 1/sqrt(1-x**2), -1, 1) </code></pre></div> <p dir="auto">(I use the <code class="notranslate">sqrt</code> function from <code class="notranslate">numpy v1.12.0</code>) which immediately yields the correct result pi:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out[1]: (3.141592653589591, 6.200897573194197e-10)"><pre class="notranslate"><code class="notranslate">Out[1]: (3.141592653589591, 6.200897573194197e-10) </code></pre></div> <p dir="auto">According to the documentation of the <code class="notranslate">quad</code> function the keyword <code class="notranslate">points</code> should be used to indicate the locations of singularities or discontinuities of the integrand, but if I indicate the points <code class="notranslate">[1, -1]</code> where the above integrand is singluar I get a Warning and <code class="notranslate">nan</code> as result:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [2]: quad(lambda x: 1/sqrt(1-x**2), -1, 1, points=[-1, 1]) RuntimeWarning: divide by zero encountered in double_scalars IntegrationWarning: Extremely bad integrand behavior occurs at some points of the integration interval. Out[2]: (nan, nan)"><pre class="notranslate"><code class="notranslate">In [2]: quad(lambda x: 1/sqrt(1-x**2), -1, 1, points=[-1, 1]) RuntimeWarning: divide by zero encountered in double_scalars IntegrationWarning: Extremely bad integrand behavior occurs at some points of the integration interval. Out[2]: (nan, nan) </code></pre></div> <p dir="auto">Why does <code class="notranslate">quad</code> produce these problems if the singularities of the integrand are specified and just runs fine if these points are not indicated?</p> <p dir="auto"><strong>EDIT:</strong> I figured out, that the correct way to handle the singularities in the above integral is to use a proper weighting function. For the above integral I can use</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="quad(lambda x: 1, -1, 1, weight='alg', wvar=(-1/2, -1/2))"><pre class="notranslate"><code class="notranslate">quad(lambda x: 1, -1, 1, weight='alg', wvar=(-1/2, -1/2)) </code></pre></div> <p dir="auto">and everything is is fine. The above problem with the keyword <code class="notranslate">points</code> is probably due to the fact that a different QUADPACK routine is used if <code class="notranslate">points</code> are specified.</p>
0
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Deno.bench(function a() { }); Deno.bench(function b() { });"><pre class="notranslate"><span class="pl-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">a</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-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">b</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></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="xxx@xxx xxx % deno bench Check file:///Users/xxx/WebstormProjects/radash/main_bench.ts cpu: Apple M1 Pro runtime: deno 1.29.1 (aarch64-apple-darwin) file:///Users/xxx/WebstormProjects/xxx/main_bench.ts benchmark time (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- a 504.73 ps/iter (458.3 ps … 10.54 ns) 500 ps 654.2 ps 1.22 ns b 4.2 ns/iter (4.08 ns … 16.21 ns) 4.23 ns 4.99 ns 7.39 ns"><pre class="notranslate"><code class="notranslate">xxx@xxx xxx % deno bench Check file:///Users/xxx/WebstormProjects/radash/main_bench.ts cpu: Apple M1 Pro runtime: deno 1.29.1 (aarch64-apple-darwin) file:///Users/xxx/WebstormProjects/xxx/main_bench.ts benchmark time (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- a 504.73 ps/iter (458.3 ps … 10.54 ns) 500 ps 654.2 ps 1.22 ns b 4.2 ns/iter (4.08 ns … 16.21 ns) 4.23 ns 4.99 ns 7.39 ns </code></pre></div> <p dir="auto">After adding the same code into a and b.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { draw } from 'npm:radash'; Deno.bench(function a() { draw(['test', '123', 'fff', 'ggg']); }); Deno.bench(function b() { draw(['test', '123', 'fff', 'ggg']); });"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">draw</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'npm:radash'</span><span class="pl-kos">;</span> <span class="pl-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">a</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">draw</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'test'</span><span class="pl-kos">,</span> <span class="pl-s">'123'</span><span class="pl-kos">,</span> <span class="pl-s">'fff'</span><span class="pl-kos">,</span> <span class="pl-s">'ggg'</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-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">b</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">draw</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'test'</span><span class="pl-kos">,</span> <span class="pl-s">'123'</span><span class="pl-kos">,</span> <span class="pl-s">'fff'</span><span class="pl-kos">,</span> <span class="pl-s">'ggg'</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></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="xxx@xxx xxx % deno bench Check file:///Users/xxx/WebstormProjects/xxx/main_bench.ts cpu: Apple M1 Pro runtime: deno 1.29.1 (aarch64-apple-darwin) file:///Users/xxx/WebstormProjects/xxx/main_bench.ts benchmark time (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- a 7.56 ns/iter (6.8 ns … 92.49 ns) 7.48 ns 14.83 ns 16.84 ns b 27.21 ns/iter (24.8 ns … 64.18 ns) 27.06 ns 42.39 ns 44.32 ns"><pre class="notranslate"><code class="notranslate">xxx@xxx xxx % deno bench Check file:///Users/xxx/WebstormProjects/xxx/main_bench.ts cpu: Apple M1 Pro runtime: deno 1.29.1 (aarch64-apple-darwin) file:///Users/xxx/WebstormProjects/xxx/main_bench.ts benchmark time (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- a 7.56 ns/iter (6.8 ns … 92.49 ns) 7.48 ns 14.83 ns 16.84 ns b 27.21 ns/iter (24.8 ns … 64.18 ns) 27.06 ns 42.39 ns 44.32 ns </code></pre></div>
<p dir="auto">Hello,</p> <p dir="auto">I've a behavior in Deno.bench that I cannot explain :</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Deno.bench(&quot;noop&quot;, () =&gt; {}); Deno.bench(&quot;noop&quot;, () =&gt; {}); Deno.bench(&quot;noop&quot;, () =&gt; {});"><pre class="notranslate"><span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-s">"noop"</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-s">"noop"</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">bench</span><span class="pl-kos">(</span><span class="pl-s">"noop"</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="❯ deno bench --unstable noop.ts cpu: Apple M1 runtime: deno 1.23.3 (aarch64-apple-darwin) benchmark time (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- noop 490.06 ps/iter (466.6 ps … 47.63 ns) 479.2 ps 516.7 ps 529.1 ps noop 4.29 ns/iter (4.12 ns … 32.86 ns) 4.22 ns 4.67 ns 5.38 ns noop 4.22 ns/iter (4.12 ns … 33.54 ns) 4.23 ns 4.58 ns 4.79 ns"><pre class="notranslate">❯ deno bench --unstable noop.ts cpu: Apple M1 runtime: deno 1.23.3 (aarch64-apple-darwin) benchmark <span class="pl-k">time</span> (avg) (min … max) p75 p99 p995 ------------------------------------------------- ----------------------------- noop 490.06 ps/iter (466.6 ps … 47.63 ns) 479.2 ps 516.7 ps 529.1 ps noop 4.29 ns/iter (4.12 ns … 32.86 ns) 4.22 ns 4.67 ns 5.38 ns noop 4.22 ns/iter (4.12 ns … 33.54 ns) 4.23 ns 4.58 ns 4.79 ns</pre></div> <p dir="auto">Easy to say that second and third results are close and are explained by CPU activity, but why the first is ~10x faster ?<br> Maybe something like "reset" job between them, that are not executed for the first, but, in this case, is it possible to execute this "reset" before the first job too, to be consistent ? Or just don't monitor them ?</p> <p dir="auto">Best regards,<br> Gaël</p>
1
<p dir="auto">Hi React Community, reading the features related to useState and batching, im finding problems where the state is not updated or when i have memoised a method using <code class="notranslate">useCallback</code></p> <p dir="auto">i would like to suggest about add a method to get the state in useState, an example for this approach can be this</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const useGetState = (initialValue, withGetCallback = false) =&gt; { const [state, setState] = useState(initialValue); if (!withGetCallback) { return [state, setState]; } const stateRef = useRef(state); useEffect(() =&gt; { stateRef.current = state; }, [state]); const getState = useCallback(() =&gt; { return stateRef.current; }, [stateRef]); return [state, setState, getState, stateRef]; };"><pre class="notranslate"><code class="notranslate">const useGetState = (initialValue, withGetCallback = false) =&gt; { const [state, setState] = useState(initialValue); if (!withGetCallback) { return [state, setState]; } const stateRef = useRef(state); useEffect(() =&gt; { stateRef.current = state; }, [state]); const getState = useCallback(() =&gt; { return stateRef.current; }, [stateRef]); return [state, setState, getState, stateRef]; }; </code></pre></div> <p dir="auto">an implementation could looks like this</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const [state, setState, getState] = useGetState(null, true); // back compatibility const [state, setState] = useGetState(null); // (exactly same as normal useState) // complex scenario const [state, setState, getState, stateRef] = useGetState(null, true); "><pre class="notranslate"><code class="notranslate"> const [state, setState, getState] = useGetState(null, true); // back compatibility const [state, setState] = useGetState(null); // (exactly same as normal useState) // complex scenario const [state, setState, getState, stateRef] = useGetState(null, true); </code></pre></div> <p dir="auto">using useRef we can be able to get the instance of the value in any moment and in any place due that these callbacks never changes during the execution</p>
<p dir="auto">feature request: getState, example, const [state, setState, getState] = useState(null);</p> <p dir="auto">it is ok to use the simple variable in a dependent uses effect, but not ok in not a dependant use effect.</p> <p dir="auto">the state is a simple variable. which is closure passed into functions, so it is not updated.<br> and setState with a function argument is asynchronously dispatched.<br> I suggest adding a synchronous function getState.</p> <p dir="auto">it will be useful in simple js functions that are defined in useEffect for integration with not react js</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" const [audioTrack, setAudioTrack] = useState(null); const [savedSelectedAudioTrack, setSavedSelectedAudioTrack] = useState(null); const [audioContext, setAudioContext] = useState(null); // use useEffect to run once useEffect( () =&gt;{ const handleParticipant = (participant) =&gt; { const availableTracks = Array.from( participant.tracks.values() ).filter( (publication) =&gt; publication.isSubscribed, ).map( (publication) =&gt; publication.track, ); const audioTracks = availableTracks.filter( (track) =&gt; track.kind === 'audio', ); const selectedAudioTrack = audioTracks.length === 0 ? null : audioTracks[0]; if (selectedAudioTrack !== savedSelectedAudioTrack) { // here savedSelectedAudioTrack will not work setSavedSelectedAudioTrack(selectedAudioTrack); if (audioContext) setAudioTrack( // eslint-disable-next-line prettier/prettier audioContext.MediaStreamAudioSourceNode(selectedAudioTrack) ); else setTimeout(() =&gt; handleParticipant(participant), 100); // setSelectedAudioTrack(selectedAudioTrack1); window.hasAudioTrack = true; } else { window.hasAudioTrack = false; } console.log( 'audioTracks.length:', audioTracks.length ); }; // create audiocontext and 3rd parity library and add event handler to 3rd parity library setAudioContext(createdAudioContext); 3rdParityLibrary.handleEvent=handleParticipant ; } ,[])"><pre class="notranslate"> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">audioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioTrack</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-c1">null</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">savedSelectedAudioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setSavedSelectedAudioTrack</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-c1">null</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">audioContext</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioContext</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-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// use useEffect to run once</span> <span class="pl-en">useEffect</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-k">const</span> <span class="pl-en">handleParticipant</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">participant</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-s1">availableTracks</span> <span class="pl-c1">=</span> <span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">from</span><span class="pl-kos">(</span> <span class="pl-s1">participant</span><span class="pl-kos">.</span><span class="pl-c1">tracks</span><span class="pl-kos">.</span><span class="pl-en">values</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">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">isSubscribed</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">track</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">audioTracks</span> <span class="pl-c1">=</span> <span class="pl-s1">availableTracks</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">track</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">track</span><span class="pl-kos">.</span><span class="pl-c1">kind</span> <span class="pl-c1">===</span> <span class="pl-s">'audio'</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">selectedAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span> ? <span class="pl-c1">null</span> : <span class="pl-s1">audioTracks</span><span class="pl-kos">[</span><span class="pl-c1">0</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">selectedAudioTrack</span> <span class="pl-c1">!==</span> <span class="pl-s1">savedSelectedAudioTrack</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// here savedSelectedAudioTrack will not work</span> <span class="pl-s1">setSavedSelectedAudioTrack</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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">audioContext</span><span class="pl-kos">)</span> <span class="pl-s1">setAudioTrack</span><span class="pl-kos">(</span> <span class="pl-c">// eslint-disable-next-line prettier/prettier</span> <span class="pl-s1">audioContext</span><span class="pl-kos">.</span><span class="pl-en">MediaStreamAudioSourceNode</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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-en">setTimeout</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-en">handleParticipant</span><span class="pl-kos">(</span><span class="pl-s1">participant</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">100</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// setSelectedAudioTrack(selectedAudioTrack1);</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">true</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">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">false</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">'audioTracks.length:'</span><span class="pl-kos">,</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</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">// create audiocontext and 3rd parity library and add event handler to 3rd parity library</span> <span class="pl-s1">setAudioContext</span><span class="pl-kos">(</span><span class="pl-s1">createdAudioContext</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c1">3</span><span class="pl-kos"></span><span class="pl-s1">rdParityLibrary</span><span class="pl-kos">.</span><span class="pl-c1">handleEvent</span><span class="pl-c1">=</span><span class="pl-en">handleParticipant</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></pre></div> <p dir="auto">but the working implementation is like</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" const [audioTrack, setAudioTrack] = useState(null); const [savedSelectedAudioTrack, setSavedSelectedAudioTrack] = useState(null); const [audioContext, setAudioContext] = useState(null); // use useEffect to run once useEffect( () =&gt;{ const handleParticipant = (participant) =&gt; { setSavedSelectedAudioTrack((savedSelectedAudioTrack) =&gt; { setAudioContext((audioContext) =&gt; { const availableTracks = Array.from( participant.tracks.values() ).filter( (publication) =&gt; publication.isSubscribed, ).map( (publication) =&gt; publication.track, ); const audioTracks = availableTracks.filter( (track) =&gt; track.kind === 'audio', ); const selectedAudioTrack = audioTracks.length === 0 ? null : audioTracks[0]; if (selectedAudioTrack !== savedSelectedAudioTrack) { // here savedSelectedAudioTrack will not work setSavedSelectedAudioTrack(selectedAudioTrack); if (audioContext) // and audio context also will not work setAudioTrack( // eslint-disable-next-line prettier/prettier audioContext.MediaStreamAudioSourceNode(selectedAudioTrack) ); else setTimeout(() =&gt; handleParticipant(participant), 100); // setSelectedAudioTrack(selectedAudioTrack1); window.hasAudioTrack = true; } else { window.hasAudioTrack = false; } console.log( 'audioTracks.length:', audioTracks.length ); return audioContext; }); return savedSelectedAudioTrack; }); }; // create audiocontext and 3rd parity library and add event handler to 3rd parity library setAudioContext(createdAudioContext); 3rdParityLibrary.handleEvent=handleParticipant ; } ,[])"><pre class="notranslate"> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">audioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioTrack</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-c1">null</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">savedSelectedAudioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setSavedSelectedAudioTrack</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-c1">null</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">audioContext</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioContext</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-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// use useEffect to run once</span> <span class="pl-en">useEffect</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-k">const</span> <span class="pl-en">handleParticipant</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">participant</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">setSavedSelectedAudioTrack</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">savedSelectedAudioTrack</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">setAudioContext</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">audioContext</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-s1">availableTracks</span> <span class="pl-c1">=</span> <span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">from</span><span class="pl-kos">(</span> <span class="pl-s1">participant</span><span class="pl-kos">.</span><span class="pl-c1">tracks</span><span class="pl-kos">.</span><span class="pl-en">values</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">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">isSubscribed</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">track</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">audioTracks</span> <span class="pl-c1">=</span> <span class="pl-s1">availableTracks</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">track</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">track</span><span class="pl-kos">.</span><span class="pl-c1">kind</span> <span class="pl-c1">===</span> <span class="pl-s">'audio'</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">selectedAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span> ? <span class="pl-c1">null</span> : <span class="pl-s1">audioTracks</span><span class="pl-kos">[</span><span class="pl-c1">0</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">selectedAudioTrack</span> <span class="pl-c1">!==</span> <span class="pl-s1">savedSelectedAudioTrack</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// here savedSelectedAudioTrack will not work</span> <span class="pl-s1">setSavedSelectedAudioTrack</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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">audioContext</span><span class="pl-kos">)</span> <span class="pl-c">// and audio context also will not work</span> <span class="pl-s1">setAudioTrack</span><span class="pl-kos">(</span> <span class="pl-c">// eslint-disable-next-line prettier/prettier</span> <span class="pl-s1">audioContext</span><span class="pl-kos">.</span><span class="pl-en">MediaStreamAudioSourceNode</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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-en">setTimeout</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-en">handleParticipant</span><span class="pl-kos">(</span><span class="pl-s1">participant</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">100</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// setSelectedAudioTrack(selectedAudioTrack1);</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">true</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">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">false</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">'audioTracks.length:'</span><span class="pl-kos">,</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">audioContext</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">return</span> <span class="pl-s1">savedSelectedAudioTrack</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-c">// create audiocontext and 3rd parity library and add event handler to 3rd parity library</span> <span class="pl-s1">setAudioContext</span><span class="pl-kos">(</span><span class="pl-s1">createdAudioContext</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c1">3</span><span class="pl-kos"></span><span class="pl-s1">rdParityLibrary</span><span class="pl-kos">.</span><span class="pl-c1">handleEvent</span><span class="pl-c1">=</span><span class="pl-en">handleParticipant</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></pre></div> <p dir="auto">i wish there was a synchronous getState.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" const [audioTrack, setAudioTrack] = useState(null); const [savedSelectedAudioTrack, setSavedSelectedAudioTrack, getSavedSelectedAudioTrack] = useState(null); const [audioContext, setAudioContext, getAudioContext] = useState(null); // use useEffect to run once useEffect( () =&gt;{ const handleParticipant = (participant) =&gt; { const availableTracks = Array.from( participant.tracks.values() ).filter( (publication) =&gt; publication.isSubscribed, ).map( (publication) =&gt; publication.track, ); const audioTracks = availableTracks.filter( (track) =&gt; track.kind === 'audio', ); const selectedAudioTrack = audioTracks.length === 0 ? null : audioTracks[0]; if (selectedAudioTrack !== getSavedSelectedAudioTrack()) { // here savedSelectedAudioTrack will not work setSavedSelectedAudioTrack(selectedAudioTrack); if (getAudioContext()) setAudioTrack( getAudioContext().MediaStreamAudioSourceNode(selectedAudioTrack) ); else setTimeout(() =&gt; handleParticipant(participant), 100); // setSelectedAudioTrack(selectedAudioTrack1); window.hasAudioTrack = true; } else { window.hasAudioTrack = false; } console.log( 'audioTracks.length:', audioTracks.length ); }; // create audiocontext and 3rd parity library and add event handler to 3rd parity library setAudioContext(createdAudioContext); 3rdParityLibrary.handleEvent=handleParticipant ; } ,[])"><pre class="notranslate"> <span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">audioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioTrack</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-c1">null</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">savedSelectedAudioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">setSavedSelectedAudioTrack</span><span class="pl-kos">,</span> <span class="pl-s1">getSavedSelectedAudioTrack</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-c1">null</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">audioContext</span><span class="pl-kos">,</span> <span class="pl-s1">setAudioContext</span><span class="pl-kos">,</span> <span class="pl-s1">getAudioContext</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-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// use useEffect to run once</span> <span class="pl-en">useEffect</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-k">const</span> <span class="pl-en">handleParticipant</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">participant</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-s1">availableTracks</span> <span class="pl-c1">=</span> <span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">from</span><span class="pl-kos">(</span> <span class="pl-s1">participant</span><span class="pl-kos">.</span><span class="pl-c1">tracks</span><span class="pl-kos">.</span><span class="pl-en">values</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">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">isSubscribed</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">publication</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">publication</span><span class="pl-kos">.</span><span class="pl-c1">track</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">audioTracks</span> <span class="pl-c1">=</span> <span class="pl-s1">availableTracks</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-s1">track</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">track</span><span class="pl-kos">.</span><span class="pl-c1">kind</span> <span class="pl-c1">===</span> <span class="pl-s">'audio'</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">selectedAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span> ? <span class="pl-c1">null</span> : <span class="pl-s1">audioTracks</span><span class="pl-kos">[</span><span class="pl-c1">0</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">selectedAudioTrack</span> <span class="pl-c1">!==</span> <span class="pl-s1">getSavedSelectedAudioTrack</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">// here savedSelectedAudioTrack will not work</span> <span class="pl-s1">setSavedSelectedAudioTrack</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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">getAudioContext</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-s1">setAudioTrack</span><span class="pl-kos">(</span> <span class="pl-s1">getAudioContext</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">MediaStreamAudioSourceNode</span><span class="pl-kos">(</span><span class="pl-s1">selectedAudioTrack</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-en">setTimeout</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-en">handleParticipant</span><span class="pl-kos">(</span><span class="pl-s1">participant</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">100</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// setSelectedAudioTrack(selectedAudioTrack1);</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">true</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">window</span><span class="pl-kos">.</span><span class="pl-c1">hasAudioTrack</span> <span class="pl-c1">=</span> <span class="pl-c1">false</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">'audioTracks.length:'</span><span class="pl-kos">,</span> <span class="pl-s1">audioTracks</span><span class="pl-kos">.</span><span class="pl-c1">length</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">// create audiocontext and 3rd parity library and add event handler to 3rd parity library</span> <span class="pl-s1">setAudioContext</span><span class="pl-kos">(</span><span class="pl-s1">createdAudioContext</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c1">3</span><span class="pl-kos"></span><span class="pl-s1">rdParityLibrary</span><span class="pl-kos">.</span><span class="pl-c1">handleEvent</span><span class="pl-c1">=</span><span class="pl-en">handleParticipant</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></pre></div>
1
<p dir="auto">Okay, at risk of looking like a fool, I thought I would turn here for help. Using the versions of several popular javascript libraries below, I am attempting to run some basic tests to see if atom-shell would be useful to me.</p> <p dir="auto">Versions<br> atom-shell: 0.12.3<br> angularjs: 1.3.0<br> bootstrap: 3.1.1<br> d3js: 3.4.6<br> jquery: 2.1.1</p> <p dir="auto">The problem is that I'm receiving two javascript errors and the page isn't loading. The javascript errors are:</p> <ul dir="auto"> <li>Uncaught Error: Bootstrap's JavaScript requires jQuery</li> <li>Uncaught ReferenceError: d3 is not defined</li> </ul> <p dir="auto">I have the javascript files organized in to a "lib" directory under my app directory in resources, see index.html in the gist below for details. I assume you can download the relevant versions above and recreate the structure without my having to include these very common libs in the gist.</p> <p dir="auto">I'm attempting to recreate the following d3.js example: <a href="http://bl.ocks.org/mbostock/3943967" rel="nofollow">http://bl.ocks.org/mbostock/3943967</a></p> <p dir="auto">And here is the gist: <a href="https://gist.github.com/johningle/32d66f9751ebb9ec6f6a">https://gist.github.com/johningle/32d66f9751ebb9ec6f6a</a></p> <p dir="auto">Is anyone else experiencing this issue or am I just being a noob?</p>
<p dir="auto">jQuery contains something along this lines:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="if ( typeof module === &quot;object&quot; &amp;&amp; typeof module.exports === &quot;object&quot; ) { // set jQuery in `module` } else { // set jQuery in `window` }"><pre class="notranslate"><span class="pl-k">if</span> <span class="pl-kos">(</span> <span class="pl-k">typeof</span> <span class="pl-smi">module</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-k">typeof</span> <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-s">"object"</span> <span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// set jQuery in `module`</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-c">// set jQuery in `window`</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">module is defined, even in the browser-side scripts. This causes jQuery to ignore the <code class="notranslate">window</code> object and use <code class="notranslate">module</code>, so the other scripts won't find <code class="notranslate">$</code> nor <code class="notranslate">jQuery</code> in global scope..</p> <p dir="auto">I am not sure if this is a jQuery or atom-shell bug, but I wanted to put this on the web, so others won't search as long as I did.</p>
1
<h1 dir="auto">Weekly Report of Dubbo</h1> <p dir="auto">This is a weekly report of Dubbo. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.<br> It is all done by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AliGHRobot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AliGHRobot">@AliGHRobot</a> which is a collaborate robot. See: <a href="https://github.com/AlibabaDR/Collabobot">https://github.com/AlibabaDR/Collabobot</a> .</p> <h2 dir="auto">Repo Overview</h2> <table role="table"> <thead> <tr> <th align="center">Watch</th> <th align="center">Star</th> <th align="center">Fork</th> <th align="center">Contributors</th> </tr> </thead> <tbody> <tr> <td align="center">3190</td> <td align="center">23764 (↑149)</td> <td align="center">13508 (↑112)</td> <td align="center">162 (↑2)</td> </tr> <tr> <td align="center">New Issues</td> <td align="center">Closed Issues</td> <td align="center">New PR</td> <td align="center">Merged PR</td> </tr> <tr> <td align="center">19</td> <td align="center">17</td> <td align="center">39</td> <td align="center">27</td> </tr> </tbody> </table> <h2 dir="auto">PR Overview</h2> <p dir="auto">Thanks to contributions from community, Dubbo team merged <strong>27</strong> pull requests in the repository last week. They are:</p> <ul dir="auto"> <li>correct spelling error (<a href="https://github.com/apache/incubator-dubbo/pull/3146" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3146/hovercard">#3146</a>)</li> <li>fix prefix, use hypher case instead of camel case (<a href="https://github.com/apache/incubator-dubbo/pull/3143" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3143/hovercard">#3143</a>)</li> <li>add javadoc for registry and some code (<a href="https://github.com/apache/incubator-dubbo/pull/3140" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3140/hovercard">#3140</a>)</li> <li>fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="395484770" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/3123" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/3123/hovercard" href="https://github.com/apache/dubbo/issues/3123">#3123</a>. support metadata xml config and support dubbo.properties format 'dubbo.metadata-report.address=XXx' (<a href="https://github.com/apache/incubator-dubbo/pull/3138" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3138/hovercard">#3138</a>)</li> <li>avoid dup refresh for registry config (<a href="https://github.com/apache/incubator-dubbo/pull/3135" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3135/hovercard">#3135</a>)</li> <li>fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="395485887" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/3124" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/3124/hovercard" href="https://github.com/apache/dubbo/issues/3124">#3124</a> . move RegistryDataConfig configuration into RegistryConfig… (<a href="https://github.com/apache/incubator-dubbo/pull/3129" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3129/hovercard">#3129</a>)</li> <li>Config center optimization (<a href="https://github.com/apache/incubator-dubbo/pull/3128" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3128/hovercard">#3128</a>)</li> <li>Release resource after use in ConfigParserTest (<a href="https://github.com/apache/incubator-dubbo/pull/3127" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3127/hovercard">#3127</a>)</li> <li>Fix compile error (<a href="https://github.com/apache/incubator-dubbo/pull/3122" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3122/hovercard">#3122</a>)</li> <li>enhance monitor module javadoc (<a href="https://github.com/apache/incubator-dubbo/pull/3121" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3121/hovercard">#3121</a>)</li> <li>use hyphen instead of camel for prefix (<a href="https://github.com/apache/incubator-dubbo/pull/3119" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3119/hovercard">#3119</a>)</li> <li>code optimization (<a href="https://github.com/apache/incubator-dubbo/pull/3118" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3118/hovercard">#3118</a>)</li> <li>enhance bundled examples (<a href="https://github.com/apache/incubator-dubbo/pull/3115" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3115/hovercard">#3115</a>)</li> <li>[Dubbo-3111] Change NOTICE file to embracing the new year fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="395135154" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/3111" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/3111/hovercard" href="https://github.com/apache/dubbo/issues/3111">#3111</a> (<a href="https://github.com/apache/incubator-dubbo/pull/3112" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3112/hovercard">#3112</a>)</li> <li>fix typo (<a href="https://github.com/apache/incubator-dubbo/pull/3110" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3110/hovercard">#3110</a>)</li> <li>Add log in ZkclientZookeeperClient.java (<a href="https://github.com/apache/incubator-dubbo/pull/3109" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3109/hovercard">#3109</a>)</li> <li>Replace hard coded dubbo-config-api values and small code optimization (<a href="https://github.com/apache/incubator-dubbo/pull/3108" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3108/hovercard">#3108</a>)</li> <li>add twitter follow (<a href="https://github.com/apache/incubator-dubbo/pull/3104" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3104/hovercard">#3104</a>)</li> <li>add java doc to dubbo-config-api (<a href="https://github.com/apache/incubator-dubbo/pull/3103" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3103/hovercard">#3103</a>)</li> <li>replace hard coded values with constants and small refactor (<a href="https://github.com/apache/incubator-dubbo/pull/3101" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3101/hovercard">#3101</a>)</li> <li>polish code, avoid dup code (<a href="https://github.com/apache/incubator-dubbo/pull/3099" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3099/hovercard">#3099</a>)</li> <li>Code review config center (<a href="https://github.com/apache/incubator-dubbo/pull/3096" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3096/hovercard">#3096</a>)</li> <li>remove <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/async/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/async">@async</a> from core framework. (<a href="https://github.com/apache/incubator-dubbo/pull/3095" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3095/hovercard">#3095</a>)</li> <li>Code review (<a href="https://github.com/apache/incubator-dubbo/pull/3094" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3094/hovercard">#3094</a>)</li> <li>fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="394278873" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/3070" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/3070/hovercard" href="https://github.com/apache/dubbo/issues/3070">#3070</a> (<a href="https://github.com/apache/incubator-dubbo/pull/3073" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3073/hovercard">#3073</a>)</li> <li>Update AnnotationBean.java delete duplicate code (<a href="https://github.com/apache/incubator-dubbo/pull/3021" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3021/hovercard">#3021</a>)</li> <li>code rule (<a href="https://github.com/apache/incubator-dubbo/pull/3016" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3016/hovercard">#3016</a>)</li> </ul> <h2 dir="auto">Code Review Statistics</h2> <p dir="auto">Dubbo encourages everyone to participant in code review, in order to improve software quality. Every week <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AliGHRobot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AliGHRobot">@AliGHRobot</a> would automatically help to count pull request reviews of single github user as the following. So, try to help review code in this project.</p> <table role="table"> <thead> <tr> <th align="center">Contributor ID</th> <th align="center">Pull Request Reviews</th> </tr> </thead> <tbody> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/khanimteyaz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/khanimteyaz">@khanimteyaz</a></td> <td align="center">48</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ralf0131/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ralf0131">@ralf0131</a></td> <td align="center">25</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kezhenxu94/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kezhenxu94">@kezhenxu94</a></td> <td align="center">13</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/CrazyHZM/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/CrazyHZM">@CrazyHZM</a></td> <td align="center">11</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chickenlj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chickenlj">@chickenlj</a></td> <td align="center">5</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/beiwei30/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/beiwei30">@beiwei30</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zonghaishang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zonghaishang">@zonghaishang</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/carryxyh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/carryxyh">@carryxyh</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cvictory/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cvictory">@cvictory</a></td> <td align="center">3</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lixiaojiee/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lixiaojiee">@lixiaojiee</a></td> <td align="center">2</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LiZhenNet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LiZhenNet">@LiZhenNet</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gudegg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gudegg">@gudegg</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/code4wt/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/code4wt">@code4wt</a></td> <td align="center">1</td> </tr> </tbody> </table> <h2 dir="auto">Contributors Overview</h2> <p dir="auto">It is Dubbo team's great honor to have new contributors from community. We really appreciate your contributions. Feel free to tell us if you have any opinion and please share this open source project with more people if you could. If you hope to be a contributor as well, please start from <a href="https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md">https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md</a> .<br> Here is the list of new contributors:<br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kezhenxu94/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kezhenxu94">@kezhenxu94</a><br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Sidneyxt/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Sidneyxt">@Sidneyxt</a></p> <p dir="auto">Thanks to all of you.</p>
<h1 dir="auto">Weekly Report of Dubbo</h1> <p dir="auto">This is a weekly report of Dubbo. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.<br> It is all done by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dubbo-bot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dubbo-bot">@dubbo-bot</a> which is a collaborate robot.</p> <h2 dir="auto">Repo Overview</h2> <h3 dir="auto">Basic data</h3> <p dir="auto">Baisc data shows how the watch, star, fork and contributors count changed in the passed week.</p> <table role="table"> <thead> <tr> <th align="center">Watch</th> <th align="center">Star</th> <th align="center">Fork</th> <th align="center">Contributors</th> </tr> </thead> <tbody> <tr> <td align="center">3198</td> <td align="center">24195 (↑175)</td> <td align="center">13692 (↑106)</td> <td align="center">167 (↑2)</td> </tr> </tbody> </table> <h3 dir="auto">Issues &amp; PRs</h3> <p dir="auto">Issues &amp; PRs show the new/closed issues/pull requests count in the passed week.</p> <table role="table"> <thead> <tr> <th align="center">New Issues</th> <th align="center">Closed Issues</th> <th align="center">New PR</th> <th align="center">Merged PR</th> </tr> </thead> <tbody> <tr> <td align="center">30</td> <td align="center">12</td> <td align="center">38</td> <td align="center">25</td> </tr> </tbody> </table> <h2 dir="auto">PR Overview</h2> <p dir="auto">Thanks to contributions from community, Dubbo team merged <strong>25</strong> pull requests in the repository last week. They are:</p> <ul dir="auto"> <li>add <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/OverRide/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/OverRide">@OverRide</a> annotation for override method (<a href="https://github.com/apache/incubator-dubbo/pull/3333" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3333/hovercard">#3333</a>)</li> <li>Fix random ut falling in DubboMonitorTest (<a href="https://github.com/apache/incubator-dubbo/pull/3327" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3327/hovercard">#3327</a>)</li> <li>Fix double-checked locking (<a href="https://github.com/apache/incubator-dubbo/pull/3323" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3323/hovercard">#3323</a>)</li> <li>Fix maven compile warning (<a href="https://github.com/apache/incubator-dubbo/pull/3322" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3322/hovercard">#3322</a>)</li> <li>simply telnet command enabled check logic (<a href="https://github.com/apache/incubator-dubbo/pull/3316" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3316/hovercard">#3316</a>)</li> <li>fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="385141463" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/2842" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/2842/hovercard" href="https://github.com/apache/dubbo/issues/2842">#2842</a>. remove duplicate SPI definitions (<a href="https://github.com/apache/incubator-dubbo/pull/3315" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3315/hovercard">#3315</a>)</li> <li>remove unused import (<a href="https://github.com/apache/incubator-dubbo/pull/3311" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3311/hovercard">#3311</a>)</li> <li>remove not used import (<a href="https://github.com/apache/incubator-dubbo/pull/3309" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3309/hovercard">#3309</a>)</li> <li>further enhancement for pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="401569272" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/3297" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3297/hovercard" href="https://github.com/apache/dubbo/pull/3297">#3297</a>, also fix an issue introduced in this pull request (<a href="https://github.com/apache/incubator-dubbo/pull/3303" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3303/hovercard">#3303</a>)</li> <li>Optimize heartbeat (<a href="https://github.com/apache/incubator-dubbo/pull/3299" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3299/hovercard">#3299</a>)</li> <li>code optimization (<a href="https://github.com/apache/incubator-dubbo/pull/3297" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3297/hovercard">#3297</a>)</li> <li>Fix unregister when client destroyed(referenceconfig#destroy) (<a href="https://github.com/apache/incubator-dubbo/pull/3295" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3295/hovercard">#3295</a>)</li> <li>Fix typo in 2.7.0 CHANGES file (<a href="https://github.com/apache/incubator-dubbo/pull/3293" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3293/hovercard">#3293</a>)</li> <li>use standardcharset.utf-8 instead of literal (<a href="https://github.com/apache/incubator-dubbo/pull/3285" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3285/hovercard">#3285</a>)</li> <li>Fix return type for method getMethodParameter (<a href="https://github.com/apache/incubator-dubbo/pull/3284" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3284/hovercard">#3284</a>)</li> <li>[Code Optimize]Optimize code of wrap a service bean (<a href="https://github.com/apache/incubator-dubbo/pull/3282" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3282/hovercard">#3282</a>)</li> <li>Add shutdown command for telnet (<a href="https://github.com/apache/incubator-dubbo/pull/3280" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3280/hovercard">#3280</a>)</li> <li>Bring back redis auth UT (<a href="https://github.com/apache/incubator-dubbo/pull/3278" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3278/hovercard">#3278</a>)</li> <li>Improve/heartbeat (<a href="https://github.com/apache/incubator-dubbo/pull/3276" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3276/hovercard">#3276</a>)</li> <li>[Dubbo-master] Fix fail when loop reference test on protostuff (<a href="https://github.com/apache/incubator-dubbo/pull/3252" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3252/hovercard">#3252</a>)</li> <li>Optimize code: Fix Constructor to determine illegal logic problems (<a href="https://github.com/apache/incubator-dubbo/pull/3197" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3197/hovercard">#3197</a>)</li> <li>Fix timeout filter not work in async way. (<a href="https://github.com/apache/incubator-dubbo/pull/3174" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3174/hovercard">#3174</a>)</li> <li>optimize outbound event and some format (<a href="https://github.com/apache/incubator-dubbo/pull/3141" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3141/hovercard">#3141</a>)</li> <li>Refresh invocation's attachments in each invoke. (<a href="https://github.com/apache/incubator-dubbo/pull/3017" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3017/hovercard">#3017</a>)</li> <li>fix a bug of service config (<a href="https://github.com/apache/incubator-dubbo/pull/2959" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/2959/hovercard">#2959</a>)</li> </ul> <h2 dir="auto">Code Review Statistics</h2> <p dir="auto">Dubbo encourages everyone to participant in code review, in order to improve software quality. Every week <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dubbo-bot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dubbo-bot">@dubbo-bot</a> would automatically help to count pull request reviews of single github user as the following. So, try to help review code in this project.</p> <table role="table"> <thead> <tr> <th align="center">Contributor ID</th> <th align="center">Pull Request Reviews</th> </tr> </thead> <tbody> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/khanimteyaz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/khanimteyaz">@khanimteyaz</a></td> <td align="center">37</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chickenlj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chickenlj">@chickenlj</a></td> <td align="center">27</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/beiwei30/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/beiwei30">@beiwei30</a></td> <td align="center">13</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/carryxyh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/carryxyh">@carryxyh</a></td> <td align="center">12</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ralf0131/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ralf0131">@ralf0131</a></td> <td align="center">10</td> </tr> <tr> <td align="center">@satansk</td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/CrazyHZM/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/CrazyHZM">@CrazyHZM</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lexburner/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lexburner">@lexburner</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LiZhenNet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LiZhenNet">@LiZhenNet</a></td> <td align="center">4</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/htynkn/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/htynkn">@htynkn</a></td> <td align="center">3</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kexianjun/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kexianjun">@kexianjun</a></td> <td align="center">2</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cvictory/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cvictory">@cvictory</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hopelove404/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hopelove404">@hopelove404</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Boomblog/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Boomblog">@Boomblog</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lixiaojiee/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lixiaojiee">@lixiaojiee</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/biyuhao/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/biyuhao">@biyuhao</a></td> <td align="center">1</td> </tr> <tr> <td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nzomkxia/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nzomkxia">@nzomkxia</a></td> <td align="center">1</td> </tr> </tbody> </table> <h2 dir="auto">Contributors Overview</h2> <p dir="auto">It is Dubbo team's great honor to have new contributors from community. We really appreciate your contributions. Feel free to tell us if you have any opinion and please share this open source project with more people if you could. If you hope to be a contributor as well, please start from <a href="https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md">https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md</a> .<br> Here is the list of new contributors:</p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Bricks-Man/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Bricks-Man">@Bricks-Man</a></p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mjaow/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjaow">@mjaow</a></p> <p dir="auto">Thanks to you all.</p> <p dir="auto"><em>Note: This robot is supported by <a href="https://github.com/AlibabaDR/Collabobot">Collabobot</a>.</em></p>
0
<p dir="auto">The .col-md class is not present in precompiled build.</p>
<p dir="auto">When using the customizer, I made the following change:</p> <ul dir="auto"> <li>@font-family-sans-serif - Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif</li> </ul> <p dir="auto">Left everything else as default and downloaded it. When dropping it, noticed that no definitions for .navbar-collapse. I'm sure there are others, but that's what I noticed first</p> <p dir="auto">When checking out the code and building locally using grunt, it all appears in the minifed version. In fact, there's about an 8KB difference between the two filesizes, when comparing minimized versions, with the one I built using grunt being larger.</p>
1
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong> Feature</p> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">The <code class="notranslate">ref</code> attribute passed to a DOM node can be either a callback or a <code class="notranslate">RefObject</code>, but not both. Sometimes, that's exactly what's required: for example, a library like <a href="https://popmotion.io/pose/api/posed/#posed-usage-create-a-posed-component-existing-components" rel="nofollow">react-pose</a> demands ref forwarding to work with a React Component, but you'd also like to retain a reference to the <em>same</em> parent DOM node within that component itself for a different reason. It's often not possible to nest DOM nodes to achieve a similar thing using two different ref attributes as that breaks layout.</p> <p dir="auto">Here's a link to a naive attempt to achieve this: <a href="https://codesandbox.io/s/4jyw3q3v57" rel="nofollow">https://codesandbox.io/s/4jyw3q3v57</a></p> <p dir="auto">I'm not surprised this doesn't work as there's no reason for the parent ref callback to fire, but I don't know how else to go about it.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">The callback provides the component with its own reference to the parent DOM node, whilst also providing it to the parent component via the passed <code class="notranslate">RefObject</code>.</p>
<p dir="auto">Before React 16.3 we were able to proxy the same element ref to multiple listeners, for example, to grab hold of the element for internal purposes and also expose it publicly, like so:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class MyComponent extends Component { attachRef = el =&gt; { this.buttonEl = el; this.props.buttonRef(el); } // Do something with `this.buttonEl` render () { return &lt;button ref={this.attachRef}&gt;Button&lt;/button&gt;; } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">MyComponent</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span> <span class="pl-c1">attachRef</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">buttonEl</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-en">buttonRef</span><span class="pl-kos">(</span><span class="pl-s1">el</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c">// Do something with `this.buttonEl`</span> <span class="pl-en">render</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-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">ref</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">attachRef</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span>Button<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</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">After React 16.3 this is more complicated as the ref prop can be a function or an object:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class MyComponent extends Component { buttonRef = React.createRef(); attachRef = el =&gt; { this.buttonRef.current = el; if (typeof this.props.inputRef === 'function') { this.props.inputRef(el); } else { this.props.inputRef.current = el; } } // Do something with `this.buttonRef.current` render () { return &lt;button ref={this.attachRef}&gt;Button&lt;/button&gt;; } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">MyComponent</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span> <span class="pl-c1">buttonRef</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createRef</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c1">attachRef</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">buttonRef</span><span class="pl-kos">.</span><span class="pl-c1">current</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">inputRef</span> <span class="pl-c1">===</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-en">inputRef</span><span class="pl-kos">(</span><span class="pl-s1">el</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">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">inputRef</span><span class="pl-kos">.</span><span class="pl-c1">current</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-c">// Do something with `this.buttonRef.current`</span> <span class="pl-en">render</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-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">ref</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">attachRef</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span>Button<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</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"><strong>First, is this the right approach?</strong></p> <p dir="auto">And if so, <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts#L53">Typescript types</a> say:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface RefObject&lt;T&gt; { readonly current: T | null; }"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">RefObject</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">readonly</span> <span class="pl-c1">current</span>: <span class="pl-smi">T</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Which prevents us from assigning to <code class="notranslate">current</code>. <strong>Shouldn't it not be readonly?</strong></p>
1
<p dir="auto">this does not seem to work with multiple screens, any plans on extending that feature?</p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">Currently the new FZ editor only comes up and applies zone layouts to the primary monitor. In order to get a layout on a different monitor, the original custom editor is needed. Bret and Jeff have a design for this change and now they need to implement it.</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">Note that when this is done the original editor should be removed as well as the setting to toggle between editors.</p>
1
<p dir="auto">Hi,</p> <p dir="auto">I have tried this steps but it fails to get minions.</p> <p dir="auto">core@kube-00 ~ $ kubectl get minions<br> Error: Get <a href="http://localhost:8080/api/v1beta3/minions" rel="nofollow">http://localhost:8080/api/v1beta3/minions</a>: dial tcp 127.0.0.1:8080: connection refused</p> <p dir="auto">Deployment was successful without any errors and I can see the all nodes up and running in azure.</p> <p dir="auto">Please assist ..<br> Thank you</p>
<p dir="auto">I was trying to follow these instruction @ <a href="https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/azure.md">https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/azure.md</a> to build some containers and manage it but I can’t get pass the step of deploying apps</p> <p dir="auto">Steps I am able to run until is cluster/kube-up.sh (</p> <p dir="auto">This step never finishes , loops on Validation step and never ends, but I can see master and Menons spin up in Azure portal and can SSH to master , It looks like the kube-up.sh is not successful.</p> <p dir="auto">But I tried Next steps of deploying a sample app on nginx container fails</p> <p dir="auto"><a href="https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/simple-nginx.md">https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/simple-nginx.md</a></p> <p dir="auto">It basically can't connect to master node with error it can't connect to localhost:8080 api server</p> <p dir="auto">One thing other thing is doc is not clear about where to run this from ? Workstation , or kubernetes master ?</p> <p dir="auto">Also when run kubectl run my-nginx --image=nginx --replicas=2 --port=80 it says "run" is not recognized option.</p> <p dir="auto">Thanks</p>
1
<p dir="auto">From <a href="https://ci.appveyor.com/project/flutter/flutter/build/1.0.10832" rel="nofollow">https://ci.appveyor.com/project/flutter/flutter/build/1.0.10832</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="15:03 +2123 ~20: loading C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_5_test.dart unhandled error during finalization of test: C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_4_test.dart FileSystemException: Deletion failed, path = 'C:\Users\appveyor\AppData\Local\Temp\1\dart_test_listener4106bb48-2bb3-11e8-81e6-00155d07f5b1' (OS Error: The process cannot access the file because it is being used by another process. , errno = 32) 15:03 +2123 ~20 -1: loading C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_4_test.dart [E] FileSystemException: Deletion failed, path = 'C:\Users\appveyor\AppData\Local\Temp\1\dart_test_listener4106bb48-2bb3-11e8-81e6-00155d07f5b1' (OS Error: The process cannot access the file because it is being used by another process. , errno = 32) package:flutter_tools/src/test/flutter_platform.dart 529 _FlutterPlatform._startTest ===== asynchronous gap =========================== dart:async/future_impl.dart 22 _Completer.completeError package:flutter_tools/src/test/flutter_platform.dart _FlutterPlatform._startTest ===== asynchronous gap =========================== dart:async/zone.dart 1055 _CustomZone.registerUnaryCallback dart:async-patch/dart:async/async_patch.dart 77 _asyncThenWrapperHelper package:flutter_tools/src/test/flutter_platform.dart 264 _FlutterPlatform._startTest package:flutter_tools/src/test/flutter_platform.dart 257 _FlutterPlatform.loadChannel package:test/src/runner/plugin/platform.dart 63 PlatformPlugin.load ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/runner/plugin/platform.dart 60 PlatformPlugin.load package:test/src/runner/loader.dart 252 Loader.loadFile.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1055 _CustomZone.registerUnaryCallback dart:async-patch/dart:async/async_patch.dart 77 _asyncThenWrapperHelper package:test/src/runner/loader.dart 246 Loader.loadFile.&lt;fn&gt; package:test/src/runner/load_suite.dart 89 new LoadSuite.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/runner/load_suite.dart 88 new LoadSuite.&lt;fn&gt;.&lt;fn&gt; package:test/src/utils.dart 297 invoke package:test/src/runner/load_suite.dart 88 new LoadSuite.&lt;fn&gt; package:test/src/backend/invoker.dart 403 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/backend/invoker.dart 402 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; dart:async/future.dart 174 new Future.&lt;fn&gt; package:stack_trace/src/stack_zone_specification.dart 209 StackZoneSpecification._run package:stack_trace/src/stack_zone_specification.dart 119 StackZoneSpecification._registerCallback.&lt;fn&gt; dart:async/zone.dart 1122 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 925 _CustomZone.runGuarded dart:async/zone.dart 965 _CustomZone.bindCallbackGuarded.&lt;fn&gt; package:stack_trace/src/stack_zone_specification.dart 209 StackZoneSpecification._run package:stack_trace/src/stack_zone_specification.dart 119 StackZoneSpecification._registerCallback.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 949 _CustomZone.bindCallback.&lt;fn&gt; dart:async-patch/dart:async/timer_patch.dart 21 Timer._createTimer.&lt;fn&gt; dart:isolate-patch/dart:isolate/timer_impl.dart 382 _Timer._runTimers dart:isolate-patch/dart:isolate/timer_impl.dart 416 _Timer._handleMessage dart:isolate-patch/dart:isolate/isolate_patch.dart 165 _RawReceivePortImpl._handleMessage ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/timer.dart 52 new Timer dart:async/timer.dart 87 Timer.run dart:async/future.dart 172 new Future package:test/src/backend/invoker.dart 402 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/backend/invoker.dart 389 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:test/src/backend/invoker.dart 389 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:test/src/backend/invoker.dart 144 Invoker.guard package:test/src/backend/invoker.dart 441 Invoker._guardIfGuarded package:test/src/backend/invoker.dart 388 Invoker._onRun.&lt;fn&gt; package:stack_trace/src/chain.dart 101 Chain.capture.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:stack_trace/src/chain.dart 99 Chain.capture package:test/src/backend/invoker.dart 387 Invoker._onRun package:test/src/backend/live_test_controller.dart 188 LiveTestController._run package:test/src/backend/live_test_controller.dart 40 _LiveTest.run dart:async/future.dart 200 new Future.microtask.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 949 _CustomZone.bindCallback.&lt;fn&gt; dart:async/schedule_microtask.dart 41 _microtaskLoop dart:async/schedule_microtask.dart 50 _startMicrotaskLoop dart:isolate-patch/dart:isolate/isolate_patch.dart 113 _runPendingImmediateCallback dart:isolate-patch/dart:isolate/isolate_patch.dart 166 _RawReceivePortImpl._handleMessage 15:05 +2123 ~20 -1: C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_5_test.dart: - Semantics 5"><pre class="notranslate"><code class="notranslate">15:03 +2123 ~20: loading C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_5_test.dart unhandled error during finalization of test: C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_4_test.dart FileSystemException: Deletion failed, path = 'C:\Users\appveyor\AppData\Local\Temp\1\dart_test_listener4106bb48-2bb3-11e8-81e6-00155d07f5b1' (OS Error: The process cannot access the file because it is being used by another process. , errno = 32) 15:03 +2123 ~20 -1: loading C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_4_test.dart [E] FileSystemException: Deletion failed, path = 'C:\Users\appveyor\AppData\Local\Temp\1\dart_test_listener4106bb48-2bb3-11e8-81e6-00155d07f5b1' (OS Error: The process cannot access the file because it is being used by another process. , errno = 32) package:flutter_tools/src/test/flutter_platform.dart 529 _FlutterPlatform._startTest ===== asynchronous gap =========================== dart:async/future_impl.dart 22 _Completer.completeError package:flutter_tools/src/test/flutter_platform.dart _FlutterPlatform._startTest ===== asynchronous gap =========================== dart:async/zone.dart 1055 _CustomZone.registerUnaryCallback dart:async-patch/dart:async/async_patch.dart 77 _asyncThenWrapperHelper package:flutter_tools/src/test/flutter_platform.dart 264 _FlutterPlatform._startTest package:flutter_tools/src/test/flutter_platform.dart 257 _FlutterPlatform.loadChannel package:test/src/runner/plugin/platform.dart 63 PlatformPlugin.load ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/runner/plugin/platform.dart 60 PlatformPlugin.load package:test/src/runner/loader.dart 252 Loader.loadFile.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1055 _CustomZone.registerUnaryCallback dart:async-patch/dart:async/async_patch.dart 77 _asyncThenWrapperHelper package:test/src/runner/loader.dart 246 Loader.loadFile.&lt;fn&gt; package:test/src/runner/load_suite.dart 89 new LoadSuite.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/runner/load_suite.dart 88 new LoadSuite.&lt;fn&gt;.&lt;fn&gt; package:test/src/utils.dart 297 invoke package:test/src/runner/load_suite.dart 88 new LoadSuite.&lt;fn&gt; package:test/src/backend/invoker.dart 403 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/backend/invoker.dart 402 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; dart:async/future.dart 174 new Future.&lt;fn&gt; package:stack_trace/src/stack_zone_specification.dart 209 StackZoneSpecification._run package:stack_trace/src/stack_zone_specification.dart 119 StackZoneSpecification._registerCallback.&lt;fn&gt; dart:async/zone.dart 1122 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 925 _CustomZone.runGuarded dart:async/zone.dart 965 _CustomZone.bindCallbackGuarded.&lt;fn&gt; package:stack_trace/src/stack_zone_specification.dart 209 StackZoneSpecification._run package:stack_trace/src/stack_zone_specification.dart 119 StackZoneSpecification._registerCallback.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 949 _CustomZone.bindCallback.&lt;fn&gt; dart:async-patch/dart:async/timer_patch.dart 21 Timer._createTimer.&lt;fn&gt; dart:isolate-patch/dart:isolate/timer_impl.dart 382 _Timer._runTimers dart:isolate-patch/dart:isolate/timer_impl.dart 416 _Timer._handleMessage dart:isolate-patch/dart:isolate/isolate_patch.dart 165 _RawReceivePortImpl._handleMessage ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/timer.dart 52 new Timer dart:async/timer.dart 87 Timer.run dart:async/future.dart 172 new Future package:test/src/backend/invoker.dart 402 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; ===== asynchronous gap =========================== dart:async/zone.dart 1047 _CustomZone.registerCallback dart:async/zone.dart 964 _CustomZone.bindCallbackGuarded dart:async/schedule_microtask.dart 147 scheduleMicrotask dart:async/future.dart 198 new Future.microtask package:test/src/backend/invoker.dart 389 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt;.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:test/src/backend/invoker.dart 389 Invoker._onRun.&lt;fn&gt;.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:test/src/backend/invoker.dart 144 Invoker.guard package:test/src/backend/invoker.dart 441 Invoker._guardIfGuarded package:test/src/backend/invoker.dart 388 Invoker._onRun.&lt;fn&gt; package:stack_trace/src/chain.dart 101 Chain.capture.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 1501 runZoned package:stack_trace/src/chain.dart 99 Chain.capture package:test/src/backend/invoker.dart 387 Invoker._onRun package:test/src/backend/live_test_controller.dart 188 LiveTestController._run package:test/src/backend/live_test_controller.dart 40 _LiveTest.run dart:async/future.dart 200 new Future.microtask.&lt;fn&gt; dart:async/zone.dart 1126 _rootRun dart:async/zone.dart 1023 _CustomZone.run dart:async/zone.dart 949 _CustomZone.bindCallback.&lt;fn&gt; dart:async/schedule_microtask.dart 41 _microtaskLoop dart:async/schedule_microtask.dart 50 _startMicrotaskLoop dart:isolate-patch/dart:isolate/isolate_patch.dart 113 _runPendingImmediateCallback dart:isolate-patch/dart:isolate/isolate_patch.dart 166 _RawReceivePortImpl._handleMessage 15:05 +2123 ~20 -1: C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_5_test.dart: - Semantics 5 </code></pre></div>
<p dir="auto">cupertino_picker_demo.dart results in bulid Error.</p> <p dir="auto"><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/2a8e35cc9c42e6957b069439eaa56207afed5ea2/hovercard" href="https://github.com/flutter/flutter/commit/2a8e35cc9c42e6957b069439eaa56207afed5ea2"><tt>2a8e35c</tt></a></p> <p dir="auto">The latest fix checked in breaks the build with following error.</p> <p dir="auto"><strong>Compiler message:</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:168:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.date, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:167:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:167:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:168:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.date, ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:198:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.time, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:197:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:197:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:198:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.time, ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:228:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.dateAndTime, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:227:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:227:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:228:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.dateAndTime, ^ Compiler failed on d:\Repos\flutter\examples\flutter_gallery\lib/main.dart Gradle task 'assembleDebug'... Done 10.1s Gradle task assembleDebug failed with exit code 1"><pre class="notranslate"><code class="notranslate">file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:168:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.date, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:167:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:167:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:168:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.date, ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:198:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.time, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:197:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:197:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:198:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.time, ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:228:23: Error: Getter not found: 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.dateAndTime, ^^^^^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:227:15: Error: Method not found: 'CupertinoDatePicker'. CupertinoDatePicker( ^^^^^^^^^^^^^^^^^^^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:227:15: Error: The method 'CupertinoDatePicker' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoDatePicker'. CupertinoDatePicker( ^ file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:228:23: Error: The getter 'CupertinoDatePickerMode' isn't defined for the class '#lib1::_CupertinoPickerDemoState'. Try correcting the name to the name of an existing getter, or defining a getter or field named 'CupertinoDatePickerMode'. mode: CupertinoDatePickerMode.dateAndTime, ^ Compiler failed on d:\Repos\flutter\examples\flutter_gallery\lib/main.dart Gradle task 'assembleDebug'... Done 10.1s Gradle task assembleDebug failed with exit code 1 </code></pre></div>
0
<p dir="auto">Okay please check this fiddle out: <a href="http://jsfiddle.net/p97xS/3/" rel="nofollow">http://jsfiddle.net/p97xS/3/</a><br> So the issue is, When you open or close a popover by clicking the element on which the <code class="notranslate">popover</code> is initiated everything works well. Good!</p> <p dir="auto">However problem arises when you plan to hide popover through another element (or button) using <code class="notranslate">$('#example').popover('hide')</code>. Sure the content and the popover is hidden but they are actually still present in the DOM. Which means if a popover <code class="notranslate">data-content</code> consists of buttons, you can still click them even if they are hidden!</p> <p dir="auto">So in the example fiddle, click the main button - a popover appears. Now hide it using the second button. Popover is hidden but its contents are still clickable!</p>
<p dir="auto">i searched for an already opened issue but did not found any that was reporting this exact problem.</p> <p dir="auto">I'm trying to use the destroy method on tooltip (bootstrap v3) but it does not remove the element from the DOM.</p> <p dir="auto">Any idea ?</p> <p dir="auto">Fiddle : <a href="http://jsfiddle.net/52VtD/59/" rel="nofollow">http://jsfiddle.net/52VtD/59/</a></p> <p dir="auto">click on the button to trigger the tooltip destroy method</p>
1
<pre class="notranslate">$ cd fmt $ go vet -x /Users/r/go/pkg/tool/darwin_amd64/vet doc.go export_test.go fmt_test.go format.go print.go scan.go scan_test.go stringer_test.go $ # Add the -v flag $ /Users/r/go/pkg/tool/darwin_amd64/vet -v doc.go export_test.go fmt_test.go format.go print.go scan.go scan_test.go stringer_test.go see lots of incorrect errors because: vet: fmt_test.go:5:1: package fmt_test; expected fmt $ # Do this instead, breaking the arguments into two runs of distinct packages. $ # The warnings here are legitimate. $ $ /Users/r/go/pkg/tool/darwin_amd64/vet -v doc.go export_test.go format.go print.go scan.go Checking file doc.go Checking file export_test.go Checking file format.go Checking file print.go print.go:229: can't check non-constant format in call to Fprintf print.go:244: can't check non-constant format in call to Sprintf Checking file scan.go $ /Users/r/go/pkg/tool/darwin_amd64/vet -v fmt_test.go scan_test.go stringer_test.go vet: fmt_test.go:957:6: undeclared name: IsSpace Checking file fmt_test.go ##### This one is problematic; it's in export_test.go in package fmt. fmt_test.go:522: can't check non-constant format in call to Sprintf fmt_test.go:596: can't check non-constant format in call to Sprintf fmt_test.go:724: can't check non-constant format in call to Sprintf fmt_test.go:748: can't check non-constant format in call to Sprintf fmt_test.go:859: can't check non-constant format in call to Sprintf fmt_test.go:912: can't check non-constant format in call to Sprintf fmt_test.go:968: arg nil for printf verb %s of wrong type: untyped nil Checking file scan_test.go Checking file stringer_test.go $ The question is, who should do this breakdown?</pre>
<p dir="auto">by <strong>vinay.ys</strong>:</p> <pre class="notranslate">Fresh build of the latest tip (parent: 19011:ae14bde9ce3c tip) failed reflect test. Build log is attached. What steps will reproduce the problem? Reran ./all.bash and it succeeded fine. So, no simple reproduction Which compiler are you using (5g, 6g, 8g, gccgo)? Which operating system are you using? 13.0.2 Darwin Kernel Version 13.0.2: Sun Sep 29 19:38:57 PDT 2013; root:xnu-2422.75.4~1/RELEASE_X86_64 x86_64 Which version are you using? (run 'go version') $ hg summary parent: 19011:ae14bde9ce3c tip A+C: Denis Brandolini (individual CLA) branch: default commit: (clean) update: (current) Please provide any additional information below. Attached log file contains the crash trace.</pre> <p dir="auto">Attachments:</p> <ol dir="auto"> <li><a href="https://storage.googleapis.com/go-attachment/7273/0/golang-build-failure-ae14bde9ce3c.log" rel="nofollow">golang-build-failure-ae14bde9ce3c.log</a> (3316 bytes)</li> </ol>
0
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/11151000/45806794-84272480-bcf4-11e8-872c-7828c49657b9.png"><img src="https://user-images.githubusercontent.com/11151000/45806794-84272480-bcf4-11e8-872c-7828c49657b9.png" alt="screenshot 114" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/11151000/45806796-84272480-bcf4-11e8-90c8-0fa7a7c98bee.png"><img src="https://user-images.githubusercontent.com/11151000/45806796-84272480-bcf4-11e8-90c8-0fa7a7c98bee.png" alt="screenshot 115" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/11151000/45806798-84bfbb00-bcf4-11e8-9199-8f86e6e364ab.png"><img src="https://user-images.githubusercontent.com/11151000/45806798-84bfbb00-bcf4-11e8-9199-8f86e6e364ab.png" alt="screenshot 116" style="max-width: 100%;"></a></p>
<p dir="auto">I have noticed that spider_idle signal is not called when the last issued request is filtered out by dedupe filter.</p> <p dir="auto">Example spider:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scrapy import log, signals from scrapy.http import Request from scrapy.spider import BaseSpider class IdleSpider(BaseSpider): name = 'idle_spider' def set_crawler(self, crawler): super(IdleSpider, self).set_crawler(crawler) self.crawler.signals.connect(self._spider_idle, signal=signals.spider_idle) def _spider_idle(self, spider): self.log('Enqueuing...', log.INFO) self.crawler.engine.crawl(Request('http://httpbin.org/'), self) def start_requests(self): return [] def parse(self, response): self.log('Parsing...', log.INFO) pass"><pre class="notranslate"><code class="notranslate">from scrapy import log, signals from scrapy.http import Request from scrapy.spider import BaseSpider class IdleSpider(BaseSpider): name = 'idle_spider' def set_crawler(self, crawler): super(IdleSpider, self).set_crawler(crawler) self.crawler.signals.connect(self._spider_idle, signal=signals.spider_idle) def _spider_idle(self, spider): self.log('Enqueuing...', log.INFO) self.crawler.engine.crawl(Request('http://httpbin.org/'), self) def start_requests(self): return [] def parse(self, response): self.log('Parsing...', log.INFO) pass </code></pre></div> <p dir="auto">Message <em>"Enqueuing..."</em> is printed out exactly two times and <em>"Parsing..."</em> exactly once. After that <em>spider_idle</em> signal is sent no more. To me it seems like a bug, but if it is an intention, please reconsider it. It is rather unfortunate in the scenario, when _<em>spider_idle</em> is issuing new requests in batches and suddenly the last request was redirected to previously visited url (i.e. it wasn't even directly duplicate request).</p> <p dir="auto">Of course the simple solution can be to use dont_filter on the issued requests, but it doesn't seem right to me.</p>
0
<p dir="auto">This was a nice, though unexpected change with 3.2, but i have one request. Can we pretty please have table-related display options? Obviously I can just add these myself to my instance, but I would love to see this officially supported. The use case is legit to me; something like input group add-ons, which in some cases may not make sense to show in a mobile environment but add a nice touch in desktop. Since these are display: table-cell by default, to only that element in desktop you'd need something like</p> <p dir="auto">.visible-lg-table-cell {<br> display: table-cell !important;<br> }</p> <p dir="auto">Thanks for your consideration. I don't know how much table-row or others might be used, but display: table-cell would come in handy.</p>
<p dir="auto">I really need ".visible-*-table-cell".</p>
1
<p dir="auto">Hi,</p> <p dir="auto">I am trying to build latest TF with CUDNN 6.0 + CUDA 8.0 on Ubuntu 14 but it failed with the following error message. I found some similar issue (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="121548025" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/469" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/469/hovercard" href="https://github.com/tensorflow/tensorflow/issues/469">#469</a>) reported in the past, not sure if the latest tip has fixed it?</p> <p dir="auto">Any suggestion would be appreciated.</p> <p dir="auto">Thanks</p> <p dir="auto"><strong>Build Command</strong></p> <ul dir="auto"> <li> <p dir="auto">build command for CUDA that failed<br> <code class="notranslate">bazel build --config=opt --config=cuda //tensorflow/tools/pip_package:build_pip_package </code></p> </li> <li> <p dir="auto">build for CPU works well<br> <code class="notranslate">bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package</code></p> </li> </ul> <p dir="auto"><strong>System Info</strong></p> <ul dir="auto"> <li>bazel version : Build label: 0.5.4</li> <li>CUDA: 8.0</li> <li>CUDNN 6.0</li> <li>TF origin/master latest sync as 10/26/17 (cb7cb40 Merge pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="268431149" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/13972" data-hovercard-type="pull_request" data-hovercard-url="/tensorflow/tensorflow/pull/13972/hovercard" href="https://github.com/tensorflow/tensorflow/pull/13972">#13972</a> from taehoonlee/fix_typos)</li> </ul> <p dir="auto"><strong>Error message:</strong><br> <code class="notranslate">ERROR: $PROJECT_ROOT/tensorflow/tensorflow/stream_executor/BUILD:52:1: undeclared inclusion(s) in rule '//tensorflow/stream_executor:cuda_platform': this rule is missing dependency declarations for the following files included by 'tensorflow/stream_executor/cuda/cuda_blas.cc': '/usr/local/cuda/include/cublas_api.h' '/usr/local/cuda/include/driver_types.h' '/usr/local/cuda/include/host_defines.h' '/usr/local/cuda/include/cuComplex.h' '/usr/local/cuda/include/vector_types.h' '/usr/local/cuda/include/builtin_types.h' '/usr/local/cuda/include/device_types.h' '/usr/local/cuda/include/surface_types.h' '/usr/local/cuda/include/texture_types.h' '/usr/local/cuda/include/cuda_fp16.h' '/usr/local/cuda/include/library_types.h' tensorflow/stream_executor/cuda/cuda_blas.cc: In function 'cudaDataType_t perftools::gputools::cuda::{anonymous}::CUDAComputationType(perftools::gputools::blas::ComputationType)': tensorflow/stream_executor/cuda/cuda_blas.cc:527:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ </code></p>
<p dir="auto">Hey guys,</p> <p dir="auto">I can compile the cpu version of tensorflow 1.2.0-rc2 without any problem, however, i am blocked when i try to compile the gpu version. I spend almost the whole day to install tensorflow 1.2.0-rc2 gpu version in our cluster, however there is no lucky.</p> <h3 dir="auto">Here is the error from the terminal:</h3> <p dir="auto">ERROR: /home/hpc-xin/.cache/bazel/_bazel_hpc-xin/c5e302e32d7acb9c3e4fce8142d1cd66/external/nccl_archive/BUILD:33:1: undeclared inclusion(s) in rule '@nccl_archive//:nccl':<br> this rule is missing dependency declarations for the following files included by 'external/nccl_archive/src/libwrap.cu.cc':<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include-fixed/limits.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include-fixed/syslimits.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include/stddef.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/new'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/x86_64-unknown-linux-gnu/bits/c++config.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/x86_64-unknown-linux-gnu/bits/os_defines.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/x86_64-unknown-linux-gnu/bits/cpu_defines.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/exception'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/bits/atomic_lockfree_defines.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/bits/exception_ptr.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/bits/exception_defines.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/bits/nested_exception.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include/stdarg.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/cmath'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/bits/cpp_type_traits.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/ext/type_traits.h'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/cstdlib'<br> '/gpfs/gpfs1/apps2/gcc/5.4.0/include/c++/5.4.0/cstdio'.<br> Target //tensorflow/tools/pip_package:build_pip_package failed to build<br> Use --verbose_failures to see the command lines of failed build steps.<br> INFO: Elapsed time: 22.226s, Critical Path: 5.20s</p> <h3 dir="auto">OS Information</h3> <p dir="auto">Red Hat Enterprise Linux Workstation release 6.7 (Santiago)</p> <h3 dir="auto">Modules I loaded</h3> <p dir="auto">gcc/5.4.0, cuda/8.0.61, cudnn/6.0, java/1.8.0_31, sqlite/3.18.0, tcl/8.6.6.8606, python/3.6.1</p> <h3 dir="auto">Here is how i make the configuration</h3> <p dir="auto">gcc (v5.4.0): /apps2/gcc/5.4.0 (customized path)<br> enabled cuda (v8.0): /apps2/cuda/8.0.61 (customized path)<br> enabled cudnn: /apps2/cudnn/6.0 (customized path)<br> python (v3.6.1, which is compiled with gcc 5.4.0): /apps2/python/3.6.1 (customized path)<br> Other options are disabled (such as hadoop, google cloud).</p> <h3 dir="auto">Here are some files i modified manually before compiling</h3> <p dir="auto">(1) /tensorflow-1.2.0-rc2/third_party/gpus/crosstool/CROSSTOOL_clang.tpl<br> /tensorflow-1.2.0-rc2/third_party/gpus/crosstool/CROSSTOOL_nvcc.tpl<br> Add the following contents in all of "toolchain":<br> cxx_builtin_include_directory: "/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include"<br> cxx_builtin_include_directory: "/apps2/gcc/5.4.0/lib/gcc/x86_64-unknown-linux-gnu/5.4.0/include-fixed"<br> cxx_builtin_include_directory: "/apps2/gcc/5.4.0/include/c++/5.4.0"<br> cxx_builtin_include_directory: "/apps2/gcc/5.4.0/include"<br> cxx_builtin_include_directory: "/apps2/cuda/8.0.61/include"<br> cxx_builtin_include_directory: "/apps2/cudnn/6.0/include"</p> <p dir="auto">(2) /home/hpc-xin/.cache/bazel/_bazel_hpc-xin/c5e302e32d7acb9c3e4fce8142d1cd66/external/protobuf/protobuf.bzl<br> Add the following content in "ctx.action"<br> env=ctx.configuration.default_shell_env</p> <p dir="auto">(3) /home/hpc-xin/.cache/bazel/_bazel_hpc-xin/c5e302e32d7acb9c3e4fce8142d1cd66/external/nccl_archive/Makefile<br> Some modification as below:<br> CUDA_HOME ?= /usr/local/cuda --&gt; CUDA_HOME ?= /apps2/cuda/8.0.61</p> <p dir="auto">I noticed that some of people said this issue could be bypassed by delete the nccl dependence in "/tensorflow-1.2.0-rc2/tensorflow/contrib/BUILD". However, i do not think this is the correct way to solve this issue. I wanna keep this dependence.</p> <p dir="auto">Thanks so much for your help. Any comments are appreciated.<br> Best Regards<br> Xin</p>
1
<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 <code class="notranslate">@types/requirejs</code> package and had problems.</li> </ul> <p dir="auto"><strong>package.json</strong><br> `<br> "devDependencies": {<br> "@syncfusion/ej2-build": "*",<br> "@types/chai": "^3.4.28",<br> "@types/jasmine": "2.8.9",<br> "@types/jasmine-ajax": "^3.1.27",<br> "@types/requirejs": "^2.1.31"<br> }</p> <p dir="auto">`<br> <strong>When i try compile my application it throws below error:</strong></p> <blockquote> <p dir="auto">[11:47:10] Starting 'scripts-gen'...<br> D:/workspace/components/ej2-button-components/node_modules/@types/requirejs/index.d.ts(396,13): error TS2403: <strong>Subsequent variable declarations must have the same type. Variable 'require' must be of type 'NodeRequire', but here has type 'Require'.</strong><br> [11:47:23] 'scripts-gen' errored after 12 s<br> [11:47:23] TypeScript error: D:/workspace/components/ej2-button-components/node_modules/@types/requirejs/index.d.ts(396,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'NodeRequire', but here has type 'Require'.<br> at Object.getError (D:\workspace\components\ej2-button-components\node_modules\gulp-typescript\release\utils.js:53:15)</p> </blockquote> <p dir="auto"><strong>versions:</strong><br> node - v8.11.3<br> npm - 5.6.0<br> typescript -3.0.3</p> <p dir="auto">Please check this and provide any solution for this ASAP</p>
<p dir="auto">I'm getting the following error when I compile my sails project from my lodash typings.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error TS2403: Subsequent variable declarations must have the same type. Variable '_' must be of type 'any', but here has type 'LoDashStatic'. &gt;&gt; 1 non-emit-preventing type warning &gt;&gt; Error: tsc return code: 2 Warning: Task &quot;ts:compile&quot; failed. Use --force to continue. Aborted due to warnings."><pre class="notranslate"><code class="notranslate">error TS2403: Subsequent variable declarations must have the same type. Variable '_' must be of type 'any', but here has type 'LoDashStatic'. &gt;&gt; 1 non-emit-preventing type warning &gt;&gt; Error: tsc return code: 2 Warning: Task "ts:compile" failed. Use --force to continue. Aborted due to warnings. </code></pre></div> <p dir="auto">I am using TSC 1.7.5. <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/files/111505/files.zip">Here</a> are my tsconfig, tsd and package files.</p> <p dir="auto">I swear this used to work, any help would be much appreciated.</p> <p dir="auto">Thanks.</p>
0
<h3 dir="auto">Describe the workflow you want to enable</h3> <p dir="auto">Currently, there is no way to derive the <em>Sensitivity</em> or the <strong>Specificity</strong> from the confusions matrics<br> The only way to be calculated is to do it yourself. this can be simple if you are doing a simple binary classification like this one on the image.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/72753578/140646253-1db308b0-c4fc-44fc-9969-e1feb225d57d.png"><img width="896" alt="Screen Shot 2021-11-07 at 3 08 21 PM" src="https://user-images.githubusercontent.com/72753578/140646253-1db308b0-c4fc-44fc-9969-e1feb225d57d.png" style="max-width: 100%;"></a></p> <p dir="auto">But if you are dealing with multiple categories more than 2 this can be slightly complicated and it can take time!</p> <p dir="auto">Also, I think that calculating Sensitivity and Specificity will help analyze our model much much better</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/72753578/140646452-8c0a628b-2f16-49fc-86e0-7150c4e7e1b5.png"><img width="1098" alt="Screen Shot 2021-11-07 at 3 14 06 PM" src="https://user-images.githubusercontent.com/72753578/140646452-8c0a628b-2f16-49fc-86e0-7150c4e7e1b5.png" style="max-width: 100%;"></a></p> . <h3 dir="auto">Describe your proposed solution</h3> <p dir="auto">Add 2 new functions to <code class="notranslate">sklearn.metrics</code> that accept the confusion matrix and then return sensitive or specificity<br> Should be something like this</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn.metrics import sensitive_score, specificity_score, confusion_matrix conf = confusion_matrix(y_test, y_pred) specificity = specificity_score(conf) sensitive = sensitive_score(conf)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">metrics</span> <span class="pl-k">import</span> <span class="pl-s1">sensitive_score</span>, <span class="pl-s1">specificity_score</span>, <span class="pl-s1">confusion_matrix</span> <span class="pl-s1">conf</span> <span class="pl-c1">=</span> <span class="pl-en">confusion_matrix</span>(<span class="pl-s1">y_test</span>, <span class="pl-s1">y_pred</span>) <span class="pl-s1">specificity</span> <span class="pl-c1">=</span> <span class="pl-en">specificity_score</span>(<span class="pl-s1">conf</span>) <span class="pl-s1">sensitive</span> <span class="pl-c1">=</span> <span class="pl-en">sensitive_score</span>(<span class="pl-s1">conf</span>)</pre></div> <p dir="auto">We can do even better by make it more intuitively to use</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# it will caculate the confusion matrix internally ! specificity = specificity_score(y_test, y_pred) sensitive = sensitive_score(y_test, y_pred)"><pre class="notranslate"><span class="pl-c"># it will caculate the confusion matrix internally !</span> <span class="pl-s1">specificity</span> <span class="pl-c1">=</span> <span class="pl-en">specificity_score</span>(<span class="pl-s1">y_test</span>, <span class="pl-s1">y_pred</span>) <span class="pl-s1">sensitive</span> <span class="pl-c1">=</span> <span class="pl-en">sensitive_score</span>(<span class="pl-s1">y_test</span>, <span class="pl-s1">y_pred</span>)</pre></div> <h3 dir="auto">Describe alternatives you've considered, if relevant</h3> <p dir="auto">I think this feature will be <code class="notranslate">good to have</code> one.<br> I can implement it myself!! and open a new pull request</p>
<p dir="auto">I'm not sure if this is intended, but I was confused that the <code class="notranslate">score</code> function after grid search uses a different scorer than the scorer defined in <code class="notranslate">GridSearchCV</code>.</p> <p dir="auto">Example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn import datasets from sklearn.linear_model import LinearRegression from sklearn.grid_search import GridSearchCV from sklearn.cross_validation import train_test_split from sklearn.metrics import mean_squared_error from sklearn.metrics import r2_score digits = datasets.load_digits() X = digits.data y = digits.target X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.5, random_state=0) hyperparams = [{'fit_intercept':[True, False]}] algo = LinearRegression() grid = GridSearchCV(algo, hyperparams, cv=5, scoring='mean_squared_error') grid.fit(X_train, y_train) print grid.score(X_test, y_test) print mean_squared_error(y_test, grid.best_estimator_.predict(X_test)) print r2_score(y_test, grid.best_estimator_.predict(X_test))"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span> <span class="pl-k">import</span> <span class="pl-s1">datasets</span> <span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">linear_model</span> <span class="pl-k">import</span> <span class="pl-v">LinearRegression</span> <span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">grid_search</span> <span class="pl-k">import</span> <span class="pl-v">GridSearchCV</span> <span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">cross_validation</span> <span class="pl-k">import</span> <span class="pl-s1">train_test_split</span> <span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">metrics</span> <span class="pl-k">import</span> <span class="pl-s1">mean_squared_error</span> <span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">metrics</span> <span class="pl-k">import</span> <span class="pl-s1">r2_score</span> <span class="pl-s1">digits</span> <span class="pl-c1">=</span> <span class="pl-s1">datasets</span>.<span class="pl-en">load_digits</span>() <span class="pl-v">X</span> <span class="pl-c1">=</span> <span class="pl-s1">digits</span>.<span class="pl-s1">data</span> <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">digits</span>.<span class="pl-s1">target</span> <span class="pl-v">X_train</span>, <span class="pl-v">X_test</span>, <span class="pl-s1">y_train</span>, <span class="pl-s1">y_test</span> <span class="pl-c1">=</span> <span class="pl-en">train_test_split</span>(<span class="pl-v">X</span>, <span class="pl-s1">y</span>, <span class="pl-s1">test_size</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>, <span class="pl-s1">random_state</span><span class="pl-c1">=</span><span class="pl-c1">0</span>) <span class="pl-s1">hyperparams</span> <span class="pl-c1">=</span> [{<span class="pl-s">'fit_intercept'</span>:[<span class="pl-c1">True</span>, <span class="pl-c1">False</span>]}] <span class="pl-s1">algo</span> <span class="pl-c1">=</span> <span class="pl-v">LinearRegression</span>() <span class="pl-s1">grid</span> <span class="pl-c1">=</span> <span class="pl-v">GridSearchCV</span>(<span class="pl-s1">algo</span>, <span class="pl-s1">hyperparams</span>, <span class="pl-s1">cv</span><span class="pl-c1">=</span><span class="pl-c1">5</span>, <span class="pl-s1">scoring</span><span class="pl-c1">=</span><span class="pl-s">'mean_squared_error'</span>) <span class="pl-s1">grid</span>.<span class="pl-en">fit</span>(<span class="pl-v">X_train</span>, <span class="pl-s1">y_train</span>) <span class="pl-k">print</span> <span class="pl-s1">grid</span>.<span class="pl-en">score</span>(<span class="pl-v">X_test</span>, <span class="pl-s1">y_test</span>) <span class="pl-k">print</span> <span class="pl-en">mean_squared_error</span>(<span class="pl-s1">y_test</span>, <span class="pl-s1">grid</span>.<span class="pl-s1">best_estimator_</span>.<span class="pl-en">predict</span>(<span class="pl-v">X_test</span>)) <span class="pl-k">print</span> <span class="pl-en">r2_score</span>(<span class="pl-s1">y_test</span>, <span class="pl-s1">grid</span>.<span class="pl-s1">best_estimator_</span>.<span class="pl-en">predict</span>(<span class="pl-v">X_test</span>))</pre></div> <p dir="auto">I expected that <code class="notranslate">grid.score()</code> would use the mean_squared_error because this was previously defined in the <code class="notranslate">scoring</code> option. It took me some time to find out that the number is actually the r2_score which seems to be the <code class="notranslate">score</code> function of <code class="notranslate">LinearRegression</code>.<br> The documentation of <code class="notranslate">score()</code> in <code class="notranslate">BaseSearchCV</code> says:<br> <em>The <code class="notranslate">score</code> function of the best estimator is used, or the <code class="notranslate">scoring</code> parameter where unavailable.</em><br> Maybe the documentation of <code class="notranslate">score()</code> in <code class="notranslate">BaseSearchCV</code> could be adapted to make it clear that the calculated score is not necessarily the same as the one defined in the <code class="notranslate">scoring</code> parameter of <code class="notranslate">GridSearchCV</code>.</p>
0
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">If a exception raise in commit() function, rollback() function would be called and then the exception would be re-raised. The re-raising of the exception may be failed when sqlalchemy work with a coroutine framework such as evenlet or gevent due to a context switch(rollback is a bocking function, which will cause a context switch, and the exception may be cleared within the context switch). The issue could be simplely fixed by the following patch without risk.</p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/2703/2703.patch">2703.patch</a> | <a href="../wiki/imported_issue_attachments/2703/2703.2.patch">2703.2.patch</a> | <a href="../wiki/imported_issue_attachments/2703/greenthread_compatibility_fix.patch">greenthread_compatibility_fix.patch</a> | <a href="../wiki/imported_issue_attachments/2703/greenthread_compatibility_fix_v2.patch">greenthread_compatibility_fix_v2.patch</a></p>
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">We have an oracle database with multiple schemas defined. When I try to add a table to a particular schema using SQA (see attached example), the operation fails because a table with the same name is found inside one or more of the other schemas, despite the fact that I'm specifying which schema to use in the Table definition. When I turn engine echo on I see the following:</p> <p dir="auto">2007-04-24 16:55:35,952 INFO sqlalchemy.engine.base.Engine.0x..54 select table_name from all_tables where table_name=:name<br> 2007-04-24 16:55:35,954 INFO sqlalchemy.engine.base.Engine.0x..54 {'name': 'TASK'}</p> <p dir="auto">When I perform this query against the DB I get multiple rows returned. The problem appears to be that this query does not account for the schema/owner in any way.</p> <p dir="auto">Note that I have tried the same test using Postgres and it works as expected.</p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/550/test.py">test.py</a></p>
0
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="s1=pd.Series([True,False,True,True]) s2=pd.Series([True,True,False]) s1.index=pd.MultiIndex.from_tuples( [(0, 2), (1, 1), (1, 2), (2, 1)],names=['st', 'at']) s2.index=pd.Index([0,1,2], name='st') ds1=pd.DataFrame(s1) ds2=pd.DataFrame(s2) s3=pd.Series([True,False,True]) s4=pd.Series([True,True,False])"><pre class="notranslate"><code class="notranslate">s1=pd.Series([True,False,True,True]) s2=pd.Series([True,True,False]) s1.index=pd.MultiIndex.from_tuples( [(0, 2), (1, 1), (1, 2), (2, 1)],names=['st', 'at']) s2.index=pd.Index([0,1,2], name='st') ds1=pd.DataFrame(s1) ds2=pd.DataFrame(s2) s3=pd.Series([True,False,True]) s4=pd.Series([True,True,False]) </code></pre></div> <h4 dir="auto">Expected Output</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="st at 0 2 True 1 1 False 1 2 True 2 1 False dtype: bool"><pre class="notranslate"><code class="notranslate">st at 0 2 True 1 1 False 1 2 True 2 1 False dtype: bool </code></pre></div> <p dir="auto">For series, <code class="notranslate">*</code> and <code class="notranslate">&amp;</code> give different result:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In: s1 &amp; s2 Out: st at 0 2 False 1 1 False 1 2 False 2 1 False dtype: bool In: s1 * s2 Out: st at 0 2 True 1 1 False 1 2 True 2 1 False dtype: bool"><pre class="notranslate"><code class="notranslate">In: s1 &amp; s2 Out: st at 0 2 False 1 1 False 1 2 False 2 1 False dtype: bool In: s1 * s2 Out: st at 0 2 True 1 1 False 1 2 True 2 1 False dtype: bool </code></pre></div> <p dir="auto">BUT for dataframes they give the same:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In: ds1 * ds2 Out: 0 st at 0 2 True 1 1 False 1 2 True 2 1 False In: ds1 &amp; ds2 Out: 0 st at 0 2 True 1 1 False 1 2 True 2 1 False"><pre class="notranslate"><code class="notranslate">In: ds1 * ds2 Out: 0 st at 0 2 True 1 1 False 1 2 True 2 1 False In: ds1 &amp; ds2 Out: 0 st at 0 2 True 1 1 False 1 2 True 2 1 False </code></pre></div> <p dir="auto">and last for series with single index, also both <code class="notranslate">s3 &amp; s4</code> or <code class="notranslate">s3 * s4</code> give:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0 True 1 False 2 False dtype: bool"><pre class="notranslate"><code class="notranslate">0 True 1 False 2 False dtype: bool </code></pre></div> <h4 dir="auto">output of <code class="notranslate">pd.show_versions()</code></h4> <p dir="auto">pandas: 0.18.1</p>
<p dir="auto">Something seems to be wrong with s1 == s2 when s1 and s2 don't have the same index. Here is a snippet example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import operator import pandas s1 = pandas.Series([1,2], ['a','b']) s2 = pandas.Series([2,3], ['b','c']) s1 == s2 s2 == s1"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">operator</span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-s1">s1</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">Series</span>([<span class="pl-c1">1</span>,<span class="pl-c1">2</span>], [<span class="pl-s">'a'</span>,<span class="pl-s">'b'</span>]) <span class="pl-s1">s2</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">Series</span>([<span class="pl-c1">2</span>,<span class="pl-c1">3</span>], [<span class="pl-s">'b'</span>,<span class="pl-s">'c'</span>]) <span class="pl-s1">s1</span> <span class="pl-c1">==</span> <span class="pl-s1">s2</span> <span class="pl-s1">s2</span> <span class="pl-c1">==</span> <span class="pl-s1">s1</span></pre></div> <p dir="auto">with the output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="InIn [5]: s1 == s2 Out[5]: a False b False In [6]: s2 == s1 Out[6]: b False c False"><pre class="notranslate"><code class="notranslate">InIn [5]: s1 == s2 Out[5]: a False b False In [6]: s2 == s1 Out[6]: b False c False </code></pre></div> <p dir="auto">On the other hand using combine works fine:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [7]: s1.combine(s2, operator.eq) Out[7]: a 0 b 1 c 0 In [8]: s2.combine(s1, operator.eq) Out[8]: a 0 b 1 c 0"><pre class="notranslate"><code class="notranslate">In [7]: s1.combine(s2, operator.eq) Out[7]: a 0 b 1 c 0 In [8]: s2.combine(s1, operator.eq) Out[8]: a 0 b 1 c 0 </code></pre></div> <p dir="auto">I guess you can first align s1 and s2 and then compare them, but is there a good reason why this couldn't work out of the box?</p> <p dir="auto">There doesn't seem to be any tests for pandas.Series. <strong>eq</strong> for two series with a different index in pandas/pandas/tests/test_series.py. I have a patch lying around to add such a test and I could commit it if that's useful.</p>
1
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Feature Idea</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">The --limit option</p> <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 (devel ba3295dd3f) last updated 2017/04/12 11:26:36 (GMT +200)"><pre class="notranslate"><code class="notranslate">ansible 2.4.0 (devel ba3295dd3f) last updated 2017/04/12 11:26:36 (GMT +200) </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">N/A</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">One of our developer tried to use one of our playbooks using multiple limits, thinking it will behave like a <code class="notranslate">:&amp;</code> pattern. Having something like:</p> <p dir="auto"><code class="notranslate">ansible-playbook deploy.yml --limit foo --limit bar</code></p> <p dir="auto">The limit on <code class="notranslate">foo</code> was omitted without any warning/error message prompted.</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="$ ansible-playbook deploy.yml --limit foo --limit bar --list-hosts # The output will only contain hosts from *bar* group $ ansible-playbook deploy.yml --limit &quot;foo:&amp;bar&quot; --list-hosts # The output will contain hosts contained in both foo and bar groups"><pre class="notranslate"><span class="pl-s">$ ansible-playbook deploy.yml --limit foo --limit bar --list-hosts</span> <span class="pl-c"><span class="pl-c">#</span> The output will only contain hosts from *bar* group</span> <span class="pl-s">$ ansible-playbook deploy.yml --limit "foo:&amp;bar" --list-hosts</span> <span class="pl-c"><span class="pl-c">#</span> The output will contain hosts contained in both foo and bar groups</span></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">I think that ansible should, at least, print a warning to mention that one of the <em>--limit</em> will be omitted</p> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">The playbook was run on hosts from the group mentioned in the second <em>limit</em>.</p>
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">systemd</p> <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 config file = /home/sxpert/.ansible.cfg configured module search path = [u'/home/sxpert/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible executable location = /usr/local/bin/ansible python version = 2.7.13 (default, Jan 19 2017, 14:48:08) [GCC 6.3.0 20170118]"><pre class="notranslate"><code class="notranslate">ansible 2.4.0 config file = /home/sxpert/.ansible.cfg configured module search path = [u'/home/sxpert/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible executable location = /usr/local/bin/ansible python version = 2.7.13 (default, Jan 19 2017, 14:48:08) [GCC 6.3.0 20170118] </code></pre></div> <p dir="auto">The documentation of the systemd module states that one should be able to do :</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- name: &quot;restart systemd&quot; systemd: daemon_reload: &quot;yes&quot; become: &quot;yes&quot;"><pre class="notranslate">- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>restart systemd<span class="pl-pds">"</span></span> <span class="pl-ent">systemd</span>: <span class="pl-ent">daemon_reload</span>: <span class="pl-s"><span class="pl-pds">"</span>yes<span class="pl-pds">"</span></span> <span class="pl-ent">become</span>: <span class="pl-s"><span class="pl-pds">"</span>yes<span class="pl-pds">"</span></span></pre></div> <p dir="auto">yet, when one does this, the following error occurs :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fatal: [testvm]: FAILED! =&gt; { &quot;changed&quot;: false, &quot;failed&quot;: true, &quot;msg&quot;: &quot;name is also required when specifying state&quot; }"><pre class="notranslate"><code class="notranslate">fatal: [testvm]: FAILED! =&gt; { "changed": false, "failed": true, "msg": "name is also required when specifying state" } </code></pre></div> <p dir="auto">so, which one is it ?</p>
0
<p dir="auto">I wanna ask where and how to see the log details(exit code 137,what!) when superset container not started:</p> <p dir="auto">File /home/superset/superset/assets/src/../backendSync.json was saved!<br> Done in 4.81s.<br> yarn run v1.12.3<br> $ NODE_ENV=production webpack --mode=production --colors --progress<br> clean-webpack-plugin: /home/superset/superset/assets/dist has been removed.<br> Starting type checking service...<br> Using 1 worker with 2048MB memory limit<br> 92% chunk asset optimization TerserPluginKilled<br> info Visit <a href="https://yarnpkg.com/en/docs/cli/run" rel="nofollow">https://yarnpkg.com/en/docs/cli/run</a> for documentation about this command.<br> <strong>error Command failed with exit code 137</strong>.<br> ERROR: compose.cli.main.main: Service 'superset' failed to build: The command '/bin/sh -c cd superset/assets &amp;&amp; yarn --non-interactive --frozen-lockfile --link-duplicates &amp;&amp; yarn run sync-backend &amp;&amp; yarn run build &amp;&amp; rm -rf node_modules &amp;&amp; yarn cache clean' returned a non-zero code: 1</p>
<p dir="auto">Thank you for all your contributions.</p> <p dir="auto">To keep the project maintainable, please help the community by</p> <ul dir="auto"> <li> <p dir="auto"><g-emoji class="g-emoji" alias="put_litter_in_its_place" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f6ae.png">🚮</g-emoji>closing your issues that has been resolved, are no longer relevant or is duplicated.<br> <a href="https://github.com/apache/incubator-superset/issues">https://github.com/apache/incubator-superset/issues</a></p> </li> <li> <p dir="auto"><g-emoji class="g-emoji" alias="put_litter_in_its_place" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f6ae.png">🚮</g-emoji>closing your PRs that you no longer intend to merge or the code is not relevant any more. If the problem in the PRs still persists, please create an issue instead.<br> <a href="https://github.com/apache/incubator-superset/pulls">https://github.com/apache/incubator-superset/pulls</a></p> </li> </ul> <p dir="auto">Everyone closing 1-2 PRs/issues can really make a difference.</p> <p dir="auto"><g-emoji class="g-emoji" alias="wastebasket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f5d1.png">🗑️</g-emoji><g-emoji class="g-emoji" alias="sparkles" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2728.png">✨</g-emoji></p>
0
<h3 dir="auto">Is there an existing issue for this?</h3> <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 existing issues</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto"><code class="notranslate">npm install -g</code> creates a folder with the literal name <code class="notranslate">${XDG_DATA_HOME}</code> in the current directory, and treats it as the data home dir.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/248078/127122075-f49be28e-e4b2-4af8-814b-d392f915c826.png"><img width="210" alt="127120221-54e6ec3d-4a4c-4cd7-ac98-12b7f6f40c12" src="https://user-images.githubusercontent.com/248078/127122075-f49be28e-e4b2-4af8-814b-d392f915c826.png" style="max-width: 100%;"></a></p> <p dir="auto">Presumably something in the code is not escaping the variable properly under some conditions.</p> <p dir="auto">Note that I do have <code class="notranslate">$XDG_HOME_DIR</code> <a href="https://github.com/lgarron/dotfiles/blob/720ee35b2ea2655e31bf480c7e803958e88e6b39/dotfiles/xdg-basedir-workarounds/.config/fish/xdg-basedir-workarounds.fish#L11">in my dotfiles</a> and <a href="https://github.com/lgarron/dotfiles/blob/720ee35b2ea2655e31bf480c7e803958e88e6b39/dotfiles/mac-boot/.config/boot.fish#L12">using <code class="notranslate">launchctl</code></a>. I have not been able to avoid the bug by un-setting the var.</p> <p dir="auto">This did not use to happen until the last few days. Unfortunately, this is rather annoying to debug because the bug itself specifically breaks global <code class="notranslate">npm</code> installation. So I can't run <code class="notranslate">npm install -g [email protected]</code> or <code class="notranslate">npm install -g [email protected]</code> to get a proper install of another version, for example.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The command uses the value of the <code class="notranslate">XDG_DATA_HOME</code> env var (or the default), without creating a dir named <code class="notranslate">${XDG_DATA_HOME}</code>.</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto">Run <code class="notranslate">npm install -g</code> or <code class="notranslate">npx</code>. For example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm install -g jq"><pre class="notranslate"><code class="notranslate">npm install -g jq </code></pre></div> <p dir="auto">Running <code class="notranslate">npx jq</code> also gives this error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node:internal/modules/cjs/loader:930 throw err; ^ Error: Cannot find module 'commander' Require stack: - /Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq at Function.Module._resolveFilename (node:internal/modules/cjs/loader:927:15) at Function.Module._load (node:internal/modules/cjs/loader:772:27) at Module.require (node:internal/modules/cjs/loader:999:19) at require (node:internal/modules/cjs/helpers:93:18) at Object.&lt;anonymous&gt; (/Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq:7:15) at Module._compile (node:internal/modules/cjs/loader:1095:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1124:10) at Module.load (node:internal/modules/cjs/loader:975:32) at Function.Module._load (node:internal/modules/cjs/loader:816:12) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:79:12) { code: 'MODULE_NOT_FOUND', requireStack: [ '/Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq' ] }"><pre class="notranslate"><code class="notranslate">node:internal/modules/cjs/loader:930 throw err; ^ Error: Cannot find module 'commander' Require stack: - /Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq at Function.Module._resolveFilename (node:internal/modules/cjs/loader:927:15) at Function.Module._load (node:internal/modules/cjs/loader:772:27) at Module.require (node:internal/modules/cjs/loader:999:19) at require (node:internal/modules/cjs/helpers:93:18) at Object.&lt;anonymous&gt; (/Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq:7:15) at Module._compile (node:internal/modules/cjs/loader:1095:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1124:10) at Module.load (node:internal/modules/cjs/loader:975:32) at Function.Module._load (node:internal/modules/cjs/loader:816:12) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:79:12) { code: 'MODULE_NOT_FOUND', requireStack: [ '/Users/lgarron/.cache/npm/_npx/db665b9ed68ddd8b/node_modules/jq/bin/jq' ] } </code></pre></div> <p dir="auto">I don't know how related it is, but it's what led me to observing the directory issue.</p> <h3 dir="auto">Environment</h3> <p dir="auto">npm 7.19.1<br> node v16.5.0<br> macOS 11.5</p> <p dir="auto">I know this report is not super helpful, but I could use some advice on how to debug this.<br> I've spent an hour in <code class="notranslate">@npmcli/config</code> to figure out where this is coming from, but it uses a lot of indirection to load configs. Most useful would probably be to bisect some packages, but I don't know how to do that when <code class="notranslate">npm install -g</code> is not working. (I tried to symlink <code class="notranslate">./${XDG_DATA_HOME}</code> to the appropriate global directory, but that doesn't seem to work.)</p>
<h3 dir="auto">Current Behavior:</h3> <p dir="auto"><code class="notranslate">npm uninstall -g &lt;package&gt;</code> doesn't run the <code class="notranslate">preuninstall</code> script</p> <p dir="auto">Also, <code class="notranslate">npm install -g &lt;package&gt;</code> doesn't run the <code class="notranslate">preuninstall</code> script from the previously installed version of the same package</p> <p dir="auto">Installing a newer version of a global package does trigger <code class="notranslate">preuninstall</code> in v6</p> <h3 dir="auto">Expected Behavior:</h3> <p dir="auto"><code class="notranslate">npm uninstall -g &lt;package&gt;</code> should run the <code class="notranslate">preuninstall</code> script</p> <h3 dir="auto">Steps To Reproduce:</h3> <p dir="auto">Since npm7 removed console output for scripts during installation, so I echo something to a logfile instead.</p> <ol dir="auto"> <li>Create a package with these scripts:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;name&quot;: &quot;testpackage&quot;, &quot;version&quot;:&quot;0.0.1&quot;, &quot;scripts&quot;: { &quot;preinstall&quot;: &quot;echo \&quot;preinstall\&quot; &gt;&gt; /logs/log.txt&quot;, &quot;preuninstall&quot;: &quot;echo \&quot;preuninstall\&quot; &gt;&gt; /logs/log.txt&quot; } }"><pre class="notranslate"><code class="notranslate">{ "name": "testpackage", "version":"0.0.1", "scripts": { "preinstall": "echo \"preinstall\" &gt;&gt; /logs/log.txt", "preuninstall": "echo \"preuninstall\" &gt;&gt; /logs/log.txt" } } </code></pre></div> <ol start="2" dir="auto"> <li>run <code class="notranslate">npm pack</code></li> <li>run <code class="notranslate">npm install -g ./testpackage-0.0.1.tgz</code></li> <li>run <code class="notranslate">npm install -g ./testpackage-0.0.1.tgz</code> again (this should have triggered <code class="notranslate">preuninstall</code> for the previous installation)</li> <li>run <code class="notranslate">npm uninstall -g testpackage</code></li> <li>confirm that the text file in /logs/log.txt does in fact not contain any 'preuninstall' lines</li> </ol> <p dir="auto">Images:<br> In v7:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8776771/113917286-51c17200-97e1-11eb-9173-60e0671dfd7b.png"><img src="https://user-images.githubusercontent.com/8776771/113917286-51c17200-97e1-11eb-9173-60e0671dfd7b.png" alt="Code_kIGgtizrAQ" style="max-width: 100%;"></a><br> In v6:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8776771/113917331-600f8e00-97e1-11eb-9f68-fa55fc877c41.png"><img src="https://user-images.githubusercontent.com/8776771/113917331-600f8e00-97e1-11eb-9f68-fa55fc877c41.png" alt="Code_RSlxOsyZwd" style="max-width: 100%;"></a></p> <h3 dir="auto">Environment:</h3> <ul dir="auto"> <li>OS: Windows 10</li> <li>Node: 15.14.0</li> <li>npm: 7.7.6</li> </ul>
0
<p dir="auto">source code <code class="notranslate">test.js</code> as below:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function testable(target) { target.isTestable = true; } @testable class MyTestableClass {}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">testable</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">target</span><span class="pl-kos">.</span><span class="pl-c1">isTestable</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> @<span class="pl-s1">testable</span> <span class="pl-k">class</span> <span class="pl-v">MyTestableClass</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> <p dir="auto">and with <code class="notranslate">.babelrc</code></p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;presets&quot;: [&quot;es2015&quot;, &quot;stage-0&quot;] }"><pre class="notranslate">{ <span class="pl-ent">"presets"</span>: [<span class="pl-s"><span class="pl-pds">"</span>es2015<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>stage-0<span class="pl-pds">"</span></span>] }</pre></div> <p dir="auto">When run babel, failed</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ babel test.js TypeError: test.js: Property right of AssignmentExpression expected node to be of a type [&quot;Expression&quot;] but instead got &quot;Decorator&quot; at Object.validate (/Users/soulwu/test/node_modules/babel-types/lib/definitions/index.js:99:13) at validate (/Users/soulwu/test/node_modules/babel-types/lib/index.js:295:9) at Object.builder (/Users/soulwu/test/node_modules/babel-types/lib/index.js:248:7) at maybeMemoise (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:29:32) at memoiseDecorators (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:56:7) at Object.exports.default (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:61:3) at PluginPass.ClassDeclaration (/Users/soulwu/test/node_modules/babel-plugin-transform-decorators/lib/index.js:164:45) at /usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/visitors.js:271:19 at NodePath._call (/usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/path/context.js:72:18) at NodePath.call (/usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/path/context.js:44:17)"><pre class="notranslate">$ babel test.js TypeError: test.js: Property right of AssignmentExpression expected node to be of a <span class="pl-c1">type</span> [<span class="pl-s"><span class="pl-pds">"</span>Expression<span class="pl-pds">"</span></span>] but instead got <span class="pl-s"><span class="pl-pds">"</span>Decorator<span class="pl-pds">"</span></span> at Object.validate (/Users/soulwu/test/node_modules/babel-types/lib/definitions/index.js:99:13) at validate (/Users/soulwu/test/node_modules/babel-types/lib/index.js:295:9) at Object.builder (/Users/soulwu/test/node_modules/babel-types/lib/index.js:248:7) at maybeMemoise (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:29:32) at memoiseDecorators (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:56:7) at Object.exports.default (/Users/soulwu/test/node_modules/babel-helper-explode-class/lib/index.js:61:3) at PluginPass.ClassDeclaration (/Users/soulwu/test/node_modules/babel-plugin-transform-decorators/lib/index.js:164:45) at /usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/visitors.js:271:19 at NodePath._call (/usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/path/context.js:72:18) at NodePath.call (/usr/local/lib/node_modules/babel-cli/node_modules/babel-traverse/lib/path/context.js:44:17)</pre></div> <p dir="auto">need help...</p>
1
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: 1.27.1</li> <li>Operating System: Windows</li> <li>Browser: MS Edge</li> <li>Other info: CI/CD on the GitLab platform using windows image containers</li> </ul> <h3 dir="auto">Source code</h3> <p dir="auto"><strong>Config file</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts import { PlaywrightTestConfig } from &quot;@playwright/test&quot;; const config: PlaywrightTestConfig = { timeout: 240000, globalTimeout: 18000000, projects: [ { name: &quot;Esro&quot;, testDir: &quot;./Tests/Esro&quot;, timeout: 300001, use:{ viewport: {width: 1870, height: 1030}, video: { mode: &quot;retain-on-failure&quot;, size: { width: 1870, height: 1030, }, }, } }, { name: &quot;Tsro&quot;, testDir: &quot;./Tests/Tsro&quot;, timeout: 180000, }, { name: 'Unify', testDir: &quot;./Tests/Unify&quot;, }, { name: &quot;IntegrationsUI&quot;, testDir: &quot;./Tests/IntegrationsUI&quot;, }, { name: &quot;Validation&quot;, testMatch: 'Tests/Unify/Validation/test.list.ts', timeout: 360000, use: { actionTimeout: 320000, } }, { name: &quot;Production&quot;, testMatch: 'Tests/Unify/production.test.list.ts', timeout: 360000, use: { actionTimeout: 320000, } }, ], reporter: [ [&quot;./my-reporter.ts&quot;], [&quot;list&quot;], [&quot;junit&quot;, { outputFile: &quot;reports/test-results.xml&quot; }], [&quot;allure-playwright&quot;], [&quot;json&quot;, { outputFile: &quot;reports/test-results.json&quot; }], [&quot;html&quot;, { open: &quot;never&quot; }], ], use: { baseURL: process.env.BASE_URL ? process.env.BASE_URL : process.env.LOCAL_HOST, browserName: &quot;chromium&quot;, actionTimeout: 30000, trace: &quot;off&quot;, screenshot: &quot;on&quot;, viewport: { width: 1400, height: 900 }, //UNIFY Recommended Resolution video: { mode: &quot;retain-on-failure&quot;, size: { width: 1400, height: 900, }, }, contextOptions: { ignoreHTTPSErrors: true, }, // Browser options launchOptions: { channel: &quot;msedge&quot;, // headless: process.env.CI ? true : false, slowMo: 200, args: [ &quot;--no-sandbox&quot;, &quot;--ignore-certificate-errors&quot;, &quot;--ignore-certificate-errors-skip-list&quot;, ], }, }, }; export default config; "><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-v">PlaywrightTestConfig</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">config</span>: <span class="pl-v">PlaywrightTestConfig</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">240000</span><span class="pl-kos">,</span> <span class="pl-c1">globalTimeout</span>: <span class="pl-c1">18000000</span><span class="pl-kos">,</span> <span class="pl-c1">projects</span>: <span class="pl-kos">[</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Esro"</span><span class="pl-kos">,</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./Tests/Esro"</span><span class="pl-kos">,</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">300001</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>:<span class="pl-kos">{</span> <span class="pl-c1">viewport</span>: <span class="pl-kos">{</span><span class="pl-c1">width</span>: <span class="pl-c1">1870</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">1030</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">video</span>: <span class="pl-kos">{</span> <span class="pl-c1">mode</span>: <span class="pl-s">"retain-on-failure"</span><span class="pl-kos">,</span> <span class="pl-c1">size</span>: <span class="pl-kos">{</span> <span class="pl-c1">width</span>: <span class="pl-c1">1870</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">1030</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-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Tsro"</span><span class="pl-kos">,</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./Tests/Tsro"</span><span class="pl-kos">,</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">180000</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">name</span>: <span class="pl-s">'Unify'</span><span class="pl-kos">,</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./Tests/Unify"</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">name</span>: <span class="pl-s">"IntegrationsUI"</span><span class="pl-kos">,</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./Tests/IntegrationsUI"</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">name</span>: <span class="pl-s">"Validation"</span><span class="pl-kos">,</span> <span class="pl-c1">testMatch</span>: <span class="pl-s">'Tests/Unify/Validation/test.list.ts'</span><span class="pl-kos">,</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">360000</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c1">actionTimeout</span>: <span class="pl-c1">320000</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">name</span>: <span class="pl-s">"Production"</span><span class="pl-kos">,</span> <span class="pl-c1">testMatch</span>: <span class="pl-s">'Tests/Unify/production.test.list.ts'</span><span class="pl-kos">,</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">360000</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c1">actionTimeout</span>: <span class="pl-c1">320000</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">reporter</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">"./my-reporter.ts"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"list"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"junit"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">outputFile</span>: <span class="pl-s">"reports/test-results.xml"</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"allure-playwright"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"json"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">outputFile</span>: <span class="pl-s">"reports/test-results.json"</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"html"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">open</span>: <span class="pl-s">"never"</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">use</span>: <span class="pl-kos">{</span> <span class="pl-c1">baseURL</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">BASE_URL</span> ? <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">BASE_URL</span> : <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">LOCAL_HOST</span><span class="pl-kos">,</span> <span class="pl-c1">browserName</span>: <span class="pl-s">"chromium"</span><span class="pl-kos">,</span> <span class="pl-c1">actionTimeout</span>: <span class="pl-c1">30000</span><span class="pl-kos">,</span> <span class="pl-c1">trace</span>: <span class="pl-s">"off"</span><span class="pl-kos">,</span> <span class="pl-c1">screenshot</span>: <span class="pl-s">"on"</span><span class="pl-kos">,</span> <span class="pl-c1">viewport</span>: <span class="pl-kos">{</span> <span class="pl-c1">width</span>: <span class="pl-c1">1400</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">900</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">//UNIFY Recommended Resolution</span> <span class="pl-c1">video</span>: <span class="pl-kos">{</span> <span class="pl-c1">mode</span>: <span class="pl-s">"retain-on-failure"</span><span class="pl-kos">,</span> <span class="pl-c1">size</span>: <span class="pl-kos">{</span> <span class="pl-c1">width</span>: <span class="pl-c1">1400</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">900</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">contextOptions</span>: <span class="pl-kos">{</span> <span class="pl-c1">ignoreHTTPSErrors</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">// Browser options</span> <span class="pl-c1">launchOptions</span>: <span class="pl-kos">{</span> <span class="pl-c1">channel</span>: <span class="pl-s">"msedge"</span><span class="pl-kos">,</span> <span class="pl-c">// headless: process.env.CI ? true : false,</span> <span class="pl-c1">slowMo</span>: <span class="pl-c1">200</span><span class="pl-kos">,</span> <span class="pl-c1">args</span>: <span class="pl-kos">[</span> <span class="pl-s">"--no-sandbox"</span><span class="pl-kos">,</span> <span class="pl-s">"--ignore-certificate-errors"</span><span class="pl-kos">,</span> <span class="pl-s">"--ignore-certificate-errors-skip-list"</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-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-s1">config</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import test from &quot;@playwright/test&quot;; test.describe(&quot;Login Test Feature&quot;, () =&gt; { let basePage: BasePage; let unifyLoginPage: UnifyLoginPage; let mainPage: UnifyBasePage; test.beforeEach(async ({page}) =&gt; { basePage = new BasePage(page); unifyLoginPage = new UnifyLoginPage(page); mainPage = new UnifyBasePage(page); await basePage.loadApplication(ApplicationUrl.UNIFY); }); test.afterEach(async ({context}) =&gt; { await context.clearCookies(); }); test(&quot;Login with wrong credentials&quot;, async () =&gt; { await unifyLoginPage.loginToUnify(&quot;x&quot;, &quot;x&quot;, Credentials.INCORRECT); }); test(&quot;Login with correct credentials @warmup&quot;, async () =&gt; { await unifyLoginPage.loginToUnify(); }); }); "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">test</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span> <span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">describe</span><span class="pl-kos">(</span><span class="pl-s">"Login Test Feature"</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-k">let</span> <span class="pl-s1">basePage</span>: <span class="pl-v">BasePage</span><span class="pl-kos">;</span> <span class="pl-k">let</span> <span class="pl-s1">unifyLoginPage</span>: <span class="pl-v">UnifyLoginPage</span><span class="pl-kos">;</span> <span class="pl-k">let</span> <span class="pl-s1">mainPage</span>: <span class="pl-v">UnifyBasePage</span><span class="pl-kos">;</span> <span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">beforeEach</span><span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span>page<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">basePage</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">BasePage</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">unifyLoginPage</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">UnifyLoginPage</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">mainPage</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">UnifyBasePage</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">basePage</span><span class="pl-kos">.</span><span class="pl-en">loadApplication</span><span class="pl-kos">(</span><span class="pl-v">ApplicationUrl</span><span class="pl-kos">.</span><span class="pl-c1">UNIFY</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-s1">test</span><span class="pl-kos">.</span><span class="pl-en">afterEach</span><span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span>context<span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">clearCookies</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">test</span><span class="pl-kos">(</span><span class="pl-s">"Login with wrong credentials"</span><span class="pl-kos">,</span> <span class="pl-k">async</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-k">await</span> <span class="pl-s1">unifyLoginPage</span><span class="pl-kos">.</span><span class="pl-en">loginToUnify</span><span class="pl-kos">(</span><span class="pl-s">"x"</span><span class="pl-kos">,</span> <span class="pl-s">"x"</span><span class="pl-kos">,</span> <span class="pl-v">Credentials</span><span class="pl-kos">.</span><span class="pl-c1">INCORRECT</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">test</span><span class="pl-kos">(</span><span class="pl-s">"Login with correct credentials @warmup"</span><span class="pl-kos">,</span> <span class="pl-k">async</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-k">await</span> <span class="pl-s1">unifyLoginPage</span><span class="pl-kos">.</span><span class="pl-en">loginToUnify</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>Changing the channel to the <code class="notranslate">msedge</code></li> <li>Adding the step of <code class="notranslate">install msedge</code></li> <li>Attempting to run the tests</li> </ul> <p dir="auto"><strong>Expected</strong></p> <ul dir="auto"> <li>MSEdge browser should be installed and work</li> <li>The tests should work as well using the MSEdge browser</li> <li></li> </ul> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">The issue presented like the following:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// The issue as it presented inside the pipeline: npx playwright install --force msedge �[36mcore-ui-playwright-server_1 |�[0m Downloading Microsoft Edge �[36mcore-ui-playwright-server_1 |�[0m Installing Microsoft Edge �[36mcore-ui-playwright-server_1 |�[0m ERROR: failed to install Microsoft Edge �[36mcore-ui-playwright-server_1 |�[0m Failed to install browsers �[36mcore-ui-playwright-server_1 |�[0m Error: Failed to install msedge // The issue as it presented inside the pipeline, during an attempt to execute tests: �[36mcore-ui-playwright-server_1 |�[0m �[31m 1) [Esro] ??? Tests\Esro\EsroLoginTest.spec.ts:28:5 ??? Esro Login Tests ??? Login to eSRO with correct credentials @tSRO_AND_eSRO_APPLICATION @warmup �[39m �[36mcore-ui-playwright-server_1 |�[0m �[36mcore-ui-playwright-server_1 |�[0m browserType.launch: Chromium distribution 'msedge' is not found at C:\Users\ContainerAdministrator\AppData\Local\Microsoft\Edge\Application\msedge.exe �[36mcore-ui-playwright-server_1 |�[0m Run &quot;npx playwright install msedge&quot; �[36mcore-ui-playwright-server_1 |�[0m �[36mcore-ui-playwright-server_1 |�[0m �[90m at �[39mnode_modules\@playwright\test\lib\index.js:198 �[36mcore-ui-playwright-server_1 |�[0m �[36mcore-ui-playwright-server_1 |�[0m 196 | }, use) =&gt; { �[36mcore-ui-playwright-server_1 |�[0m 197 | if (!['chromium', 'firefox', 'webkit'].includes(browserName)) throw new Error(`Unexpected browserName &quot;${browserName}&quot;, must be one of &quot;chromium&quot;, &quot;firefox&quot; or &quot;webkit&quot;`); �[36mcore-ui-playwright-server_1 |�[0m &gt; 198 | const browser = await playwright[browserName].launch(); �[36mcore-ui-playwright-server_1 |�[0m | ^ �[36mcore-ui-playwright-server_1 |�[0m 199 | await use(browser); �[36mcore-ui-playwright-server_1 |�[0m 200 | await browser.close(); �[36mcore-ui-playwright-server_1 |�[0m 201 | }, { });"><pre class="notranslate"><span class="pl-c">// The issue as it presented inside the pipeline:</span> <span class="pl-s1">npx</span> <span class="pl-s1">playwright</span> <span class="pl-s1">install</span> <span class="pl-c1">--</span><span class="pl-s1">force</span> <span class="pl-s1">msedge</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-v">Downloading</span> <span class="pl-v">Microsoft</span> <span class="pl-v">Edge</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-v">Installing</span> <span class="pl-v">Microsoft</span> <span class="pl-v">Edge</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">ERROR</span>: <span class="pl-s1">failed</span> <span class="pl-s1">to</span> <span class="pl-s1">install</span> <span class="pl-v">Microsoft</span> <span class="pl-v">Edge</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-v">Failed</span> <span class="pl-s1">to</span> <span class="pl-s1">install</span> <span class="pl-s1">browsers</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-v">Error</span>: <span class="pl-v">Failed</span> <span class="pl-s1">to</span> <span class="pl-s1">install</span> <span class="pl-s1">msedge</span> <span class="pl-c">// The issue as it presented inside the pipeline, during an attempt to execute tests:</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">31</span><span class="pl-s1">m</span> <span class="pl-c1">1</span><span class="pl-kos">)</span> <span class="pl-kos">[</span><span class="pl-v">Esro</span><span class="pl-kos">]</span> <span class="pl-c1">??</span>? <span class="pl-v">Tests</span>\E<span class="pl-s1">sro</span>\E<span class="pl-s1">sroLoginTest</span><span class="pl-kos">.</span><span class="pl-c1">spec</span><span class="pl-kos">.</span><span class="pl-c1">ts</span>:<span class="pl-c1">28</span>:<span class="pl-c1">5</span> <span class="pl-c1">??</span>? <span class="pl-v">Esro</span> <span class="pl-v">Login</span> <span class="pl-v">Tests</span> <span class="pl-c1">??</span>? <span class="pl-v">Login</span> <span class="pl-s1">to</span> <span class="pl-s1">eSRO</span> <span class="pl-s1">with</span> <span class="pl-s1">correct</span> <span class="pl-s1">credentials</span> @<span class="pl-s1">tSRO_AND_eSRO_APPLICATION</span> @<span class="pl-s1">warmup</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">39</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">browserType</span><span class="pl-kos">.</span><span class="pl-c1">launch</span>: <span class="pl-v">Chromium</span> <span class="pl-s1">distribution</span> <span class="pl-s">'msedge'</span> <span class="pl-s1">is</span> <span class="pl-s1">not</span> <span class="pl-s1">found</span> <span class="pl-s1">at</span> <span class="pl-v">C</span>:\U<span class="pl-s1">sers</span>\C<span class="pl-s1">ontainerAdministrator</span>\A<span class="pl-s1">ppData</span>\L<span class="pl-s1">ocal</span>\M<span class="pl-s1">icrosoft</span>\E<span class="pl-s1">dge</span>\A<span class="pl-s1">pplication</span>\m<span class="pl-s1">sedge</span><span class="pl-kos">.</span><span class="pl-c1">exe</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-v">Run</span> <span class="pl-s">"npx playwright install msedge"</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">90</span><span class="pl-s1">m</span> <span class="pl-s1">at</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">39</span><span class="pl-s1">mnode_modules</span>\@<span class="pl-s1">playwright</span>\t<span class="pl-s1">est</span>\l<span class="pl-s1">ib</span>\i<span class="pl-s1">ndex</span><span class="pl-kos">.</span><span class="pl-c1">js</span>:<span class="pl-c1">198</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">196</span> <span class="pl-c1">|</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">use</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">197</span> <span class="pl-c1">|</span> <span class="pl-en">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s">'chromium'</span><span class="pl-kos">,</span> <span class="pl-s">'firefox'</span><span class="pl-kos">,</span> <span class="pl-s">'webkit'</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s1">browserName</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-s1">throw</span> <span class="pl-k">new</span> <span class="pl-v">Error</span><span class="pl-kos">(</span><span class="pl-s">`Unexpected browserName "<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">browserName</span><span class="pl-kos">}</span></span>", must be one of "chromium", "firefox" or "webkit"`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">&gt;</span> <span class="pl-c1">198</span> <span class="pl-c1">|</span> <span class="pl-s1">const</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">playwright</span><span class="pl-kos">[</span><span class="pl-s1">browserName</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">|</span> <span class="pl-c1">^</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">199</span> <span class="pl-c1">|</span> <span class="pl-k">await</span> <span class="pl-en">use</span><span class="pl-kos">(</span><span class="pl-s1">browser</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">200</span> <span class="pl-c1">|</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">36</span><span class="pl-s1">mcore</span><span class="pl-c1">-</span><span class="pl-s1">ui</span><span class="pl-c1">-</span><span class="pl-s1">playwright</span><span class="pl-c1">-</span><span class="pl-s1">server_1</span> <span class="pl-c1">|</span><span class="pl-s1">�</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-s1">m</span> <span class="pl-c1">201</span> <span class="pl-c1">|</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></pre></div> <p dir="auto">Looks like we download the browser itself, but there is an issue with the installation,<br> In the case of using the Chrome channel - it downloaded and executed as well.</p> <p dir="auto">Also, the local installation works as well.</p>
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: v1.34.3</li> <li>Operating System: macOS 11.6.1</li> <li>Browser: All</li> </ul> <h3 dir="auto">Source code</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Config file</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts import { defineConfig, devices } from &quot;@playwright/test&quot;; import &quot;dotenv/config&quot;; import { Environment, Modes } from &quot;../common/src/env/env&quot;; const env = new Environment((process.env.ENVIRONMENT as Modes) ?? &quot;development&quot;); export default defineConfig({ testDir: &quot;./tests&quot;, fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: &quot;html&quot;, use: { baseURL: env.getEnvironmentVariables().WEB_HOST, trace: &quot;on-first-retry&quot;, }, projects: [ { name: &quot;chromium&quot;, use: { ...devices[&quot;Desktop Chrome&quot;] }, }, { name: &quot;firefox&quot;, use: { ...devices[&quot;Desktop Firefox&quot;] }, }, { name: &quot;webkit&quot;, use: { ...devices[&quot;Desktop Safari&quot;] }, }, ], }); "><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">defineConfig</span><span class="pl-kos">,</span> <span class="pl-s1">devices</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-s">"dotenv/config"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Environment</span><span class="pl-kos">,</span> <span class="pl-smi">Modes</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../common/src/env/env"</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">env</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Environment</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">ENVIRONMENT</span> <span class="pl-k">as</span> <span class="pl-smi">Modes</span><span class="pl-kos">)</span> <span class="pl-c1">??</span> <span class="pl-s">"development"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./tests"</span><span class="pl-kos">,</span> <span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span> <span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">workers</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">1</span> : <span class="pl-c1">undefined</span><span class="pl-kos">,</span> <span class="pl-c1">reporter</span>: <span class="pl-s">"html"</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c1">baseURL</span>: <span class="pl-s1">env</span><span class="pl-kos">.</span><span class="pl-en">getEnvironmentVariables</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">WEB_HOST</span><span class="pl-kos">,</span> <span class="pl-c1">trace</span>: <span class="pl-s">"on-first-retry"</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">projects</span>: <span class="pl-kos">[</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"chromium"</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">"Desktop Chrome"</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">name</span>: <span class="pl-s">"firefox"</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">"Desktop Firefox"</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">name</span>: <span class="pl-s">"webkit"</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">"Desktop Safari"</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-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { expect, test } from &quot;@playwright/test&quot;; import config from &quot;../playwright.config&quot;; test(&quot;Validate Google Login&quot;, async ({ page }) =&gt; { try { await page.goto(&quot;/&quot;); await page.getByRole(&quot;button&quot;, { name: &quot;LOGIN&quot; }).click(); // login with Google const userLogin = process.env.GOOGLE_USER; const userPassword = process.env.GOOGLE_PASSWORD; if (!userLogin || !userPassword) throw new Error(&quot;Test Credentials not set.&quot;); const popupPromise = page.waitForEvent(&quot;popup&quot;); await page.getByText(&quot;Log in with Google&quot;).click(); const popup = await popupPromise; await popup.fill('input[type=&quot;email&quot;]', userLogin); await popup.getByRole(&quot;button&quot;, { name: &quot;Next&quot; }).click(); await popup.fill('#password &gt;&gt; input[type=&quot;password&quot;]', userPassword); await popup.locator(&quot;#passwordNext&quot;).getByRole(&quot;button&quot;, { name: &quot;Next&quot; }).click(); // wait for Google popup to close, confirming authentication await expect(page.getByRole(&quot;img&quot;, { name: &quot;Avatar&quot; })).toBeVisible(); // verify Login; const baseURL = config.use?.baseURL; if (!baseURL) throw new Error(&quot;Base URL not set.&quot;); await page.goto(`${baseURL}/profile`); const locator = page.getByRole(&quot;heading&quot;, { name: &quot;Profile&quot; }); await expect(locator).toBeVisible(); } catch (error) { console.error(&quot;error: &quot;, error); } });"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">expect</span><span class="pl-kos">,</span> <span class="pl-s1">test</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-s1">config</span> <span class="pl-k">from</span> <span class="pl-s">"../playwright.config"</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">"Validate Google Login"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">try</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</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">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"button"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"LOGIN"</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// login with Google</span> <span class="pl-k">const</span> <span class="pl-s1">userLogin</span> <span class="pl-c1">=</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">GOOGLE_USER</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">userPassword</span> <span class="pl-c1">=</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">GOOGLE_PASSWORD</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-s1">userLogin</span> <span class="pl-c1">||</span> <span class="pl-c1">!</span><span class="pl-s1">userPassword</span><span class="pl-kos">)</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"Test Credentials not set."</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">popupPromise</span> <span class="pl-c1">=</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForEvent</span><span class="pl-kos">(</span><span class="pl-s">"popup"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByText</span><span class="pl-kos">(</span><span class="pl-s">"Log in with Google"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">click</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">popup</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">popupPromise</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">popup</span><span class="pl-kos">.</span><span class="pl-en">fill</span><span class="pl-kos">(</span><span class="pl-s">'input[type="email"]'</span><span class="pl-kos">,</span> <span class="pl-s1">userLogin</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">popup</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"button"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Next"</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">popup</span><span class="pl-kos">.</span><span class="pl-en">fill</span><span class="pl-kos">(</span><span class="pl-s">'#password &gt;&gt; input[type="password"]'</span><span class="pl-kos">,</span> <span class="pl-s1">userPassword</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">popup</span><span class="pl-kos">.</span><span class="pl-en">locator</span><span class="pl-kos">(</span><span class="pl-s">"#passwordNext"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"button"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Next"</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// wait for Google popup to close, confirming authentication</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"img"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Avatar"</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">toBeVisible</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// verify Login;</span> <span class="pl-k">const</span> <span class="pl-s1">baseURL</span> <span class="pl-c1">=</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">use</span><span class="pl-kos">?.</span><span class="pl-c1">baseURL</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-s1">baseURL</span><span class="pl-kos">)</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"Base URL not set."</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseURL</span><span class="pl-kos">}</span></span>/profile`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">locator</span> <span class="pl-c1">=</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"heading"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"Profile"</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">locator</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBeVisible</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">catch</span> <span class="pl-kos">(</span><span class="pl-s1">error</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">error</span><span class="pl-kos">(</span><span class="pl-s">"error: "</span><span class="pl-kos">,</span> <span class="pl-s1">error</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></pre></div> <p dir="auto"><strong>Error logs</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Ze [Error]: Timed out 5000ms waiting for expect(received).toBeVisible() Call log: - expect.toBeVisible with timeout 5000ms - waiting for getByRole('img', { name: 'Avatar' })"><pre class="notranslate"><code class="notranslate">error: Ze [Error]: Timed out 5000ms waiting for expect(received).toBeVisible() Call log: - expect.toBeVisible with timeout 5000ms - waiting for getByRole('img', { name: 'Avatar' }) </code></pre></div> <p dir="auto"><strong>Steps</strong><br> I have a script that tests a Login with Google functionality. It seemed to work quite well as I was test-running it through the Playwright VS Code extension but when I run the test through the command line, it fails while waiting for a UI element to show after the login popup from Google closes. The error indicates that the page closes as soon as the Google login popup does, which causes the first assertion to timeout.</p> <p dir="auto"><strong>Expected</strong><br> For the page to not close prematurely before reaching the end of the test script.</p> <p dir="auto"><strong>Actual</strong><br> The page closes even before the script finishes, causing assertions to fail.</p>
0
<p dir="auto">It seems to me, that the source code of unit-tests.html here <a href="https://angular.io/docs/ts/latest/testing/jasmine-testing-101.html" rel="nofollow">https://angular.io/docs/ts/latest/testing/jasmine-testing-101.html</a> isn't correct. It should be:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="... &lt;link rel=&quot;stylesheet&quot; href=&quot;../node_modules/jasmine-core/lib/jasmine-core/jasmine.css&quot;&gt; &lt;script src=&quot;../node_modules/jasmine-core/lib/jasmine-core/jasmine.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;../node_modules/jasmine-core/lib/jasmine-core/boot.js&quot;&gt;&lt;/script&gt; ..."><pre class="notranslate"><code class="notranslate">... &lt;link rel="stylesheet" href="../node_modules/jasmine-core/lib/jasmine-core/jasmine.css"&gt; &lt;script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"&gt;&lt;/script&gt; &lt;script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"&gt;&lt;/script&gt; &lt;script src="../node_modules/jasmine-core/lib/jasmine-core/boot.js"&gt;&lt;/script&gt; ... </code></pre></div> <p dir="auto">cause user have to install <em>jasmine-core</em></p>
<p dir="auto"><strong>I'm submitting a ...</strong></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 a (very) deep object is thrown as part of an error. The error message attempts to stringify the object, this freezes browsers for a significant period of time, and then produces an error message, many thousands of lines long. See <a href="https://i.imgsafe.org/cefa793a60.png" rel="nofollow">screenshot</a></p> <p dir="auto"><strong>Expected behavior</strong><br> If there were a default max depth to stringify to, a produced error message would only stringify to this depth from the original object.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> An object (<code class="notranslate">parent</code>) references many child objects in a key called <code class="notranslate">children</code>, each child references its parent object in a key called <code class="notranslate">parent</code>. Should an error be thrown on a child object (say a <code class="notranslate">Duplicates in a repeater are not allowed</code> error) the entire structure is stringified in the error section <code class="notranslate">Duplicate value: </code>.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> Speedier error messages, that allow for quicker debugging.</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> OSX 10.12.1, Sublime Text 3, BreezeJS</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 1.5.6</p> </li> <li> <p dir="auto"><strong>Browser:</strong> all</p> </li> <li> <p dir="auto"><strong>Language:</strong> all (as far as im aware)</p> </li> </ul>
0
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import seaborn as sns sns.histplot([20.002347, 20.002347, 51.004152, 19.00218, 20.002346])"><pre class="notranslate"><code class="notranslate">import seaborn as sns sns.histplot([20.002347, 20.002347, 51.004152, 19.00218, 20.002346]) </code></pre></div> <p dir="auto">is irresponsive for a long time with increasing memory usage. Adding <code class="notranslate">bins=10</code> creates the plot without major delay.</p> <p dir="auto">Version: 0.11.1</p>
<p dir="auto">Hello! It is my first Github bug report, so please let me know if some additional info is needed.<br> I'm trying to use sns.pairplot for some pandas DataFrame and in result my computers are running out of memory and losing terminals with all the data.<br> The problem set of digits (csv) can be downloaded here:<br> <a href="https://www.dropbox.com/s/2dian5cipxx6dzu/temp.csv?dl=0" rel="nofollow">https://www.dropbox.com/s/2dian5cipxx6dzu/temp.csv?dl=0</a><br> Interestingly, when I try to use sns.pairplot for another set of parameters with the same of an even greater number of lines, everything works nice.</p> <p dir="auto">Seaborn version: 0.11.0<br> This problem occurred on both my computers (OSx and Win10).</p>
1
<h3 dir="auto">Version</h3> <p dir="auto">2.6.10</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://jsfiddle.net/just_ben1996/5bfs80gk/14/" rel="nofollow">https://jsfiddle.net/just_ben1996/5bfs80gk/14/</a></p> <h3 dir="auto">Steps to reproduce</h3> <ul dir="auto"> <li>Create a component with a :is to an 'input' native element.</li> <li>v-model this component to something within your data as shown.</li> <li>Note the input isn't pre-populated with the value, and on change it does not change the value it is bound to with v-model.</li> </ul> <h3 dir="auto">What is expected?</h3> <p dir="auto">v-model should work as usual, updating the value when changed and displaying the value initially in the component.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">The initial value is not shown in the input component, and on change it does not update the value it is bound to.</p>
<p dir="auto">vuejs does not behave properly when use v-model with dynamic component .</p> <p dir="auto">jsfiddle adress:<br> <a href="http://jsfiddle.net/zuomingcai/4pukLmnc/1/" rel="nofollow">http://jsfiddle.net/zuomingcai/4pukLmnc/1/</a></p> <p dir="auto">focus the input element in above fiddle and press any key to see the hehavior.</p>
1
<p dir="auto">After modifying the value of the <code class="notranslate">indices</code> attribute of a <code class="notranslate">csr_matrix</code>, several operations on the matrix produce segfaults. However, other sparse matrix types (<code class="notranslate">lil_matrix</code> and <code class="notranslate">coo_matrix</code>) do not. Therefore, I suspect this is because CSR matrix compresses the row indices.</p> <p dir="auto">I have not come across any legitimate use case for modifying <code class="notranslate">indices</code> directly. Although I have not dug into the source code, perhaps the easiest fix would be to make <code class="notranslate">indices</code> read-only from outside the <code class="notranslate">_cs_matrix</code> class.</p> <p dir="auto">I would be happy to open a PR if needed.</p> <h4 dir="auto">Reproducing code example:</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy.sparse import csr_matrix import numpy as np a = csr_matrix(np.arange(16).reshape((4, 4))) b = csr_matrix(np.eye(4)) a.indices = [0] # This should not be allowed # Each of these lines run individually produce segfaults # print(a.toarray()) # print(np.sum(a)) # print(a @ b)"><pre class="notranslate"><code class="notranslate">from scipy.sparse import csr_matrix import numpy as np a = csr_matrix(np.arange(16).reshape((4, 4))) b = csr_matrix(np.eye(4)) a.indices = [0] # This should not be allowed # Each of these lines run individually produce segfaults # print(a.toarray()) # print(np.sum(a)) # print(a @ b) </code></pre></div> <p dir="auto">Note that this is not an exhaustive list of operations. There are likely other operations which segfault as well.</p> <h4 dir="auto">Error message:</h4> <p dir="auto">This is the backtrace for the first line that segfaults (<code class="notranslate">print(a.toarray())</code>)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#0 0x00007fffe7a9373c in ?? () from /home/anag004/.local/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so #1 0x00007fffe7a7e77e in ?? () from /home/anag004/.local/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so #2 0x000000000050a2bf in ?? () #3 0x000000000050bfb4 in _PyEval_EvalFrameDefault () #4 0x0000000000507d64 in ?? () #5 0x0000000000509a90 in ?? () #6 0x000000000050a48d in ?? () #7 0x000000000050bfb4 in _PyEval_EvalFrameDefault () #8 0x0000000000507d64 in ?? () #9 0x000000000050ae13 in PyEval_EvalCode () #10 0x0000000000634c82 in ?? () #11 0x0000000000634d37 in PyRun_FileExFlags () #12 0x00000000006384ef in PyRun_SimpleFileExFlags () #13 0x0000000000639091 in Py_Main () #14 0x00000000004b0d00 in main ()"><pre class="notranslate"><code class="notranslate">#0 0x00007fffe7a9373c in ?? () from /home/anag004/.local/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so #1 0x00007fffe7a7e77e in ?? () from /home/anag004/.local/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so #2 0x000000000050a2bf in ?? () #3 0x000000000050bfb4 in _PyEval_EvalFrameDefault () #4 0x0000000000507d64 in ?? () #5 0x0000000000509a90 in ?? () #6 0x000000000050a48d in ?? () #7 0x000000000050bfb4 in _PyEval_EvalFrameDefault () #8 0x0000000000507d64 in ?? () #9 0x000000000050ae13 in PyEval_EvalCode () #10 0x0000000000634c82 in ?? () #11 0x0000000000634d37 in PyRun_FileExFlags () #12 0x00000000006384ef in PyRun_SimpleFileExFlags () #13 0x0000000000639091 in Py_Main () #14 0x00000000004b0d00 in main () </code></pre></div> <h4 dir="auto">Scipy/Numpy/Python version information:</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.4.1 1.18.4 sys.version_info(major=3, minor=6, micro=9, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">1.4.1 1.18.4 sys.version_info(major=3, minor=6, micro=9, releaselevel='final', serial=0) </code></pre></div>
<p dir="auto">A <code class="notranslate">csr_matrix</code> can be constructed with malformed data (column indices that are out of bounds) without crashing. This can lead to later segfaults when (I guess) out of bounds memory is accessed. In my application, it didn't crash 100% of the time, but was more random, as is common with out-of-bounds memory accesses. I would expect the construction of the <code class="notranslate">csr_matrix</code> to fail, or at least the documentation should reflect that this can lead to undefined behavior if your parameters is incorrect.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy.sparse import csr_matrix data = [1.0, 1.0] indices = [1001, 555] indptr = [0, 1, 2] shape = (2, 1000) mat = csr_matrix((data, indices, indptr), shape=shape) print &quot;constructed csr_matrix&quot; print mat * mat.T "><pre class="notranslate"><code class="notranslate">from scipy.sparse import csr_matrix data = [1.0, 1.0] indices = [1001, 555] indptr = [0, 1, 2] shape = (2, 1000) mat = csr_matrix((data, indices, indptr), shape=shape) print "constructed csr_matrix" print mat * mat.T </code></pre></div> <p dir="auto">The matrix has a width of 1000, but the column indices list places something in column 1001, which is out of bounds. The seg fault occurs on the <code class="notranslate">print mat * mat.T</code> line, not the construction of the matrix with the malformed parameters.</p> <h3 dir="auto">Error message:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python test.py constructed csr_matrix Segmentation fault (core dumped)"><pre class="notranslate"><code class="notranslate">$ python test.py constructed csr_matrix Segmentation fault (core dumped) </code></pre></div> <h3 dir="auto">Scipy/Numpy/Python version information:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="('1.0.0', '1.14.0', sys.version_info(major=2, minor=7, micro=6, releaselevel='final', serial=0))"><pre class="notranslate"><code class="notranslate">('1.0.0', '1.14.0', sys.version_info(major=2, minor=7, micro=6, releaselevel='final', serial=0)) </code></pre></div> <p dir="auto">I'm running on Ubuntu 14.04 on a 64-bit x86 processor.</p>
1
<p dir="auto">Running <code class="notranslate">npm run install</code> and <code class="notranslate">npm run start --p 3000</code> locally works no issues using same version of node.<br> Once deployed using the package.json below I'm receiving errors as in the Heroku Logs below.<br> Big thanks for all the effort being put into this project.</p> <p dir="auto">package.json</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;name&quot;: &quot;xxx&quot;, &quot;version&quot;: &quot;1.0.0&quot;, &quot;description&quot;: &quot;&quot;, &quot;main&quot;: &quot;index.js&quot;, &quot;engines&quot;: { &quot;node&quot;: &quot;6.9.1&quot; }, &quot;dependencies&quot;: { &quot;glamor&quot;: &quot;2.20.20&quot;, &quot;google-map-react&quot;: &quot;0.22.0&quot;, &quot;google-maps-react&quot;: &quot;1.0.19&quot;, &quot;isomorphic-fetch&quot;: &quot;2.2.1&quot;, &quot;lodash.range&quot;: &quot;3.2.0&quot;, &quot;next&quot;: &quot;2.0.0-beta.15&quot;, &quot;numeral&quot;: &quot;2.0.3&quot;, &quot;react-bootstrap&quot;: &quot;0.30.6&quot;, &quot;react-google-maps&quot;: &quot;6.0.1&quot;, &quot;react-inlinesvg&quot;: &quot;0.5.4&quot;, &quot;react-input-range&quot;: &quot;0.9.3&quot;, &quot;react-redux&quot;: &quot;4.4.5&quot;, &quot;react-select&quot;: &quot;1.0.0-rc.2&quot;, &quot;react-slick&quot;: &quot;0.14.5&quot;, &quot;react-svg-pan-zoom&quot;: &quot;2.2.2&quot;, &quot;redux&quot;: &quot;3.6.0&quot;, &quot;redux-form&quot;: &quot;6.2.1&quot;, &quot;redux-thunk&quot;: &quot;2.1.0&quot; }, &quot;devDependencies&quot;: { &quot;browser-sync&quot;: &quot;2.18.2&quot;, &quot;bootstrap-sass&quot;: &quot;3.3.7&quot;, &quot;gulp&quot;: &quot;3.9.1&quot;, &quot;gulp-sass&quot;: &quot;2.3.2&quot; }, &quot;scripts&quot;: { &quot;dev&quot;: &quot;next&quot;, &quot;install&quot;: &quot;next build&quot;, &quot;start&quot;: &quot;next start -p ${PORT}&quot; } }"><pre class="notranslate"><code class="notranslate">{ "name": "xxx", "version": "1.0.0", "description": "", "main": "index.js", "engines": { "node": "6.9.1" }, "dependencies": { "glamor": "2.20.20", "google-map-react": "0.22.0", "google-maps-react": "1.0.19", "isomorphic-fetch": "2.2.1", "lodash.range": "3.2.0", "next": "2.0.0-beta.15", "numeral": "2.0.3", "react-bootstrap": "0.30.6", "react-google-maps": "6.0.1", "react-inlinesvg": "0.5.4", "react-input-range": "0.9.3", "react-redux": "4.4.5", "react-select": "1.0.0-rc.2", "react-slick": "0.14.5", "react-svg-pan-zoom": "2.2.2", "redux": "3.6.0", "redux-form": "6.2.1", "redux-thunk": "2.1.0" }, "devDependencies": { "browser-sync": "2.18.2", "bootstrap-sass": "3.3.7", "gulp": "3.9.1", "gulp-sass": "2.3.2" }, "scripts": { "dev": "next", "install": "next build", "start": "next start -p ${PORT}" } } </code></pre></div> <p dir="auto">Heroku Logs</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ Error: Cannot find module '/tmp/build_64ddcd154cf30721ff7251c45faf0a03/node_modules/next/dist/server/document.js' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at Object.&lt;anonymous&gt; (/app/.next/dist/pages/_document.js:3:18) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) code: 'MODULE_NOT_FOUND' } { Error: Cannot find module '/tmp/build_64ddcd154cf30721ff7251c45faf0a03/node_modules/babel-runtime/core-js/object/get-prototype-of' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at Object.&lt;anonymous&gt; (/app/.next/dist/pages/_error.js:7:23) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) code: 'MODULE_NOT_FOUND' }"><pre class="notranslate"><code class="notranslate">{ Error: Cannot find module '/tmp/build_64ddcd154cf30721ff7251c45faf0a03/node_modules/next/dist/server/document.js' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at Object.&lt;anonymous&gt; (/app/.next/dist/pages/_document.js:3:18) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) code: 'MODULE_NOT_FOUND' } { Error: Cannot find module '/tmp/build_64ddcd154cf30721ff7251c45faf0a03/node_modules/babel-runtime/core-js/object/get-prototype-of' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at Object.&lt;anonymous&gt; (/app/.next/dist/pages/_error.js:7:23) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) code: 'MODULE_NOT_FOUND' } </code></pre></div>
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">First bug report so patience appreciated. Following an installation of @material-ui/core receive "Invalid hook call". Traced the issue back to any hook in general and react installation location.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Created simple standard folder structure:<br> src<br> |--components<br> |--pages<br> |--package.json<br> |--next.config.js<br> |--etc. etc.<br> public<br> |--placeholder.html<br> |--404.html<br> functions<br> |--index.js<br> |--package.json</p> <p dir="auto">Functions package.json is identical with additional <code class="notranslate">firebase-admin</code> and <code class="notranslate">firebase-functions</code></p> <p dir="auto">Once you add @material-ui/core and make a simple button get:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: 1. You might have mismatching versions of React and the renderer (such as React DOM) 2. You might be breaking the Rules of Hooks 3. You might have more than one copy of React in the same app See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem."><pre class="notranslate"><code class="notranslate">Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: 1. You might have mismatching versions of React and the renderer (such as React DOM) 2. You might be breaking the Rules of Hooks 3. You might have more than one copy of React in the same app See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem. </code></pre></div> <p dir="auto">Changing the button to simple <code class="notranslate">&lt;button onClick={...}&gt;Click Me&lt;/button&gt;</code> works.</p> <p dir="auto">On deploy, the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error occurred prerendering page &quot;/&quot; https://err.sh/zeit/next.js/prerender-error: Error: Minified React error #321"><pre class="notranslate"><code class="notranslate">Error occurred prerendering page "/" https://err.sh/zeit/next.js/prerender-error: Error: Minified React error #321 </code></pre></div> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Easy implementation of <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/material-ui/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/material-ui">@material-ui</a></p> <h2 dir="auto">Screenshots</h2> <p dir="auto">If applicable, add screenshots to help explain your problem.</p> <h2 dir="auto">System information</h2> <p dir="auto">linux ubuntu</p> <h2 dir="auto">Additional context</h2> <p dir="auto">This is not a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="458998600" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/7626" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/7626/hovercard" href="https://github.com/vercel/next.js/issues/7626">#7626</a></p>
0
<p dir="auto"><a href="https://github.com/facebook/react/pull/5744" data-hovercard-type="pull_request" data-hovercard-url="/facebook/react/pull/5744/hovercard">facebook/react/pull/5744</a></p> <p dir="auto">It seems with the newest update v15 when passing props into a child component with the spread operator the console throws the warnings associated with this pull request.</p> <p dir="auto">seems to only throw issue when the component is not a class but only stateless component hence passing just {...props} and not {...this.props}</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6943688/14372403/141329b2-fcf5-11e5-9ef8-7cc2ae19a571.png"><img src="https://cloud.githubusercontent.com/assets/6943688/14372403/141329b2-fcf5-11e5-9ef8-7cc2ae19a571.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I am not accessing refs or keys in the child component</p>
<p dir="auto">React version: 16.13.1</p> <h2 dir="auto">Steps To Reproduce</h2> <ol dir="auto"> <li>In a project with React, and [email protected]</li> <li></li> </ol> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React from &quot;react&quot;; import Renderer from &quot;react-test-renderer&quot;; import { Map, TileLayer } from &quot;react-leaflet&quot;; let component = Renderer.create( &lt;Map&gt; &lt;TileLayer attribution='&amp;copy; &lt;a href=&quot;http://osm.org/copyright&quot;&gt;OpenStreetMap&lt;/a&gt; contributors' url=&quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot; /&gt; &lt;/Map&gt; );"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-smi">React</span> <span class="pl-k">from</span> <span class="pl-s">"react"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-smi">Renderer</span> <span class="pl-k">from</span> <span class="pl-s">"react-test-renderer"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Map</span><span class="pl-kos">,</span> <span class="pl-smi">TileLayer</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"react-leaflet"</span><span class="pl-kos">;</span> <span class="pl-k">let</span> <span class="pl-s1">component</span> <span class="pl-c1">=</span> <span class="pl-smi">Renderer</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span> <span class="pl-kos">&lt;</span><span class="pl-smi">Map</span><span class="pl-kos">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-smi">TileLayer</span> <span class="pl-smi">attribution</span><span class="pl-c1">=</span><span class="pl-s">'&amp;copy; &lt;a href="http://osm.org/copyright"&gt;OpenStreetMap&lt;/a&gt; contributors'</span> <span class="pl-s1">url</span><span class="pl-c1">=</span><span class="pl-s">"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"</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-smi">Map</span><span class="pl-c1">&gt;</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Link to code example: <a href="https://codesandbox.io/s/react-test-renderer-leaflet-mohzp" rel="nofollow">https://codesandbox.io/s/react-test-renderer-leaflet-mohzp</a></p> <h2 dir="auto">The current behavior</h2> <p dir="auto">It raise an error <code class="notranslate">Map container not found.</code></p> <h2 dir="auto">The expected behavior</h2> <p dir="auto">Enzyme's <code class="notranslate">attachTo</code> option allow to mount the comment in a more realistic environment, which fixes this bug. But there is no equivalent feature in <code class="notranslate">react-test-renderer</code> as far as I know.</p> <p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="186798181" data-permission-text="Title is private" data-url="https://github.com/PaulLeCam/react-leaflet/issues/246" data-hovercard-type="issue" data-hovercard-url="/PaulLeCam/react-leaflet/issues/246/hovercard" href="https://github.com/PaulLeCam/react-leaflet/issues/246">PaulLeCam/react-leaflet#246</a> for more info about the Enzyme fix for this issue.</p> <p dir="auto">It should render the map as expected.</p>
0
<p dir="auto">It could be useful to be able to intercept dialog events from webview (alert, confirm, prompt) to be able to implement our own gui.</p> <p dir="auto">Also it is part of chrome webview events<br> <a href="https://developer.chrome.com/apps/tags/webview#event-dialog" rel="nofollow">https://developer.chrome.com/apps/tags/webview#event-dialog</a></p>
<ul dir="auto"> <li>Output of <code class="notranslate">node_modules/.bin/electron --version</code>: v3.0.8</li> <li>Operating System (Platform and Version): Ubuntu 18.0.4</li> </ul> <p dir="auto">When running electron like:</p> <p dir="auto">npx electron web/spectron/example/index.js the appPath (via app.getAppPath()) ends up becoming broken and just:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/home/path/to/myproject/node_modules/electron/dist/resources/default_app.asar"><pre class="notranslate"><code class="notranslate">/home/path/to/myproject/node_modules/electron/dist/resources/default_app.asar </code></pre></div> <p dir="auto">... this is wrong.</p> <p dir="auto">Note that if I just do <code class="notranslate">npx electron .</code> the value is right and is:</p> <p dir="auto">/home/path/to/myproject</p> <p dir="auto">... and if I bundle my app as a real APP with .asar packaging I get:</p> <p dir="auto">/opt/Polar Bookshelf/resources/app.asar</p> <p dir="auto">The problem is that this breaks my spectron tests as I can't find a reliable path to require() my entry point.</p>
0
<p dir="auto">I wanted to understand if we could create BDD Style tests similar to the ones that we'd create using cucumber with the playwright test runner. we use the test runner extensively in our playwright automation framework (Visual regression is an example).</p> <p dir="auto">Kindly advise.</p>
<p dir="auto">Our team has a case to use the BDD test, Playwright has any plan to add their own BDD implementation using the playwright test runner? That would be great if to have.</p> <p dir="auto">This can help many people who want to use BDD along with Playwright. That's where cucumber became popular 😉</p>
1
<p dir="auto">In Node we have <a href="https://nodejs.org/api/os.html#os_os_eol" rel="nofollow">os.EOL</a> which abstracts the OS.</p> <p dir="auto">In Deno we have <a href="https://deno.land/std/fs/eol.ts" rel="nofollow">std/fs/eol</a> which is an os-invariant enumeration. The <a href="https://deno.land/typedoc/index.html#writefile" rel="nofollow">docs for writeFile</a> and similar just use denormalized <code class="notranslate">\n</code>.</p> <p dir="auto">Is this a case where we can prefer the Node pattern over the Go pattern, or is there some other recommended way to do this sort of thing? I'm simply trying to write a file with line breaks.</p>
<p dir="auto">I get this error; in the Deno 1.23.2.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Unable to output during bundling. Caused by: 0: load_transformed failed 1: failed to analyze module 2: failed to resolve https://esm.sh/react@^18.2.0?pin=v86?bundle/jsx-runtime from file:///C:/Users/ayovr/Documents/dev/deno-bundle-automatic-jsx-runtime-error-reproduction/mod.tsx 3: Cannot resolve &quot;https://esm.sh/react@^18.2.0?pin=v86?bundle/jsx-runtime&quot; from &quot;file:///C:/Users/ayovr/Documents/dev/deno-bundle-automatic-jsx-runtime-error-reproduction/mod.tsx&quot;."><pre class="notranslate"><code class="notranslate">error: Unable to output during bundling. Caused by: 0: load_transformed failed 1: failed to analyze module 2: failed to resolve https://esm.sh/react@^18.2.0?pin=v86?bundle/jsx-runtime from file:///C:/Users/ayovr/Documents/dev/deno-bundle-automatic-jsx-runtime-error-reproduction/mod.tsx 3: Cannot resolve "https://esm.sh/react@^18.2.0?pin=v86?bundle/jsx-runtime" from "file:///C:/Users/ayovr/Documents/dev/deno-bundle-automatic-jsx-runtime-error-reproduction/mod.tsx". </code></pre></div> <p dir="auto">I made this repository with a simple reproduction: <a href="https://github.com/ayoreis/deno-bundle-automatic-jsx-runtime-error-reproduction">https://github.com/ayoreis/deno-bundle-automatic-jsx-runtime-error-reproduction</a></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><br> Currently when I try to reuse the same <code class="notranslate">TemplateRef</code> instance for multiple items it renders wrong view</p> <p dir="auto"><strong>Expected behavior</strong><br> It should render a separate view inside each view container</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> <a href="https://plnkr.co/edit/PZe5XnmJ2KoJ99ts33F9?p=preview" rel="nofollow">https://plnkr.co/edit/PZe5XnmJ2KoJ99ts33F9?p=preview</a></p> <p dir="auto">Currently you will see 2 words "Enabled".<br> Should be "<br> { "enabled": true } Enabled<br> { "enabled": false } disabled" (as in <a href="https://plnkr.co/edit/rZuCs8O7YE4fYplfI3gF?p=preview" rel="nofollow">https://plnkr.co/edit/rZuCs8O7YE4fYplfI3gF?p=preview</a>)</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> I have a slider with hundreds of slides and want to optimise DOM by using lazy DOM creation. For this I need to use template reference. Eventually it's something like this:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;lazy-slides [items]=&quot;files&quot;&gt; &lt;template let-file=&quot;item&quot;&gt; &lt;preview-file [src]=&quot;file.url&quot;&gt;&lt;/preview-file&gt; &lt;/template&gt; &lt;/lazy-slides&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">lazy-slides</span> <span class="pl-c1">[items]</span>="<span class="pl-s">files</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">template</span> <span class="pl-c1">let-file</span>="<span class="pl-s">item</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">preview-file</span> <span class="pl-c1">[src]</span>="<span class="pl-s">file.url</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">preview-file</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">lazy-slides</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">Then using <code class="notranslate">ngFor</code> and <code class="notranslate">ngTemplateOutlet</code> I put this template for first 5 items and when user slides I change references inside array.</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> npm: 3.9.3<br> OSX EI Capitan 10.11.5<br> Atom<br> Chrome 54.0.2840.98</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 2.0.X<br> Reproducible starting from 2.2.0, the same in 2.3.0. Works properly in 2.2.0-rc.0 and older ( <a href="https://plnkr.co/edit/rZuCs8O7YE4fYplfI3gF?p=preview" rel="nofollow">https://plnkr.co/edit/rZuCs8O7YE4fYplfI3gF?p=preview</a> )</p> </li> <li> <p dir="auto"><strong>Browser:</strong><br> Chrome 54.0.2840.98</p> </li> <li> <p dir="auto"><strong>Language:</strong> all</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="[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">Currently when you have <code class="notranslate">ContentChild(TemplateRef)</code> it is not working correctly. Because after init you get different TemplateRef object as you get after another ContentCheck.</p> <p dir="auto">If you have following html</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;grabber&gt; &lt;template&gt; &lt;div style=&quot;background-color: #FF00FF;&quot;&gt; &lt;span&gt;ok&lt;/span&gt; &lt;div style=&quot;background-color: #00FFFF;&quot; *ngIf=&quot;true&quot;&gt;bad&lt;/div&gt; &lt;/div&gt; &lt;/template&gt; &lt;/grabber&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">grabber</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">style</span>="<span class="pl-s">background-color: #FF00FF;</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>ok<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">div</span> <span class="pl-c1">style</span>="<span class="pl-s">background-color: #00FFFF;</span>" <span class="pl-c1">*ngIf</span>="<span class="pl-s">true</span>"<span class="pl-kos">&gt;</span>bad<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">template</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">grabber</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">If your <code class="notranslate">grabber</code> component have <code class="notranslate">@ContentChild(TemplateRef)</code> and in <code class="notranslate">ngAfterContentInit()</code> method you will use this template, <code class="notranslate">&lt;template&gt;</code> element is used.</p> <p dir="auto">But if you use this template again, not during <code class="notranslate">ngAfterContentInit()</code> method call you get <code class="notranslate">&lt;div style="background-color: #00FFFF;" *ngIf="true"&gt;bad&lt;/div&gt;</code> template.</p> <p dir="auto">This is pretty awfull bug.<br> Thanks for help</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">It should return same template during init phase and also after another check of content. And also there is no explaination why <code class="notranslate">descendants: true</code> were set. This means that correct template in this case is div? If so, then during init phase this is not considered.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> Here is plunker where you can see problem described above. <a href="https://plnkr.co/edit/FWqPGlsENMJZHhD4SOCd?p=preview" rel="nofollow">https://plnkr.co/edit/FWqPGlsENMJZHhD4SOCd?p=preview</a></p> <p dir="auto">If you add another template you see only <code class="notranslate">&lt;div&gt;</code> element.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <p dir="auto">Windows 10, Visual Studio Code, npm, Connect server</p> <ul dir="auto"> <li><strong>Angular version:</strong> &gt;= 2.2.0</li> </ul> <ul dir="auto"> <li><strong>Browser:</strong> all</li> </ul> <ul dir="auto"> <li><strong>Language:</strong> TypeScript 2.0.9</li> </ul>
1
<p dir="auto">Maybe there's some really easy way to make this work in TS that I'm not seeing.</p> <p dir="auto">I want to load jQuery as an AMD module, not as a global. <code class="notranslate">jquery.d.ts</code>as currently defined does not export a jquery external module. Instead it defines the $ and jQuery variables as global variables.</p> <p dir="auto">Is there a simple way to declare an external module that has the same signature as JQueryStatic?</p> <p dir="auto">If not, is it possible to change jquery.d.ts to support external module loading?</p> <p dir="auto">Here's how I have it working so far. The problem is I have to manually copy the whole JQueryStatic definition into jquery.d.ts. I don't want to do this. I want to take advantage of your work. Is there something I should do differently, or something that should be changed in jquery-1.8.d.ts?</p> <p dir="auto">folders</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public/ components/ DefinitelyTyped/ (etc) lib/ jquery.d.ts main.ts config.js"><pre class="notranslate"><code class="notranslate">public/ components/ DefinitelyTyped/ (etc) lib/ jquery.d.ts main.ts config.js </code></pre></div> <p dir="auto">config.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="requirejs.config({ paths: { 'lib/jquery: 'path/to/jquery/lib', } })"><pre class="notranslate"><code class="notranslate">requirejs.config({ paths: { 'lib/jquery: 'path/to/jquery/lib', } }) </code></pre></div> <p dir="auto">main.ts</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import $ = module(&quot;lib/jquery&quot;) console.log(&quot;HI&quot;, $.ajax)"><pre class="notranslate"><code class="notranslate">import $ = module("lib/jquery") console.log("HI", $.ajax) </code></pre></div> <p dir="auto">lib/jquery.d.ts</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="///&lt;reference path=&quot;../components/DefinitelyTyped/Definitions/jquery-1.8.d.ts&quot; /&gt; declare module &quot;lib/jquery&quot; { export function ajax(settings: JQueryAjaxSettings): JQueryXHR; export function ajax(url: string, settings?: JQueryAjaxSettings): JQueryXHR; export function (selector: string, context?: any): JQuery; export function (element: Element): JQuery; export function (object: { }): JQuery; export function (elementArray: Element[]): JQuery; export function (object: JQuery): JQuery; export function (func: Function): JQuery; export function (array: any[]): JQuery; export function (): JQuery; }"><pre class="notranslate"><code class="notranslate">///&lt;reference path="../components/DefinitelyTyped/Definitions/jquery-1.8.d.ts" /&gt; declare module "lib/jquery" { export function ajax(settings: JQueryAjaxSettings): JQueryXHR; export function ajax(url: string, settings?: JQueryAjaxSettings): JQueryXHR; export function (selector: string, context?: any): JQuery; export function (element: Element): JQuery; export function (object: { }): JQuery; export function (elementArray: Element[]): JQuery; export function (object: JQuery): JQuery; export function (func: Function): JQuery; export function (array: any[]): JQuery; export function (): JQuery; } </code></pre></div>
<p dir="auto">In the <code class="notranslate">package.json</code> for this package, currently there is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;dependencies&quot;: { &quot;@types/react&quot;: &quot;*&quot; },"><pre class="notranslate"><code class="notranslate">"dependencies": { "@types/react": "*" }, </code></pre></div> <p dir="auto">It would be better to use <a href="https://docs.npmjs.com/misc/semver#caret-ranges-123-025-004" rel="nofollow">carat ranges</a> than the current wildcard for <code class="notranslate">@types/react</code> in the <code class="notranslate">package.json</code> for this package, because otherwise say for example the user is on React 15, and React 16 is released, and thus then the <code class="notranslate">@types/react</code> version is 16, causing this error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node_modules/@types/react-select/node_modules/@types/react/index.d.ts (3422,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'a' must be of type 'DetailedHTMLProps&lt;AnchorHTMLAttributes&lt;HTMLAnchorElement&gt;, HTMLAnchorElement&gt;', but here has type 'DetailedHTMLProps&lt;AnchorHTMLAttributes&lt;HTMLAnchorElement&gt;, HTMLAnchorElement&gt;"><pre class="notranslate"><code class="notranslate">node_modules/@types/react-select/node_modules/@types/react/index.d.ts (3422,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'a' must be of type 'DetailedHTMLProps&lt;AnchorHTMLAttributes&lt;HTMLAnchorElement&gt;, HTMLAnchorElement&gt;', but here has type 'DetailedHTMLProps&lt;AnchorHTMLAttributes&lt;HTMLAnchorElement&gt;, HTMLAnchorElement&gt; </code></pre></div> <ul dir="auto"> <li>[x ] I tried using the <code class="notranslate">@types/react-select</code> package and had problems.</li> <li>[ x] 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> </ul> <p dir="auto">Using: ts-loader: Using [email protected]</p> <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Hesquibet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Hesquibet">@Hesquibet</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/giladgray/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/giladgray">@giladgray</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/iebaker/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/iebaker">@iebaker</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tdreyno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tdreyno">@tdreyno</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/skirsdeda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/skirsdeda">@skirsdeda</a>, @vujevits, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/devrelm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/devrelm">@devrelm</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/MartynasZilinskas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MartynasZilinskas">@MartynasZilinskas</a></li> </ul>
0
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1462282/79713061-7a272800-8281-11ea-97d5-d5cc2d8f5b1b.png"><img src="https://user-images.githubusercontent.com/1462282/79713061-7a272800-8281-11ea-97d5-d5cc2d8f5b1b.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">ID Author Date Message<br> <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/PowerToys/commit/b7fd1b23346f47e4c9b2511cc988ee29e39357a1/hovercard" href="https://github.com/microsoft/PowerToys/commit/b7fd1b23346f47e4c9b2511cc988ee29e39357a1"><tt>b7fd1b2</tt></a> Divyansh Srivastava <a href="mailto:[email protected]">[email protected]</a> 4/20/2020 2:11:40 AM +00:00 Adding visibility after clearing result in MainViewmodel</p>
<p dir="auto">When searching 'cmd', can't find command prompt</p>
1
<p dir="auto">Well this is a downer. I just spun up a new build machine and started cruising through the build, probably not paying as much attention as I should. Here's an excerpt:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... .exe checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C preprocessor... gcc -E checking build system type... Invalid configuration `x86_64-pc-msys': system `msys' not recognized configure: error: /bin/sh ../autoconf/config.sub x86_64-pc-msys failed Makefile:369: recipe for target 'llvm-3.3/build_Release/config.status' failed make[2]: *** [llvm-3.3/build_Release/config.status] Error 1 Makefile:43: recipe for target 'julia-release' failed make[1]: *** [julia-release] Error 2 Makefile:32: recipe for target 'release' failed make: *** [release] Error 2"><pre class="notranslate"><code class="notranslate">checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... .exe checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C preprocessor... gcc -E checking build system type... Invalid configuration `x86_64-pc-msys': system `msys' not recognized configure: error: /bin/sh ../autoconf/config.sub x86_64-pc-msys failed Makefile:369: recipe for target 'llvm-3.3/build_Release/config.status' failed make[2]: *** [llvm-3.3/build_Release/config.status] Error 1 Makefile:43: recipe for target 'julia-release' failed make[1]: *** [julia-release] Error 2 Makefile:32: recipe for target 'release' failed make: *** [release] Error 2 </code></pre></div> <p dir="auto">Digging into the /deps/llvm-* and doing a <code class="notranslate">make</code> there confirms that the problem is that the LLVM <code class="notranslate">configure</code> is not detecting the build system.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$uname -a MSYS_NT-6.1 VM-Win7x64 2.0.0(0.272/5/3) 2014-03-19 13:02 x86_64 Msys"><pre class="notranslate"><code class="notranslate">$uname -a MSYS_NT-6.1 VM-Win7x64 2.0.0(0.272/5/3) 2014-03-19 13:02 x86_64 Msys </code></pre></div> <p dir="auto">Up to date:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ git remote -v origin https://github.com/JuliaLang/julia.git (fetch) origin https://github.com/JuliaLang/julia.git (push) $ git show --oneline 898962c Merge pull request #6200 from JuliaLang/sjk/sprintf"><pre class="notranslate"><code class="notranslate">$ git remote -v origin https://github.com/JuliaLang/julia.git (fetch) origin https://github.com/JuliaLang/julia.git (push) $ git show --oneline 898962c Merge pull request #6200 from JuliaLang/sjk/sprintf </code></pre></div> <p dir="auto">Just to be safe I did a <code class="notranslate">pacman -S autoconf</code> -- same build failure after updating autoconf.</p> <p dir="auto">Note that I have <strong>not</strong> bisected and I am not implicating this particular commit of course. I'll look for recent changes to the makefiles when I get back Monday.</p>
<p dir="auto">Summary of situation:<br> built julia-1.2.0-rc2 from source for centos6 with gcc 6.4.0 and -DGLIBCXX_USE_CXX11_ABI=0<br> dlopen an .so which embeds some simple julia code. “Lifted” into global namespace with dlopen(RTLD_NOW | RTLD_GLOBAL)<br> from a maya plugin.</p> <p dir="auto">jl_init() results in this assert:<br> void* jl_init_llvm(): Assertion `jl_TargetMachine &amp;&amp; “Failed to select target machine -” " Is the LLVM backend for this CPU enabled?"’ failed.</p> <p dir="auto">Any ideas? A toy julia embedding works fine ( not loaded from maya )</p> <p dir="auto">versioninfo():<br> Julia Version 1.2.0-rc2.0<br> Platform Info:<br> OS: Linux (x86_64-pc-linux-gnu)<br> CPU: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz<br> WORD_SIZE: 64<br> LIBM: libopenlibm<br> LLVM: libLLVM-6.0.1 (ORCJIT, broadwell)</p>
0
<p dir="auto">Hi there,</p> <p dir="auto">we're currently test driving some of our old scripts remotely from ansible and if we choose to use it probably will for some time.</p> <p dir="auto">On the one hand ansible makes it really easy to automate workflows that span multiple servers (that we'd like to use) on the other hand though it makes it really hard to see live whats going on on the other system.</p> <p dir="auto">What we would like is a way to see the output of the task on the target system as live feedback (possibly if requested via an option in a playbook).</p> <p dir="auto">As far as I can see that is not possible with the current design of playbooks as the underlying callback object does not get callbacks for individual lines in the playbook.</p> <p dir="auto">As far as I understand how ansible works (ssh into the other machine run a command) this should not be difficult to implement as the output is streamed live to the local machine anyway (or could be easily).</p> <p dir="auto">So that's the feature request: show live output of remote tasks/commands. How about it? Would you be willing to do that in ansible? Would you accept a pull request? Is it already possible?</p> <p dir="auto">Best regards and thanks for the great tool!</p>
<p dir="auto">Would love to see each 'shell' (&amp;other) command creathave an option that creates a pipe for the duration of the process and pipes it's output into the pipe real time.</p> <p dir="auto">Doing some long lived load generation and Ansible is crucial, but I don't know how to monitor process, short of adding more layers.</p>
1
<h2 dir="auto">Motivations</h2> <p dir="auto">A lot of JavaScript library/framework/pattern involve computation based on the property name of an object. For example <a href="http://backbonejs.org/" rel="nofollow">Backbone</a> model, functional transformation <code class="notranslate">pluck</code>, <a href="https://github.com/facebook/immutable-js">ImmutableJS</a> are all based on such mechanism.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//backbone var Contact = Backbone.Model.extend({}) var contact = new Contact(); contact.get('name'); contact.set('age', 21); // ImmutableJS var map = Immutable.Map({ name: 'François', age: 20 }); map = map.set('age', 21); map.get('age'); // 21 //pluck var arr = [{ name: 'François' }, { name: 'Fabien' }]; _.pluck(arr, 'name') // ['François', 'Fabien'];"><pre class="notranslate"><span class="pl-c">//backbone</span> <span class="pl-k">var</span> <span class="pl-v">Contact</span> <span class="pl-c1">=</span> <span class="pl-v">Backbone</span><span class="pl-kos">.</span><span class="pl-c1">Model</span><span class="pl-kos">.</span><span class="pl-en">extend</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">var</span> <span class="pl-s1">contact</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Contact</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">contact</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'name'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">contact</span><span class="pl-kos">.</span><span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s">'age'</span><span class="pl-kos">,</span> <span class="pl-c1">21</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// ImmutableJS</span> <span class="pl-k">var</span> <span class="pl-s1">map</span> <span class="pl-c1">=</span> <span class="pl-v">Immutable</span><span class="pl-kos">.</span><span class="pl-en">Map</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'François'</span><span class="pl-kos">,</span> <span class="pl-c1">age</span>: <span class="pl-c1">20</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">map</span> <span class="pl-c1">=</span> <span class="pl-s1">map</span><span class="pl-kos">.</span><span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s">'age'</span><span class="pl-kos">,</span> <span class="pl-c1">21</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">map</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'age'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// 21</span> <span class="pl-c">//pluck</span> <span class="pl-k">var</span> <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'François'</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'Fabien'</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-s1">_</span><span class="pl-kos">.</span><span class="pl-en">pluck</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">,</span> <span class="pl-s">'name'</span><span class="pl-kos">)</span> <span class="pl-c">// ['François', 'Fabien'];</span></pre></div> <p dir="auto">We can easily understand in those examples the relation between the api and the underlying type constraint.<br> In the case of the backbone model, it is just a kind of <em>proxy</em> for an object of type :</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface Contact { name: string; age: number; }"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">Contact</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span> <span class="pl-c1">age</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">For the case of <code class="notranslate">pluck</code>, it's a transformation</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="T[] =&gt; U[]"><pre class="notranslate"><code class="notranslate">T[] =&gt; U[] </code></pre></div> <p dir="auto">where U is the type of a property of T <code class="notranslate">prop</code>.</p> <p dir="auto">However we have no way to express such relation in TypeScript, and ends up with dynamic type.</p> <h2 dir="auto">Proposed solution</h2> <p dir="auto">The proposed solution is to introduce a new syntax for type <code class="notranslate">T[prop]</code> where <code class="notranslate">prop</code> is an argument of the function using such type as return value or type parameter.<br> With this new type syntax we could write the following definition :</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare module Backbone { class Model&lt;T&gt; { get(prop: string): T[prop]; set(prop: string, value: T[prop]): void; } } declare module ImmutableJS { class Map&lt;T&gt; { get(prop: string): T[prop]; set(prop: string, value: T[prop]): Map&lt;T&gt;; } } declare function pluck&lt;T&gt;(arr: T[], prop: string): Array&lt;T[prop]&gt; // or T[prop][] "><pre class="notranslate"><span class="pl-k">declare</span> module <span class="pl-smi">Backbone</span> <span class="pl-kos">{</span> <span class="pl-k">class</span> <span class="pl-smi">Model</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">get</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">prop</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-c1">set</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-s1">value</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">prop</span><span class="pl-kos">]</span><span class="pl-kos">)</span>: <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">declare</span> module <span class="pl-smi">ImmutableJS</span> <span class="pl-kos">{</span> <span class="pl-k">class</span> <span class="pl-smi">Map</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">get</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">prop</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-c1">set</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-s1">value</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">prop</span><span class="pl-kos">]</span><span class="pl-kos">)</span>: <span class="pl-smi">Map</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">pluck</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">arr</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">Array</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">prop</span><span class="pl-kos">]</span><span class="pl-kos">&gt;</span> <span class="pl-c">// or T[prop][] </span></pre></div> <p dir="auto">This way, when we use our Backbone model, TypeScript could correctly type-check the <code class="notranslate">get</code> and <code class="notranslate">set</code> call.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface Contact { name: string; age: number; } var contact: Backbone.Model&lt;Contact&gt;; var age = contact.get('age'); contact.set('name', 3) /// error"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">Contact</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span> <span class="pl-c1">age</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">var</span> <span class="pl-s1">contact</span>: <span class="pl-smi">Backbone</span><span class="pl-kos">.</span><span class="pl-smi">Model</span><span class="pl-kos">&lt;</span><span class="pl-smi">Contact</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">age</span> <span class="pl-c1">=</span> <span class="pl-s1">contact</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'age'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">contact</span><span class="pl-kos">.</span><span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s">'name'</span><span class="pl-kos">,</span> <span class="pl-c1">3</span><span class="pl-kos">)</span> <span class="pl-c">/// error</span></pre></div> <h2 dir="auto">The <code class="notranslate">prop</code> constant</h2> <h3 dir="auto">Constraint</h3> <p dir="auto">Obviously the constant must be of a type that can be used as index type (<code class="notranslate">string</code>, <code class="notranslate">number</code>, <code class="notranslate">Symbol</code>).</p> <h3 dir="auto">Case of indexable</h3> <p dir="auto">Let's give a look at our <code class="notranslate">Map</code> definition:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare module ImmutableJS { class Map&lt;T&gt; { get(prop: string): T[string]; set(prop: string, value: T[string]): Map&lt;T&gt;; } }"><pre class="notranslate"><span class="pl-k">declare</span> module <span class="pl-smi">ImmutableJS</span> <span class="pl-kos">{</span> <span class="pl-k">class</span> <span class="pl-smi">Map</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">get</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">string</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-c1">set</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-s1">value</span>: <span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-smi">string</span><span class="pl-kos">]</span><span class="pl-kos">)</span>: <span class="pl-smi">Map</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</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">If <code class="notranslate">T</code> is indexable, our map inherit of this behavior:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var map = new ImmutableJS.Map&lt;{ [index: string]: number}&gt;;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">map</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">ImmutableJS</span><span class="pl-kos">.</span><span class="pl-c1">Map</span><span class="pl-kos">&lt;</span><span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">index</span>: <span class="pl-smi">string</span><span class="pl-kos">]</span>: <span class="pl-smi">number</span><span class="pl-kos">}</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Now <code class="notranslate">get</code> has for type <code class="notranslate">get(prop: string): number</code>.</p> <h2 dir="auto">Interrogation</h2> <p dir="auto">Now There is some cases where I have pain to think of a <em>correct</em> behavior, let's start again with our <code class="notranslate">Map</code> definition.<br> If instead of passing <code class="notranslate">{ [index: string]: number }</code> as type parameter we would have given<br> <code class="notranslate">{ [index: number]: number }</code> should the compiler raise an error ?</p> <p dir="auto">if we use <code class="notranslate">pluck</code> with a dynamic expression for prop instead of a constant :</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var contactArray: Contact[] = [] function pluckContactArray(prop: string) { return _.pluck(myArray, prop); }"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">contactArray</span>: <span class="pl-smi">Contact</span><span class="pl-kos">[</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">]</span> <span class="pl-k">function</span> <span class="pl-en">pluckContactArray</span><span class="pl-kos">(</span><span class="pl-s1">prop</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">_</span><span class="pl-kos">.</span><span class="pl-en">pluck</span><span class="pl-kos">(</span><span class="pl-s1">myArray</span><span class="pl-kos">,</span> <span class="pl-s1">prop</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">or with a constant that is not a property of the type passed as parameter.<br> should the call to <code class="notranslate">pluck</code> raise an error since the compiler cannot infer the type <code class="notranslate">T[prop]</code>, shoud <code class="notranslate">T[prop]</code> be resolved to <code class="notranslate">{}</code> or <code class="notranslate">any</code>, if so should the compiler with <code class="notranslate">--noImplicitAny</code> raise an error ?</p>
<p dir="auto">Often a method will take as a string the name of a property of some object that it's working on. A common example would be <a href="http://backbonejs.org/#Model-get" rel="nofollow">http://backbonejs.org/#Model-get</a></p> <p dir="auto">It would be ideal if TypeScript could provide compile-time checking on these calls to make sure that the string is actually a valid property of the underlying model. As a possible proposal:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="interface Person { firstName: string lastName: string phoneNumber: string } function get(property: memberof Person) {} get('firstName') // compiles get('middleName') // would not compile"><pre class="notranslate"><code class="notranslate">interface Person { firstName: string lastName: string phoneNumber: string } function get(property: memberof Person) {} get('firstName') // compiles get('middleName') // would not compile </code></pre></div> <p dir="auto">In the context of the get function, "memberof Person" would be equivalent to "string".</p>
1
<p dir="auto">The links defined in the following lines of code result in a 404 not found page when browsing the <a href="https://deno.land/manual" rel="nofollow">Deno manual</a>, due to their location being written relative to the repository file structure and not the docs website URL structure.</p> <p dir="auto">Found on <a href="https://deno.land/manual/contributing" rel="nofollow">https://deno.land/manual/contributing</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/contributing.md#L3">https://github.com/denoland/deno/blame/master/docs/contributing.md#L3</a></li> </ul> <p dir="auto">Found in <a href="https://deno.land/manual/linking_to_external_code#how-can-i-trust-a-url-that-may-change" rel="nofollow">https://deno.land/manual/linking_to_external_code#how-can-i-trust-a-url-that-may-change</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/contributing.md#L19">https://github.com/denoland/deno/blame/master/docs/contributing.md#L19</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/linking_to_external_code" rel="nofollow">https://deno.land/manual/linking_to_external_code</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/linking_to_external_code.md#L3">https://github.com/denoland/deno/blame/master/docs/linking_to_external_code.md#L3</a></li> </ul> <p dir="auto">Found in <a href="https://deno.land/manual/linking_to_external_code#how-can-i-trust-a-url-that-may-change" rel="nofollow">https://deno.land/manual/linking_to_external_code#how-can-i-trust-a-url-that-may-change</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/linking_to_external_code.md#L84">https://github.com/denoland/deno/blame/master/docs/linking_to_external_code.md#L84</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/testing#resource-and-async-op-sanitizers" rel="nofollow">https://deno.land/manual/testing#resource-and-async-op-sanitizers</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/testing.md#L55">https://github.com/denoland/deno/blame/master/docs/testing.md#L55</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/tools" rel="nofollow">https://deno.land/manual/tools</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools.md#L9-L14">https://github.com/denoland/deno/blame/master/docs/tools.md#L9-L14</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/contributing/architecture#deno-and-linux-analogy" rel="nofollow">https://deno.land/manual/contributing/architecture#deno-and-linux-analogy</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/contributing/architecture.md#L9">https://github.com/denoland/deno/blame/master/docs/contributing/architecture.md#L9</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/contributing/architecture.md#L12">https://github.com/denoland/deno/blame/master/docs/contributing/architecture.md#L12</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/examples/os_signals" rel="nofollow">https://deno.land/manual/examples/os_signals</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/examples/os_signals.md#L4">https://github.com/denoland/deno/blame/master/docs/examples/os_signals.md#L4</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/getting_started/permissions" rel="nofollow">https://deno.land/manual/getting_started/permissions</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/examples/permissions.md#L4">https://github.com/denoland/deno/blame/master/docs/examples/permissions.md#L4</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/runtime/compiler_apis" rel="nofollow">https://deno.land/manual/runtime/compiler_apis</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/runtime/compiler_apis.md#L4">https://github.com/denoland/deno/blame/master/docs/runtime/compiler_apis.md#L4</a></li> </ul> <p dir="auto">Found on <a href="https://deno.land/manual/runtime/workers#using-deno-in-worker" rel="nofollow">https://deno.land/manual/runtime/workers#using-deno-in-worker</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/runtime/workers.md#L67">https://github.com/denoland/deno/blame/master/docs/runtime/workers.md#L67</a></li> </ul> <p dir="auto">Broken image links found on <a href="https://deno.land/manual/tools/debugger#chrome-devtools" rel="nofollow">https://deno.land/manual/tools/debugger#chrome-devtools</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L33">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L33</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L37">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L37</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L48">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L48</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L57">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L57</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L74">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L74</a></li> </ul> <p dir="auto">Broken images links found on <a href="https://deno.land/manual/tools/debugger#vscode" rel="nofollow">https://deno.land/manual/tools/debugger#vscode</a>:</p> <ul dir="auto"> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L121">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L121</a></li> <li><a href="https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L123">https://github.com/denoland/deno/blame/master/docs/tools/debugger.md#L123</a></li> </ul>
<p dir="auto">I was confused how my scripts weren't available (even <a href="https://github.com/denoland/deno/issues/8361" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/8361/hovercard">mistakenly blamed $DENO_DIR variable</a>), but turns out my installed scripts aren't available with the exact <code class="notranslate">-n</code> property I give them by doing so:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="deno install -n test_script https://gist.github.com/raw/b1d7c6a2617a40d092f6fa5e055ac748/test.ts"><pre class="notranslate">deno install -n test_script https://gist.github.com/raw/b1d7c6a2617a40d092f6fa5e055ac748/test.ts</pre></div> <p dir="auto">Instead, they're only available with <code class="notranslate">.cmd</code> extension:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ ls /c/Users/Jerry/.deno/bin deno.exe file_server.cmd test_script.cmd $ test_script bash: test_script: command not found $ test_script.cmd Huh"><pre class="notranslate">$ ls /c/Users/Jerry/.deno/bin deno.exe file_server.cmd test_script.cmd $ test_script bash: test_script: <span class="pl-c1">command</span> not found $ test_script.cmd Huh</pre></div> <p dir="auto">Btw, it's related to <code class="notranslate">git-bash</code> linux-like shell, which comes with <a href="https://git-scm.com/" rel="nofollow">git</a>, rather than native Windows "command prompt" shell. In command prompt it works without <code class="notranslate">.cmd</code> extension:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13215662/99059700-becd3480-25c0-11eb-9f2f-8c70872560b2.png"><img src="https://user-images.githubusercontent.com/13215662/99059700-becd3480-25c0-11eb-9f2f-8c70872560b2.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Unfortunately, I hate Command Prompt and I never use it.</p>
0
<h3 dir="auto">Bug report</h3> <p dir="auto"><strong>Bug summary</strong></p> <p dir="auto">Cannot pickle a plot result if use <code class="notranslate">tight_layout</code> method on the plot with datetime objects.</p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt import pickle from datetime import datetime plot = plt.plot([datetime(1900, 1, 1), datetime(1900, 1, 2)], [1, 2]) plt.gcf().tight_layout() dump = pickle.dumps(plot) pickle.loads(dump)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-k">import</span> <span class="pl-s1">pickle</span> <span class="pl-k">from</span> <span class="pl-s1">datetime</span> <span class="pl-k">import</span> <span class="pl-s1">datetime</span> <span class="pl-s1">plot</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">plot</span>([<span class="pl-en">datetime</span>(<span class="pl-c1">1900</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-en">datetime</span>(<span class="pl-c1">1900</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>)], [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>]) <span class="pl-s1">plt</span>.<span class="pl-en">gcf</span>().<span class="pl-en">tight_layout</span>() <span class="pl-s1">dump</span> <span class="pl-c1">=</span> <span class="pl-s1">pickle</span>.<span class="pl-en">dumps</span>(<span class="pl-s1">plot</span>) <span class="pl-s1">pickle</span>.<span class="pl-en">loads</span>(<span class="pl-s1">dump</span>)</pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/Users/user/miniconda3/lib/python3.5/site-packages/matplotlib/dates.py&quot;, line 719, in __getattr__ return getattr(self._rrule, name) ... File &quot;/Users/user/miniconda3/lib/python3.5/site-packages/matplotlib/dates.py&quot;, line 719, in __getattr__ return getattr(self._rrule, name) RecursionError: maximum recursion depth exceeded while calling a Python object"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/Users/user/miniconda3/lib/python3.5/site-packages/matplotlib/dates.py", line 719, in __getattr__ return getattr(self._rrule, name) ... File "/Users/user/miniconda3/lib/python3.5/site-packages/matplotlib/dates.py", line 719, in __getattr__ return getattr(self._rrule, name) RecursionError: maximum recursion depth exceeded while calling a Python object </code></pre></div> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto">I expect to have a copy of the <code class="notranslate">plot</code> object.</p> <p dir="auto"><strong>Matplotlib version</strong></p> <p dir="auto">matplotlib v.2.0.0 with Python 3.5.2 installed with conda on linux.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import sys; print(sys.version) 3.5.2 |Continuum Analytics, Inc.| (default, Jul 2 2016, 17:52:12) [GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)]"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import sys; print(sys.version) 3.5.2 |Continuum Analytics, Inc.| (default, Jul 2 2016, 17:52:12) [GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] </code></pre></div>
<p dir="auto">To help us understand and resolve your issue, please fill out the form to the best of your ability. You can feel free to delete the sections that do not apply.</p> <h3 dir="auto">Bug report</h3> <ul dir="auto"> <li>A short 1-2 sentences that succinctly describes the bug</li> </ul> <p dir="auto">get function of multiprocessing.AsyncResult fails in case of plotting pandas.DataFrame with using non-UTC DatetimeIndex</p> <p dir="auto"><strong>Code for reproduction</strong></p> <ul dir="auto"> <li>A minimum code snippet required to reproduce the bug, also minimizing the number of dependencies required</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from multiprocessing.pool import Pool import pandas as pd from matplotlib import pyplot as plt def func(df): fig, ax = plt.subplots() df.plot(ax=ax) return 'title', fig if __name__ == '__main__': index = pd.DatetimeIndex(pd.date_range('2016-10-05', periods=10, freq='T', tz='UTC')) index = index.tz_convert('America/Chicago') df = pd.DataFrame(list(range(10)), index=index, columns=['a']) with Pool(3) as pool: proc = pool.apply_async(func, (df,)) title, fig = proc.get() fig.savefig(r'.\test.png')"><pre class="notranslate"><code class="notranslate">from multiprocessing.pool import Pool import pandas as pd from matplotlib import pyplot as plt def func(df): fig, ax = plt.subplots() df.plot(ax=ax) return 'title', fig if __name__ == '__main__': index = pd.DatetimeIndex(pd.date_range('2016-10-05', periods=10, freq='T', tz='UTC')) index = index.tz_convert('America/Chicago') df = pd.DataFrame(list(range(10)), index=index, columns=['a']) with Pool(3) as pool: proc = pool.apply_async(func, (df,)) title, fig = proc.get() fig.savefig(r'.\test.png') </code></pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <ul dir="auto"> <li>The output produced by the above code, which may be a screenshot, console output, etc.</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;C:\miniconda\envs\p3\lib\threading.py&quot;, line 914, in _bootstrap_inner self.run() File &quot;C:\miniconda\envs\p3\lib\threading.py&quot;, line 862, in run self._target(*self._args, **self._kwargs) File &quot;C:\miniconda\envs\p3\lib\multiprocessing\pool.py&quot;, line 429, in _handle_results task = get() File &quot;C:\miniconda\envs\p3\lib\multiprocessing\connection.py&quot;, line 251, in recv return ForkingPickler.loads(buf.getbuffer()) File &quot;C:\miniconda\envs\p3\lib\site-packages\matplotlib\dates.py&quot;, line 730, in __getattr__ return getattr(self._rrule, name) ... File &quot;C:\miniconda\envs\p3\lib\site-packages\matplotlib\dates.py&quot;, line 730, in __getattr__ return getattr(self._rrule, name) RecursionError: maximum recursion depth exceeded"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "C:\miniconda\envs\p3\lib\threading.py", line 914, in _bootstrap_inner self.run() File "C:\miniconda\envs\p3\lib\threading.py", line 862, in run self._target(*self._args, **self._kwargs) File "C:\miniconda\envs\p3\lib\multiprocessing\pool.py", line 429, in _handle_results task = get() File "C:\miniconda\envs\p3\lib\multiprocessing\connection.py", line 251, in recv return ForkingPickler.loads(buf.getbuffer()) File "C:\miniconda\envs\p3\lib\site-packages\matplotlib\dates.py", line 730, in __getattr__ return getattr(self._rrule, name) ... File "C:\miniconda\envs\p3\lib\site-packages\matplotlib\dates.py", line 730, in __getattr__ return getattr(self._rrule, name) RecursionError: maximum recursion depth exceeded </code></pre></div> <p dir="auto"><strong>Expected outcome</strong></p> <ul dir="auto"> <li>A description of the expected outcome from the code snippet</li> <li>If this used to work in an earlier version of Matplotlib, please note the version it used to work on</li> </ul> <p dir="auto">it should save a valid figure to the test.png</p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Matplotlib version, Python version and Platform (Windows, OSX, Linux ...)</li> <li>How did you install Matplotlib and Python (pip, anaconda, from source ...)</li> </ul> <p dir="auto">Matplotlib version:</p> <blockquote> <blockquote> <blockquote> <p dir="auto">matplotlib.<strong>version</strong><br> '1.5.3'</p> </blockquote> </blockquote> </blockquote> <p dir="auto">Python version:<br> Python 3.5.2</p> <p dir="auto">Platform:<br> Windows</p> <p dir="auto">installed using mini-conda like:<br> conda install matplotlib</p>
1
<p dir="auto">Is there a simple way to expose the XHR object so that it can be aborted, or is this better off being handled somehow in a response interceptor?</p>
<h4 dir="auto">Describe the bug</h4> <p dir="auto">Typing definitions in v0.22.0 are incorrect for Axios class methods. Request (eg. <a href="https://github.com/axios/axios/blob/master/index.d.ts#L146">https://github.com/axios/axios/blob/master/index.d.ts#L146</a>) methods typings indicate request data and response should be the same type. That is not correct.</p> <h4 dir="auto">To Reproduce</h4> <p dir="auto">Use any request method in typescript and define <code class="notranslate">data</code> property of the config object. It will expect the response to be of the same type.</p> <h4 dir="auto">Expected behavior</h4> <p dir="auto">Types should be something like this</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export class Axios { ....... request&lt;T = never, R = AxiosResponse&lt;T&gt;, RC = any&gt; (config: AxiosRequestConfig&lt;RC&gt;): Promise&lt;R&gt;; ....... }"><pre class="notranslate"><code class="notranslate">export class Axios { ....... request&lt;T = never, R = AxiosResponse&lt;T&gt;, RC = any&gt; (config: AxiosRequestConfig&lt;RC&gt;): Promise&lt;R&gt;; ....... } </code></pre></div> <h4 dir="auto">Environment</h4> <ul dir="auto"> <li>Axios Version 0.22.0</li> </ul> <h4 dir="auto">Additional context/Screenshots</h4> <p dir="auto">n/a</p>
0
<p dir="auto">Hi,</p> <p dir="auto">For example, I'd like to insert some new layers to VGG model before the dense layers, load the parameters, freeze them and continue training.</p> <p dir="auto">I followed some old issues, which are popping up the top dense and outupt layers, adding new layers and the dense and output layers again.</p> <p dir="auto">When I try to add new layers, I failed with this error:<br> Exception: Input 0 is incompatible with layer pool6_zp: expected ndim=4, found ndim=2</p> <p dir="auto">Actually I also tried just add back the flatten layer and failed too.<br> I'm using Keras 1.0.4 with tensorflow as backend.</p> <p dir="auto">I'm really confused. How can I do that?</p> <p dir="auto">Thanks a lot!</p> <p dir="auto">Here is the test code:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from keras.layers import (AveragePooling2D, Convolution2D, Dense, Dropout, Flatten, Input, MaxPooling2D, ZeroPadding2D) from keras.models import Model, Sequential vgg_model = Sequential() vgg_model.add(Convolution2D(64, 3, 3, activation='relu', input_shape=(3, 224, 224), border_mode='same', name='conv1_1')) vgg_model.add(ZeroPadding2D((1, 1), name='conv1_1_zp')) vgg_model.add(Convolution2D(64, 3, 3, activation='relu', name='conv1_2')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool1')) vgg_model.add(ZeroPadding2D((1, 1), name='pool1_zp')) vgg_model.add(Convolution2D(128, 3, 3, activation='relu', name='conv2_1')) vgg_model.add(ZeroPadding2D((1, 1), name='conv2_1_zp')) vgg_model.add(Convolution2D(128, 3, 3, activation='relu', name='conv2_2')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool2')) vgg_model.add(ZeroPadding2D((1, 1), name='pool2_zp')) vgg_model.add(Convolution2D(256, 3, 3, activation='relu', name='conv3_1')) vgg_model.add(ZeroPadding2D((1, 1), name='conv3_1_zp')) vgg_model.add(Convolution2D(256, 3, 3, activation='relu', name='conv3_2')) vgg_model.add(ZeroPadding2D((1, 1), name='conv3_2_zp')) vgg_model.add(Convolution2D(256, 3, 3, activation='relu', name='conv3_3')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool3')) vgg_model.add(ZeroPadding2D((1, 1), name='conv4_1_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv4_2')) vgg_model.add(ZeroPadding2D((1, 1), name='conv4_2_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv4_3')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool4')) vgg_model.add(ZeroPadding2D((1, 1), name='pool4_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv5_1')) vgg_model.add(ZeroPadding2D((1, 1), name='conv5_1_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv5_2')) vgg_model.add(ZeroPadding2D((1, 1), name='conv5_2_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv5_3')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool5')) vgg_model.add(Flatten()) vgg_model.add(Dense(4096, activation='relu', name='fc6')) vgg_model.add(Dropout(0.5, name='fc6do')) vgg_model.add(Dense(4096, activation='relu', name='fc7')) vgg_model.add(Dropout(0.5, name='fc7do')) vgg_model.add(Dense(1000, activation='softmax', name='vgg_classes')) del vgg_model.layers[-6:] ''' vgg_model.add(ZeroPadding2D((1, 1), name='pool6_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_1')) vgg_model.add(ZeroPadding2D((1, 1), name='conv6_1_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_2')) vgg_model.add(ZeroPadding2D((1, 1), name='conv6_2_zp')) vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_3')) vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool5')) ''' vgg_model.add(Flatten()) vgg_model.add(Dense(4096, activation='relu', name='fc6')) vgg_model.add(Dropout(0.5, name='fc6do')) vgg_model.add(Dense(4096, activation='relu', name='fc7')) vgg_model.add(Dropout(0.5, name='fc7do')) vgg_model.add(Dense(1000, activation='softmax', name='vgg_classes')) "><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">keras</span>.<span class="pl-s1">layers</span> <span class="pl-k">import</span> (<span class="pl-v">AveragePooling2D</span>, <span class="pl-v">Convolution2D</span>, <span class="pl-v">Dense</span>, <span class="pl-v">Dropout</span>, <span class="pl-v">Flatten</span>, <span class="pl-v">Input</span>, <span class="pl-v">MaxPooling2D</span>, <span class="pl-v">ZeroPadding2D</span>) <span class="pl-k">from</span> <span class="pl-s1">keras</span>.<span class="pl-s1">models</span> <span class="pl-k">import</span> <span class="pl-v">Model</span>, <span class="pl-v">Sequential</span> <span class="pl-s1">vgg_model</span> <span class="pl-c1">=</span> <span class="pl-v">Sequential</span>() <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">64</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">input_shape</span><span class="pl-c1">=</span>(<span class="pl-c1">3</span>, <span class="pl-c1">224</span>, <span class="pl-c1">224</span>), <span class="pl-s1">border_mode</span><span class="pl-c1">=</span><span class="pl-s">'same'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv1_1'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv1_1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">64</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv1_2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">MaxPooling2D</span>((<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">strides</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool1'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">128</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv2_1'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv2_1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">128</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv2_2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">MaxPooling2D</span>((<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">strides</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool2_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">256</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv3_1'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv3_1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">256</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv3_2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv3_2_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">256</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv3_3'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">MaxPooling2D</span>((<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">strides</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool3'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv4_1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">512</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv4_2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv4_2_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">512</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv4_3'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">MaxPooling2D</span>((<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">strides</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool4'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool4_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">512</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv5_1'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv5_1_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">512</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv5_2'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">ZeroPadding2D</span>((<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv5_2_zp'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Convolution2D</span>(<span class="pl-c1">512</span>, <span class="pl-c1">3</span>, <span class="pl-c1">3</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'conv5_3'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">MaxPooling2D</span>((<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">strides</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'pool5'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Flatten</span>()) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">4096</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc6'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dropout</span>(<span class="pl-c1">0.5</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc6do'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">4096</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc7'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dropout</span>(<span class="pl-c1">0.5</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc7do'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">1000</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'softmax'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'vgg_classes'</span>)) <span class="pl-k">del</span> <span class="pl-s1">vgg_model</span>.<span class="pl-s1">layers</span>[<span class="pl-c1">-</span><span class="pl-c1">6</span>:] <span class="pl-s">'''</span> <span class="pl-s">vgg_model.add(ZeroPadding2D((1, 1), name='pool6_zp'))</span> <span class="pl-s">vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_1'))</span> <span class="pl-s">vgg_model.add(ZeroPadding2D((1, 1), name='conv6_1_zp'))</span> <span class="pl-s">vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_2'))</span> <span class="pl-s">vgg_model.add(ZeroPadding2D((1, 1), name='conv6_2_zp'))</span> <span class="pl-s">vgg_model.add(Convolution2D(512, 3, 3, activation='relu', name='conv6_3'))</span> <span class="pl-s">vgg_model.add(MaxPooling2D((2, 2), strides=(2, 2), name='pool5'))</span> <span class="pl-s">'''</span> <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Flatten</span>()) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">4096</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc6'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dropout</span>(<span class="pl-c1">0.5</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc6do'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">4096</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc7'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dropout</span>(<span class="pl-c1">0.5</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'fc7do'</span>)) <span class="pl-s1">vgg_model</span>.<span class="pl-en">add</span>(<span class="pl-v">Dense</span>(<span class="pl-c1">1000</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'softmax'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'vgg_classes'</span>)) </pre></div>
<p dir="auto">i want to apply timedistributed to dropout - the reason is i want each timestep to have exactly x% of the features dropped.</p> <p dir="auto">i am also using batch_shape for my input with a given batch size since this is required for stateful rnn in my full code. when batch size is given the timedistributed wrapper uses rnn. my backend is theano</p> <p dir="auto">this gist recreates the issue<br> <a href="https://gist.github.com/eyaler/6801eee9b2134bcd518ffd34004c1475">https://gist.github.com/eyaler/6801eee9b2134bcd518ffd34004c1475</a></p> <p dir="auto">may be related to:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="178342859" data-permission-text="Title is private" data-url="https://github.com/keras-team/keras/issues/3834" data-hovercard-type="issue" data-hovercard-url="/keras-team/keras/issues/3834/hovercard" href="https://github.com/keras-team/keras/issues/3834">#3834</a></p> <p dir="auto">see first comment for error message</p>
0
<h1 dir="auto">What / Why</h1> <blockquote> <p dir="auto">I've been unable to install anything (e.g. <code class="notranslate">npm install npm-groovy-lint</code>) because of an error that wouldn't go away.</p> </blockquote> <h2 dir="auto">When</h2> <ul dir="auto"> <li>Every time I try <code class="notranslate">npm install $packagename</code></li> </ul> <h2 dir="auto">Where</h2> <ul dir="auto"> <li>n/a</li> </ul> <h2 dir="auto">How</h2> <h3 dir="auto">Current Behavior</h3> <ul dir="auto"> <li>Type <code class="notranslate">npm install npm-groovy-lint</code>, see 'The package-lock.json file was created with an old version of npm, so supplemental metadata must be fetched from the registry. This is a one-time fix-up, please be patient...', followed by a long list of packages being checked, followed by an error message:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="4065 silly inflate node_modules/edge 4066 silly inflate packages/edge 4067 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 1163ms (cache updated) 4068 silly inflate packages/edge/node_modules/keycloak-js 4069 silly inflate node_modules/cas 4070 silly inflate packages/cas 4071 timing idealTree Completed in 22840ms 4072 timing command:install Completed in 22874ms 4073 notice New ^[[33mminor^[[39m version of npm available! ^[[31m7.23.0^[[39m -&gt; ^[[32m7.24.2^[[39m 4073 notice Changelog: ^[[36mhttps://github.com/npm/cli/releases/tag/v7.24.2^[[39m 4073 notice Run ^[[32mnpm install -g [email protected]^[[39m to update! 4074 verbose stack Error: Tracker &quot;idealTree:inflate:&quot; already exists 4074 verbose stack at Arborist.[_onError] (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js:107:11) 4074 verbose stack at Arborist.addTracker (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js:31:21) 4074 verbose stack at Array.&lt;anonymous&gt; (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:716:14) 4074 verbose stack at run (/usr/local/lib/node_modules/npm/node_modules/promise-call-limit/index.js:30:26) 4074 verbose stack at /usr/local/lib/node_modules/npm/node_modules/promise-call-limit/index.js:33:7 4075 verbose cwd /home/chowes/work/ns/management-ui 4076 verbose Linux 5.13.19-200.fc34.x86_64 4077 verbose argv &quot;/usr/bin/node&quot; &quot;/usr/local/bin/npm&quot; &quot;install&quot; &quot;npm-groovy-lint&quot; 4078 verbose node v14.17.6 4079 verbose npm v7.23.0 4080 error Tracker &quot;idealTree:inflate:&quot; already exists 4081 verbose exit 1"><pre class="notranslate"><code class="notranslate">4065 silly inflate node_modules/edge 4066 silly inflate packages/edge 4067 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 1163ms (cache updated) 4068 silly inflate packages/edge/node_modules/keycloak-js 4069 silly inflate node_modules/cas 4070 silly inflate packages/cas 4071 timing idealTree Completed in 22840ms 4072 timing command:install Completed in 22874ms 4073 notice New ^[[33mminor^[[39m version of npm available! ^[[31m7.23.0^[[39m -&gt; ^[[32m7.24.2^[[39m 4073 notice Changelog: ^[[36mhttps://github.com/npm/cli/releases/tag/v7.24.2^[[39m 4073 notice Run ^[[32mnpm install -g [email protected]^[[39m to update! 4074 verbose stack Error: Tracker "idealTree:inflate:" already exists 4074 verbose stack at Arborist.[_onError] (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js:107:11) 4074 verbose stack at Arborist.addTracker (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js:31:21) 4074 verbose stack at Array.&lt;anonymous&gt; (/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:716:14) 4074 verbose stack at run (/usr/local/lib/node_modules/npm/node_modules/promise-call-limit/index.js:30:26) 4074 verbose stack at /usr/local/lib/node_modules/npm/node_modules/promise-call-limit/index.js:33:7 4075 verbose cwd /home/chowes/work/ns/management-ui 4076 verbose Linux 5.13.19-200.fc34.x86_64 4077 verbose argv "/usr/bin/node" "/usr/local/bin/npm" "install" "npm-groovy-lint" 4078 verbose node v14.17.6 4079 verbose npm v7.23.0 4080 error Tracker "idealTree:inflate:" already exists 4081 verbose exit 1 </code></pre></div> <h3 dir="auto">Steps to Reproduce</h3> <ul dir="auto"> <li>Install @npmcli/arborist version 2.9.0 : other versions not tested, as couldn't install anything</li> <li>Have an old lock file</li> <li>Type <code class="notranslate">npm install npm-groovy-lint</code></li> </ul> <h3 dir="auto">Expected Behavior</h3> <ul dir="auto"> <li>No error, it should "just work"</li> </ul> <h3 dir="auto">Steps to Workaround</h3> <ul dir="auto"> <li>I modified /usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:717</li> <li>Exact link: <a href="https://github.com/npm/arborist/blob/v2.9.0/lib/arborist/build-ideal-tree.js#L717">https://github.com/npm/arborist/blob/v2.9.0/lib/arborist/build-ideal-tree.js#L717</a></li> <li>Current git repository link: <a href="https://github.com/npm/arborist/blob/main/lib/arborist/build-ideal-tree.js#L727">https://github.com/npm/arborist/blob/main/lib/arborist/build-ideal-tree.js#L727</a></li> <li>Old code:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const t = `idealTree:inflate:${sloc}` this.addTracker(t)"><pre class="notranslate"><code class="notranslate"> const t = `idealTree:inflate:${sloc}` this.addTracker(t) </code></pre></div> <ul dir="auto"> <li>New code:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const rand = Math.random() const t = `idealTree:inflate:${sloc}:${rand}` this.addTracker(t)"><pre class="notranslate"><code class="notranslate"> const rand = Math.random() const t = `idealTree:inflate:${sloc}:${rand}` this.addTracker(t) </code></pre></div> <ul dir="auto"> <li>With this change, the error <code class="notranslate">Tracker "idealTree:inflate:" already exists</code> went away.</li> <li>It appears that the sloc variable was an empty string two times, leading to a duplicate tracker error message.</li> </ul> <h2 dir="auto">Who</h2> <ul dir="auto"> <li>n/a</li> </ul> <h2 dir="auto">References</h2> <ul dir="auto"> <li>n/a</li> </ul>
<h3 dir="auto">Is there an existing issue for this?</h3> <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 existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">After updating the overrides, <code class="notranslate">npm install</code> is not updating the <code class="notranslate">package.lock</code> or <code class="notranslate">node_modules</code>.</p> <p dir="auto">To make it work I had to remove both <code class="notranslate">package.lock</code> and <code class="notranslate">node_modules</code>, then the overrides have been applied.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Change in <code class="notranslate">overrides</code> should update <code class="notranslate">package.lock</code> and <code class="notranslate">node_modules</code> after running <code class="notranslate">npm install</code></p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>Add a dependency</li> <li>npm install</li> <li>Add override</li> <li>npm install</li> </ol> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: &gt;=8.3.0</li> <li>Node.js: 16.13.2</li> <li>OS Name: macOS 12</li> <li>System Model Name:</li> <li>npm config:</li> </ul> <div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; copy and paste output from `npm config ls` here"><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> copy and paste output from `npm config ls` here</span></pre></div>
0
<p dir="auto">The thrown TransformationFailedException is swallowed by the form component<br> it is happening in the code block bellow</p> <p dir="auto">excerpt from Form.php starting at line 631</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" $modelData = $this-&gt;normToModel($normData); $viewData = $this-&gt;normToView($normData); } } catch (TransformationFailedException $e) { // the exception is caught here and is not throw again $this-&gt;synchronized = false; // If $viewData was not yet set, set it to $submittedData so that // the erroneous data is accessible on the form. // Forms that inherit data never set any data, because the getters // forward to the parent form's getters anyway. if (null === $viewData &amp;&amp; !$this-&gt;config-&gt;getInheritData()) { $viewData = $submittedData; } }"><pre class="notranslate"><code class="notranslate"> $modelData = $this-&gt;normToModel($normData); $viewData = $this-&gt;normToView($normData); } } catch (TransformationFailedException $e) { // the exception is caught here and is not throw again $this-&gt;synchronized = false; // If $viewData was not yet set, set it to $submittedData so that // the erroneous data is accessible on the form. // Forms that inherit data never set any data, because the getters // forward to the parent form's getters anyway. if (null === $viewData &amp;&amp; !$this-&gt;config-&gt;getInheritData()) { $viewData = $submittedData; } } </code></pre></div>
<p dir="auto">Hey!</p> <p dir="auto">I dig into an issue with the form component.</p> <p dir="auto">First, the use case:</p> <p dir="auto">A customer would like to have a date form field splitted in a single text field for the date part and two dropdown fields for the hour and minute. For invalid input, it would like to get different error messages according to what was wrong. The different cases are:</p> <ul dir="auto"> <li>The date is invalid (in case of wrong date input)</li> <li>The hour is invalid (in case of wrong hour input)</li> <li>The minute is invalid (in case of wrong minute input)</li> </ul> <p dir="auto">The problem:</p> <p dir="auto">The issue is this kind of error is detected by the data transformer which can only result to one error message (invalid_message).</p> <p dir="auto">An idea how the form component can provide this kind of error messages?</p>
1
<p dir="auto">[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.</p> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Text field of this select field should not be cleared when its dropdown is opened.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Text field is cleared</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="http://www.material-ui.com/#/components/select-field" rel="nofollow">http://www.material-ui.com/#/components/select-field</a></p> <ol dir="auto"> <li>Select someting in select field.</li> <li>Open the select field dropdown again.</li> <li>With dev inspector, move the overlaying dropdown. You will see text field without value.</li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">It triggers me the change of select field which I need to detect. But the change should only happen if the user actually selected something differently than the current value.</p> <h2 dir="auto">Your Environment</h2> <p dir="auto">| Tech | Version |</p> <p dir="auto">| Material-UI | v.0.19.4</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/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">Bug related to v1 branch. How to add right icon to CardHeader component as on Expandable example in current stable version.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">No possibility to add right icon in CardHeader.</p>
0
<p dir="auto">requested by @bartlomieu following our chat on the deno/lobby i'm opening an issue concerning, how can we do to write a plugin in pure C code ?<br> for exemple:</p> <p dir="auto">-- hello.c</p> <div class="highlight highlight-source-c notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#include &lt;stdio.h&gt; void deno_plugin_init(void){ puts(&quot;Welcome in the deno land !&quot;); } void dino(void){ puts(&quot;[OK]&quot;); }"><pre class="notranslate"><span class="pl-k">#include</span> <span class="pl-s">&lt;stdio.h&gt;</span> <span class="pl-smi">void</span> <span class="pl-en">deno_plugin_init</span>(<span class="pl-smi">void</span>){ <span class="pl-en">puts</span>(<span class="pl-s">"Welcome in the deno land !"</span>); } <span class="pl-smi">void</span> <span class="pl-en">dino</span>(<span class="pl-smi">void</span>){ <span class="pl-en">puts</span>(<span class="pl-s">"[OK]"</span>); }</pre></div> <p dir="auto">gcc -c -Wall -fpic hello.c<br> gcc -shared -o libhello.so hello.o<br> and the following deno code:</p> <p dir="auto">hello.ts</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const libhello = Deno.openPlugin(&quot;./libhello.so&quot;) const funct_hello = libhello.ops // this thing work correctly and call deno_plugin_init from my &quot;.so&quot; library funct_hello.dino() // Type 'PluginOp' has no call signatures."><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">libhello</span> <span class="pl-c1">=</span> <span class="pl-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">openPlugin</span><span class="pl-kos">(</span><span class="pl-s">"./libhello.so"</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">funct_hello</span> <span class="pl-c1">=</span> <span class="pl-s1">libhello</span><span class="pl-kos">.</span><span class="pl-c1">ops</span> <span class="pl-c">// this thing work correctly and call deno_plugin_init from my ".so" library</span> <span class="pl-s1">funct_hello</span><span class="pl-kos">.</span><span class="pl-en">dino</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c">// Type 'PluginOp' has no call signatures.</span></pre></div> <p dir="auto">so how can we do ?</p>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8667?redirect=false" rel="nofollow">SPR-8667</a></strong> and commented</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.6, 3.1 M2</p> <p dir="auto">This issue is a sub-task of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398114305" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13297" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13297/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13297">#13297</a></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="398114535" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13335" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13335/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13335">#13335</a> MANIFEST.MF: OSGi-Version Range too small for JDO in Library org.springframework.orm (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gbrehmer" rel="nofollow">Gerrit Brehmer</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7278?redirect=false" rel="nofollow">SPR-7278</a></strong> and commented</p> <p dir="auto">The recommended way to develop REST-style webservices is the usage of <code class="notranslate">@ResponseBody</code> annotation and HttpMessageConverter instead of generating a model and a view (ContentNegotiatingViewResolver etc.).<br> But there are some limitations, that make things hard to handle:</p> <ul dir="auto"> <li>ExceptionResolver support <ul dir="auto"> <li><code class="notranslate">@RequestBody</code> is only supported with <code class="notranslate">@ExceptionHandler</code> annotation. I need a centralized exception handling to generate a special error object as the return value. So I must wrote a method in each controller class to delegate to the centralized exception handler. I think the ExceptionResolver-interface is more like an AOP-approach, with no glue code.</li> <li>ExceptionResolver also have some nice standard implementations like SimpleMappingExceptionResolver, where I can handle the returned HTTP status code very easy. This is also not supported by <code class="notranslate">@ExceptionHandler</code> out of the box</li> </ul> </li> <li>'useNotAcceptableStatusCode' from ContentNegotiatingViewResolver (so for some features, I must also configure view-handling) <ul dir="auto"> <li>simple and easy to use attribute to enable NOT_ACCEPTABLE Http Status code</li> </ul> </li> <li>missing option for enabling global <code class="notranslate">@ResponseBody-like</code> handling instead of annotate all methods (e.g. in AnnotationMethodHandlerAdapter)</li> </ul> <p dir="auto">I also would recommend the full HttpMessageConverter way (<code class="notranslate">@RequestBody</code> &amp; <code class="notranslate">@ResponseBody</code>) without view handling, so it would be nice, if <code class="notranslate">@ResponseBody</code> has fewer limitations. Additionaly it would be great, if the documentation have some notes about the recommended way for webservice-only REST-style applications (with hints to the limitations above)</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.2</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="398111153" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12776" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12776/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12776">#12776</a> <code class="notranslate">@ExceptionHandler</code> doesn't handle exceptions from other controllers (<em><strong>"is duplicated by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398106106" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12012" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12012/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12012">#12012</a> Add equivalent of JAX-RS <code class="notranslate">@Produces</code> to Spring MVC</li> </ul> <p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/e5eceafa3f31f80177b24db255ca96a252ae9fb1/hovercard" href="https://github.com/spring-projects/spring-framework/commit/e5eceafa3f31f80177b24db255ca96a252ae9fb1"><tt>e5eceaf</tt></a></p> <p dir="auto">1 votes, 2 watchers</p>
0
<h3 dir="auto">System Info</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="transformers branch main"><pre class="notranslate">transformers branch main</pre></div> <h3 dir="auto">Wrong Codes in examples/pytorch/**_no_trainer.py</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for step, batch in enumerate(eval_dataloader): with torch.no_grad(): generated_tokens = accelerator.unwrap_model(model).generate( batch[&quot;input_ids&quot;], attention_mask=batch[&quot;attention_mask&quot;], **gen_kwargs, ) generated_tokens = accelerator.pad_across_processes( generated_tokens, dim=1, pad_index=tokenizer.pad_token_id ) labels = batch[&quot;labels&quot;] if not args.pad_to_max_length: # If we did not pad to max length, we need to pad the labels too labels = accelerator.pad_across_processes(batch[&quot;labels&quot;], dim=1, pad_index=tokenizer.pad_token_id) generated_tokens, labels = accelerator.gather((generated_tokens, labels)) generated_tokens = generated_tokens.cpu().numpy() labels = labels.cpu().numpy() if args.ignore_pad_token_for_loss: # Replace -100 in the labels as we can't decode them. labels = np.where(labels != -100, labels, tokenizer.pad_token_id) if isinstance(generated_tokens, tuple): generated_tokens = generated_tokens[0] decoded_preds = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True) decoded_preds, decoded_labels = postprocess_text(decoded_preds, decoded_labels) # If we are in a multiprocess environment, the last batch has duplicates if accelerator.num_processes &gt; 1: if step == len(eval_dataloader): decoded_preds = decoded_preds[: len(eval_dataloader.dataset) - samples_seen] decoded_labels = decoded_labels[: len(eval_dataloader.dataset) - samples_seen] else: samples_seen += decoded_labels.shape[0]"><pre class="notranslate"><code class="notranslate">for step, batch in enumerate(eval_dataloader): with torch.no_grad(): generated_tokens = accelerator.unwrap_model(model).generate( batch["input_ids"], attention_mask=batch["attention_mask"], **gen_kwargs, ) generated_tokens = accelerator.pad_across_processes( generated_tokens, dim=1, pad_index=tokenizer.pad_token_id ) labels = batch["labels"] if not args.pad_to_max_length: # If we did not pad to max length, we need to pad the labels too labels = accelerator.pad_across_processes(batch["labels"], dim=1, pad_index=tokenizer.pad_token_id) generated_tokens, labels = accelerator.gather((generated_tokens, labels)) generated_tokens = generated_tokens.cpu().numpy() labels = labels.cpu().numpy() if args.ignore_pad_token_for_loss: # Replace -100 in the labels as we can't decode them. labels = np.where(labels != -100, labels, tokenizer.pad_token_id) if isinstance(generated_tokens, tuple): generated_tokens = generated_tokens[0] decoded_preds = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True) decoded_preds, decoded_labels = postprocess_text(decoded_preds, decoded_labels) # If we are in a multiprocess environment, the last batch has duplicates if accelerator.num_processes &gt; 1: if step == len(eval_dataloader): decoded_preds = decoded_preds[: len(eval_dataloader.dataset) - samples_seen] decoded_labels = decoded_labels[: len(eval_dataloader.dataset) - samples_seen] else: samples_seen += decoded_labels.shape[0] </code></pre></div> <p dir="auto">here, In the for loop, step will never equal to len(eval_dataloader), so here should be modified to <code class="notranslate">if step == len(eval_dataloader) - 1</code></p> <p dir="auto">and</p> <p dir="auto"><code class="notranslate">samples_seen += decoded_labels.shape[0]</code></p> <p dir="auto">decoded_labels is a list that produced by the postprocess_text(),<br> list object have no attribute shape.</p> <p dir="auto">GLHF</p> <h3 dir="auto">Information</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The official example scripts</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> My own modified scripts</li> </ul> <h3 dir="auto">Tasks</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> An officially supported task in the <code class="notranslate">examples</code> folder (such as GLUE/SQuAD, ...)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> My own task or dataset (give details below)</li> </ul> <h3 dir="auto">Reproduction</h3> <p dir="auto">just run the examples scripts provided in the readme</p> <h3 dir="auto">Expected behavior</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="samples_seen exceed the dataset size and also the attribute error"><pre class="notranslate">samples_seen exceed the dataset size and also the attribute error</pre></div>
<h3 dir="auto">System Info</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="When I finetuned the text classification model based on the glue no trainer script, I found a bug in our script. The URL is below: https://github.com/huggingface/transformers/blob/main/examples/pytorch/text-classification/run_glue_no_trainer.py#L525 When we use the accelerator for multi-GPU training, the code should transfer from if step == len(eval_dataloader) to if step == len(eval_dataloader) -1 Otherwise, it cannot work to filter the last step duplicated samples."><pre class="notranslate">When I finetuned the text classification model based on the glue no trainer script, I found a bug <span class="pl-k">in</span> our script. The URL is below: https://github.com/huggingface/transformers/blob/main/examples/pytorch/text-classification/run_glue_no_trainer.py#L525 When we use the accelerator <span class="pl-k">for</span> multi-GPU training, the code should transfer from <span class="pl-k">if</span> step == len(eval_dataloader) to <span class="pl-k">if</span> step == len(eval_dataloader) -1 Otherwise, it cannot work to filter the last step duplicated samples.</pre></div> <h3 dir="auto">Who can help?</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Information</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The official example scripts</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> My own modified scripts</li> </ul> <h3 dir="auto">Tasks</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> An officially supported task in the <code class="notranslate">examples</code> folder (such as GLUE/SQuAD, ...)</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> <h3 dir="auto">Reproduction</h3> <p dir="auto">just run the script with a text classification using multi-GPU accelerator. The problem occurs in the last step for duplicated samples.</p> <h3 dir="auto">Expected behavior</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="I think it should be fixed soon."><pre class="notranslate">I think it should be fixed soon.</pre></div>
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 TensorFlow): Yes</li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A</li> <li>TensorFlow installed from (source or binary): Binary, pip install</li> <li>TensorFlow version (use command below): tensorflow-gpu==2.0.0-beta1</li> <li>Python version: 3.6</li> <li>Bazel version (if compiling from source): N/A</li> <li>GCC/Compiler version (if compiling from source): N/A</li> <li>CUDA/cuDNN version: N/A</li> <li>GPU model and memory: N/A</li> </ul> <p dir="auto"><strong>Describe the current behavior</strong><br> Error arises during Concatenate when I run the following code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import tensorflow as tf from tensorflow import keras from tensorflow.keras.layers import Conv2D, Concatenate inputs = keras.Input(shape=(256,256,3)) x = Conv2D(16,3, padding='same',activation='relu')(inputs) x_list = [x] for i in range(3): x = Conv2D(16,3, padding='same',activation='relu')(x) x_list.append(x) x = Concatenate(3)(x_list) model = keras.Model(inputs=inputs, outputs=x) model.summary()"><pre class="notranslate"><code class="notranslate">import tensorflow as tf from tensorflow import keras from tensorflow.keras.layers import Conv2D, Concatenate inputs = keras.Input(shape=(256,256,3)) x = Conv2D(16,3, padding='same',activation='relu')(inputs) x_list = [x] for i in range(3): x = Conv2D(16,3, padding='same',activation='relu')(x) x_list.append(x) x = Concatenate(3)(x_list) model = keras.Model(inputs=inputs, outputs=x) model.summary() </code></pre></div> <p dir="auto"><code class="notranslate">ValueError: Graph disconnected: cannot obtain value for tensor Tensor("conv2d_31/Identity:0", shape=(None, 256, 256, 16), dtype=float32) at layer "concatenate_8". The following previous layers were accessed without issue: ['input_9', 'conv2d_29', 'conv2d_30']</code></p> <p dir="auto">This issue does not occur in a Tensorflow 1.X environment, only TF 2.0</p> <p dir="auto"><strong>Describe the expected behavior</strong><br> Now the Concatenate function works properly when using a sequential model. That is, if I swap in "for i in range(1):" rather than "for i in range(3):" above, the code executes cleanly. However, the non-sequential repeated Concatenation in the loop leaves the a Graph disconnected error.</p> <p dir="auto">Furthermore, the error is also eliminated when using tf.concat, so the following code also executes cleanly.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import tensorflow as tf from tensorflow import keras from tensorflow.keras.layers import Conv2D, Concatenate inputs = keras.Input(shape=(256,256,3)) x = Conv2D(16,3, padding='same',activation='relu')(inputs) x_list = [x] for i in range(3): x = Conv2D(16,3, padding='same',activation='relu')(x) x_list.append(x) x = tf.concat(x_list, 3) model = keras.Model(inputs=inputs, outputs=x) model.summary()"><pre class="notranslate"><code class="notranslate">import tensorflow as tf from tensorflow import keras from tensorflow.keras.layers import Conv2D, Concatenate inputs = keras.Input(shape=(256,256,3)) x = Conv2D(16,3, padding='same',activation='relu')(inputs) x_list = [x] for i in range(3): x = Conv2D(16,3, padding='same',activation='relu')(x) x_list.append(x) x = tf.concat(x_list, 3) model = keras.Model(inputs=inputs, outputs=x) model.summary() </code></pre></div> <p dir="auto">Therefore, I do have a working alternative, but there does appear to be an issue with the keras Concatenate function</p>
<p dir="auto"><code class="notranslate">tf.keras.layers.Concatenate</code> used to operate in a very straightforward way with the Keras functional API for building DenseNet-esque feedforward networks.</p> <p dir="auto">The code below works in TF 1.13 but fails in 1.14, 2.0.0a0 and beyond.</p> <p dir="auto">I also tested replacing the <code class="notranslate">Concatenate</code> layer with its functional alternative, <code class="notranslate">concatenate</code>, and produced the same error.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from tensorflow.keras.layers import Dense, Input, Concatenate from tensorflow.keras.models import Model inputs = Input(shape=(10,)) all_layers = [] x1 = Dense(512)(inputs) all_layers.append(x1) # all layers: [x1] x2 = Dense(256, activation='relu')(x1) all_layers.append(x2) # all layers: [x1, x2] conc = Concatenate()(all_layers) x3 = Dense(128, activation='relu')(conc) all_layers.append(x3) # all layers: [x1, x2, x3] conc = Concatenate()(all_layers) prediction = Dense(1)(conc) model = Model(inputs=inputs, outputs=prediction)"><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">layers</span> <span class="pl-k">import</span> <span class="pl-v">Dense</span>, <span class="pl-v">Input</span>, <span class="pl-v">Concatenate</span> <span class="pl-k">from</span> <span class="pl-s1">tensorflow</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">models</span> <span class="pl-k">import</span> <span class="pl-v">Model</span> <span class="pl-s1">inputs</span> <span class="pl-c1">=</span> <span class="pl-v">Input</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">10</span>,)) <span class="pl-s1">all_layers</span> <span class="pl-c1">=</span> [] <span class="pl-s1">x1</span> <span class="pl-c1">=</span> <span class="pl-v">Dense</span>(<span class="pl-c1">512</span>)(<span class="pl-s1">inputs</span>) <span class="pl-s1">all_layers</span>.<span class="pl-en">append</span>(<span class="pl-s1">x1</span>) <span class="pl-c"># all layers: [x1]</span> <span class="pl-s1">x2</span> <span class="pl-c1">=</span> <span class="pl-v">Dense</span>(<span class="pl-c1">256</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>)(<span class="pl-s1">x1</span>) <span class="pl-s1">all_layers</span>.<span class="pl-en">append</span>(<span class="pl-s1">x2</span>) <span class="pl-c"># all layers: [x1, x2]</span> <span class="pl-s1">conc</span> <span class="pl-c1">=</span> <span class="pl-v">Concatenate</span>()(<span class="pl-s1">all_layers</span>) <span class="pl-s1">x3</span> <span class="pl-c1">=</span> <span class="pl-v">Dense</span>(<span class="pl-c1">128</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>)(<span class="pl-s1">conc</span>) <span class="pl-s1">all_layers</span>.<span class="pl-en">append</span>(<span class="pl-s1">x3</span>) <span class="pl-c"># all layers: [x1, x2, x3]</span> <span class="pl-s1">conc</span> <span class="pl-c1">=</span> <span class="pl-v">Concatenate</span>()(<span class="pl-s1">all_layers</span>) <span class="pl-s1">prediction</span> <span class="pl-c1">=</span> <span class="pl-v">Dense</span>(<span class="pl-c1">1</span>)(<span class="pl-s1">conc</span>) <span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-v">Model</span>(<span class="pl-s1">inputs</span><span class="pl-c1">=</span><span class="pl-s1">inputs</span>, <span class="pl-s1">outputs</span><span class="pl-c1">=</span><span class="pl-s1">prediction</span>)</pre></div> <p dir="auto">The error output is</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ValueError: Graph disconnected: cannot obtain value for tensor Tensor(&quot;dense_2/Identity:0&quot;, shape=(None, 128), dtype=float32) at layer &quot;concatenate&quot;. The following previous layers were accessed without issue: ['input_1', 'dense', 'dense_1']"><pre class="notranslate"><code class="notranslate">ValueError: Graph disconnected: cannot obtain value for tensor Tensor("dense_2/Identity:0", shape=(None, 128), dtype=float32) at layer "concatenate". The following previous layers were accessed without issue: ['input_1', 'dense', 'dense_1'] </code></pre></div> <p dir="auto">Visualization of model<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8ef36ed034998d9dc422d3ee2a3130eaf8bbedbe76324be2058dc02dfaa4721b/68747470733a2f2f692e696d6775722e636f6d2f3137554e72536b2e706e67"><img src="https://camo.githubusercontent.com/8ef36ed034998d9dc422d3ee2a3130eaf8bbedbe76324be2058dc02dfaa4721b/68747470733a2f2f692e696d6775722e636f6d2f3137554e72536b2e706e67" alt="" data-canonical-src="https://i.imgur.com/17UNrSk.png" style="max-width: 100%;"></a></p>
1
<p dir="auto">I am filing this issue per <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sebmarkbage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sebmarkbage">@sebmarkbage</a>.</p> <p dir="auto">See this bin as an example: <a href="http://jsbin.com/zehiqa/1/edit?js,output" rel="nofollow">http://jsbin.com/zehiqa/1/edit?js,output</a></p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/syranide/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/syranide">@syranide</a> suggested adding an <code class="notranslate">onChange</code> to the <code class="notranslate">&lt;input&gt;</code> calling <code class="notranslate">this.props.toggleSelected</code>, then adding a <code class="notranslate">setTimeout</code> around <code class="notranslate">setState</code> inside <code class="notranslate">App.toggleSelected</code>. This approach works but seems unnecessary since the <code class="notranslate">&lt;input&gt;</code> should bubble up to the <code class="notranslate">&lt;div&gt;</code> which is handling the event.</p>
<p dir="auto">Now that flat bundles are mostly done (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="219349987" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/9327" data-hovercard-type="pull_request" data-hovercard-url="/facebook/react/pull/9327/hovercard" href="https://github.com/facebook/react/pull/9327">#9327</a>), separating out followup work into a separate issue.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Should <code class="notranslate">ReactDebugCurrentFrame</code> be in isomorphic package? <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="220256405" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/9365" data-hovercard-type="pull_request" data-hovercard-url="/facebook/react/pull/9365/hovercard" href="https://github.com/facebook/react/pull/9365">#9365</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Does <code class="notranslate">--extractErrors</code> fully work? It does update the file, but I'm still seeing "out of sync" console spam on rebuilds.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> What happens if user forgets to envify <code class="notranslate">process.env.NODE_ENV</code> with webpack or use dead code elimination? Would it bundle both bundles? Sounds like even worse than what happens now. Would the user see any warnings?</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Wrap CommonJS bundles into conditions <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="220208278" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/9361" data-hovercard-type="issue" data-hovercard-url="/facebook/react/issues/9361/hovercard" href="https://github.com/facebook/react/issues/9361">#9361</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add a way to see bundle size change</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Address internal FB <code class="notranslate">invariant</code> issue (I think they wanted it to be ignored so it's used verbatim)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Figure out RN rollout strategy <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> When does it go 100% Fiber? Do we switch to flat bundles after that?</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> See <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/gaearon/react/commit/db1f7044d159d3ef2b29dbb7b42e9891a7d27cf4/hovercard" href="https://github.com/gaearon/react/commit/db1f7044d159d3ef2b29dbb7b42e9891a7d27cf4">gaearon@<tt>db1f704</tt></a> for possible workaround for circular injection</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Flat ReactNative bundle would require flat React bundle but that's not what's shipped on npm</li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Make sure error codes transform still works</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add a fixture for ReactART</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Make a final decision on how we bundle server renderer</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Remove <code class="notranslate">providesModule</code> in source</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Maybe reduce duplication between UMD bundles (e.g. put <code class="notranslate">object-assign</code> on React internals) <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="256759096" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/10671" data-hovercard-type="pull_request" data-hovercard-url="/facebook/react/pull/10671/hovercard" href="https://github.com/facebook/react/pull/10671">#10671</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Convert source to ES6 modules</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Update release documentation</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <s>Extract shared state to npm package</s></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Use named imports in more places (eg event system)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Figure out a static injection mechanism for www and RN</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Investigate mangling and GCC optimizations</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Figure out how to share build process with third party renderers (e.g. ART for starters)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Simplify the default build process to not run FB bundle builds, come up with a better strategy for FB only builds maybe?</li> </ul>
0
<p dir="auto">The script attached to the 2.0 docs which compresses and generates the javascript is pumping files as as "boostrap.min.js" instead of "bootstrap.min.js"</p>
<p dir="auto">Using this framework has been great every time but I was wondering if you could put back the black/inverse colored labels/buttons in the latest bootstrap release?</p> <p dir="auto">Thanks for your work and time,</p> <p dir="auto">Jon Chiappetta</p>
0
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ 16%] Linking CXX executable ../../bin/example_phase_unwrapping_unwrap cd /home/khurram/LIBRARIES/OPENCV34/opencv/build/modules/phase_unwrapping &amp;&amp; /home/khurram/miniconda3/bin/cmake -E cmake_link_script CMakeFiles/example_phase_unwrapping_unwrap.dir/link.txt --verbose=1 /usr/bin/c++ -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -Wl,--gc-sections CMakeFiles/example_phase_unwrapping_unwrap.dir/samples/unwrap.cpp.o -o ../../bin/example_phase_unwrapping_unwrap -L/usr/local/cuda-9.0/lib64 -Wl,-rpath,/usr/local/cuda-9.0/lib64:/home/khurram/LIBRARIES/OPENCV34/opencv/build/lib ../../lib/libopencv_phase_unwrapping.so.4.0.0 ../../lib/libopencv_highgui.so.4.0.0 ../../lib/libopencv_videoio.so.4.0.0 ../../lib/libopencv_imgcodecs.so.4.0.0 ../../lib/libopencv_imgproc.so.4.0.0 ../../lib/libopencv_core.so.4.0.0 ../../lib/libopencv_cudev.so.4.0.0 ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::String::allocate(unsigned long)' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::_OutputArray::create(cv::Size_&lt;int&gt;, int, int, bool, int) const' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::error(int, cv::String const&amp;, char const*, char const*, int)' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::String::deallocate()' collect2: error: ld returned 1 exit status modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/build.make:90: recipe for target 'bin/example_phase_unwrapping_unwrap' failed make[2]: *** [bin/example_phase_unwrapping_unwrap] Error 1 make[2]: Leaving directory '/home/khurram/LIBRARIES/OPENCV34/opencv/build' CMakeFiles/Makefile2:3110: recipe for target 'modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/all' failed make[1]: *** [modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/all] Error 2 make[1]: Leaving directory '/home/khurram/LIBRARIES/OPENCV34/opencv/build' Makefile:162: recipe for target 'all' failed make: *** [all] Error 2 "><pre class="notranslate"><code class="notranslate">[ 16%] Linking CXX executable ../../bin/example_phase_unwrapping_unwrap cd /home/khurram/LIBRARIES/OPENCV34/opencv/build/modules/phase_unwrapping &amp;&amp; /home/khurram/miniconda3/bin/cmake -E cmake_link_script CMakeFiles/example_phase_unwrapping_unwrap.dir/link.txt --verbose=1 /usr/bin/c++ -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -Wl,--gc-sections CMakeFiles/example_phase_unwrapping_unwrap.dir/samples/unwrap.cpp.o -o ../../bin/example_phase_unwrapping_unwrap -L/usr/local/cuda-9.0/lib64 -Wl,-rpath,/usr/local/cuda-9.0/lib64:/home/khurram/LIBRARIES/OPENCV34/opencv/build/lib ../../lib/libopencv_phase_unwrapping.so.4.0.0 ../../lib/libopencv_highgui.so.4.0.0 ../../lib/libopencv_videoio.so.4.0.0 ../../lib/libopencv_imgcodecs.so.4.0.0 ../../lib/libopencv_imgproc.so.4.0.0 ../../lib/libopencv_core.so.4.0.0 ../../lib/libopencv_cudev.so.4.0.0 ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::String::allocate(unsigned long)' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::_OutputArray::create(cv::Size_&lt;int&gt;, int, int, bool, int) const' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::error(int, cv::String const&amp;, char const*, char const*, int)' ../../lib/libopencv_core.so.4.0.0: undefined reference to `cv::String::deallocate()' collect2: error: ld returned 1 exit status modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/build.make:90: recipe for target 'bin/example_phase_unwrapping_unwrap' failed make[2]: *** [bin/example_phase_unwrapping_unwrap] Error 1 make[2]: Leaving directory '/home/khurram/LIBRARIES/OPENCV34/opencv/build' CMakeFiles/Makefile2:3110: recipe for target 'modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/all' failed make[1]: *** [modules/phase_unwrapping/CMakeFiles/example_phase_unwrapping_unwrap.dir/all] Error 2 make[1]: Leaving directory '/home/khurram/LIBRARIES/OPENCV34/opencv/build' Makefile:162: recipe for target 'all' failed make: *** [all] Error 2 </code></pre></div> <h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.0.0-rc</li> <li>Operating System / Platform =&gt; <code class="notranslate">Linux GT72S 4.15.0-32-generic #35~16.04.1-Ubuntu SMP Fri Aug 10 21:54:34 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux</code></li> <li>Compiler =&gt;</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ g++ -v Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) "><pre class="notranslate"><code class="notranslate">$ g++ -v Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ nvcc -V nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2017 NVIDIA Corporation Built on Fri_Sep__1_21:08:03_CDT_2017 Cuda compilation tools, release 9.0, V9.0.176 "><pre class="notranslate"><code class="notranslate">$ nvcc -V nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2017 NVIDIA Corporation Built on Fri_Sep__1_21:08:03_CDT_2017 Cuda compilation tools, release 9.0, V9.0.176 </code></pre></div> <h2 dir="auto">CMAKE STDOUT</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/home/khurram/miniconda3/bin/cmake -H/home/khurram/LIBRARIES/OPENCV34/opencv -B/home/khurram/LIBRARIES/OPENCV34/opencv/build --check-build-system CMakeFiles/Makefile.cmake 0 Re-run cmake file: Makefile older than: modules/cudaarithm/CMakeFiles/cuda_compile_1.dir/src/cuda/cuda_compile_1_generated_threshold.cu.o.depend -- Looking for ccache - not found -- Found ZLIB: /home/khurram/miniconda3/lib/libz.so.1.2.11 (found suitable version &quot;1.2.11&quot;, minimum required is &quot;1.2.3&quot;) -- Found ZLIB: /home/khurram/miniconda3/lib/libz.so.1.2.11 (found version &quot;1.2.11&quot;) -- Found OpenEXR: /usr/lib/x86_64-linux-gnu/libIlmImf.so -- Checking for module 'gtk+-3.0' -- No package 'gtk+-3.0' found -- Checking for module 'gstreamer-base-1.0' -- No package 'gstreamer-base-1.0' found -- Checking for module 'gstreamer-video-1.0' -- No package 'gstreamer-video-1.0' found -- Checking for module 'gstreamer-app-1.0' -- No package 'gstreamer-app-1.0' found -- Checking for module 'gstreamer-riff-1.0' -- No package 'gstreamer-riff-1.0' found -- Checking for module 'gstreamer-pbutils-1.0' -- No package 'gstreamer-pbutils-1.0' found -- Looking for linux/videodev2.h -- Looking for linux/videodev2.h - found -- Looking for sys/videoio.h -- Looking for sys/videoio.h - not found -- Checking for module 'libavresample' -- No package 'libavresample' found -- found Intel IPP (ICV version): 2019.0.0 [2019.0.0 Gold] -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/icv -- found Intel IPP Integration Wrappers sources: 2019.0.0 -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/iw -- CUDA detected: 9.0 -- CUDA NVCC target flags: -gencode;arch=compute_30,code=sm_30;-gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-D_FORCE_INLINES -- LAPACK(MKL): LAPACK_LIBRARIES: /home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;/home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;/home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;-lpthread;-lm;-ldl -- LAPACK(MKL): Support is enabled. -- Could NOT find JNI (missing: JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH) -- Could NOT find Pylint (missing: PYLINT_EXECUTABLE) -- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE) -- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file -- Caffe: NO CMake Warning at /home/khurram/miniconda3/share/cmake-3.12/Modules/FindProtobuf.cmake:455 (message): Protobuf compiler version 3.6.0 doesn't match library version 3.6.1 Call Stack (most recent call first): /home/khurram/LIBRARIES/OPENCV34/opencv_contrib/modules/cnn_3dobj/CMakeLists.txt:14 (find_package) -- Protobuf: YES -- Glog: YES -- freetype2: YES -- harfbuzz: YES -- HDF5: Using hdf5 compiler wrapper to determine C configuration -- Module opencv_ovis disabled because OGRE3D was not found -- No preference for use of exported gflags CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported gflags CMake configuration if available. -- Failed to find installed gflags CMake configuration, searching for gflags build directories exported with CMake. -- Failed to find gflags - Failed to find an installed/exported CMake configuration for gflags, will perform search for installed gflags components. -- Checking SFM deps... TRUE -- CERES support is disabled. Ceres Solver for reconstruction API is required. -- Module opencv_dnn_objdetect disabled because opencv_dnn dependency can't be resolved! -- Module opencv_text disabled because opencv_dnn dependency can't be resolved! -- freetype2: YES -- harfbuzz: YES -- No preference for use of exported gflags CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported gflags CMake configuration if available. -- Failed to find installed gflags CMake configuration, searching for gflags build directories exported with CMake. -- Failed to find gflags - Failed to find an installed/exported CMake configuration for gflags, will perform search for installed gflags components. -- Checking SFM deps... TRUE -- CERES support is disabled. Ceres Solver for reconstruction API is required. -- OpenCL samples are skipped: OpenCL SDK is required -- -- General configuration for OpenCV 4.0.0-rc ===================================== -- Version control: 4.0.0-rc -- -- Extra modules: -- Location (extra): /home/khurram/LIBRARIES/OPENCV34/opencv_contrib/modules -- Version control (extra): 4.0.0-rc -- -- Platform: -- Timestamp: 2018-11-16T15:59:03Z -- Host: Linux 4.15.0-32-generic x86_64 -- CMake: 3.12.2 -- CMake generator: Unix Makefiles -- CMake build tool: /usr/bin/make -- Configuration: RELEASE -- -- CPU/HW features: -- Baseline: SSE SSE2 SSE3 -- requested: SSE3 -- Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX -- requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX -- SSE4_1 (4 files): + SSSE3 SSE4_1 -- SSE4_2 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 -- FP16 (0 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX -- AVX (3 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX -- AVX2 (9 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 -- AVX512_SKX (0 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_SKX -- -- C/C++: -- Built as dynamic libs?: YES -- C++ Compiler: /usr/bin/c++ (ver 5.4.0) -- C++ flags (Release): -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -- C++ flags (Debug): -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -- C Compiler: /usr/bin/cc -- C flags (Release): -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 -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -- C flags (Debug): -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 -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG -- Linker flags (Release): -- Linker flags (Debug): -- ccache: NO -- Precompiled headers: YES -- Extra dependencies: m pthread cudart_static -lpthread dl rt nppc nppial nppicc nppicom nppidei nppif nppig nppim nppist nppisu nppitc npps cublas cufft -L/usr/local/cuda-9.0/lib64 -L/usr/lib/x86_64-linux-gnu -- 3rdparty dependencies: -- -- OpenCV modules: -- To be built: aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dpm face features2d flann freetype fuzzy gapi hfs highgui img_hash imgcodecs imgproc java_bindings_generator line_descriptor ml objdetect optflow phase_unwrapping photo plot python3 python_bindings_generator reg rgbd saliency sfm shape stereo stitching structured_light superres surface_matching tracking video videoio videostab xfeatures2d ximgproc xobjdetect xphoto -- Disabled: hdf python2 world -- Disabled by dependency: dnn_objdetect text -- Unavailable: cnn_3dobj cvv dnn java js matlab ovis ts viz -- Applications: examples apps -- Documentation: NO -- Non-free algorithms: YES -- -- GUI: -- GTK+: YES (ver 2.24.30) -- GThread : YES (ver 2.48.2) -- GtkGlExt: NO -- VTK support: NO -- -- Media I/O: -- ZLib: /home/khurram/miniconda3/lib/libz.so.1.2.11 (ver 1.2.11) -- JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80) -- WEBP: /usr/lib/x86_64-linux-gnu/libwebp.so (ver encoder: 0x0202) -- PNG: /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.2.54) -- TIFF: /home/khurram/miniconda3/lib/libtiff.so (ver 42 / 4.0.9) -- JPEG 2000: /usr/lib/x86_64-linux-gnu/libjasper.so (ver 1.900.1) -- OpenEXR: /usr/lib/x86_64-linux-gnu/libImath.so /usr/lib/x86_64-linux-gnu/libIlmImf.so /usr/lib/x86_64-linux-gnu/libIex.so /usr/lib/x86_64-linux-gnu/libHalf.so /usr/lib/x86_64-linux-gnu/libIlmThread.so (ver 2.2.0) -- HDR: YES -- SUNRASTER: YES -- PXM: YES -- PFM: YES -- -- Video I/O: -- DC1394: YES (ver 2.2.4) -- FFMPEG: YES -- avcodec: YES (ver 58.19.100) -- avformat: YES (ver 58.13.100) -- avutil: YES (ver 56.15.100) -- swscale: YES (ver 5.2.100) -- avresample: NO -- GStreamer: -- base: YES (ver 0.10.36) -- video: YES (ver 0.10.36) -- app: YES (ver 0.10.36) -- riff: YES (ver 0.10.36) -- pbutils: YES (ver 0.10.36) -- v4l/v4l2: linux/videodev2.h -- -- Parallel framework: pthreads -- -- Trace: YES (with Intel ITT) -- -- Other third-party libraries: -- Intel IPP: 2019.0.0 Gold [2019.0.0] -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/icv -- Intel IPP IW: sources (2019.0.0) -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/iw -- Lapack: YES (/home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so /home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so /home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so -lpthread -lm -ldl) -- Eigen: YES (ver 3.3.90) -- Custom HAL: NO -- -- NVIDIA CUDA: YES (ver 9.0, CUFFT CUBLAS NVCUVID) -- NVIDIA GPU arch: 30 35 37 50 52 60 61 70 -- NVIDIA PTX archs: -- -- OpenCL: YES (no extra features) -- Include path: /home/khurram/LIBRARIES/OPENCV34/opencv/3rdparty/include/opencl/1.2 -- Link libraries: Dynamic load -- -- Python 3: -- Interpreter: /home/khurram/miniconda3/bin/python3.5m (ver 3.5.6) -- Libraries: /home/khurram/miniconda3/lib/libpython3.5m.so (ver 3.5.6) -- numpy: /home/khurram/miniconda3/lib/python3.5/site-packages/numpy/core/include (ver 1.15.2) -- packages path: /home/khurram/miniconda3/lib/python3.5/site-packages -- -- Python (for build): /usr/bin/python2.7 -- -- Java: -- ant: NO -- JNI: NO -- Java wrappers: NO -- Java tests: NO -- -- Install to: /home/khurram/miniconda3 -- ----------------------------------------------------------------- -- -- Configuring done -- Generating done -- Build files have been written to: /home/khurram/LIBRARIES/OPENCV34/opencv/build "><pre class="notranslate"><code class="notranslate">/home/khurram/miniconda3/bin/cmake -H/home/khurram/LIBRARIES/OPENCV34/opencv -B/home/khurram/LIBRARIES/OPENCV34/opencv/build --check-build-system CMakeFiles/Makefile.cmake 0 Re-run cmake file: Makefile older than: modules/cudaarithm/CMakeFiles/cuda_compile_1.dir/src/cuda/cuda_compile_1_generated_threshold.cu.o.depend -- Looking for ccache - not found -- Found ZLIB: /home/khurram/miniconda3/lib/libz.so.1.2.11 (found suitable version "1.2.11", minimum required is "1.2.3") -- Found ZLIB: /home/khurram/miniconda3/lib/libz.so.1.2.11 (found version "1.2.11") -- Found OpenEXR: /usr/lib/x86_64-linux-gnu/libIlmImf.so -- Checking for module 'gtk+-3.0' -- No package 'gtk+-3.0' found -- Checking for module 'gstreamer-base-1.0' -- No package 'gstreamer-base-1.0' found -- Checking for module 'gstreamer-video-1.0' -- No package 'gstreamer-video-1.0' found -- Checking for module 'gstreamer-app-1.0' -- No package 'gstreamer-app-1.0' found -- Checking for module 'gstreamer-riff-1.0' -- No package 'gstreamer-riff-1.0' found -- Checking for module 'gstreamer-pbutils-1.0' -- No package 'gstreamer-pbutils-1.0' found -- Looking for linux/videodev2.h -- Looking for linux/videodev2.h - found -- Looking for sys/videoio.h -- Looking for sys/videoio.h - not found -- Checking for module 'libavresample' -- No package 'libavresample' found -- found Intel IPP (ICV version): 2019.0.0 [2019.0.0 Gold] -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/icv -- found Intel IPP Integration Wrappers sources: 2019.0.0 -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/iw -- CUDA detected: 9.0 -- CUDA NVCC target flags: -gencode;arch=compute_30,code=sm_30;-gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-D_FORCE_INLINES -- LAPACK(MKL): LAPACK_LIBRARIES: /home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;/home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;/home/khurram/miniconda3/lib/libmkl_intel_lp64.so;/home/khurram/miniconda3/lib/libmkl_sequential.so;/home/khurram/miniconda3/lib/libmkl_core.so;-lpthread;-lm;-ldl -- LAPACK(MKL): Support is enabled. -- Could NOT find JNI (missing: JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH) -- Could NOT find Pylint (missing: PYLINT_EXECUTABLE) -- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE) -- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file -- Caffe: NO CMake Warning at /home/khurram/miniconda3/share/cmake-3.12/Modules/FindProtobuf.cmake:455 (message): Protobuf compiler version 3.6.0 doesn't match library version 3.6.1 Call Stack (most recent call first): /home/khurram/LIBRARIES/OPENCV34/opencv_contrib/modules/cnn_3dobj/CMakeLists.txt:14 (find_package) -- Protobuf: YES -- Glog: YES -- freetype2: YES -- harfbuzz: YES -- HDF5: Using hdf5 compiler wrapper to determine C configuration -- Module opencv_ovis disabled because OGRE3D was not found -- No preference for use of exported gflags CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported gflags CMake configuration if available. -- Failed to find installed gflags CMake configuration, searching for gflags build directories exported with CMake. -- Failed to find gflags - Failed to find an installed/exported CMake configuration for gflags, will perform search for installed gflags components. -- Checking SFM deps... TRUE -- CERES support is disabled. Ceres Solver for reconstruction API is required. -- Module opencv_dnn_objdetect disabled because opencv_dnn dependency can't be resolved! -- Module opencv_text disabled because opencv_dnn dependency can't be resolved! -- freetype2: YES -- harfbuzz: YES -- No preference for use of exported gflags CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported gflags CMake configuration if available. -- Failed to find installed gflags CMake configuration, searching for gflags build directories exported with CMake. -- Failed to find gflags - Failed to find an installed/exported CMake configuration for gflags, will perform search for installed gflags components. -- Checking SFM deps... TRUE -- CERES support is disabled. Ceres Solver for reconstruction API is required. -- OpenCL samples are skipped: OpenCL SDK is required -- -- General configuration for OpenCV 4.0.0-rc ===================================== -- Version control: 4.0.0-rc -- -- Extra modules: -- Location (extra): /home/khurram/LIBRARIES/OPENCV34/opencv_contrib/modules -- Version control (extra): 4.0.0-rc -- -- Platform: -- Timestamp: 2018-11-16T15:59:03Z -- Host: Linux 4.15.0-32-generic x86_64 -- CMake: 3.12.2 -- CMake generator: Unix Makefiles -- CMake build tool: /usr/bin/make -- Configuration: RELEASE -- -- CPU/HW features: -- Baseline: SSE SSE2 SSE3 -- requested: SSE3 -- Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX -- requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX -- SSE4_1 (4 files): + SSSE3 SSE4_1 -- SSE4_2 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 -- FP16 (0 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX -- AVX (3 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX -- AVX2 (9 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 -- AVX512_SKX (0 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_SKX -- -- C/C++: -- Built as dynamic libs?: YES -- C++ Compiler: /usr/bin/c++ (ver 5.4.0) -- C++ flags (Release): -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -- C++ flags (Debug): -g -H -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 -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -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 -- C Compiler: /usr/bin/cc -- C flags (Release): -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 -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -- C flags (Debug): -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 -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG -- Linker flags (Release): -- Linker flags (Debug): -- ccache: NO -- Precompiled headers: YES -- Extra dependencies: m pthread cudart_static -lpthread dl rt nppc nppial nppicc nppicom nppidei nppif nppig nppim nppist nppisu nppitc npps cublas cufft -L/usr/local/cuda-9.0/lib64 -L/usr/lib/x86_64-linux-gnu -- 3rdparty dependencies: -- -- OpenCV modules: -- To be built: aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dpm face features2d flann freetype fuzzy gapi hfs highgui img_hash imgcodecs imgproc java_bindings_generator line_descriptor ml objdetect optflow phase_unwrapping photo plot python3 python_bindings_generator reg rgbd saliency sfm shape stereo stitching structured_light superres surface_matching tracking video videoio videostab xfeatures2d ximgproc xobjdetect xphoto -- Disabled: hdf python2 world -- Disabled by dependency: dnn_objdetect text -- Unavailable: cnn_3dobj cvv dnn java js matlab ovis ts viz -- Applications: examples apps -- Documentation: NO -- Non-free algorithms: YES -- -- GUI: -- GTK+: YES (ver 2.24.30) -- GThread : YES (ver 2.48.2) -- GtkGlExt: NO -- VTK support: NO -- -- Media I/O: -- ZLib: /home/khurram/miniconda3/lib/libz.so.1.2.11 (ver 1.2.11) -- JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80) -- WEBP: /usr/lib/x86_64-linux-gnu/libwebp.so (ver encoder: 0x0202) -- PNG: /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.2.54) -- TIFF: /home/khurram/miniconda3/lib/libtiff.so (ver 42 / 4.0.9) -- JPEG 2000: /usr/lib/x86_64-linux-gnu/libjasper.so (ver 1.900.1) -- OpenEXR: /usr/lib/x86_64-linux-gnu/libImath.so /usr/lib/x86_64-linux-gnu/libIlmImf.so /usr/lib/x86_64-linux-gnu/libIex.so /usr/lib/x86_64-linux-gnu/libHalf.so /usr/lib/x86_64-linux-gnu/libIlmThread.so (ver 2.2.0) -- HDR: YES -- SUNRASTER: YES -- PXM: YES -- PFM: YES -- -- Video I/O: -- DC1394: YES (ver 2.2.4) -- FFMPEG: YES -- avcodec: YES (ver 58.19.100) -- avformat: YES (ver 58.13.100) -- avutil: YES (ver 56.15.100) -- swscale: YES (ver 5.2.100) -- avresample: NO -- GStreamer: -- base: YES (ver 0.10.36) -- video: YES (ver 0.10.36) -- app: YES (ver 0.10.36) -- riff: YES (ver 0.10.36) -- pbutils: YES (ver 0.10.36) -- v4l/v4l2: linux/videodev2.h -- -- Parallel framework: pthreads -- -- Trace: YES (with Intel ITT) -- -- Other third-party libraries: -- Intel IPP: 2019.0.0 Gold [2019.0.0] -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/icv -- Intel IPP IW: sources (2019.0.0) -- at: /home/khurram/LIBRARIES/OPENCV34/opencv/build/3rdparty/ippicv/ippicv_lnx/iw -- Lapack: YES (/home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so /home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so /home/khurram/miniconda3/lib/libmkl_intel_lp64.so /home/khurram/miniconda3/lib/libmkl_sequential.so /home/khurram/miniconda3/lib/libmkl_core.so -lpthread -lm -ldl) -- Eigen: YES (ver 3.3.90) -- Custom HAL: NO -- -- NVIDIA CUDA: YES (ver 9.0, CUFFT CUBLAS NVCUVID) -- NVIDIA GPU arch: 30 35 37 50 52 60 61 70 -- NVIDIA PTX archs: -- -- OpenCL: YES (no extra features) -- Include path: /home/khurram/LIBRARIES/OPENCV34/opencv/3rdparty/include/opencl/1.2 -- Link libraries: Dynamic load -- -- Python 3: -- Interpreter: /home/khurram/miniconda3/bin/python3.5m (ver 3.5.6) -- Libraries: /home/khurram/miniconda3/lib/libpython3.5m.so (ver 3.5.6) -- numpy: /home/khurram/miniconda3/lib/python3.5/site-packages/numpy/core/include (ver 1.15.2) -- packages path: /home/khurram/miniconda3/lib/python3.5/site-packages -- -- Python (for build): /usr/bin/python2.7 -- -- Java: -- ant: NO -- JNI: NO -- Java wrappers: NO -- Java tests: NO -- -- Install to: /home/khurram/miniconda3 -- ----------------------------------------------------------------- -- -- Configuring done -- Generating done -- Build files have been written to: /home/khurram/LIBRARIES/OPENCV34/opencv/build </code></pre></div> <h5 dir="auto">Detailed description</h5> <h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; ❔</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></li> <li>Compiler =&gt; ❔</li> </ul> <h5 dir="auto">Detailed description</h5> <h5 dir="auto">Steps to reproduce</h5>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt;3.4.3</li> <li>Operating System / Platform =&gt; Ubuntu14.04</li> <li>Compiler =&gt;cmake</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">My project runs normal which contains other OpenCV module until I attach parts of code about dnn to load a YOLO model for object detection。<br> I use CMakeList.txt to generate Makefile which build the program.I can generate the executable file and .so file and they run fine.But when I want to delete source file and generate executable file by .so file,it goes wrong.What shoud I do to CMakeList.txt to solve the problem.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/20204666/69264445-4ed0dc00-0c02-11ea-854e-f7ce31d7ba40.png"><img src="https://user-images.githubusercontent.com/20204666/69264445-4ed0dc00-0c02-11ea-854e-f7ce31d7ba40.png" alt="error" style="max-width: 100%;"></a></p> <h5 dir="auto">Steps to reproduce</h5> **CMakeList.txt(exe&amp;.so)** <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cmake_minimum_required(VERSION 3.5) project(algorithm-sdk) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED) add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3rd/cJSON) add_library(SmokeDetectAlgorithm SHARED ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) target_link_libraries(SmokeDetectAlgorithm cjson ) add_executable(test-algo-sdk ${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp ) target_include_directories(test-algo-sdk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include PUBLIC ${OpenCV_INCLUDE_DIRS}) target_link_libraries(test-algo-sdk ${OpenCV_LIBS} cjson m # ${CMAKE_CURRENT_SOURCE_DIR}/build/libSmokeDetectAlgorithm.so dl )"><pre class="notranslate"><code class="notranslate">cmake_minimum_required(VERSION 3.5) project(algorithm-sdk) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED) add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3rd/cJSON) add_library(SmokeDetectAlgorithm SHARED ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) target_link_libraries(SmokeDetectAlgorithm cjson ) add_executable(test-algo-sdk ${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp ) target_include_directories(test-algo-sdk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include PUBLIC ${OpenCV_INCLUDE_DIRS}) target_link_libraries(test-algo-sdk ${OpenCV_LIBS} cjson m # ${CMAKE_CURRENT_SOURCE_DIR}/build/libSmokeDetectAlgorithm.so dl ) </code></pre></div> <p dir="auto"><strong>CMakeList.txt(.so only)</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cmake_minimum_required(VERSION 3.5) project(algorithm-sdk) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED) add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3rd/cJSON) #add_library(SmokeDetectAlgorithm SHARED ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) target_link_libraries(#SmokeDetectAlgorithm cjson ) add_executable(test-algo-sdk ${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp # ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp ) target_include_directories(test-algo-sdk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include PUBLIC ${OpenCV_INCLUDE_DIRS}) target_link_libraries(test-algo-sdk ${OpenCV_LIBS} cjson m ${CMAKE_CURRENT_SOURCE_DIR}/build/libSmokeDetectAlgorithm.so dl )"><pre class="notranslate"><code class="notranslate">cmake_minimum_required(VERSION 3.5) project(algorithm-sdk) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED) add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3rd/cJSON) #add_library(SmokeDetectAlgorithm SHARED ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) target_link_libraries(#SmokeDetectAlgorithm cjson ) add_executable(test-algo-sdk ${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp # ${CMAKE_CURRENT_SOURCE_DIR}/src/SmokeDetectAlgorithm.cpp ) target_include_directories(test-algo-sdk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include PUBLIC ${OpenCV_INCLUDE_DIRS}) target_link_libraries(test-algo-sdk ${OpenCV_LIBS} cjson m ${CMAKE_CURRENT_SOURCE_DIR}/build/libSmokeDetectAlgorithm.so dl ) </code></pre></div>
0
<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> org.apache.shardingsphere sharding-jdbc-spring-boot-starter 4.0.0-RC1 <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> <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>
<h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">5.0.0-alpha</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">I use XA transaction configuation, but the sharding-proxy does not send XA SQL to the physics node, the XA transaction is invalid.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="props: # # LOCAL: Proxy will run with LOCAL transaction. # # XA: Proxy will run with XA transaction. # # BASE: Proxy will run with B.A.S.E transaction. proxy-transaction-type: XA"><pre class="notranslate"><code class="notranslate">props: # # LOCAL: Proxy will run with LOCAL transaction. # # XA: Proxy will run with XA transaction. # # BASE: Proxy will run with B.A.S.E transaction. proxy-transaction-type: XA </code></pre></div> <p dir="auto">I write the SQL in sharding-proxy mysql client,the SQL is:</p> <div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="start transaction; update activity set startTime=&quot;2020-08-01 18:00:01&quot; where activityId=30; rollback;"><pre class="notranslate"><span class="pl-k">start transaction</span>; <span class="pl-k">update</span> activity <span class="pl-k">set</span> startTime<span class="pl-k">=</span><span class="pl-s"><span class="pl-pds">"</span>2020-08-01 18:00:01<span class="pl-pds">"</span></span> <span class="pl-k">where</span> activityId<span class="pl-k">=</span><span class="pl-c1">30</span>; <span class="pl-k">rollback</span>;</pre></div> <p dir="auto">The result is change, transaction does not rollback.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">This is my Wireshark analysis chart:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="� �� � � H �update activity set startTime=&quot;2020-08-01 18:00:01&quot; where activityId=300 � � � (Rows matched: 1 Changed: 0 Warnings: 0"><pre class="notranslate"><code class="notranslate">� �� � � H �update activity set startTime="2020-08-01 18:00:01" where activityId=300 � � � (Rows matched: 1 Changed: 0 Warnings: 0 </code></pre></div> <p dir="auto">I can't see any XA SQL in the analysis.So I think the XA configuration is invalid.</p>
0
<p dir="auto">This template is for miscellaneous issues not covered by the other issue categories.</p> <p dir="auto">For questions on how to work with TensorFlow, or support for problems that are not verified bugs in TensorFlow, please go to <a href="https://stackoverflow.com/questions/tagged/tensorflow" rel="nofollow">StackOverflow</a>.</p> <p dir="auto">If you are reporting a vulnerability, please use the <a href="https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md">dedicated reporting process</a>.</p> <p dir="auto">For high-level discussions about TensorFlow, please post to <a href="mailto:[email protected]">[email protected]</a>, for questions about the development or internal workings of TensorFlow, or if you would like to know how to contribute to TensorFlow, please post to <a href="mailto:[email protected]">[email protected]</a>.</p>
<h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>:</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Linux Ubuntu 16.04/Windows 10</li> <li><strong>TensorFlow installed from (source or binary)</strong>: No</li> <li><strong>TensorFlow version (use command below)</strong>: 1.5</li> <li><strong>Python version</strong>: 3.5</li> <li><strong>Bazel version (if compiling from source)</strong>:</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: 4.8</li> <li><strong>CUDA/cuDNN version</strong>: 9.0</li> <li><strong>GPU model and memory</strong>: NVIDIA GTX 1080 8GB</li> <li><strong>Exact command to reproduce</strong>:</li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">Here I want to ask and sure that: Is this possible to run a trained model (using python to train) in a Java application with GPU support and detect the object and get the result of matches and the x, y point and the width and height?<br> I am going to use python to train my own dataset by using one of the model e.g: <code class="notranslate">ssd_mobilenet_v1_coco </code>OR <code class="notranslate">faster_rcnn_resnet101_coco</code> and then use the trained model in the Java application with GPU support with boxes output. So I want to sure that does the TensorFlow support this task or not? If yes, is there any good tutorial to show the usage? If not, why, and when it can be supported?</p> <p dir="auto">Thanks in advance!!</p>
0
<p dir="auto">Over a year ago, we had the <code class="notranslate">kubernetes-build</code> job down &lt;5m. It's now coming in at 30m. Some of that shot up really recently, too, looking at the build time trend:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4942464/16088152/95720012-32da-11e6-981c-410fa6a2abb1.png"><img src="https://cloud.githubusercontent.com/assets/4942464/16088152/95720012-32da-11e6-981c-410fa6a2abb1.png" alt="time-trend" style="max-width: 100%;"></a></p> <p dir="auto">It looks like sometime around <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91142020" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/10384" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/10384/hovercard" href="https://github.com/kubernetes/kubernetes/issues/10384">#10384</a>, we shot up from a fat 20m another 50% to 30m. Can we at least eliminate that jump?</p> <p dir="auto">Is there anything else we can do here? Maybe split the non-<code class="notranslate">amd64</code> builds off to a separate job so that our whole CI infrastructure isn't tied to them?</p> <p dir="auto"><a class="team-mention js-team-mention notranslate" data-error-text="Failed to load team members" data-id="2009229" data-permission-text="Team members are private" data-url="/orgs/kubernetes/teams/test-infra-maintainers/members" data-hovercard-type="team" data-hovercard-url="/orgs/kubernetes/teams/test-infra-maintainers/hovercard" href="https://github.com/orgs/kubernetes/teams/test-infra-maintainers">@kubernetes/test-infra-maintainers</a> @kubernetes/release-maintainers</p>
<p dir="auto">Version-Release number of selected component (if applicable):<br> Server Version: version.Info{Major:"1", Minor:"4+", GitVersion:"v1.4.0-alpha.0.1310+8741217179860e", GitCommit:"8741217179860e9f0ce37997c810f61170a3672a", GitTreeState:"clean", BuildDate:"2016-07-07T06:54:04Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}</p> <p dir="auto">Steps to Reproduce:<br> 1.Install kubernetes with one master and two nodes<br> 2.Create a pod using replicationcontroller<br> apiVersion: v1<br> kind: ReplicationController<br> metadata:<br> name: chaoyangwildfly-rc<br> labels:<br> name: chaoyangwildfly<br> context: docker-k8s-lab<br> spec:<br> replicas: 1<br> template:<br> metadata:<br> labels:<br> name: chaoyangwildfly<br> spec:<br> containers:<br> - name: chaoyangwildfly-rc-pod<br> image: jhou/hello-openshift<br> ports:<br> - containerPort: 8080<br> volumeMounts:<br> - name: html-volume<br> mountPath: "/usr/share/nginx/html"<br> volumes:<br> - name: html-volume<br> awsElasticBlockStore:<br> volumeID: aws://us-east-1d/vol-dde44879<br> fsType: ext4<br> 3.Check pod status<br> [root@ip-172-18-5-143 ~]# kubectl describe pods chaoyangwildfly-rc-ccx51<br> Name: chaoyangwildfly-rc-ccx51<br> Namespace: default<br> Node: ip-172-18-0-61.ec2.internal/172.18.0.61<br> Start Time: Fri, 08 Jul 2016 02:56:00 -0400<br> Labels: name=chaoyangwildfly<br> Status: Running<br> IP: 172.16.73.10<br> Controllers: ReplicationController/chaoyangwildfly-rc<br> Containers:<br> chaoyangwildfly-rc-pod:<br> Container ID: docker://0bb522c3d8305c13decef15c5624637bb3824021be78ae75b086be1560369817<br> Image: jhou/hello-openshift<br> Image ID: docker://sha256:3642a95271f490f9d618e29128a089ebaaf58f8f3f4e556c02660b54ebb881fd<br> Port: 8080/TCP<br> QoS Tier:<br> memory: BestEffort<br> cpu: BestEffort<br> State: Running<br> Started: Fri, 08 Jul 2016 02:56:08 -0400<br> Ready: True<br> Restart Count: 0<br> Environment Variables: <br> Conditions:<br> Type Status<br> Initialized True<br> Ready False<br> PodScheduled True<br> Volumes:<br> html-volume:<br> Type: AWSElasticBlockStore (a Persistent Disk resource in AWS)<br> VolumeID: aws://us-east-1d/vol-dde44879<br> FSType: ext4<br> Partition: 0<br> ReadOnly: false<br> default-token-vs6y1:<br> Type: Secret (a volume populated by a Secret)<br> SecretName: default-token-vs6y1<br> Events:<br> FirstSeen LastSeen Count From SubobjectPath Type Reason Message</p> <hr> <p dir="auto">5m 5m 1 {default-scheduler } Normal Scheduled Successfully assigned chaoyangwildfly-rc-ccx51 to ip-172-18-0-61.ec2.internal<br> 5m 5m 1 {kubelet ip-172-18-0-61.ec2.internal} spec.containers{chaoyangwildfly-rc-pod} Normal Pulling pulling image "jhou/hello-openshift"<br> 5m 5m 1 {kubelet ip-172-18-0-61.ec2.internal} spec.containers{chaoyangwildfly-rc-pod} Normal Pulled Successfully pulled image "jhou/hello-openshift"<br> 5m 5m 1 {kubelet ip-172-18-0-61.ec2.internal} spec.containers{chaoyangwildfly-rc-pod} Normal Created Created container with docker id 0bb522c3d830<br> 5m 5m 1 {kubelet ip-172-18-0-61.ec2.internal} spec.containers{chaoyangwildfly-rc-pod} Normal Started Started container with docker id 0bb522c3d830</p> <p dir="auto">4..After the pod is running, stop kubelet service on the node ip-172-18-0-61.ec2.internal<br> 5. A new pod will be assigned to the other node<br> [root@ip-172-18-5-143 ~]# kubectl describe pods chaoyangwildfly-rc-hn9kn<br> Name: chaoyangwildfly-rc-hn9kn<br> Namespace: default<br> Node: ip-172-18-9-229.ec2.internal/172.18.9.229<br> Start Time: Fri, 08 Jul 2016 03:02:31 -0400<br> Labels: name=chaoyangwildfly<br> Status: Pending<br> IP:<br> Controllers: ReplicationController/chaoyangwildfly-rc<br> Containers:<br> chaoyangwildfly-rc-pod:<br> Container ID:<br> Image: jhou/hello-openshift<br> Image ID:<br> Port: 8080/TCP<br> QoS Tier:<br> cpu: BestEffort<br> memory: BestEffort<br> State: Waiting<br> Reason: ContainerCreating<br> Ready: False<br> Restart Count: 0<br> Environment Variables: <br> Conditions:<br> Type Status<br> Initialized True<br> Ready False<br> PodScheduled True<br> Volumes:<br> html-volume:<br> Type: AWSElasticBlockStore (a Persistent Disk resource in AWS)<br> VolumeID: aws://us-east-1d/vol-dde44879<br> FSType: ext4<br> Partition: 0<br> ReadOnly: false<br> default-token-vs6y1:<br> Type: Secret (a volume populated by a Secret)<br> SecretName: default-token-vs6y1<br> Events:<br> FirstSeen LastSeen Count From SubobjectPath Type Reason Message</p> <hr> <p dir="auto">4m 4m 1 {default-scheduler } Normal Scheduled Successfully assigned chaoyangwildfly-rc-hn9kn to ip-172-18-9-229.ec2.internal<br> 2m 1s 2 {kubelet ip-172-18-9-229.ec2.internal} Warning FailedMount Unable to mount volumes for pod "chaoyangwildfly-rc-hn9kn_default(f059eb80-44d9-11e6-ba51-0ecfeba772c9)": timeout expired waiting for volumes to attach/mount for pod "chaoyangwildfly-rc-hn9kn"/"default". list of unattached/unmounted volumes=[html-volume]<br> 2m 1s 2 {kubelet ip-172-18-9-229.ec2.internal} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "chaoyangwildfly-rc-hn9kn"/"default". list of unattached/unmounted volumes=[html-volume]</p> <ol dir="auto"> <li>From aws web console, I foud volume vol-dde44879 is still attched to node ip-172-18-0-61.ec2.internal</li> </ol>
0
<p dir="auto"><strong>Describe the bug</strong></p> <p dir="auto">Hi Three Team,</p> <p dir="auto">i am facing a great Perfomance drop while setting the correct color encoding for an cubemap used as scene.environment.</p> <p dir="auto">The drop occours in: WebGLProgram @ three.module.js:18311</p> <p dir="auto">Thx<br> Philipp</p> <p dir="auto"><strong>To Reproduce</strong><br> <em><strong>Live example</strong></em></p> <p dir="auto">Check out those Fiddles:</p> <ol dir="auto"> <li> <p dir="auto">Wrong (default, not changed) encoding:<br> <a href="https://jsfiddle.net/u70f9cek/" rel="nofollow">https://jsfiddle.net/u70f9cek/</a></p> </li> <li> <p dir="auto">Correct sRGBEncoding set:<br> <a href="https://jsfiddle.net/n8otvcry/1/" rel="nofollow">https://jsfiddle.net/n8otvcry/1/</a></p> </li> </ol> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">Somehow better performance, or some hints....</p> <p dir="auto"><strong>Screenshots</strong></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25367101/136964364-48fa7b22-6d52-4f67-b0e2-7f1a78340343.png"><img src="https://user-images.githubusercontent.com/25367101/136964364-48fa7b22-6d52-4f67-b0e2-7f1a78340343.png" alt="default" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25367101/136964389-d3e2a76c-7dfe-4882-a97b-fa8b901465c8.png"><img src="https://user-images.githubusercontent.com/25367101/136964389-d3e2a76c-7dfe-4882-a97b-fa8b901465c8.png" alt="sRGBEncoding_performance" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Platform:</strong></p> <ul dir="auto"> <li>Device: [Desktop]</li> <li>OS: [Windows 10]</li> <li>Browser: [Chrome]</li> <li>Three.js version: [133.1]</li> </ul>
<p dir="auto"><strong>Describe the bug</strong></p> <p dir="auto">The introduction of <code class="notranslate">SRGB8_ALPHA8</code> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="999998796" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/22551" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/22551/hovercard" href="https://github.com/mrdoob/three.js/pull/22551">#22551</a> improved the render quality of sRGB textures, but also added significant synchronous conversion times that block the main thread. Every sRGB texture adds to the total blocking time, resulting in a poor user experience, especially when the scene contains many textures.</p> <p dir="auto"><strong>To Reproduce</strong></p> <p dir="auto">Steps to reproduce the behavior:</p> <ol dir="auto"> <li>Set <code class="notranslate">encoding</code> of any Uint8 RGBA texture to <code class="notranslate">sRGBEncoding</code>. (WebGL 2 context is required.)</li> <li>Render a scene that uses the texture.</li> <li>See the main thread being blocked for a noticeable period of time during the first frame.</li> </ol> <p dir="auto"><em><strong>Code</strong></em></p> <p dir="auto">The following example loads a cube map and sets its encoding to <code class="notranslate">sRGBEncoding</code>:<br> <a href="https://codesandbox.io/s/srgb8-alpha8-wv3jf?runonclick=1&amp;file=/index.js" rel="nofollow">https://codesandbox.io/s/srgb8-alpha8-wv3jf?runonclick=1&amp;file=/index.js</a></p> <p dir="auto"><em><strong>Live example</strong></em></p> <ul dir="auto"> <li><a href="https://wv3jf.csb.app/?linear" rel="nofollow">LinearEncoding (0.16 seconds blocking)</a> (Refresh to see small freeze)</li> <li><a href="https://wv3jf.csb.app/" rel="nofollow">sRGBEncoding (1.49 seconds blocking)</a> (Refresh to see long freeze)</li> </ul> <p dir="auto">The blocking behaviour can also be observed in live examples that load GLTF models, such as <a href="https://threejs.org/examples/?q=gltf#webgl_loader_gltf" rel="nofollow">https://threejs.org/examples/?q=gltf#webgl_loader_gltf</a>.</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">Ideally, the main thread should not be blocked at all. Blocking time should at least be reduced as much as possible.</p> <p dir="auto"><strong>Screenshots</strong></p> <table role="table"> <thead> <tr> <th>With <code class="notranslate">LinearEncoding</code> or <code class="notranslate">sRGBEncoding</code> pre r133</th> <th>With <code class="notranslate">sRGBEncoding</code> since r133</th> </tr> </thead> <tbody> <tr> <td><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9214917/135754996-e35ea610-4ac2-4d7c-8884-0ca101353a8a.jpg"><img width="320" src="https://user-images.githubusercontent.com/9214917/135754996-e35ea610-4ac2-4d7c-8884-0ca101353a8a.jpg" style="max-width: 100%;"></a></td> <td><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9214917/135754998-966cd217-45c8-487a-a0f3-b1895b836faf.jpg"><img width="320" src="https://user-images.githubusercontent.com/9214917/135754998-966cd217-45c8-487a-a0f3-b1895b836faf.jpg" style="max-width: 100%;"></a></td> </tr> <tr> <td>Longest blocking time = 160 ms</td> <td>Longest blocking time = 1496 ms</td> </tr> </tbody> </table> <p dir="auto"><strong>Platform:</strong></p> <ul dir="auto"> <li>Device: Desktop</li> <li>OS: Windows</li> <li>Browser: Chrome, Brave, Firefox</li> <li>Three.js version: r133</li> </ul>
1
<p dir="auto">CSS for Table is a little wonky when viewed in IE 11 most egregious issues are TableFooter and TableRow do not respect the padding or spacing</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/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">Should be a similar if not identical look and feel across all browsers</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">First column of table is always expanded to take up the empty width of the parent div<br> Footer aligns left and pagination drop down overlaps text<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8929114/32520765-1d0eec06-c3df-11e7-89f4-b6c2a9459182.png"><img src="https://user-images.githubusercontent.com/8929114/32520765-1d0eec06-c3df-11e7-89f4-b6c2a9459182.png" alt="css_pita" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Open link in IE 11 <a href="https://material-ui.com/demos/tables/" rel="nofollow">https://material-ui.com/demos/tables/</a></li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">Trying to make an app IE compatible the issue with the padding is minor compared to the issue with the TableFooter</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.20</td> </tr> <tr> <td>React</td> <td>^15.6.1</td> </tr> <tr> <td>browser</td> <td>IE11</td> </tr> </tbody> </table>
<p dir="auto">Icon button color = unset, disabled = true -&gt; disabled color<br> Icon button color = primary | accent | contrast, disabled = true -&gt; primary | accent | contrast color</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/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">The disabled color should be applied when disabled is true, no matter what the color parameter is set to</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">This only happens when the color prop is unset, for the others the disabled color is never applied.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><code class="notranslate">&lt;IconButton disabled color="primary&gt;&lt;Icon&gt;alarm&lt;/Icon&gt;&lt;/IconButton&gt;</code></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>latest beta</td> </tr> <tr> <td>React</td> <td>15</td> </tr> <tr> <td>browser</td> <td>Chrome 61</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/414" rel="nofollow">http://projects.scipy.org/numpy/ticket/414</a> on 2007-01-08 by trac user lbolla, assigned to unknown.</em></p> <p dir="auto">[[BR]]<br> Wrong results are given by subtract.reduce and divide.reduce, with respect to the standard function reduce.<br> Take a look at this piece of code:</p> <hr> <p dir="auto">from numpy import *</p> <p dir="auto">x = arange(4) # x = array([0,1,2,3])</p> <p dir="auto">def myadd(x,y): # re-define the binary sum function</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="return x + y"><pre class="notranslate"><code class="notranslate">return x + y </code></pre></div> <p dir="auto">print reduce(myadd, x) # 6, as expected</p> <p dir="auto">print add.reduce(x) # 6, as expected</p> <p dir="auto">def mysub(x,y): # re-define the binary diff function</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="return x - y"><pre class="notranslate"><code class="notranslate">return x - y </code></pre></div> <p dir="auto">print reduce(mysub, x) # -6, as expected</p> <p dir="auto">print subtract.reduce(x) # 2 ---&gt; WRONG!</p> <hr> <p dir="auto">It probably depends on the wrong order of the operands in the binary operation subtract or divide. Any non-commutative operation can lead to this problem (and it's worth checking!).<br> This code works correctly if the Numeric package is imported istead of numpy (first row of the snippet).</p>
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/413" rel="nofollow">http://projects.scipy.org/numpy/ticket/413</a> on 2007-01-08 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rkern/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rkern">@rkern</a>, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/teoliphant/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/teoliphant">@teoliphant</a>.</em></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [21]: import numpy In [22]: numpy.subtract.reduce(numpy.arange(5)) Out[22]: 2 In [23]: import Numeric In [24]: Numeric.subtract.reduce(Numeric.arange(5)) Out[24]: -10 In [25]: print numpy.__version__ 1.0.2.dev3493 In [26]: print Numeric.__version__ 24.2"><pre class="notranslate"><code class="notranslate">In [21]: import numpy In [22]: numpy.subtract.reduce(numpy.arange(5)) Out[22]: 2 In [23]: import Numeric In [24]: Numeric.subtract.reduce(Numeric.arange(5)) Out[24]: -10 In [25]: print numpy.__version__ 1.0.2.dev3493 In [26]: print Numeric.__version__ 24.2 </code></pre></div>
1
<h2 dir="auto">🐛 Bug</h2> <p dir="auto">Hello, I’m running a GAN model with some second-order regularization. The training went well at the beginning and the loss decreased. However, after a random period of time, ranging from 3000-8000 updates, the segfault occurs and the training was terminated automatically.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">It is hard for me to simplify the code and reproduce it. However, it happens every time when I include the second order gradient:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if pl_reg: pl_dlatents.requires_grad_(True) pl_fake = self.G(None, dlatents=pl_dlatents) # forward the generator pl_noise = pl_fake.new(pl_fake.shape).normal_() / 1024 pl_grads = autograd.grad( outputs=(pl_fake * pl_noise).sum(), inputs=pl_dlatents, grad_outputs=None, create_graph=True, retain_graph=True, only_inputs=True, )[0] pl_lengths = pl_grads.pow(2).sum(1).mul(1/self.G.get_num_layers()).sqrt() return pl_lengths"><pre class="notranslate"><code class="notranslate">if pl_reg: pl_dlatents.requires_grad_(True) pl_fake = self.G(None, dlatents=pl_dlatents) # forward the generator pl_noise = pl_fake.new(pl_fake.shape).normal_() / 1024 pl_grads = autograd.grad( outputs=(pl_fake * pl_noise).sum(), inputs=pl_dlatents, grad_outputs=None, create_graph=True, retain_graph=True, only_inputs=True, )[0] pl_lengths = pl_grads.pow(2).sum(1).mul(1/self.G.get_num_layers()).sqrt() return pl_lengths </code></pre></div> <p dir="auto">Another major difference for my generator design is that it has convolution layers with <strong>both</strong> the input and weights calculated from other up-stream networks.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class ModulatedConv2d(nn.Module): def __init__(self, in_channels, out_channels, hidden_channels, kernel_size=3, stride=1, padding=1, dilation=1, noisy=True, randomize_noise=True, up=False, demodulize=True, gain=1, lrmul=1): super(ModulatedConv2d, self).__init__() assert kernel_size &gt;= 1 and kernel_size % 2 == 1 self.noisy = noisy self.stride = stride self.padding = padding self.dilation = dilation self.randomize_noise = randomize_noise self.up = up self.demodulize = demodulize self.lrmul = lrmul # Get weight. fan_in = in_channels * kernel_size * kernel_size self.runtime_coef = gain / math.sqrt(fan_in) * math.sqrt(lrmul) self.weight = Parameter(torch.randn(out_channels, in_channels, kernel_size, kernel_size) / math.sqrt(lrmul), requires_grad=True) # [OIkk] # Get bias. self.bias = Parameter(torch.zeros(1, out_channels, 1, 1), requires_grad=True) # Modulate layer. self.mod = ScaleLinear(hidden_channels, in_channels, bias=True) # [BI] Transform incoming W to style. # Noise scale. if noisy: self.noise_scale = Parameter(torch.zeros(1), requires_grad=True) def forward(self, x, y, noise=None): w = self.weight * self.runtime_coef ww = w[np.newaxis] # [BOIkk] Introduce minibatch dimension. # Modulate. s = self.mod(y) + 1 # [BI] Add bias (initially 1). ww = ww * s[:, np.newaxis, :, np.newaxis, np.newaxis] # [BOIkk] Scale input feature maps. # Demodulate. if self.demodulize: d = torch.rsqrt(ww.pow(2).sum(dim=(2,3,4), keepdim=True) + 1e-8) # [BOIkk] Scaling factor. ww = ww * d # [BOIkk] Scale output feature maps. # Reshape/scale input. B = y.size(0) x = x.view(1, -1, *x.shape[2:]) # Fused [BIhw] =&gt; reshape minibatch to convolution groups [1(BI)hw]. w = ww.view(-1, *ww.shape[2:]) # [(BO)Ikk] # Convolution with optional up/downsampling. if self.up: x = F.interpolate(x, scale_factor=2, mode='bilinear', align_corners=False) x = F.conv2d(x, w, None, self.stride, self.padding, self.dilation, groups=B) # [1(BO)hw] # Reshape/scale output. x = x.view(B, -1, *x.shape[2:]) # [BOhw] # Apply noise and bias if self.noisy: if self.randomize_noise: noise = x.new_empty(B, 1, *x.shape[2:]).normal_() x += noise * self.noise_scale x += self.bias * self.lrmul return x"><pre class="notranslate"><code class="notranslate">class ModulatedConv2d(nn.Module): def __init__(self, in_channels, out_channels, hidden_channels, kernel_size=3, stride=1, padding=1, dilation=1, noisy=True, randomize_noise=True, up=False, demodulize=True, gain=1, lrmul=1): super(ModulatedConv2d, self).__init__() assert kernel_size &gt;= 1 and kernel_size % 2 == 1 self.noisy = noisy self.stride = stride self.padding = padding self.dilation = dilation self.randomize_noise = randomize_noise self.up = up self.demodulize = demodulize self.lrmul = lrmul # Get weight. fan_in = in_channels * kernel_size * kernel_size self.runtime_coef = gain / math.sqrt(fan_in) * math.sqrt(lrmul) self.weight = Parameter(torch.randn(out_channels, in_channels, kernel_size, kernel_size) / math.sqrt(lrmul), requires_grad=True) # [OIkk] # Get bias. self.bias = Parameter(torch.zeros(1, out_channels, 1, 1), requires_grad=True) # Modulate layer. self.mod = ScaleLinear(hidden_channels, in_channels, bias=True) # [BI] Transform incoming W to style. # Noise scale. if noisy: self.noise_scale = Parameter(torch.zeros(1), requires_grad=True) def forward(self, x, y, noise=None): w = self.weight * self.runtime_coef ww = w[np.newaxis] # [BOIkk] Introduce minibatch dimension. # Modulate. s = self.mod(y) + 1 # [BI] Add bias (initially 1). ww = ww * s[:, np.newaxis, :, np.newaxis, np.newaxis] # [BOIkk] Scale input feature maps. # Demodulate. if self.demodulize: d = torch.rsqrt(ww.pow(2).sum(dim=(2,3,4), keepdim=True) + 1e-8) # [BOIkk] Scaling factor. ww = ww * d # [BOIkk] Scale output feature maps. # Reshape/scale input. B = y.size(0) x = x.view(1, -1, *x.shape[2:]) # Fused [BIhw] =&gt; reshape minibatch to convolution groups [1(BI)hw]. w = ww.view(-1, *ww.shape[2:]) # [(BO)Ikk] # Convolution with optional up/downsampling. if self.up: x = F.interpolate(x, scale_factor=2, mode='bilinear', align_corners=False) x = F.conv2d(x, w, None, self.stride, self.padding, self.dilation, groups=B) # [1(BO)hw] # Reshape/scale output. x = x.view(B, -1, *x.shape[2:]) # [BOhw] # Apply noise and bias if self.noisy: if self.randomize_noise: noise = x.new_empty(B, 1, *x.shape[2:]).normal_() x += noise * self.noise_scale x += self.bias * self.lrmul return x </code></pre></div> <p dir="auto">The above code happens inside a DataParallel module and results are gathered afterward, followed by a loss to minimize pl_lengths.</p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">After some random number of updates, around 3000-8000, the problem occurs and training was terminated.</p> <p dir="auto">In PyTorch 1.3 it shows:</p> <blockquote> <p dir="auto">*** Error in `python3’: double free or corruption (fasttop): 0x00007f9e280c3fe0 ***<br> ======= Backtrace: =========<br> /lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7fa1793127e5]<br> /lib/x86_64-linux-gnu/libc.so.6(+0x8037a)[0x7fa17931b37a]<br> /lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7fa17931f53c]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d820e)[0x7fa13bb9420e]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d82b9)[0x7fa13bb942b9]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d8435)[0x7fa13bb94435]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(_ZN5torch8autograd6Engine17evaluate_functionERNS0_8NodeTaskE+0x1210)[0x7fa13bb8bb50]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(_ZN5torch8autograd6Engine11thread_mainEPNS0_9GraphTaskE+0x1c4)[0x7fa13bb8da04]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so(_ZN5torch8autograd6python12PythonEngine11thread_initEi+0x2a)[0x7fa16a537eda]<br> /opt/conda/lib/python3.6/site-packages/torch/…/…/…/libstdc++.so.6(+0xc819d)[0x7fa169ffb19d]<br> /lib/x86_64-linux-gnu/libpthread.so.0(+0x76ba)[0x7fa17966c6ba]<br> /lib/x86_64-linux-gnu/libc.so.6(clone+0x6d)[0x7fa1793a241d]</p> </blockquote> <p dir="auto">and followed by a long memory map:</p> <blockquote> <p dir="auto">======= Memory map: ========<br> 200000000-200200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 200200000-200400000 ---p 00000000 00:00 0<br> 200400000-200600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 200600000-202600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 202600000-205600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 205600000-206200000 ---p 00000000 00:00 0<br> 206200000-206400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206400000-206600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206600000-206800000 rw-s 206600000 00:06 492 /dev/nvidia-uvm<br> 206800000-206a00000 ---p 00000000 00:00 0<br> 206a00000-206c00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206c00000-206e00000 ---p 00000000 00:00 0<br> 206e00000-207000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 207000000-207200000 ---p 00000000 00:00 0<br> 207200000-207400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 207400000-209400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 209400000-20c400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20c400000-20d000000 ---p 00000000 00:00 0<br> 20d000000-20d200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20d200000-20d400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20d400000-20d600000 rw-s 20d400000 00:06 492 /dev/nvidia-uvm<br> 20d600000-20d800000 ---p 00000000 00:00 0<br> 20d800000-20da00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20da00000-20dc00000 ---p 00000000 00:00 0<br> 20dc00000-20de00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20de00000-20e000000 ---p 00000000 00:00 0<br> 20e000000-20e200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20e200000-210200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 210200000-213200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 213200000-213e00000 ---p 00000000 00:00 0<br> 213e00000-214000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214000000-214200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214200000-214400000 rw-s 214200000 00:06 492 /dev/nvidia-uvm<br> 214400000-214600000 ---p 00000000 00:00 0<br> 214600000-214800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214800000-214a00000 ---p 00000000 00:00 0<br> 214a00000-214c00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214c00000-214e00000 ---p 00000000 00:00 0<br> 214e00000-215000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 215000000-217000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 217000000-21a000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21a000000-21ac00000 ---p 00000000 00:00 0<br> 21ac00000-21ae00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21ae00000-21b000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21b000000-21b200000 rw-s 21b000000 00:06 492 /dev/nvidia-uvm<br> 21b200000-21b400000 ---p 00000000 00:00 0<br> 21b400000-21b600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21b600000-600200000 ---p 00000000 00:00 0<br> 10000000000-10810000000 ---p 00000000 00:00 0<br> 5578812bd000-557881314000 r--p 00000000 08:31 78220892 /opt/conda/bin/python3.6<br> 557881314000-5578814db000 r-xp 00057000 08:31 78220892 /opt/conda/bin/python3.6<br> 5578814db000-557881578000 r--p 0021e000 08:31 78220892 /opt/conda/bin/python3.6<br> 557881579000-55788157c000 r--p 002bb000 08:31 78220892 /opt/conda/bin/python3.6<br> 55788157c000-5578815df000 rw-p 002be000 08:31 78220892 /opt/conda/bin/python3.6<br> 5578815df000-557881610000 rw-p 00000000 00:00 0<br> 557881cc4000-5579eb27e000 rw-p 00000000 00:00 0 [heap]<br> 5579eb27e000-5579eb67e000 rw-p 00000000 00:00 0 [heap]<br> 5579eb67e000-5579ed2c1000 rw-p 00000000 00:00 0 [heap]<br> 5579ed2c1000-5579ee436000 rw-p 00000000 00:00 0 [heap]<br> 5579ee436000-5579ee491000 rw-p 00000000 00:00 0 [heap]<br> 5579ee491000-5579ef3d1000 rw-p 00000000 00:00 0 [heap]<br> 5579ef3d1000-5579effc9000 rw-p 00000000 00:00 0 [heap]<br> 7f98c0000000-7f9bc0a00000 ---p 00000000 00:00 0<br> 7f9bc0a00000-7f9bc0c00000 rw-s 00000000 00:05 1587841 /dev/zero (deleted)<br> 7f9bc0c00000-7f9c00000000 ---p 00000000 00:00 0<br> 7f9c00000000-7f9c03d1e000 rw-p 00000000 00:00 0<br> 7f9c03d1e000-7f9c04000000 ---p 00000000 00:00 0<br> 7f9c04000000-7f9c06fa0000 rw-p 00000000 00:00 0<br> 7f9c06fa0000-7f9c08000000 ---p 00000000 00:00 0<br> 7f9c08000000-7f9cd0000000 ---p 00000000 00:00 0<br> 7f9cd0000000-7f9cd2e22000 rw-p 00000000 00:00 0<br> 7f9cd2e22000-7f9cd4000000 ---p 00000000 00:00 0<br> 7f9cd6000000-7f9dd0a00000 ---p 00000000 00:00 0<br> 7f9dd0a00000-7f9dd0c00000 rw-s 00000000 00:05 1604789 /dev/zero (deleted)<br> 7f9dd0c00000-7f9dd8000000 ---p 00000000 00:00 0<br> 7f9dd8000000-7f9ddaeae000 rw-p 00000000 00:00 0<br> 7f9ddaeae000-7f9ddc000000 ---p 00000000 00:00 0<br> 7f9ddc000000-7f9ddfd11000 rw-p 00000000 00:00 0<br> 7f9ddfd11000-7f9de0000000 ---p 00000000 00:00 0<br> 7f9de0000000-7f9e18000000 ---p 00000000 00:00 0<br> 7f9e18000000-7f9e1814b000 rw-p 00000000 00:00 0<br> 7f9e1814b000-7f9e1c000000 ---p 00000000 00:00 0<br> 7f9e1c000000-7f9e1fd09000 rw-p 00000000 00:00 0<br> 7f9e1fd09000-7f9e20000000 ---p 00000000 00:00 0<br> 7f9e20000000-7f9e20150000 rw-p 00000000 00:00 0<br> 7f9e20150000-7f9e24000000 ---p 00000000 00:00 0<br> 7f9e28000000-7f9e282e5000 rw-p 00000000 00:00 0<br> 7f9e282e5000-7f9e2c000000 ---p 00000000 00:00 0<br> 7f9e2c000000-7f9e2c14b000 rw-p 00000000 00:00 0<br> 7f9e2c14b000-7f9e30000000 ---p 00000000 00:00 0<br> 7f9e30000000-7f9e30022000 rw-p 00000000 00:00 0<br> 7f9e30022000-7f9e34000000 ---p 00000000 00:00 0<br> 7f9e36000000-7f9ef8a00000 ---p 00000000 00:00 0<br> 7f9ef8a00000-7f9ef8c00000 rw-s 00000000 00:05 1582741 /dev/zero (deleted)<br> 7f9ef8c00000-7f9f00000000 ---p 00000000 00:00 0<br> 7f9f00000000-7f9f02e3a000 rw-p 00000000 00:00 0<br> 7f9f02e3a000-7f9f04000000 ---p 00000000 00:00 0<br> 7f9f05000000-7f9f05040000 rw-p 00000000 00:00 0<br> 7f9f06000000-7f9f08000000 ---p 00000000 00:00 0<br> 7f9f08000000-7f9f0bffc000 rw-p 00000000 00:00 0<br> 7f9f0bffc000-7f9f0c000000 ---p 00000000 00:00 0<br> 7f9f0c000000-7f9f0fd27000 rw-p 00000000 00:00 0<br> 7f9f0fd27000-7f9f10000000 ---p 00000000 00:00 0<br> 7f9f10000000-7f9f13ffe000 rw-p 00000000 00:00 0<br> 7f9f13ffe000-7f9f14000000 ---p 00000000 00:00 0<br> 7f9f14000000-7f9f18000000 rw-p 00000000 00:00 0<br> 7f9f18000000-7f9f1bffd000 rw-p 00000000 00:00 0<br> 7f9f1bffd000-7f9f1c000000 ---p 00000000 00:00 0<br> 7f9f1d166000-7f9f1d1a6000 rw-p 00000000 00:00 0<br> 7f9f1d266000-7f9f1d2a6000 rw-p 00000000 00:00 0<br> 7f9f1d2e5000-7f9f1d2e6000 ---p 00000000 00:00 0<br> 7f9f1d2e6000-7f9f1dae6000 rw-p 00000000 00:00 0<br> 7f9f1dae6000-7f9f1daf9000 r-xp 00000000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1daf9000-7f9f1dcf8000 ---p 00013000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dcf8000-7f9f1dcfa000 rw-p 00012000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dcfa000-7f9f1ddf1000 rw-p 00000000 00:00 0<br> 7f9f1ddf1000-7f9f1ddf3000 rw-p 00015000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1ddf3000-7f9f1ddfd000 r-xp 00000000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1ddfd000-7f9f1dffc000 ---p 0000a000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dffc000-7f9f1dffe000 rw-p 00009000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dffe000-7f9f1e000000 rw-p 0000c000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1e000000-7f9f47200000 ---p 00000000 00:00 0<br> 7f9f47200000-7f9f47400000 rw-s 00000000 00:05 1582740 /dev/zero (deleted)<br> 7f9f47400000-7f9f47e00000 ---p 00000000 00:00 0<br> 7f9f47e00000-7f9f48000000 rw-s 00000000 00:05 1590697 /dev/zero (deleted)<br> 7f9f48000000-7f9f48021000 rw-p 00000000 00:00 0<br> 7f9f48021000-7f9f4c000000 ---p 00000000 00:00 0<br> 7f9f4c021000-7f9f4c094000 r-xp 00000000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c094000-7f9f4c294000 ---p 00073000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c294000-7f9f4c29a000 rw-p 00073000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c29a000-7f9f4c29c000 rw-p 00000000 00:00 0<br> 7f9f4c29c000-7f9f4c2f0000 r-xp 00000000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c2f0000-7f9f4c4f0000 ---p 00054000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c4f0000-7f9f4c4f5000 rw-p 00054000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c4f5000-7f9f4c4f6000 rw-p 00000000 00:00 0<br> 7f9f4c4f6000-7f9f4c546000 r-xp 00000000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c546000-7f9f4c746000 ---p 00050000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c746000-7f9f4c74c000 rw-p 00050000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c74c000-7f9f4c74d000 rw-p 00000000 00:00 0<br> 7f9f4c74d000-7f9f4c78a000 r-xp 00000000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c78a000-7f9f4c989000 ---p 0003d000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c989000-7f9f4c98f000 rw-p 0003c000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c98f000-7f9f4c990000 rw-p 00000000 00:00 0<br> 7f9f4c990000-7f9f4c993000 rw-p 00043000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c993000-7f9f50000000 rw-p 00000000 00:00 0<br> 7f9f50000000-7f9f50021000 rw-p 00000000 00:00 0<br> 7f9f50021000-7f9f54000000 ---p 00000000 00:00 0<br> 7f9f54000000-7f9f5d400000 ---p 00000000 00:00 0<br> 7f9f5d400000-7f9f5d600000 rw-s 00000000 00:05 1567619 /dev/zero (deleted)<br> 7f9f5d600000-7f9f5d800000 ---p 00000000 00:00 0<br> 7f9f5d800000-7f9f5da00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f5da00000-7f9f5dc00000 ---p 00000000 00:00 0<br> 7f9f5dc00000-7f9f5de00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1567621688d8946ed5ccfe89eefb60cda478dd70/hovercard" href="https://github.com/pytorch/pytorch/commit/1567621688d8946ed5ccfe89eefb60cda478dd70"><tt>1567621</tt></a> /dev/zero (deleted)<br> 7f9f5de00000-7f9f5e0d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f5e0d6000-7f9f63200000 ---p 00000000 00:00 0<br> 7f9f63200000-7f9f63400000 rw-s 00000000 00:05 1598092 /dev/zero (deleted)<br> 7f9f63400000-7f9f63c00000 ---p 00000000 00:00 0<br> 7f9f63c00000-7f9f63e00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1567618e8e8e2aeee16fbd26886a9b594dbc76f9/hovercard" href="https://github.com/pytorch/pytorch/commit/1567618e8e8e2aeee16fbd26886a9b594dbc76f9"><tt>1567618</tt></a> /dev/zero (deleted)<br> 7f9f63e00000-7f9f64000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f64000000-7f9f64021000 rw-p 00000000 00:00 0<br> 7f9f64021000-7f9f68000000 ---p 00000000 00:00 0<br> 7f9f680b9000-7f9f68117000 r-xp 00000000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68117000-7f9f68317000 ---p 0005e000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68317000-7f9f6831e000 rw-p 0005e000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6831e000-7f9f68320000 rw-p 00066000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68320000-7f9f68354000 r-xp 00000000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68354000-7f9f68554000 ---p 00034000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68554000-7f9f68555000 rw-p 00034000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68555000-7f9f68557000 rw-p 00036000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68557000-7f9f68570000 r-xp 00000000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68570000-7f9f6876f000 ---p 00019000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6876f000-7f9f68774000 rw-p 00018000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68774000-7f9f6878f000 r-xp 00000000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6878f000-7f9f6898e000 ---p 0001b000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6898e000-7f9f68990000 rw-p 0001a000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68990000-7f9f68993000 rw-p 0001d000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68993000-7f9f6c000000 rw-p 00000000 00:00 0<br> 7f9f6c000000-7f9f6c021000 rw-p 00000000 00:00 0<br> 7f9f6c021000-7f9f70000000 ---p 00000000 00:00 0<br> 7f9f700e8000-7f9f70128000 rw-p 00000000 00:00 0<br> 7f9f701e8000-7f9f70219000 r-xp 00000000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70219000-7f9f70418000 ---p 00031000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70418000-7f9f7041a000 rw-p 00030000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7041a000-7f9f7041b000 rw-p 00000000 00:00 0<br> 7f9f7041b000-7f9f7041f000 rw-p 00033000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7041f000-7f9f70439000 r-xp 00000000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70439000-7f9f70639000 ---p 0001a000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70639000-7f9f7063a000 rw-p 0001a000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7063a000-7f9f7063d000 rw-p 0001c000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7063d000-7f9f70653000 r-xp 00000000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70653000-7f9f70852000 ---p 00016000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70852000-7f9f70853000 rw-p 00015000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70853000-7f9f70854000 rw-p 00000000 00:00 0<br> 7f9f70854000-7f9f70857000 rw-p 00017000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70857000-7f9f7085a000 r-xp 00000000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7085a000-7f9f70a5a000 ---p 00003000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a5a000-7f9f70a5b000 rw-p 00003000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a5b000-7f9f70a9d000 r-xp 00000000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a9d000-7f9f70c9c000 ---p 00042000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70c9c000-7f9f70ca1000 rw-p 00041000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70ca1000-7f9f70ca2000 rw-p 00000000 00:00 0<br> 7f9f70ca2000-7f9f70cac000 r-xp 00000000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70cac000-7f9f70eac000 ---p 0000a000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eac000-7f9f70ead000 rw-p 0000a000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70ead000-7f9f70eaf000 rw-p 0000c000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eaf000-7f9f70eb2000 r-xp 00000000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eb2000-7f9f710b1000 ---p 00003000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710b1000-7f9f710b2000 rw-p 00002000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710b2000-7f9f710d9000 r-xp 00000000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710d9000-7f9f712d8000 ---p 00027000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712d8000-7f9f712dc000 rw-p 00026000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712dc000-7f9f712fb000 r-xp 00000000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712fb000-7f9f714fb000 ---p 0001f000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f714fb000-7f9f714fe000 rw-p 0001f000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f714fe000-7f9f71516000 r-xp 00000000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71516000-7f9f71715000 ---p 00018000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71715000-7f9f71719000 rw-p 00017000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71719000-7f9f71737000 r-xp 00000000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71737000-7f9f71937000 ---p 0001e000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71937000-7f9f71938000 rw-p 0001e000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71938000-7f9f7193a000 rw-p 00020000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7193a000-7f9f71946000 r-xp 00000000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71946000-7f9f71b45000 ---p 0000c000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b45000-7f9f71b46000 rw-p 0000b000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b46000-7f9f71b63000 r-xp 00000000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b63000-7f9f71d63000 ---p 0001d000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d63000-7f9f71d64000 rw-p 0001d000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d64000-7f9f71d67000 rw-p 0001f000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d67000-7f9f71def000 r-xp 00000000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71def000-7f9f71fef000 ---p 00088000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71fef000-7f9f71ffa000 rw-p 00088000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71ffa000-7f9f71ffc000 rw-p 00000000 00:00 0<br> 7f9f71ffc000-7f9f72000000 rw-p 00094000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f72000000-7f9f7a000000 ---p 00000000 00:00 0<br> 7f9f7a00a000-7f9f7a035000 r-xp 00000000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a035000-7f9f7a235000 ---p 0002b000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a235000-7f9f7a238000 rw-p 0002b000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a238000-7f9f7a239000 rw-p 00000000 00:00 0<br> 7f9f7a239000-7f9f7a286000 r-xp 00000000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a286000-7f9f7a485000 ---p 0004d000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a485000-7f9f7a487000 rw-p 0004c000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a487000-7f9f7a48a000 rw-p 0004f000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a48a000-7f9f7a4bb000 r-xp 00000000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a4bb000-7f9f7a6bb000 ---p 00031000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6bb000-7f9f7a6c2000 rw-p 00031000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6c2000-7f9f7a6c4000 rw-p 00000000 00:00 0<br> 7f9f7a6c4000-7f9f7a6c7000 rw-p 00039000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6c7000-7f9f7a710000 r-xp 00000000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a710000-7f9f7a910000 ---p 00049000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a910000-7f9f7a914000 rw-p 00049000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a914000-7f9f7a915000 rw-p 00000000 00:00 0<br> 7f9f7a915000-7f9f7a919000 rw-p 0004e000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a919000-7f9f7a922000 r-xp 00000000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a922000-7f9f7ab22000 ---p 00009000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab22000-7f9f7ab23000 rw-p 00009000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab23000-7f9f7ab25000 rw-p 0000b000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab25000-7f9f7ab26000 ---p 00000000 00:00 0<br> 7f9f7ab26000-7f9f7e993000 rw-p 00000000 00:00 0<br> 7f9f7eb8f000-7f9f7ebd8000 r-xp 00000000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ebd8000-7f9f7edd8000 ---p 00049000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7edd8000-7f9f7eddc000 rw-p 00049000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7eddc000-7f9f7edde000 rw-p 00000000 00:00 0<br> 7f9f7edde000-7f9f7edf9000 r-xp 00000000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7edf9000-7f9f7eff9000 ---p 0001b000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7eff9000-7f9f7effa000 rw-p 0001b000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7effa000-7f9f7effb000 ---p 00000000 00:00 0<br> 7f9f7effb000-7f9f7f7fb000 rw-p 00000000 00:00 0<br> 7f9f7f7fb000-7f9f7f7fc000 ---p 00000000 00:00 0<br> 7f9f7f7fc000-7f9f7fffc000 rw-p 00000000 00:00 0<br> 7f9f7fffc000-7f9f7fffd000 ---p 00000000 00:00 0<br> 7f9f7fffd000-7f9f807fd000 rw-p 00000000 00:00 0<br> 7f9f807fd000-7f9f807fe000 ---p 00000000 00:00 0<br> 7f9f807fe000-7f9f80ffe000 rw-p 00000000 00:00 0<br> 7f9f811ff000-7f9f81200000 ---p 00000000 00:00 0<br> 7f9f81200000-7f9f81a00000 rw-p 00000000 00:00 0<br> 7f9f82000000-7f9f83400000 ---p 00000000 00:00 0<br> 7f9f83400000-7f9f83600000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15799072b93f536902524747d2cd07a1f3e78182/hovercard" href="https://github.com/pytorch/pytorch/commit/15799072b93f536902524747d2cd07a1f3e78182"><tt>1579907</tt></a> /dev/zero (deleted)<br> 7f9f83600000-7f9f83800000 ---p 00000000 00:00 0<br> 7f9f83800000-7f9f83a00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f83a00000-7f9f83c00000 ---p 00000000 00:00 0<br> 7f9f83c00000-7f9f83e00000 rw-s 00000000 00:05 1579909 /dev/zero (deleted)<br> 7f9f83e00000-7f9f840d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f840d6000-7f9f89200000 ---p 00000000 00:00 0<br> 7f9f89200000-7f9f89400000 rw-s 00000000 00:05 1603718 /dev/zero (deleted)<br> 7f9f89400000-7f9f89c00000 ---p 00000000 00:00 0<br> 7f9f89c00000-7f9f89e00000 rw-s 00000000 00:05 1579906 /dev/zero (deleted)<br> 7f9f89e00000-7f9f8a000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f8a000000-7f9f8a600000 rw-s 00000000 00:05 1595906 /dev/zero (deleted)<br> 7f9f8a600000-7f9f8ac00000 rw-s 00000000 00:05 1595908 /dev/zero (deleted)<br> 7f9f8ac00000-7f9f92400000 ---p 00000000 00:00 0<br> 7f9f92400000-7f9f92a00000 rw-s 00000000 00:05 1599848 /dev/zero (deleted)<br> 7f9f92a00000-7f9f93000000 rw-s 00000000 00:05 1579899 /dev/zero (deleted)<br> 7f9f93000000-7f9f93600000 rw-s 00000000 00:05 1579901 /dev/zero (deleted)<br> 7f9f93600000-7f9f93800000 ---p 00000000 00:00 0<br> 7f9f93800000-7f9f93e00000 rw-s 00000000 00:05 1589911 /dev/zero (deleted)<br> 7f9f93e00000-7f9f95200000 ---p 00000000 00:00 0<br> 7f9f95200000-7f9f95800000 rw-s 00000000 00:05 1599844 /dev/zero (deleted)<br> 7f9f95800000-7f9f95a00000 ---p 00000000 00:00 0<br> 7f9f95a00000-7f9f96000000 rw-s 00000000 00:05 1599846 /dev/zero (deleted)<br> 7f9f96000000-7f9f96600000 rw-s 00000000 00:05 1599843 /dev/zero (deleted)<br> 7f9f96600000-7f9f96800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f96800000-7f9f96a00000 ---p 00000000 00:00 0<br> 7f9f96a00000-7f9f97000000 rw-s 00000000 00:05 1589908 /dev/zero (deleted)<br> 7f9f97000000-7f9f97200000 rw-s 00000000 00:05 1603717 /dev/zero (deleted)<br> 7f9f97200000-7f9f974d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f974d6000-7f9f97600000 ---p 00000000 00:00 0<br> 7f9f97600000-7f9f97c00000 rw-s 00000000 00:05 1589910 /dev/zero (deleted)<br> 7f9f97c00000-7f9f98000000 ---p 00000000 00:00 0<br> 7f9f98000000-7f9f98021000 rw-p 00000000 00:00 0<br> 7f9f98021000-7f9f9c000000 ---p 00000000 00:00 0<br> 7f9f9c109000-7f9f9c11b000 r-xp 00000000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c11b000-7f9f9c31b000 ---p 00012000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c31b000-7f9f9c320000 rw-p 00012000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c320000-7f9f9c3d5000 r-xp 00000000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c3d5000-7f9f9c5d5000 ---p 000b5000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5d5000-7f9f9c5de000 rw-p 000b5000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5de000-7f9f9c5fb000 r-xp 00000000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5fb000-7f9f9c7fb000 ---p 0001d000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c7fb000-7f9f9c7fc000 rw-p 0001d000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c7fc000-7f9f9c7fd000 rw-p 00000000 00:00 0<br> 7f9f9c7fd000-7f9f9c7fe000 ---p 00000000 00:00 0<br> 7f9f9c7fe000-7f9f9cffe000 rw-p 00000000 00:00 0<br> 7f9f9cffe000-7f9f9cfff000 ---p 00000000 00:00 0<br> 7f9f9cfff000-7f9f9d7ff000 rw-p 00000000 00:00 0<br> 7f9f9d7ff000-7f9f9d800000 ---p 00000000 00:00 0<br> 7f9f9d800000-7f9f9e000000 rw-p 00000000 00:00 0<br> 7f9f9e000000-7f9f9e600000 rw-s 00000000 00:05 1587833 /dev/zero (deleted)<br> 7f9f9e600000-7f9f9e800000 ---p 00000000 00:00 0<br> 7f9f9e800000-7f9f9ee00000 rw-s 00000000 00:05 1599841 /dev/zero (deleted)<br> 7f9f9ee00000-7f9f9f000000 rw-s 00000000 00:05 1589158 /dev/zero (deleted)<br> 7f9f9f000000-7f9f9f200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f9f200000-7f9f9f800000 rw-s 00000000 00:05 1603715 /dev/zero (deleted)<br> 7f9f9f800000-7f9f9fa00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/158915924789c52fc25171cc8a14dc302e3b079f/hovercard" href="https://github.com/pytorch/pytorch/commit/158915924789c52fc25171cc8a14dc302e3b079f"><tt>1589159</tt></a> /dev/zero (deleted)<br> 7f9f9fa00000-7f9fa0000000 ---p 00000000 00:00 0<br> 7f9fa0000000-7f9fa0600000 rw-s 00000000 00:05 1589905 /dev/zero (deleted)<br> 7f9fa0600000-7f9fa0c00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15899061e0ae426b9d90dda2c61ccdf2afd87ce1/hovercard" href="https://github.com/pytorch/pytorch/commit/15899061e0ae426b9d90dda2c61ccdf2afd87ce1"><tt>1589906</tt></a> /dev/zero (deleted)<br> 7f9fa0c00000-7f9fa1200000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/158915414c5efc4ee431566cef1aa94bf40c626a/hovercard" href="https://github.com/pytorch/pytorch/commit/158915414c5efc4ee431566cef1aa94bf40c626a"><tt>1589154</tt></a> /dev/zero (deleted)<br> 7f9fa1200000-7f9fa1800000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589156e1821fd2aecb8ce99f2bdc402db66ff0b/hovercard" href="https://github.com/pytorch/pytorch/commit/1589156e1821fd2aecb8ce99f2bdc402db66ff0b"><tt>1589156</tt></a> /dev/zero (deleted)<br> 7f9fa1800000-7f9fa1e00000 rw-s 00000000 00:05 1580930 /dev/zero (deleted)<br> 7f9fa1e00000-7f9fa2000000 ---p 00000000 00:00 0<br> 7f9fa2000000-7f9fa2600000 rw-s 00000000 00:05 1589895 /dev/zero (deleted)<br> 7f9fa2600000-7f9fa2c00000 rw-s 00000000 00:05 1589897 /dev/zero (deleted)<br> 7f9fa2c00000-7f9fa3200000 rw-s 00000000 00:05 1589899 /dev/zero (deleted)<br> 7f9fa3200000-7f9fa3800000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15899013ebb120d51d685ceeb2aa95820354ad16/hovercard" href="https://github.com/pytorch/pytorch/commit/15899013ebb120d51d685ceeb2aa95820354ad16"><tt>1589901</tt></a> /dev/zero (deleted)<br> 7f9fa3800000-7f9fa3e00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589903aa993f0740d3d394ce9ad3365df821916/hovercard" href="https://github.com/pytorch/pytorch/commit/1589903aa993f0740d3d394ce9ad3365df821916"><tt>1589903</tt></a> /dev/zero (deleted)<br> 7f9fa3e00000-7f9fa4000000 ---p 00000000 00:00 0<br> 7f9fa4000000-7f9fa4021000 rw-p 00000000 00:00 0<br> 7f9fa4021000-7f9fa8000000 ---p 00000000 00:00 0<br> 7f9fa800d000-7f9fa8013000 r-xp 00000000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8013000-7f9fa8213000 ---p 00006000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8213000-7f9fa8214000 rw-p 00006000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8214000-7f9fa83b7000 r-xp 00000000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa83b7000-7f9fa85b7000 ---p 001a3000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85b7000-7f9fa85c1000 rw-p 001a3000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85c1000-7f9fa85ca000 rw-p 00000000 00:00 0<br> 7f9fa85ca000-7f9fa85cf000 rw-p 001ae000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85cf000-7f9fa85f9000 r-xp 00000000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85f9000-7f9fa87f9000 ---p 0002a000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa87f9000-7f9fa87fc000 rw-p 0002a000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa87fc000-7f9fa87fd000 rw-p 00000000 00:00 0<br> 7f9fa87fd000-7f9fa87fe000 ---p 00000000 00:00 0<br> 7f9fa87fe000-7f9fa8ffe000 rw-p 00000000 00:00 0<br> 7f9fa8ffe000-7f9fa8fff000 ---p 00000000 00:00 0<br> 7f9fa8fff000-7f9fa97ff000 rw-p 00000000 00:00 0<br> 7f9fa97ff000-7f9fa9800000 ---p 00000000 00:00 0<br> 7f9fa9800000-7f9faa000000 rw-p 00000000 00:00 0<br> 7f9faa000000-7f9fab400000 ---p 00000000 00:00 0<br> 7f9fab400000-7f9faba00000 rw-s 00000000 00:05 1493310 /dev/zero (deleted)<br> 7f9faba00000-7f9fac000000 rw-s 00000000 00:05 1589892 /dev/zero (deleted)<br> 7f9fac000000-7f9facb90000 rw-p 00000000 00:00 0<br> 7f9facb90000-7f9fb0000000 ---p 00000000 00:00 0<br> 7f9fb0000000-7f9fb098b000 rw-p 00000000 00:00 0<br> 7f9fb098b000-7f9fb4000000 ---p 00000000 00:00 0<br> 7f9fb4000000-7f9fb444b000 rw-p 00000000 00:00 0<br> 7f9fb444b000-7f9fb8000000 ---p 00000000 00:00 0<br> 7f9fb804c000-7f9fb808c000 rw-p 00000000 00:00 0<br> 7f9fb808c000-7f9fb808d000 ---p 00000000 00:00 0<br> 7f9fb808d000-7f9fb888d000 rw-p 00000000 00:00 0<br> 7f9fb888d000-7f9fb888e000 ---p 00000000 00:00 0<br> 7f9fb888e000-7f9fb908e000 rw-p 00000000 00:00 0<br> 7f9fb908e000-7f9fba28c000 r-xp 00000000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba28c000-7f9fba48b000 ---p 011fe000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba48b000-7f9fba70e000 r--p 011fd000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba70e000-7f9fba755000 rw-p 01480000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba755000-7f9fba7fc000 rw-p 00000000 00:00 0<br> 7f9fba7fc000-7f9fba7fd000 rw-p 014c7000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba7fd000-7f9fba7fe000 ---p 00000000 00:00 0<br> 7f9fba7fe000-7f9fbaffe000 rw-p 00000000 00:00 0<br> 7f9fbaffe000-7f9fbafff000 ---p 00000000 00:00 0<br> 7f9fbafff000-7f9fbb7ff000 rw-p 00000000 00:00 0<br> 7f9fbb7ff000-7f9fbb800000 ---p 00000000 00:00 0<br> 7f9fbb800000-7f9fbc000000 rw-p 00000000 00:00 0<br> 7f9fbc000000-7f9fbc3a3000 rw-p 00000000 00:00 0<br> 7f9fbc3a3000-7f9fc0000000 ---p 00000000 00:00 0<br> 7f9fc0000000-7f9fc01eb000 rw-p 00000000 00:00 0<br> 7f9fc01eb000-7f9fc4000000 ---p 00000000 00:00 0<br> 7f9fc4000000-7f9fc4772000 rw-p 00000000 00:00 0<br> 7f9fc4772000-7f9fc8000000 ---p 00000000 00:00 0<br> 7f9fc8000000-7f9fc8722000 rw-p 00000000 00:00 0<br> 7f9fc8722000-7f9fcc000000 ---p 00000000 00:00 0<br> 7f9fcc000000-7f9fcc8ac000 rw-p 00000000 00:00 0<br> 7f9fcc8ac000-7f9fd0000000 ---p 00000000 00:00 0<br> 7f9fd0000000-7f9fd0649000 rw-p 00000000 00:00 0<br> 7f9fd0649000-7f9fd4000000 ---p 00000000 00:00 0<br> 7f9fd4000000-7f9fd467f000 rw-p 00000000 00:00 0<br> 7f9fd467f000-7f9fd8000000 ---p 00000000 00:00 0<br> 7f9fd8000000-7f9fd852f000 rw-p 00000000 00:00 0<br> 7f9fd852f000-7f9fdc000000 ---p 00000000 00:00 0<br> 7f9fdc000000-7f9fdc28d000 rw-p 00000000 00:00 0<br> 7f9fdc28d000-7f9fe0000000 ---p 00000000 00:00 0<br> 7f9fe0000000-7f9fe0ab9000 rw-p 00000000 00:00 0<br> 7f9fe0ab9000-7f9fe4000000 ---p 00000000 00:00 0<br> 7f9fe4000000-7f9fe49c6000 rw-p 00000000 00:00 0<br> 7f9fe49c6000-7f9fe8000000 ---p 00000000 00:00 0<br> 7f9fe8000000-7f9fe83db000 rw-p 00000000 00:00 0<br> 7f9fe83db000-7f9fec000000 ---p 00000000 00:00 0<br> 7f9fec000000-7f9fec917000 rw-p 00000000 00:00 0<br> 7f9fec917000-7f9ff0000000 ---p 00000000 00:00 0<br> 7f9ff0000000-7f9ff052e000 rw-p 00000000 00:00 0<br> 7f9ff052e000-7f9ff4000000 ---p 00000000 00:00 0<br> 7f9ff4000000-7f9ff7800000 ---p 00000000 00:00 0<br> 7f9ff7800000-7f9ff7e00000 rw-s 00000000 00:05 1591824 /dev/zero (deleted)<br> 7f9ff7e00000-7f9ff9600000 ---p 00000000 00:00 0<br> 7f9ff9600000-7f9ff9c00000 rw-s 00000000 00:05 1591827 /dev/zero (deleted)<br> 7f9ff9c00000-7fa002000000 ---p 00000000 00:00 0<br> 7fa00200c000-7fa00210c000 rw-p 00000000 00:00 0<br> 7fa00210c000-7fa002123000 r-xp 00000000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002123000-7fa002323000 ---p 00017000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002323000-7fa002324000 rw-p 00017000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002324000-7fa002325000 ---p 00000000 00:00 0<br> 7fa002325000-7fa002b25000 rw-p 00000000 00:00 0<br> 7fa002b25000-7fa002b26000 ---p 00000000 00:00 0<br> 7fa002b26000-7fa006993000 rw-p 00000000 00:00 0<br> 7fa0069ac000-7fa006b16000 r-xp 00000000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006b16000-7fa006d16000 ---p 0016a000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006d16000-7fa006d2f000 rw-p 0016a000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006d2f000-7fa006ffa000 rw-p 00000000 00:00 0<br> 7fa006ffa000-7fa006ffb000 ---p 00000000 00:00 0<br> 7fa006ffb000-7fa0077fb000 rw-p 00000000 00:00 0<br> 7fa0077fb000-7fa0077fc000 ---p 00000000 00:00 0<br> 7fa0077fc000-7fa007ffc000 rw-p 00000000 00:00 0<br> 7fa007ffc000-7fa007ffd000 ---p 00000000 00:00 0<br> 7fa007ffd000-7fa0087fd000 rw-p 00000000 00:00 0<br> 7fa0087fd000-7fa0087fe000 ---p 00000000 00:00 0<br> 7fa0087fe000-7fa008ffe000 rw-p 00000000 00:00 0<br> 7fa008ffe000-7fa008fff000 ---p 00000000 00:00 0<br> 7fa008fff000-7fa0097ff000 rw-p 00000000 00:00 0<br> 7fa0097ff000-7fa009800000 ---p 00000000 00:00 0<br> 7fa009800000-7fa00a000000 rw-p 00000000 00:00 0<br> 7fa00a000000-7fa011200000 ---p 00000000 00:00 0<br> 7fa011200000-7fa011400000 rw-s 00000000 00:05 1589151 /dev/zero (deleted)<br> 7fa011400000-7fa017a00000 ---p 00000000 00:00 0<br> 7fa017a00000-7fa018000000 rw-s 00000000 00:05 1427137 /dev/zero (deleted)<br> 7fa018000000-7fa01b400000 ---p 00000000 00:00 0<br> 7fa01b400000-7fa01ba00000 rw-s 00000000 00:05 1567613 /dev/zero (deleted)<br> 7fa01ba00000-7fa01c000000 rw-s 00000000 00:05 1604786 /dev/zero (deleted)<br> 7fa01c000000-7fa01c021000 rw-p 00000000 00:00 0<br> 7fa01c021000-7fa020000000 ---p 00000000 00:00 0<br> 7fa020000000-7fa020021000 rw-p 00000000 00:00 0<br> 7fa020021000-7fa024000000 ---p 00000000 00:00 0<br> 7fa024031000-7fa02405a000 r-xp 00000000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02405a000-7fa02425a000 ---p 00029000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02425a000-7fa02425d000 rw-p 00029000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02425d000-7fa02425e000 rw-p 00000000 00:00 0<br> 7fa02425e000-7fa024267000 r-xp 00000000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024267000-7fa024466000 ---p 00009000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024466000-7fa024468000 rw-p 00008000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024468000-7fa026000000 rw-p 00000000 00:00 0<br> 7fa026000000-7fa026400000 ---p 00000000 00:00 0<br> 7fa026400000-7fa026600000 rw-s 00000000 00:05 1589884 /dev/zero (deleted)<br> 7fa026600000-7fa026800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa026800000-7fa026a00000 rw-s 00000000 00:05 1589885 /dev/zero (deleted)<br> 7fa026a00000-7fa026c00000 ---p 00000000 00:00 0<br> 7fa026c00000-7fa026e00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa026e00000-7fa027000000 ---p 00000000 00:00 0<br> 7fa027000000-7fa027200000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589887c5645b703080f1edcac25caefa2fa16f7/hovercard" href="https://github.com/pytorch/pytorch/commit/1589887c5645b703080f1edcac25caefa2fa16f7"><tt>1589887</tt></a> /dev/zero (deleted)<br> 7fa027200000-7fa0274d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa0274d6000-7fa027600000 ---p 00000000 00:00 0<br> 7fa027600000-7fa027c00000 rw-s 00000000 00:05 1589893 /dev/zero (deleted)<br> 7fa027c00000-7fa028000000 ---p 00000000 00:00 0<br> 7fa028000000-7fa028021000 rw-p 00000000 00:00 0<br> 7fa028021000-7fa02c000000 ---p 00000000 00:00 0<br> 7fa02c000000-7fa02c021000 rw-p 00000000 00:00 0<br> 7fa02c021000-7fa030000000 ---p 00000000 00:00 0<br> 7fa030000000-7fa030021000 rw-p 00000000 00:00 0<br> 7fa030021000-7fa034000000 ---p 00000000 00:00 0<br> 7fa034000000-7fa034021000 rw-p 00000000 00:00 0<br> 7fa034021000-7fa038000000 ---p 00000000 00:00 0<br> 7fa038000000-7fa038021000 rw-p 00000000 00:00 0<br> 7fa038021000-7fa03c000000 ---p 00000000 00:00 0<br> 7fa03c01c000-7fa03c05c000 rw-p 00000000 00:00 0<br> 7fa03c05c000-7fa03c147000 r-xp 00000000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c147000-7fa03c346000 ---p 000eb000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c346000-7fa03c34f000 rw-p 000ea000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c34f000-7fa03c352000 rw-p 00000000 00:00 0<br> 7fa03c352000-7fa03c356000 rw-p 000f4000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c356000-7fa03c406000 r-xp 00000000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c406000-7fa03c605000 ---p 000b0000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c605000-7fa03c60f000 rw-p 000af000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c60f000-7fa03c611000 rw-p 00000000 00:00 0<br> 7fa03c611000-7fa03c612000 ---p 00000000 00:00 0<br> 7fa03c612000-7fa03ce12000 rw-p 00000000 00:00 0<br> 7fa03ce12000-7fa03ce13000 ---p 00000000 00:00 0<br> 7fa03ce13000-7fa03d613000 rw-p 00000000 00:00 0<br> 7fa03d613000-7fa03d614000 ---p 00000000 00:00 0<br> 7fa03d614000-7fa03de14000 rw-p 00000000 00:00 0<br> 7fa03de14000-7fa03de15000 ---p 00000000 00:00 0<br> 7fa03de15000-7fa03e615000 rw-p 00000000 00:00 0<br> 7fa03e615000-7fa03edd8000 r-xp 00000000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03edd8000-7fa03efd7000 ---p 007c3000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03efd7000-7fa03eff6000 rw-p 007c2000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03eff6000-7fa03efff000 rw-p 00000000 00:00 0<br> 7fa03f008000-7fa03f1c8000 rw-p 00000000 00:00 0<br> 7fa03f1c8000-7fa03f1d3000 r-xp 00000000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f1d3000-7fa03f3d2000 ---p 0000b000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d2000-7fa03f3d3000 r--p 0000a000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d3000-7fa03f3d4000 rw-p 0000b000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d4000-7fa03f3da000 rw-p 00000000 00:00 0<br> 7fa03f3da000-7fa03f3e5000 r-xp 00000000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f3e5000-7fa03f5e4000 ---p 0000b000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e4000-7fa03f5e5000 r--p 0000a000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e5000-7fa03f5e6000 rw-p 0000b000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e6000-7fa03f5fc000 r-xp 00000000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f5fc000-7fa03f7fb000 ---p 00016000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fb000-7fa03f7fc000 r--p 00015000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fc000-7fa03f7fd000 rw-p 00016000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fd000-7fa03f7ff000 rw-p 00000000 00:00 0<br> 7fa03f7ff000-7fa03f800000 ---p 00000000 00:00 0<br> 7fa03f800000-7fa040000000 rw-p 00000000 00:00 0<br> 7fa040000000-7fa040021000 rw-p 00000000 00:00 0<br> 7fa040021000-7fa044000000 ---p 00000000 00:00 0<br> 7fa044000000-7fa044021000 rw-p 00000000 00:00 0<br> 7fa044021000-7fa048000000 ---p 00000000 00:00 0<br> 7fa048000000-7fa048021000 rw-p 00000000 00:00 0<br> 7fa048021000-7fa04c000000 ---p 00000000 00:00 0<br> 7fa04c000000-7fa04c021000 rw-p 00000000 00:00 0<br> 7fa04c021000-7fa050000000 ---p 00000000 00:00 0<br> 7fa050000000-7fa050021000 rw-p 00000000 00:00 0<br> 7fa050021000-7fa054000000 ---p 00000000 00:00 0<br> 7fa054000000-7fa054021000 rw-p 00000000 00:00 0<br> 7fa054021000-7fa058000000 ---p 00000000 00:00 0<br> 7fa058000000-7fa058021000 rw-p 00000000 00:00 0<br> 7fa058021000-7fa05c000000 ---p 00000000 00:00 0<br> 7fa05c000000-7fa05c021000 rw-p 00000000 00:00 0<br> 7fa05c021000-7fa060000000 ---p 00000000 00:00 0<br> 7fa060000000-7fa060021000 rw-p 00000000 00:00 0<br> 7fa060021000-7fa064000000 ---p 00000000 00:00 0<br> 7fa064000000-7fa064021000 rw-p 00000000 00:00 0<br> 7fa064021000-7fa068000000 ---p 00000000 00:00 0<br> 7fa068000000-7fa068021000 rw-p 00000000 00:00 0<br> 7fa068021000-7fa06c000000 ---p 00000000 00:00 0<br> 7fa06c000000-7fa06c021000 rw-p 00000000 00:00 0<br> 7fa06c021000-7fa070000000 ---p 00000000 00:00 0<br> 7fa070000000-7fa070021000 rw-p 00000000 00:00 0<br> 7fa070021000-7fa074000000 ---p 00000000 00:00 0<br> 7fa074000000-7fa074021000 rw-p 00000000 00:00 0<br> 7fa074021000-7fa078000000 ---p 00000000 00:00 0<br> 7fa078000000-7fa078021000 rw-p 00000000 00:00 0<br> 7fa078021000-7fa07c000000 ---p 00000000 00:00 0<br> 7fa07c000000-7fa07c021000 rw-p 00000000 00:00 0<br> 7fa07c021000-7fa080000000 ---p 00000000 00:00 0<br> 7fa080000000-7fa080001000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080001000-7fa080002000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080002000-7fa080003000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080003000-7fa080004000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080004000-7fa080005000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080005000-7fa080006000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080006000-7fa080007000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080007000-7fa080008000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080008000-7fa080009000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080009000-7fa08000a000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000a000-7fa08000b000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000b000-7fa08000c000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000c000-7fa08000d000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000d000-7fa08000e000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000e000-7fa08000f000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000f000-7fa080010000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080010000-7fa080011000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080011000-7fa080012000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080012000-7fa080013000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080013000-7fa080014000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080014000-7fa080015000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080015000-7fa080016000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080016000-7fa080017000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080017000-7fa080018000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080018000-7fa080019000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080019000-7fa08001a000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001a000-7fa08001b000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001b000-7fa08001c000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001c000-7fa08001d000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001d000-7fa08001e000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001e000-7fa08001f000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001f000-7fa080020000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080020000-7fa080021000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080021000-7fa080022000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080022000-7fa080023000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080023000-7fa080024000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080024000-7fa080025000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080025000-7fa080026000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080026000-7fa080027000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080027000-7fa080028000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080028000-7fa080029000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080029000-7fa08002a000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002a000-7fa08002b000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002b000-7fa08002c000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002c000-7fa08002d000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002d000-7fa08002e000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002e000-7fa08002f000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002f000-7fa080030000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080030000-7fa080031000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080031000-7fa080032000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080032000-7fa080033000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080033000-7fa080034000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080034000-7fa080035000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080035000-7fa080036000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080036000-7fa080037000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080037000-7fa080038000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080038000-7fa080039000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080039000-7fa08003a000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003a000-7fa08003b000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003b000-7fa08003c000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003c000-7fa08003d000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003d000-7fa08003e000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003e000-7fa08003f000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003f000-7fa080040000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080040000-7fa090000000 ---p 00000000 00:00 0<br> 7fa09002d000-7fa0901ed000 rw-p 00000000 00:00 0<br> 7fa0901ed000-7fa0901f5000 r-xp 00000000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0901f5000-7fa0903f4000 ---p 00008000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f4000-7fa0903f5000 r--p 00007000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f5000-7fa0903f6000 rw-p 00008000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f6000-7fa0903f7000 r-xp 00000000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0903f7000-7fa0905f7000 ---p 00001000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f7000-7fa0905f8000 r--p 00001000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f8000-7fa0905f9000 rw-p 00002000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f9000-7fa0905fa000 ---p 00000000 00:00 0<br> 7fa0905fa000-7fa090dfa000 rw-p 00000000 00:00 0<br> 7fa090dfe000-7fa090efe000 rw-p 00000000 00:00 0<br> 7fa090efe000-7fa090eff000 ---p 00000000 00:00 0<br> 7fa090eff000-7fa0916ff000 rw-p 00000000 00:00 0<br> 7fa0916ff000-7fa091700000 ---p 00000000 00:00 0<br> 7fa091700000-7fa091f00000 rw-p 00000000 00:00 0<br> 7fa091f00000-7fa091f01000 ---p 00000000 00:00 0<br> 7fa091f01000-7fa092701000 rw-p 00000000 00:00 0<br> 7fa092701000-7fa092702000 ---p 00000000 00:00 0<br> 7fa092702000-7fa092f02000 rw-p 00000000 00:00 0<br> 7fa092f02000-7fa092f03000 ---p 00000000 00:00 0<br> 7fa092f03000-7fa093703000 rw-p 00000000 00:00 0<br> 7fa093703000-7fa093704000 ---p 00000000 00:00 0<br> 7fa093704000-7fa094004000 rw-p 00000000 00:00 0<br> 7fa094004000-7fa09403f000 r-xp 00000000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa09403f000-7fa09423f000 ---p 0003b000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa09423f000-7fa094244000 rw-p 0003b000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa094244000-7fa094245000 rw-p 00000000 00:00 0<br> 7fa094245000-7fa094273000 r-xp 00000000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094273000-7fa094473000 ---p 0002e000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094473000-7fa094477000 rw-p 0002e000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094477000-7fa094478000 rw-p 00000000 00:00 0<br> 7fa094478000-7fa0944b0000 r-xp 00000000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0944b0000-7fa0946b0000 ---p 00038000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946b0000-7fa0946b6000 rw-p 00038000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946b6000-7fa0946b7000 rw-p 00000000 00:00 0<br> 7fa0946b7000-7fa0946e2000 r-xp 00000000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946e2000-7fa0948e2000 ---p 0002b000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0948e2000-7fa0948e6000 rw-p 0002b000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0948e6000-7fa0948e7000 rw-p 00000000 00:00 0<br> 7fa0948e7000-7fa094908000 r-xp 00000000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094908000-7fa094b07000 ---p 00021000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b07000-7fa094b0c000 rw-p 00020000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b0c000-7fa094b2e000 r-xp 00000000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b2e000-7fa094d2e000 ---p 00022000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d2e000-7fa094d33000 rw-p 00022000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d33000-7fa094d34000 rw-p 00000000 00:00 0<br> 7fa094d34000-7fa094d91000 r-xp 00000000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d91000-7fa094f90000 ---p 0005d000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094f90000-7fa094f99000 rw-p 0005c000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094f99000-7fa094fdb000 rw-p 00000000 00:00 0<br> 7fa094fdb000-7fa095047000 r-xp 00000000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa095047000-7fa095246000 ---p 0006c000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa095246000-7fa09524c000 rw-p 0006b000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa09524c000-7fa09528e000 rw-p 00000000 00:00 0<br> 7fa09528e000-7fa0955d7000 r-xp 00000000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0955d7000-7fa0957d7000 ---p 00349000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0957d7000-7fa0957d8000 rw-p 00349000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0957d8000-7fa095872000 r-xp 00000000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095872000-7fa095a71000 ---p 0009a000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a71000-7fa095a75000 rw-p 00099000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a75000-7fa095a8a000 rw-p 0009e000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a8a000-7fa095ac3000 r-xp 00000000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095ac3000-7fa095cc3000 ---p 00039000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095cc3000-7fa095ccd000 rw-p 00039000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095ccd000-7fa095d15000 r-xp 00000000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095d15000-7fa095f15000 ---p 00048000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095f15000-7fa095f1b000 rw-p 00048000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095f1b000-7fa0b1f1c000 rw-p 00000000 00:00 0<br> 7fa0b1f1c000-7fa0b1f50000 r-xp 00000000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b1f50000-7fa0b2150000 ---p 00034000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b2150000-7fa0b2154000 rw-p 00034000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b2154000-7fa0d6155000 rw-p 00000000 00:00 0<br> 7fa0d6155000-7fa0d6162000 r-xp 00000000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6162000-7fa0d6362000 ---p 0000d000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6362000-7fa0d6365000 rw-p 0000d000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6365000-7fa0d6368000 rw-p 00011000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6368000-7fa0e6368000 rw-p 00000000 00:00 0<br> 7fa0e6368000-7fa0e6486000 r-xp 00000000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e6486000-7fa0e6685000 ---p 0011e000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e6685000-7fa0e66ef000 rw-p 0011d000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e66ef000-7fa0e66f0000 rw-p 00000000 00:00 0<br> 7fa0e66f0000-7fa0e66f9000 rw-p 00188000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e66f9000-7fa0e86f9000 rw-p 00000000 00:00 0<br> 7fa0e86f9000-7fa0e86fa000 ---p 00000000 00:00 0<br> 7fa0e86fa000-7fa0e8efa000 rw-p 00000000 00:00 0<br> 7fa0e8efa000-7fa0e8efb000 ---p 00000000 00:00 0<br> 7fa0e8efb000-7fa0e96fb000 rw-p 00000000 00:00 0<br> 7fa0e96fb000-7fa0e96fc000 ---p 00000000 00:00 0<br> 7fa0e96fc000-7fa0e9efc000 rw-p 00000000 00:00 0<br> 7fa0e9efc000-7fa0e9efd000 ---p 00000000 00:00 0<br> 7fa0e9efd000-7fa0ea6fd000 rw-p 00000000 00:00 0<br> 7fa0ea735000-7fa0ea7f5000 rw-p 00000000 00:00 0<br> 7fa0ea7f5000-7fa0ea7f6000 ---p 00000000 00:00 0<br> 7fa0ea7f6000-7fa0eaff6000 rw-p 00000000 00:00 0<br> 7fa0eaff6000-7fa0eaff7000 ---p 00000000 00:00 0<br> 7fa0eaff7000-7fa0eb7f7000 rw-p 00000000 00:00 0<br> 7fa0eb7f7000-7fa0eb7f8000 ---p 00000000 00:00 0<br> 7fa0eb7f8000-7fa0ebff8000 rw-p 00000000 00:00 0<br> 7fa0ebff8000-7fa0ebff9000 ---p 00000000 00:00 0<br> 7fa0ebff9000-7fa0ec7f9000 rw-p 00000000 00:00 0<br> 7fa0ec7f9000-7fa0ec7fa000 ---p 00000000 00:00 0<br> 7fa0ec7fa000-7fa0ecffa000 rw-p 00000000 00:00 0<br> 7fa0ecffa000-7fa0ecffb000 ---p 00000000 00:00 0<br> 7fa0ecffb000-7fa0ed7fb000 rw-p 00000000 00:00 0<br> 7fa0ed7fb000-7fa0ed7fc000 ---p 00000000 00:00 0<br> 7fa0ed7fc000-7fa0edffc000 rw-p 00000000 00:00 0<br> 7fa0edffc000-7fa0edffd000 ---p 00000000 00:00 0<br> 7fa0edffd000-7fa0ee7fd000 rw-p 00000000 00:00 0<br> 7fa0ee7fd000-7fa0ee7fe000 ---p 00000000 00:00 0<br> 7fa0ee7fe000-7fa0eeffe000 rw-p 00000000 00:00 0<br> 7fa0eeffe000-7fa0eefff000 ---p 00000000 00:00 0<br> 7fa0eefff000-7fa0ef7ff000 rw-p 00000000 00:00 0<br> 7fa0ef7ff000-7fa0ef800000 ---p 00000000 00:00 0<br> 7fa0ef800000-7fa0f0000000 rw-p 00000000 00:00 0<br> 7fa0f0000000-7fa0f0021000 rw-p 00000000 00:00 0<br> 7fa0f0021000-7fa0f4000000 ---p 00000000 00:00 0<br> 7fa0f4011000-7fa0f4211000 rw-s 00000000 00:05 1567620 /dev/zero (deleted)<br> 7fa0f4211000-7fa0f4411000 rw-s 00000000 00:05 1579908 /dev/zero (deleted)<br> 7fa0f4411000-7fa0f4611000 rw-s 00000000 00:05 1589160 /dev/zero (deleted)<br> 7fa0f4611000-7fa0f4612000 ---p 00000000 00:00 0<br> 7fa0f4612000-7fa0f4e12000 rw-p 00000000 00:00 0<br> 7fa0f4e12000-7fa0f4e13000 ---p 00000000 00:00 0<br> 7fa0f4e13000-7fa0f5613000 rw-p 00000000 00:00 0<br> 7fa0f5614000-7fa0f57d4000 rw-p 00000000 00:00 0<br> 7fa0f57fb000-7fa0f58fb000 rw-p 00000000 00:00 0<br> 7fa0f58fb000-7fa0f597b000 rw-p 00000000 00:00 0<br> 7fa0f5994000-7fa0f9f14000 rw-p 00000000 00:00 0<br> 7fa0f9f32000-7fa0f9fb3000 rw-p 00000000 00:00 0<br> 7fa0f9fb3000-7fa0fa1b3000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15898864a975cd31e3acaedd572e68a359ccbc75/hovercard" href="https://github.com/pytorch/pytorch/commit/15898864a975cd31e3acaedd572e68a359ccbc75"><tt>1589886</tt></a> /dev/zero (deleted)<br> 7fa0fa1b3000-7fa0fa5b3000 rw-p 00000000 00:00 0<br> 7fa0fa5b3000-7fa1005b3000 ---p 00000000 00:00 0<br> 7fa1005b3000-7fa10139c000 r-xp 00000000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa10139c000-7fa10159b000 ---p 00de9000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa10159b000-7fa101713000 rw-p 00de8000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa101713000-7fa103723000 rw-p 00000000 00:00 0<br> 7fa103723000-7fa103724000 ---p 00000000 00:00 0<br> 7fa103724000-7fa105f24000 rw-p 00000000 00:00 0<br> 7fa105f24000-7fa105f25000 ---p 00000000 00:00 0<br> 7fa105f25000-7fa10a725000 rw-p 00000000 00:00 0<br> 7fa10a725000-7fa10a726000 r--p 00000000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a726000-7fa10a728000 r-xp 00001000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a728000-7fa10a729000 r--p 00003000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a729000-7fa10a72a000 r--p 00003000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72a000-7fa10a72b000 rw-p 00004000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72b000-7fa10a72e000 r--p 00000000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72e000-7fa10a72f000 r-xp 00003000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72f000-7fa10a730000 r--p 00004000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a730000-7fa10a731000 r--p 00004000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a731000-7fa10a733000 rw-p 00005000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a733000-7fa10a734000 rw-s 00000000 00:15 113 /dev/shm/8WILOt (deleted)<br> 7fa10a734000-7fa10a735000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a735000-7fa10a736000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a736000-7fa10a737000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a737000-7fa10a738000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a738000-7fa10a739000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a739000-7fa10a73a000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73a000-7fa10a73b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73b000-7fa10a73c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73c000-7fa10a73d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73d000-7fa10a73e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73e000-7fa10a73f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73f000-7fa10a740000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a740000-7fa10a741000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a741000-7fa10a742000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a742000-7fa10a743000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a743000-7fa10a744000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a744000-7fa10a745000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a745000-7fa10a746000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a746000-7fa10a747000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a747000-7fa10a748000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a748000-7fa10a749000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a749000-7fa10a74a000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74a000-7fa10a74b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74b000-7fa10a74c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74c000-7fa10a74d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74d000-7fa10a74e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74e000-7fa10a74f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74f000-7fa10a750000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a750000-7fa10a751000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a751000-7fa10a752000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a752000-7fa10a753000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a753000-7fa10a754000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a754000-7fa10a755000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a755000-7fa10a756000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a756000-7fa10a757000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a757000-7fa10a758000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a758000-7fa10ac18000 rw-p 00000000 00:00 0<br> 7fa10ac18000-7fa10acd8000 rw-p 00000000 00:00 0<br> 7fa10acd8000-7fa10acd9000 ---p 00000000 00:00 0<br> 7fa10acd9000-7fa10b4d9000 rw-p 00000000 00:00 0<br> 7fa10b4d9000-7fa10b520000 r-xp 00000000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b520000-7fa10b720000 ---p 00047000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b720000-7fa10b722000 rw-p 00047000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b722000-7fa10b727000 rw-p 00000000 00:00 0<br> 7fa10b727000-7fa10b817000 r-xp 00000000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10b817000-7fa10ba16000 ---p 000f0000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba16000-7fa10ba18000 rw-p 000ef000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba18000-7fa10ba19000 rw-p 00000000 00:00 0<br> 7fa10ba19000-7fa10ba21000 rw-p 000f2000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba21000-7fa10d517000 r-xp 00000000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d517000-7fa10d716000 ---p 01af6000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d716000-7fa10d72f000 rw-p 01af5000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d72f000-7fa10d73a000 rw-p 00000000 00:00 0<br> 7fa10d73a000-7fa10d7b2000 rw-p 01be1000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d7b2000-7fa10d81e000 r-xp 00000000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10d81e000-7fa10da1e000 ---p 0006c000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da1e000-7fa10da44000 rw-p 0006c000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da44000-7fa10da48000 rw-p 00093000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da48000-7fa10dafa000 r-xp 00000000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dafa000-7fa10dcfa000 ---p 000b2000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dcfa000-7fa10dcfc000 rw-p 000b2000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dcfc000-7fa10dd00000 rw-p 00000000 00:00 0<br> 7fa10dd00000-7fa10dd09000 r-xp 00000000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dd09000-7fa10df09000 ---p 00009000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df09000-7fa10df0a000 rw-p 00009000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df0a000-7fa10df19000 r-xp 00000000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df19000-7fa10e119000 ---p 0000f000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e119000-7fa10e11b000 rw-p 0000f000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e11b000-7fa10e3dc000 rw-p 00000000 00:00 0<br> 7fa10e3dc000-7fa10e3e1000 r-xp 00000000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e3e1000-7fa10e5e0000 ---p 00005000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e0000-7fa10e5e1000 rw-p 00004000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e1000-7fa10e5e3000 rw-p 00006000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e3000-7fa10e6a3000 rw-p 00000000 00:00 0<br> 7fa10e6a3000-7fa10e6b0000 r-xp 00000000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e6b0000-7fa10e8b0000 ---p 0000d000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e8b0000-7fa10e8b3000 rw-p 0000d000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e8b3000-7fa10e8b6000 r-xp 00000000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e8b6000-7fa10eab6000 ---p 00003000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eab6000-7fa10eab9000 rw-p 00003000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eab9000-7fa10eacc000 r-xp 00000000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eacc000-7fa10eccc000 ---p 00013000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eccc000-7fa10ecce000 rw-p 00013000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10ecce000-7fa10ed8e000 rw-p 00000000 00:00 0<br> 7fa10ed8e000-7fa10eda4000 r-xp 00000000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eda4000-7fa10efa4000 ---p 00016000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efa4000-7fa10efa7000 rw-p 00016000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efa7000-7fa10efb8000 r-xp 00000000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efb8000-7fa10f1b8000 ---p 00011000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1b8000-7fa10f1ba000 rw-p 00011000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1ba000-7fa10f1bb000 r-xp 00000000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1bb000-7fa10f3bb000 ---p 00001000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3bb000-7fa10f3bc000 rw-p 00001000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3bc000-7fa10f3ee000 r-xp 00000000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3ee000-7fa10f5ee000 ---p 00032000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f5ee000-7fa10f5f2000 rw-p 00032000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f5f2000-7fa10f5f3000 rw-p 00000000 00:00 0<br> 7fa10f5f3000-7fa10f607000 r-xp 00000000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f607000-7fa10f807000 ---p 00014000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f807000-7fa10f808000 rw-p 00014000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f808000-7fa10f88e000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f88e000-7fa10fa8e000 ---p 00086000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fa8e000-7fa10fa95000 rw-p 00086000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fa95000-7fa10fa98000 rw-p 00000000 00:00 0<br> 7fa10fa98000-7fa10faf1000 r-xp 00000000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10faf1000-7fa10fcf1000 ---p 00059000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fcf1000-7fa10fcf6000 rw-p 00059000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fcf6000-7fa10fcf8000 rw-p 00000000 00:00 0<br> 7fa10fcf8000-7fa10fdf3000 r-xp 00000000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fdf3000-7fa10fff3000 ---p 000fb000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fff3000-7fa10fffd000 rw-p 000fb000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fffd000-7fa110000000 rw-p 00000000 00:00 0<br> 7fa110000000-7fa110021000 rw-p 00000000 00:00 0<br> 7fa110021000-7fa114000000 ---p 00000000 00:00 0<br> 7fa114000000-7fa114001000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114001000-7fa114002000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114002000-7fa114003000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114003000-7fa114004000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114004000-7fa114005000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114005000-7fa114006000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114006000-7fa114007000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114007000-7fa1141c7000 rw-p 00000000 00:00 0<br> 7fa1141c7000-7fa1141da000 r-xp 00000000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1141da000-7fa1143d9000 ---p 00013000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1143d9000-7fa1143db000 rw-p 00012000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1143db000-7fa114499000 r-xp 00000000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa114499000-7fa114698000 ---p 000be000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa114698000-7fa1146a0000 rw-p 000bd000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa1146a0000-7fa1147e2000 rw-p 00000000 00:00 0<br> 7fa1147e2000-7fa1147e3000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e3000-7fa1147e4000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e4000-7fa1147e5000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e5000-7fa1147e6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e6000-7fa1147e7000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e7000-7fa1147e8000 rw-s 00000000 00:15 58 /dev/shm/4DKcfO (deleted)<br> 7fa1147e8000-7fa1147e9000 rw-s 00000000 00:15 57 /dev/shm/1bsMfw (deleted)<br> 7fa1147e9000-7fa1147ea000 rw-s 00000000 00:15 56 /dev/shm/sfXmge (deleted)<br> 7fa1147ea000-7fa1147eb000 rw-s 00000000 00:15 55 /dev/shm/AtAZgW (deleted)<br> 7fa1147eb000-7fa1147ec000 rw-s 00000000 00:15 54 /dev/shm/wr57sE (deleted)<br> 7fa1147ec000-7fa1147ed000 rw-s 00000000 00:15 53 /dev/shm/QmChFm (deleted)<br> 7fa1147ed000-7fa1147ee000 rw-s 00000000 00:15 52 /dev/shm/mvltR4 (deleted)<br> 7fa1147ee000-7fa1147ef000 rw-s 00000000 00:15 51 /dev/shm/2sD5eN (deleted)<br> 7fa1147ef000-7fa1147f0000 rw-s 00000000 00:15 50 /dev/shm/o6IICv (deleted)<br> 7fa1147f0000-7fa1147f1000 rw-s 00000000 00:15 49 /dev/shm/gRZn0d (deleted)<br> 7fa1147f1000-7fa1147f2000 rw-s 00000000 00:15 48 /dev/shm/lyUyzW (deleted)<br> 7fa1147f2000-7fa1147f3000 rw-s 00000000 00:15 47 /dev/shm/LfOK8E (deleted)<br> 7fa1147f3000-7fa1147f4000 rw-s 00000000 00:15 46 /dev/shm/lCXYHn (deleted)<br> 7fa1147f4000-7fa1147f5000 rw-s 00000000 00:15 45 /dev/shm/uWMxs6 (deleted)<br> 7fa1147f5000-7fa1147f6000 rw-s 00000000 00:15 44 /dev/shm/jds7cP (deleted)<br> 7fa1147f6000-7fa1147f7000 rw-s 00000000 00:15 43 /dev/shm/QF6IXx (deleted)<br> 7fa1147f7000-7fa1147f8000 rw-s 00000000 00:15 42 /dev/shm/VFKKTg (deleted)<br> 7fa1147f8000-7fa1147f9000 rw-s 00000000 00:15 41 /dev/shm/zmfNPZ (deleted)<br> 7fa1147f9000-7fa1147fa000 rw-s 00000000 00:15 40 /dev/shm/QIFRLI (deleted)<br> 7fa1147fa000-7fa1147fb000 rw-s 00000000 00:15 39 /dev/shm/lZQuTr (deleted)<br> 7fa1147fb000-7fa1147fc000 rw-s 00000000 00:15 38 /dev/shm/vAR80a (deleted)<br> 7fa1147fc000-7fa1147fd000 rw-s 00000000 00:15 37 /dev/shm/AZUO8T (deleted)<br> 7fa1147fd000-7fa1147fe000 rw-s 00000000 00:15 36 /dev/shm/DFEgsD (deleted)<br> 7fa1147fe000-7fa1147ff000 rw-s 00000000 00:15 35 /dev/shm/0ZbJLm (deleted)<br> 7fa1147ff000-7fa114800000 rw-s 00000000 00:15 34 /dev/shm/zbGd55 (deleted)<br> 7fa114800000-7fa114801000 rw-s 00000000 00:15 33 /dev/shm/lt85zP (deleted)<br> 7fa114801000-7fa114802000 rw-s 00000000 00:15 32 /dev/shm/VsiZ4y (deleted)<br> 7fa114802000-7fa114803000 rw-s 00000000 00:15 31 /dev/shm/jOiUzi (deleted)<br> 7fa114803000-7fa114804000 rw-s 00000000 00:15 30 /dev/shm/VGLbg2 (deleted)<br> 7fa114804000-7fa114805000 rw-s 00000000 00:15 29 /dev/shm/02auWL (deleted)<br> 7fa114805000-7fa114806000 rw-s 00000000 00:15 28 /dev/shm/XzLOCv (deleted)<br> 7fa114806000-7fa114807000 rw-s 00000000 00:15 27 /dev/shm/kFmRuf (deleted)<br> 7fa114807000-7fa114808000 rw-s 00000000 00:15 26 /dev/shm/XwHUmZ (deleted)<br> 7fa114808000-7fa114809000 rw-s 00000000 00:15 25 /dev/shm/Jfc0eJ (deleted)<br> 7fa114809000-7fa11480a000 rw-s 00000000 00:15 24 /dev/shm/nqTGit (deleted)<br> 7fa11480a000-7fa11480b000 rw-s 00000000 00:15 23 /dev/shm/njpomd (deleted)<br> 7fa11480b000-7fa11480c000 rw-s 00000000 00:15 22 /dev/shm/uexcqX (deleted)<br> 7fa11480c000-7fa11480d000 rw-s 00000000 00:15 21 /dev/shm/lA9DFH (deleted)<br> 7fa11480d000-7fa11480e000 rw-s 00000000 00:15 20 /dev/shm/lQz6Ur (deleted)<br> 7fa11480e000-7fa11480f000 rw-s 00000000 00:15 19 /dev/shm/AngBac (deleted)<br> 7fa11480f000-7fa114810000 rw-s 00000000 00:15 18 /dev/shm/EtDYCW (deleted)<br> 7fa114810000-7fa114811000 rw-s 00000000 00:15 17 /dev/shm/ARVm5G (deleted)<br> 7fa114811000-7fa114812000 rw-s 00000000 00:15 16 /dev/shm/2lvNxr (deleted)<br> 7fa114812000-7fa114813000 rw-s 00000000 00:15 15 /dev/shm/usDvdc (deleted)<br> 7fa114813000-7fa114814000 rw-s 00000000 00:15 14 /dev/shm/4KJeTW (deleted)<br> 7fa114814000-7fa114815000 rw-s 00000000 00:15 13 /dev/shm/Sea0yH (deleted)<br> 7fa114815000-7fa114816000 rw-s 00000000 00:15 12 /dev/shm/EjHcss (deleted)<br> 7fa114816000-7fa114817000 rw-s 00000000 00:15 11 /dev/shm/SaZpld (deleted)<br> 7fa114817000-7fa114818000 rw-s 00000000 00:15 10 /dev/shm/0UPDeY (deleted)<br> 7fa114818000-7fa114819000 rw-s 00000000 00:15 9 /dev/shm/qkwS7I (deleted)<br> 7fa114819000-7fa11481a000 rw-s 00000000 00:15 8 /dev/shm/sdU70t (deleted)<br> 7fa11481a000-7fa11481b000 rw-s 00000000 00:15 7 /dev/shm/UjOnUe (deleted)<br> 7fa11481b000-7fa11481c000 rw-s 00000000 00:15 6 /dev/shm/MrcENZ (deleted)<br> 7fa11481c000-7fa11481d000 rw-s 00000000 00:15 5 /dev/shm/EvrVGK (deleted)<br> 7fa11481d000-7fa11481e000 rw-s 00000000 00:15 4 /dev/shm/eeAdAv (deleted)<br> 7fa11481e000-7fa11481f000 rw-s 00000000 00:15 3 /dev/shm/cbCwtg (deleted)<br> 7fa11481f000-7fa114820000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114820000-7fa114821000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114821000-7fa114822000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114822000-7fa114a22000 rw-p 00000000 00:00 0<br> 7fa114a22000-7fa114a5c000 r-xp 00000000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114a5c000-7fa114c5c000 ---p 0003a000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114c5c000-7fa114c5d000 rw-p 0003a000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114c5d000-7fa114d9e000 rw-p 00000000 00:00 0<br> 7fa114d9e000-7fa114da2000 r-xp 00000000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114da2000-7fa114fa1000 ---p 00004000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa1000-7fa114fa2000 r--p 00003000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa2000-7fa114fa3000 rw-p 00004000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa3000-7fa115263000 rw-p 00000000 00:00 0<br> 7fa115263000-7fa115290000 r-xp 00000000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115290000-7fa115490000 ---p 0002d000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115490000-7fa115491000 rw-p 0002d000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115491000-7fa115512000 rw-p 00000000 00:00 0<br> 7fa115512000-7fa11554e000 r-xp 00000000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa11554e000-7fa11574d000 ---p 0003c000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa11574d000-7fa115750000 rw-p 0003b000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa115750000-7fa115824000 r-xp 00000000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115824000-7fa115a24000 ---p 000d4000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115a24000-7fa115a2b000 rw-p 000d4000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115a2b000-7fa115c6c000 rw-p 00000000 00:00 0<br> 7fa115c6c000-7fa115ca9000 r-xp 00000000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115ca9000-7fa115ea9000 ---p 0003d000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115ea9000-7fa115eae000 rw-p 0003d000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eae000-7fa115eaf000 rw-p 00000000 00:00 0<br> 7fa115eaf000-7fa115eb1000 r--p 00000000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb1000-7fa115eb4000 r-xp 00002000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb4000-7fa115eb5000 r--p 00005000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb5000-7fa115eb6000 ---p 00006000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb6000-7fa115eb7000 r--p 00006000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb7000-7fa115eb8000 rw-p 00007000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb8000-7fa115ef8000 rw-p 00000000 00:00 0<br> 7fa115ef8000-7fa115efb000 r--p 00000000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115efb000-7fa115f00000 r-xp 00003000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115f00000-7fa115fba000 r--p 00008000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fba000-7fa115fbb000 r--p 000c1000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fbb000-7fa115fd6000 rw-p 000c2000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fd6000-7fa116016000 rw-p 00000000 00:00 0<br> 7fa116016000-7fa116056000 r-xp 00000000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa116056000-7fa116256000 ---p 00040000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa116256000-7fa11625b000 rw-p 00040000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa11625b000-7fa11629c000 rw-p 00000000 00:00 0<br> 7fa11629c000-7fa1162a5000 r-xp 00000000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1162a5000-7fa1164a4000 ---p 00009000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1164a4000-7fa1164a6000 rw-p 00008000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1164a6000-7fa116626000 rw-p 00000000 00:00 0<br> 7fa116626000-7fa116700000 r-xp 00000000 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116700000-7fa116900000 ---p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d/hovercard" href="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d"><tt>000da00</tt></a> 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116900000-7fa116907000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d/hovercard" href="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d"><tt>000da00</tt></a> 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116907000-7fa1169c9000 rw-p 00000000 00:00 0<br> 7fa1169c9000-7fa116c57000 r-xp 00000000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116c57000-7fa116e57000 ---p 0028e000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116e57000-7fa116e60000 rw-p 0028e000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116e60000-7fa116e66000 rw-p 00000000 00:00 0<br> 7fa116e66000-7fa116f00000 r-xp 00000000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa116f00000-7fa1170ff000 ---p 0009a000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa1170ff000-7fa117108000 rw-p 00099000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa117108000-7fa11724b000 rw-p 00000000 00:00 0<br> 7fa11724b000-7fa11727f000 r-xp 00000000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa11727f000-7fa11747f000 ---p 00034000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa11747f000-7fa117483000 rw-p 00034000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa117483000-7fa1174c4000 rw-p 00000000 00:00 0<br> 7fa1174c4000-7fa1174ee000 r-xp 00000000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1174ee000-7fa1176ed000 ---p 0002a000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176ed000-7fa1176f0000 rw-p 00029000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176f0000-7fa1176f1000 rw-p 00000000 00:00 0<br> 7fa1176f1000-7fa1176fe000 r-xp 00000000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176fe000-7fa1178fe000 ---p 0000d000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa1178fe000-7fa117900000 rw-p 0000d000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa117900000-7fa117940000 rw-p 00000000 00:00 0<br> 7fa117940000-7fa117b71000 r-xp 00000000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117b71000-7fa117d71000 ---p 00231000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117d71000-7fa117d83000 rw-p 00231000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117d83000-7fa117dc7000 rw-p 00000000 00:00 0<br> 7fa117dc7000-7fa117f71000 r-xp 00000000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa117f71000-7fa118170000 ---p 001aa000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa118170000-7fa11817c000 rw-p 001a9000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa11817c000-7fa118182000 rw-p 00000000 00:00 0<br> 7fa118182000-7fa1181d0000 r-xp 00000000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1181d0000-7fa1183cf000 ---p 0004e000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1183cf000-7fa1183d5000 rw-p 0004d000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1183d5000-7fa118416000 rw-p 00000000 00:00 0<br> 7fa118416000-7fa1184a2000 r-xp 00000000 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1184a2000-7fa1186a1000 ---p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0008c00036a2612849e4639ad5efb7c5e1ecae1f/hovercard" href="https://github.com/pytorch/pytorch/commit/0008c00036a2612849e4639ad5efb7c5e1ecae1f"><tt>0008c00</tt></a> 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186a1000-7fa1186ae000 rw-p 0008b000 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186ae000-7fa1186b1000 rw-p 00000000 00:00 0<br> 7fa1186b1000-7fa1186c3000 r-xp 00000000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186c3000-7fa1188c2000 ---p 00012000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1188c2000-7fa1188c4000 rw-p 00011000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1188c4000-7fa1188c5000 rw-p 00000000 00:00 0<br> 7fa1188c5000-7fa118954000 r-xp 00000000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118954000-7fa118b53000 ---p 0008f000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b53000-7fa118b5f000 rw-p 0008e000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b5f000-7fa118b61000 rw-p 00000000 00:00 0<br> 7fa118b61000-7fa118b9e000 r-xp 00000000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b9e000-7fa118d9e000 ---p 0003d000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118d9e000-7fa118da3000 rw-p 0003d000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118da3000-7fa118da4000 rw-p 00000000 00:00 0<br> 7fa118da4000-7fa118dee000 r-xp 00000000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118dee000-7fa118fee000 ---p 0004a000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118fee000-7fa118ff6000 rw-p 0004a000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118ff6000-7fa118ff8000 rw-p 00000000 00:00 0<br> 7fa118ff8000-7fa119018000 r-xp 00000000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa119018000-7fa119217000 ---p 00020000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa119217000-7fa11921a000 rw-p 0001f000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa11921a000-7fa11921b000 rw-p 00000000 00:00 0<br> 7fa11921b000-7fa11928a000 r-xp 00000000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa11928a000-7fa119489000 ---p 0006f000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa119489000-7fa119492000 rw-p 0006e000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa119492000-7fa1194d4000 rw-p 00000000 00:00 0<br> 7fa1194d4000-7fa11953c000 r-xp 00000000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11953c000-7fa11973c000 ---p 00068000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11973c000-7fa119744000 rw-p 00068000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa119744000-7fa119746000 rw-p 00000000 00:00 0<br> 7fa119746000-7fa119786000 r-xp 00000000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119786000-7fa119985000 ---p 00040000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119985000-7fa119989000 rw-p 0003f000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119989000-7fa11998b000 rw-p 00000000 00:00 0<br> 7fa11998b000-7fa1199f4000 r-xp 00000000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1199f4000-7fa119bf3000 ---p 00069000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa119bf3000-7fa119bfb000 rw-p 00068000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa119bfb000-7fa119c3d000 rw-p 00000000 00:00 0<br> 7fa119c3d000-7fa119c4a000 r-xp 00000000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119c4a000-7fa119e49000 ---p 0000d000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119e49000-7fa119e4c000 rw-p 0000c000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119e4c000-7fa119eb2000 r-xp 00000000 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa119eb2000-7fa11a0b1000 ---p 00066000 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a0b1000-7fa11a0ba000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/00065000969fc05a19712cf13243a9d9e270dd7b/hovercard" href="https://github.com/pytorch/pytorch/commit/00065000969fc05a19712cf13243a9d9e270dd7b"><tt>0006500</tt></a> 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a0ba000-7fa11a0bd000 rw-p 00000000 00:00 0<br> 7fa11a0bd000-7fa11a133000 r-xp 00000000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a133000-7fa11a333000 ---p 00076000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a333000-7fa11a33b000 rw-p 00076000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a33b000-7fa11a33e000 rw-p 00000000 00:00 0<br> 7fa11a33e000-7fa11a38c000 r-xp 00000000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a38c000-7fa11a58b000 ---p 0004e000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a58b000-7fa11a590000 rw-p 0004d000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a590000-7fa11a5d1000 rw-p 00000000 00:00 0<br> 7fa11a5d1000-7fa11a609000 r-xp 00000000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a609000-7fa11a809000 ---p 00038000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a809000-7fa11a80d000 rw-p 00038000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a80d000-7fa11a80e000 rw-p 00000000 00:00 0<br> 7fa11a80e000-7fa11a819000 r-xp 00000000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a819000-7fa11aa19000 ---p 0000b000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa19000-7fa11aa1a000 rw-p 0000b000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa1a000-7fa11aa45000 r-xp 00000000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa45000-7fa11ac45000 ---p 0002b000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac45000-7fa11ac4a000 rw-p 0002b000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac4a000-7fa11ac4b000 rw-p 00000000 00:00 0<br> 7fa11ac4b000-7fa11ac8c000 r-xp 00000000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac8c000-7fa11ae8b000 ---p 00041000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ae8b000-7fa11ae90000 rw-p 00040000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ae90000-7fa11ae91000 rw-p 00000000 00:00 0<br> 7fa11ae91000-7fa11aed9000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aed9000-7fa11b0d9000 ---p 00048000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b0d9000-7fa11b0de000 rw-p 00048000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b0de000-7fa11b11f000 rw-p 00000000 00:00 0<br> 7fa11b11f000-7fa11b166000 r--p 00000000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b166000-7fa11b1c7000 r-xp 00047000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b1c7000-7fa11b2c7000 r--p 000a8000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2c7000-7fa11b2c8000 r--p 001a7000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2c8000-7fa11b2cc000 rw-p 001a8000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2cc000-7fa11b30d000 rw-p 00000000 00:00 0<br> 7fa11b30d000-7fa11b30f000 r--p 00000000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b30f000-7fa11b31d000 r-xp 00002000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b31d000-7fa11b31f000 r--p 00010000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b31f000-7fa11b320000 r--p 00011000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b320000-7fa11b321000 rw-p 00012000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b321000-7fa11b328000 r--p 00000000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b328000-7fa11b354000 r-xp 00007000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b354000-7fa11b35f000 r--p 00033000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b35f000-7fa11b362000 r--p 0003d000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b362000-7fa11b364000 rw-p 00040000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b364000-7fa11b368000 r--p 00000000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b368000-7fa11b371000 r-xp 00004000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b371000-7fa11b374000 r--p 0000d000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b374000-7fa11b375000 r--p 0000f000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b375000-7fa11b377000 rw-p 00010000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b377000-7fa11b4b7000 rw-p 00000000 00:00 0<br> 7fa11b4b7000-7fa11b4c1000 r--p 00000000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b4c1000-7fa11b54d000 r-xp 0000a000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b54d000-7fa11b559000 r--p 00096000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b559000-7fa11b55a000 ---p 000a2000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55a000-7fa11b55b000 r--p 000a2000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55b000-7fa11b55c000 rw-p 000a3000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55c000-7fa11b566000 r--p 00000000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b566000-7fa11b5a9000 r-xp 0000a000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5a9000-7fa11b5d4000 r--p 0004d000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d4000-7fa11b5d5000 ---p 00078000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d5000-7fa11b5d9000 r--p 00078000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d9000-7fa11b5da000 rw-p 0007c000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5da000-7fa11b615000 r-xp 00000000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b615000-7fa11b814000 ---p 0003b000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b814000-7fa11b815000 r--p 0003a000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b815000-7fa11b816000 rw-p 0003b000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b816000-7fa11b828000 r--p 00000000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b828000-7fa11b876000 r-xp 00012000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b876000-7fa11b884000 r--p 00060000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b884000-7fa11b885000 ---p 0006e000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b885000-7fa11b889000 r--p 0006e000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b889000-7fa11b88c000 rw-p 00072000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b88c000-7fa11b94d000 rw-p 00000000 00:00 0<br> 7fa11b94d000-7fa11b94e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa11b94e000-7fa11bb8e000 rw-p 00000000 00:00 0<br> 7fa11bb8e000-7fa11bbad000 r--p 00000000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bbad000-7fa11bbf7000 r-xp 0001f000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bbf7000-7fa11bc10000 r--p 00069000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc10000-7fa11bc11000 ---p 00082000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc11000-7fa11bc1a000 r--p 00082000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc1a000-7fa11bc1e000 rw-p 0008b000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc1e000-7fa11bc28000 r--p 00000000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc28000-7fa11bc33000 r-xp 0000a000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc33000-7fa11bc39000 r--p 00015000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc39000-7fa11bc3a000 ---p 0001b000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc3a000-7fa11bc3b000 r--p 0001b000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc3b000-7fa11bc40000 rw-p 0001c000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc40000-7fa11bd80000 rw-p 00000000 00:00 0<br> 7fa11bd80000-7fa11bd82000 r--p 00000000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd82000-7fa11bd83000 r-xp 00002000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd83000-7fa11bd84000 r--p 00003000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd84000-7fa11bd85000 r--p 00003000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd85000-7fa11bd86000 rw-p 00004000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd86000-7fa11c0c6000 rw-p 00000000 00:00 0<br> 7fa11c0c6000-7fa11c0ca000 r--p 00000000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0ca000-7fa11c0d2000 r-xp 00004000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d2000-7fa11c0d5000 r--p 0000c000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d5000-7fa11c0d6000 r--p 0000e000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d6000-7fa11c0d9000 rw-p 0000f000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d9000-7fa11c0de000 r--p 00000000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0de000-7fa11c0ec000 r-xp 00005000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0ec000-7fa11c0f1000 r--p 00013000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f1000-7fa11c0f2000 r--p 00017000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f2000-7fa11c0f7000 rw-p 00018000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f7000-7fa11c447000 rw-p 00000000 00:00 0<br> 7fa11c447000-7fa11e31b000 r-xp 00000000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e31b000-7fa11e51b000 ---p 01ed4000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e51b000-7fa11e58f000 rw-p 01ed4000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e58f000-7fa11e598000 rw-p 00000000 00:00 0<br> 7fa11e598000-7fa11e59a000 rw-p 01f48000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e59a000-7fa1259f5000 r-xp 00000000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa1259f5000-7fa125bf5000 ---p 0745b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125bf5000-7fa125c04000 rw-p 0745b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125c04000-7fa125c0b000 rw-p 00000000 00:00 0<br> 7fa125c0b000-7fa125c11000 rw-p 0746b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125c11000-7fa125c1b000 r--p 00000000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c1b000-7fa125c32000 r-xp 0000a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c32000-7fa125c3b000 r--p 00021000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3b000-7fa125c3c000 ---p 0002a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3c000-7fa125c3d000 r--p 0002a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3d000-7fa125c3e000 rw-p 0002b000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3e000-7fa12979f000 r-xp 00000000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa12979f000-7fa12999e000 ---p 03b61000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa12999e000-7fa1299ac000 rw-p 03b60000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa1299ac000-7fa1299b6000 rw-p 00000000 00:00 0<br> 7fa1299b6000-7fa1299b9000 rw-p 03b6f000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa1299b9000-7fa12bef5000 r-xp 00000000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12bef5000-7fa12c0f4000 ---p 0253c000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12c0f4000-7fa12d4c4000 rw-p 0253b000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12d4c4000-7fa12da1a000 rw-p 00000000 00:00 0<br> 7fa12da1a000-7fa12da1b000 rw-p 0390b000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12da1b000-7fa135dd3000 r-xp 00000000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135dd3000-7fa135fd3000 ---p 083b8000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135fd3000-7fa135fe5000 rw-p 083b8000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135fe5000-7fa13605d000 rw-p 00000000 00:00 0<br> 7fa13605d000-7fa13605f000 rw-p 083ca000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa13605f000-7fa1360d6000 r-xp 00000000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1360d6000-7fa1362d6000 ---p 00077000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362d6000-7fa1362da000 rw-p 00077000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362da000-7fa1362db000 rw-p 00000000 00:00 0<br> 7fa1362db000-7fa1362de000 rw-p 0007c000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362de000-7fa1362e6000 r-xp 00000000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1362e6000-7fa1364e6000 ---p 00008000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e6000-7fa1364e7000 rw-p 00008000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e7000-7fa1364e8000 rw-p 0000a000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e8000-7fa136531000 r-xp 00000000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136531000-7fa136731000 ---p 00049000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136731000-7fa136732000 r--p 00049000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136732000-7fa136733000 rw-p 0004a000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136733000-7fa136734000 rw-p 00000000 00:00 0<br> 7fa136734000-7fa13673e000 rw-p 00063000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa13673e000-7fa136764000 r-xp 00000000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136764000-7fa136963000 ---p 00026000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136963000-7fa136964000 r--p 00025000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136964000-7fa136969000 rw-p 00026000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136969000-7fa137fa1000 r-xp 00000000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa137fa1000-7fa1381a0000 ---p 01638000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381a0000-7fa1381a4000 r--p 01637000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381a4000-7fa1381bc000 rw-p 0163b000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381bc000-7fa169a60000 r-xp 00000000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169a60000-7fa169c5f000 ---p 318a4000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169c5f000-7fa169da3000 r--p 318a3000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169da3000-7fa169de4000 rw-p 319e7000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169de4000-7fa169f33000 rw-p 00000000 00:00 0<br> 7fa169f33000-7fa169fd5000 r--p 00000000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa169fd5000-7fa16a054000 r-xp 000a2000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a054000-7fa16a095000 r--p 00121000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a095000-7fa16a0a0000 r--p 00161000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a0a0000-7fa16a0a4000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0016c0003af25bece974a7717c23d0b7ab0be55c/hovercard" href="https://github.com/pytorch/pytorch/commit/0016c0003af25bece974a7717c23d0b7ab0be55c"><tt>0016c00</tt></a> 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a0a4000-7fa16a0a7000 rw-p 00000000 00:00 0<br> 7fa16a0a7000-7fa16ab20000 r-xp 00000000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ab20000-7fa16ad20000 ---p 00a79000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad20000-7fa16ad31000 r--p 00a79000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad31000-7fa16ad4d000 rw-p 00a8a000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad4d000-7fa16ad9f000 rw-p 00000000 00:00 0<br> 7fa16ad9f000-7fa16ada7000 r-xp 00000000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16ada7000-7fa16afa7000 ---p 00008000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa7000-7fa16afa8000 r--p 00008000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa8000-7fa16afa9000 rw-p 00009000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa9000-7fa16afaa000 r--p 00000000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afaa000-7fa16afab000 r-xp 00001000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afab000-7fa16afac000 r--p 00002000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afac000-7fa16afad000 r--p 00002000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afad000-7fa16afae000 rw-p 00003000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afae000-7fa16bb38000 r-xp 00000000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bb38000-7fa16bd37000 ---p 00b8a000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd37000-7fa16bd3a000 r--p 00b89000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd3a000-7fa16bd4f000 rw-p 00b8c000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd4f000-7fa16bd50000 rw-p 00000000 00:00 0<br> 7fa16bd50000-7fa16f229000 r-xp 00000000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f229000-7fa16f429000 ---p 034d9000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f429000-7fa16f430000 r--p 034d9000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f430000-7fa16f43e000 rw-p 034e0000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f43e000-7fa16f445000 rw-p 00000000 00:00 0<br> 7fa16f445000-7fa16fda4000 r-xp 00000000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16fda4000-7fa16ffa4000 ---p 0095f000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffa4000-7fa16ffa5000 r--p 0095f000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffa5000-7fa16ffb8000 rw-p 00960000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffb8000-7fa16ffbd000 rw-p 00000000 00:00 0<br> 7fa16ffbd000-7fa172026000 r-xp 00000000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172026000-7fa172226000 ---p 02069000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172226000-7fa17222a000 r--p 02069000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa17222a000-7fa172490000 rw-p 0206d000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172490000-7fa172499000 rw-p 00000000 00:00 0<br> 7fa172499000-7fa176513000 r-xp 00000000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176513000-7fa176712000 ---p 0407a000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176712000-7fa176719000 r--p 04079000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176719000-7fa176747000 rw-p 04080000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176747000-7fa1768ae000 rw-p 00000000 00:00 0<br> 7fa1768ae000-7fa1768bb000 r--p 00000000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa1768bb000-7fa176914000 r-xp 0000d000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176914000-7fa176940000 r--p 00066000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176940000-7fa176941000 ---p 00092000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176941000-7fa176942000 r--p 00092000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176942000-7fa176964000 rw-p 00093000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176964000-7fa176966000 rw-p 00000000 00:00 0<br> 7fa176966000-7fa17696a000 r--p 00000000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17696a000-7fa176971000 r-xp 00004000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176971000-7fa176974000 r--p 0000b000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176974000-7fa176975000 r--p 0000d000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176975000-7fa176976000 rw-p 0000e000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176976000-7fa17697a000 r--p 00000000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17697a000-7fa176984000 r-xp 00004000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176984000-7fa176987000 r--p 0000e000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176987000-7fa176988000 r--p 00010000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176988000-7fa17698a000 rw-p 00011000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17698a000-7fa17698e000 r--p 00000000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17698e000-7fa17699b000 r-xp 00004000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17699b000-7fa17699f000 r--p 00011000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17699f000-7fa1769a0000 r--p 00014000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a0000-7fa1769a2000 rw-p 00015000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a2000-7fa1769a9000 r--p 00000000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a9000-7fa1769c9000 r-xp 00007000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769c9000-7fa1769d0000 r--p 00027000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d0000-7fa1769d1000 r--p 0002d000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d1000-7fa1769d4000 rw-p 0002e000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d4000-7fa1769d5000 rw-p 00000000 00:00 0<br> 7fa1769d5000-7fa1769d7000 r--p 00000000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d7000-7fa1769d9000 r-xp 00002000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d9000-7fa1769da000 r--p 00004000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769da000-7fa1769db000 r--p 00004000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769db000-7fa1769dc000 rw-p 00005000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769dc000-7fa1769dd000 r--p 00000000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769dd000-7fa1769de000 r-xp 00001000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769de000-7fa1769df000 r--p 00002000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769df000-7fa1769e0000 r--p 00002000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e0000-7fa1769e1000 rw-p 00003000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e1000-7fa1769e4000 r--p 00000000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e4000-7fa1769f7000 r-xp 00003000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f7000-7fa1769f8000 r--p 00016000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f8000-7fa1769f9000 ---p 00017000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f9000-7fa1769fa000 r--p 00017000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fa000-7fa1769fc000 rw-p 00018000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fc000-7fa1769fe000 r--p 00000000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fe000-7fa176a08000 r-xp 00002000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a08000-7fa176a09000 r--p 0000c000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a09000-7fa176a0a000 ---p 0000d000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0a000-7fa176a0b000 r--p 0000d000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0b000-7fa176a0c000 rw-p 0000e000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0c000-7fa176a87000 r--p 00000000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176a87000-7fa176bfd000 r-xp 0007b000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176bfd000-7fa176c88000 r--p 001f1000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176c88000-7fa176c89000 ---p 0027c000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176c89000-7fa176cb4000 r--p 0027c000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176cb4000-7fa176cb6000 rw-p 002a7000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176cb6000-7fa176cba000 rw-p 00000000 00:00 0<br> 7fa176cba000-7fa176cbc000 r--p 00000000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cbc000-7fa176cbf000 r-xp 00002000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cbf000-7fa176cc0000 r--p 00005000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc0000-7fa176cc1000 ---p 00006000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc1000-7fa176cc2000 r--p 00006000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc2000-7fa176cc3000 rw-p 00007000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc3000-7fa176cc5000 r--p 00000000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc5000-7fa176cc8000 r-xp 00002000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc8000-7fa176cca000 r--p 00005000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cca000-7fa176ccb000 r--p 00006000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ccb000-7fa176ccc000 rw-p 00007000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ccc000-7fa176cd3000 r--p 00000000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cd3000-7fa176ced000 r-xp 00007000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ced000-7fa176cf5000 r--p 00021000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cf5000-7fa176cf6000 r--p 00028000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cf6000-7fa176cfb000 rw-p 00029000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cfb000-7fa176cff000 r--p 00000000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cff000-7fa176d0f000 r-xp 00004000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d0f000-7fa176d17000 r--p 00014000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d17000-7fa176d18000 ---p 0001c000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d18000-7fa176d19000 r--p 0001c000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d19000-7fa176d1b000 rw-p 0001d000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d1b000-7fa176d20000 r--p 00000000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d20000-7fa176d6c000 r-xp 00005000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d6c000-7fa176d75000 r--p 00051000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d75000-7fa176d76000 r--p 00059000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d76000-7fa176d77000 rw-p 0005a000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d77000-7fa176db8000 rw-p 00000000 00:00 0<br> 7fa176db8000-7fa176dbc000 r--p 00000000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176dbc000-7fa176ded000 r-xp 00004000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ded000-7fa176df0000 r--p 00035000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df0000-7fa176df1000 ---p 00038000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df1000-7fa176df2000 r--p 00038000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df2000-7fa176df4000 rw-p 00039000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df4000-7fa176e00000 r--p 00000000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e00000-7fa176e48000 r-xp 0000c000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e48000-7fa176e71000 r--p 00054000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e71000-7fa176e72000 ---p 0007d000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e72000-7fa176e73000 r--p 0007d000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e73000-7fa176e96000 rw-p 0007e000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e96000-7fa176ed8000 rw-p 00000000 00:00 0<br> 7fa176ed8000-7fa176ee0000 r--p 00000000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ee0000-7fa176f24000 r-xp 00008000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f24000-7fa176f2a000 r--p 0004c000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2a000-7fa176f2b000 ---p 00052000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2b000-7fa176f2c000 r--p 00052000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2c000-7fa176f30000 rw-p 00053000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f30000-7fa176f31000 rw-p 00000000 00:00 0<br> 7fa176f31000-7fa176f32000 r--p 00000000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f32000-7fa176f44000 r-xp 00001000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f44000-7fa176f46000 r--p 00013000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f46000-7fa176f47000 r--p 00014000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f47000-7fa176f48000 rw-p 00015000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f48000-7fa176f88000 rw-p 00000000 00:00 0<br> 7fa176f88000-7fa176f8f000 r--p 00000000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f8f000-7fa176fc3000 r-xp 00007000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fc3000-7fa176fcd000 r--p 0003b000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fcd000-7fa176fce000 r--p 00044000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fce000-7fa176fd6000 rw-p 00045000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd6000-7fa176fd8000 r--p 00000000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd8000-7fa176fd9000 r-xp 00002000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd9000-7fa176fda000 r--p 00003000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fda000-7fa176fdb000 r--p 00003000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fdb000-7fa176fdc000 rw-p 00004000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fdc000-7fa177001000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177001000-7fa177200000 ---p 00025000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177200000-7fa177201000 r--p 00024000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177201000-7fa177202000 rw-p 00025000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177202000-7fa177205000 r--p 00000000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa177205000-7fa177209000 r-xp 00003000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa177209000-7fa17720b000 r--p 00007000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720b000-7fa17720c000 r--p 00008000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720c000-7fa17720e000 rw-p 00009000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720e000-7fa177211000 r--p 00000000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177211000-7fa177220000 r-xp 00003000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177220000-7fa177222000 r--p 00012000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177222000-7fa177223000 ---p 00014000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177223000-7fa177224000 r--p 00014000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177224000-7fa177226000 rw-p 00015000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177226000-7fa177229000 r--p 00000000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177229000-7fa17723d000 r-xp 00003000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa17723d000-7fa177244000 r--p 00017000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177244000-7fa177245000 r--p 0001d000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177245000-7fa177246000 rw-p 0001e000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177246000-7fa177248000 r--p 00000000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa177248000-7fa17724c000 r-xp 00002000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724c000-7fa17724d000 r--p 00006000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724d000-7fa17724e000 ---p 00007000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724e000-7fa17724f000 r--p 00007000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724f000-7fa177251000 rw-p 00008000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa177251000-7fa177311000 rw-p 00000000 00:00 0<br> 7fa177311000-7fa177319000 r--p 00000000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177319000-7fa177334000 r-xp 00008000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177334000-7fa177339000 r--p 00023000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177339000-7fa17733a000 ---p 00028000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733a000-7fa17733b000 r--p 00028000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733b000-7fa17733c000 rw-p 00029000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733c000-7fa17733d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733d000-7fa17733e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733e000-7fa17733f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733f000-7fa177340000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177340000-7fa177341000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177341000-7fa177342000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177342000-7fa177344000 r--p 00000000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177344000-7fa177348000 r-xp 00002000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177348000-7fa177349000 r--p 00006000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177349000-7fa17734a000 ---p 00007000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734a000-7fa17734b000 r--p 00007000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734b000-7fa17734d000 rw-p 00008000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734d000-7fa17740d000 rw-p 00000000 00:00 0<br> 7fa17740d000-7fa177416000 r--p 00000000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa177416000-7fa177428000 r-xp 00009000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa177428000-7fa17742d000 r--p 0001b000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742d000-7fa17742e000 r--p 0001f000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742e000-7fa17742f000 rw-p 00020000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742f000-7fa17752f000 rw-p 00000000 00:00 0<br> 7fa17752f000-7fa177534000 r--p 00000000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa177534000-7fa177547000 r-xp 00005000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa177547000-7fa17754b000 r--p 00018000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754b000-7fa17754c000 r--p 0001b000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754c000-7fa17754f000 rw-p 0001c000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754f000-7fa1775cf000 rw-p 00000000 00:00 0<br> 7fa1775cf000-7fa1775fa000 r--p 00000000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa1775fa000-7fa177883000 r-xp 0002b000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa177883000-7fa17791a000 r--p 002b4000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17791a000-7fa17791e000 r--p 0034a000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17791e000-7fa17793b000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0034e000180df558cce826b60d969a37ead61f33/hovercard" href="https://github.com/pytorch/pytorch/commit/0034e000180df558cce826b60d969a37ead61f33"><tt>0034e00</tt></a> 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17793b000-7fa17799b000 rw-p 00000000 00:00 0<br> 7fa17799b000-7fa1779a1000 r--p 00000000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779a1000-7fa1779b6000 r-xp 00006000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779b6000-7fa1779b9000 r--p 0001b000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779b9000-7fa1779ba000 ---p 0001e000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779ba000-7fa1779bb000 r--p 0001e000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779bb000-7fa1779be000 rw-p 0001f000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779be000-7fa1779bf000 rw-p 00000000 00:00 0<br> 7fa1779bf000-7fa1779c2000 r--p 00000000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779c2000-7fa1779ce000 r-xp 00003000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779ce000-7fa1779d1000 r--p 0000f000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d1000-7fa1779d2000 r--p 00011000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d2000-7fa1779d3000 rw-p 00012000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d3000-7fa177b83000 r-xp 00000000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177b83000-7fa177d82000 ---p 001b0000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d82000-7fa177d85000 r--p 001af000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d85000-7fa177d8f000 rw-p 001b2000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d8f000-7fa177dbd000 rw-p 00000000 00:00 0<br> 7fa177dbd000-7fa178288000 r-xp 00000000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178288000-7fa178488000 ---p 004cb000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178488000-7fa17848e000 r--p 004cb000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa17848e000-7fa178490000 rw-p 004d1000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178490000-7fa1784a4000 rw-p 00000000 00:00 0<br> 7fa1784a4000-7fa1784ab000 r-xp 00000000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1784ab000-7fa1786ab000 ---p 00007000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ab000-7fa1786ac000 r--p 00007000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ac000-7fa1786ad000 rw-p 00008000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ad000-7fa1786b5000 r--p 00000000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786b5000-7fa1786c6000 r-xp 00008000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786c6000-7fa1786cd000 r--p 00019000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786cd000-7fa1786ce000 r--p 0001f000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786ce000-7fa1786d2000 rw-p 00020000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786d2000-7fa1787d2000 rw-p 00000000 00:00 0<br> 7fa1787d2000-7fa1787d4000 r--p 00000000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d4000-7fa1787d8000 r-xp 00002000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d8000-7fa1787d9000 r--p 00006000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d9000-7fa1787da000 r--p 00006000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787da000-7fa1787dc000 rw-p 00007000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787dc000-7fa1787e1000 r--p 00000000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787e1000-7fa1787f1000 r-xp 00005000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f1000-7fa1787f6000 r--p 00015000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f6000-7fa1787f7000 ---p 0001a000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f7000-7fa1787f8000 r--p 0001a000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f8000-7fa1787fa000 rw-p 0001b000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787fa000-7fa17883a000 rw-p 00000000 00:00 0<br> 7fa17883a000-7fa17883b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17883b000-7fa17883c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17883c000-7fa17883e000 r--p 00000000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa17883e000-7fa178840000 r-xp 00002000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178840000-7fa178841000 r--p 00004000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178841000-7fa178842000 r--p 00004000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178842000-7fa178843000 rw-p 00005000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178843000-7fa178983000 rw-p 00000000 00:00 0<br> 7fa178983000-7fa178a8b000 r-xp 00000000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178a8b000-7fa178c8a000 ---p 00108000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8a000-7fa178c8b000 r--p 00107000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8b000-7fa178c8c000 rw-p 00108000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8c000-7fa178c93000 r-xp 00000000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178c93000-7fa178e92000 ---p 00007000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e92000-7fa178e93000 r--p 00006000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e93000-7fa178e94000 rw-p 00007000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e94000-7fa178e96000 r-xp 00000000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa178e96000-7fa179095000 ---p 00002000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179095000-7fa179096000 r--p 00001000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179096000-7fa179097000 rw-p 00002000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179097000-7fa17909a000 r-xp 00000000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17909a000-7fa179299000 ---p 00003000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa179299000-7fa17929a000 r--p 00002000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17929a000-7fa17929b000 rw-p 00003000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17929b000-7fa17945b000 r-xp 00000000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17945b000-7fa17965b000 ---p 001c0000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17965b000-7fa17965f000 r--p 001c0000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17965f000-7fa179661000 rw-p 001c4000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa179661000-7fa179665000 rw-p 00000000 00:00 0<br> 7fa179665000-7fa17967d000 r-xp 00000000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17967d000-7fa17987c000 ---p 00018000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987c000-7fa17987d000 r--p 00017000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987d000-7fa17987e000 rw-p 00018000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987e000-7fa179882000 rw-p 00000000 00:00 0<br> 7fa179882000-7fa1798a8000 r-xp 00000000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa1798a8000-7fa1798a9000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798a9000-7fa1798aa000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798aa000-7fa1798ab000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798ab000-7fa1798ac000 r--p 00000000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ac000-7fa1798ad000 r-xp 00001000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ad000-7fa1798ae000 r--p 00002000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ae000-7fa1798af000 r--p 00002000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798af000-7fa1798b0000 rw-p 00003000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b0000-7fa1798b1000 r--p 00000000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b1000-7fa1798b3000 r-xp 00001000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b3000-7fa1798b4000 r--p 00003000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b4000-7fa1798b5000 r--p 00003000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b5000-7fa1798b7000 rw-p 00004000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b7000-7fa1798f7000 rw-p 00000000 00:00 0<br> 7fa1798f7000-7fa1798f8000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798f8000-7fa1798fa000 r--p 00000000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fa000-7fa1798fc000 r-xp 00002000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fc000-7fa1798fd000 r--p 00004000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fd000-7fa1798fe000 r--p 00004000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fe000-7fa1798ff000 rw-p 00005000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ff000-7fa179902000 r--p 00000000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa179902000-7fa179908000 r-xp 00003000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa179908000-7fa17990a000 r--p 00009000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990a000-7fa17990b000 r--p 0000a000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990b000-7fa17990d000 rw-p 0000b000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990d000-7fa179910000 r--p 00000000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179910000-7fa179916000 r-xp 00003000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179916000-7fa179918000 r--p 00009000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179918000-7fa179919000 ---p 0000b000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179919000-7fa17991a000 r--p 0000b000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa17991a000-7fa17991c000 rw-p 0000c000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa17991c000-7fa179aa1000 rw-p 00000000 00:00 0<br> 7fa179aa1000-7fa179aa2000 rwxp 00000000 00:00 0<br> 7fa179aa2000-7fa179aa3000 r--p 00000000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa3000-7fa179aa4000 r-xp 00001000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa4000-7fa179aa5000 r--p 00002000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa5000-7fa179aa6000 r--p 00002000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa6000-7fa179aa7000 rw-p 00003000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa7000-7fa179aa8000 r--p 00025000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa179aa8000-7fa179aa9000 rw-p 00026000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa179aa9000-7fa179aaa000 rw-p 00000000 00:00 0<br> 7fff4fa0b000-7fff4fa2d000 rw-p 00000000 00:00 0 [stack]<br> 7fff4fb0e000-7fff4fb11000 r--p 00000000 00:00 0 [vvar]<br> 7fff4fb11000-7fff4fb13000 r-xp 00000000 00:00 0 [vdso]<br> ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]</p> </blockquote> <p dir="auto">In PyTorch 1.4 it shows:</p> <blockquote> <p dir="auto">free(): invalid pointer</p> </blockquote> <p dir="auto">without other information.</p> <h2 dir="auto">Environment</h2> <p dir="auto">I'm using the official PyTorch Docker image to run my training. I tried both 1.3-cuda10.1-cudnn7-devel and 1.4-cuda10.1-cudnn7-devel (note that PyTorch version older than 1.3 will not successfully run the second-order gradient, in which case the grad return pl_lengths always have require_grad=False for some reason.)</p> <p dir="auto">I’m using 4 Titan x (pascal) for data-parallel training.</p> <h2 dir="auto">Additional context</h2>
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2> <p dir="auto">Hello, I’m running a GAN model with some second-order regularization. The training went well at the beginning and the loss decreased. However, after a random period of time, ranging from 3000-8000 updates, the segfault occurs and the training was terminated automatically.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">It is hard for me to simplify the code and reproduce it. However, it happens every time when I include the second order gradient:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if pl_reg: pl_dlatents.requires_grad_(True) pl_fake = self.G(None, dlatents=pl_dlatents) # forward the generator pl_noise = pl_fake.new(pl_fake.shape).normal_() / 1024 pl_grads = autograd.grad( outputs=(pl_fake * pl_noise).sum(), inputs=pl_dlatents, grad_outputs=None, create_graph=True, retain_graph=True, only_inputs=True, )[0] pl_lengths = pl_grads.pow(2).sum(1).mul(1/self.G.get_num_layers()).sqrt() return pl_lengths"><pre class="notranslate"><code class="notranslate">if pl_reg: pl_dlatents.requires_grad_(True) pl_fake = self.G(None, dlatents=pl_dlatents) # forward the generator pl_noise = pl_fake.new(pl_fake.shape).normal_() / 1024 pl_grads = autograd.grad( outputs=(pl_fake * pl_noise).sum(), inputs=pl_dlatents, grad_outputs=None, create_graph=True, retain_graph=True, only_inputs=True, )[0] pl_lengths = pl_grads.pow(2).sum(1).mul(1/self.G.get_num_layers()).sqrt() return pl_lengths </code></pre></div> <p dir="auto">Another major difference for my generator design is that it has convolution layers with <strong>both</strong> the input and weights calculated from other up-stream networks.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class ModulatedConv2d(nn.Module): def __init__(self, in_channels, out_channels, hidden_channels, kernel_size=3, stride=1, padding=1, dilation=1, noisy=True, randomize_noise=True, up=False, demodulize=True, gain=1, lrmul=1): super(ModulatedConv2d, self).__init__() assert kernel_size &gt;= 1 and kernel_size % 2 == 1 self.noisy = noisy self.stride = stride self.padding = padding self.dilation = dilation self.randomize_noise = randomize_noise self.up = up self.demodulize = demodulize self.lrmul = lrmul # Get weight. fan_in = in_channels * kernel_size * kernel_size self.runtime_coef = gain / math.sqrt(fan_in) * math.sqrt(lrmul) self.weight = Parameter(torch.randn(out_channels, in_channels, kernel_size, kernel_size) / math.sqrt(lrmul), requires_grad=True) # [OIkk] # Get bias. self.bias = Parameter(torch.zeros(1, out_channels, 1, 1), requires_grad=True) # Modulate layer. self.mod = ScaleLinear(hidden_channels, in_channels, bias=True) # [BI] Transform incoming W to style. # Noise scale. if noisy: self.noise_scale = Parameter(torch.zeros(1), requires_grad=True) def forward(self, x, y, noise=None): w = self.weight * self.runtime_coef ww = w[np.newaxis] # [BOIkk] Introduce minibatch dimension. # Modulate. s = self.mod(y) + 1 # [BI] Add bias (initially 1). ww = ww * s[:, np.newaxis, :, np.newaxis, np.newaxis] # [BOIkk] Scale input feature maps. # Demodulate. if self.demodulize: d = torch.rsqrt(ww.pow(2).sum(dim=(2,3,4), keepdim=True) + 1e-8) # [BOIkk] Scaling factor. ww = ww * d # [BOIkk] Scale output feature maps. # Reshape/scale input. B = y.size(0) x = x.view(1, -1, *x.shape[2:]) # Fused [BIhw] =&gt; reshape minibatch to convolution groups [1(BI)hw]. w = ww.view(-1, *ww.shape[2:]) # [(BO)Ikk] # Convolution with optional up/downsampling. if self.up: x = F.interpolate(x, scale_factor=2, mode='bilinear', align_corners=False) x = F.conv2d(x, w, None, self.stride, self.padding, self.dilation, groups=B) # [1(BO)hw] # Reshape/scale output. x = x.view(B, -1, *x.shape[2:]) # [BOhw] # Apply noise and bias if self.noisy: if self.randomize_noise: noise = x.new_empty(B, 1, *x.shape[2:]).normal_() x += noise * self.noise_scale x += self.bias * self.lrmul return x"><pre class="notranslate"><code class="notranslate">class ModulatedConv2d(nn.Module): def __init__(self, in_channels, out_channels, hidden_channels, kernel_size=3, stride=1, padding=1, dilation=1, noisy=True, randomize_noise=True, up=False, demodulize=True, gain=1, lrmul=1): super(ModulatedConv2d, self).__init__() assert kernel_size &gt;= 1 and kernel_size % 2 == 1 self.noisy = noisy self.stride = stride self.padding = padding self.dilation = dilation self.randomize_noise = randomize_noise self.up = up self.demodulize = demodulize self.lrmul = lrmul # Get weight. fan_in = in_channels * kernel_size * kernel_size self.runtime_coef = gain / math.sqrt(fan_in) * math.sqrt(lrmul) self.weight = Parameter(torch.randn(out_channels, in_channels, kernel_size, kernel_size) / math.sqrt(lrmul), requires_grad=True) # [OIkk] # Get bias. self.bias = Parameter(torch.zeros(1, out_channels, 1, 1), requires_grad=True) # Modulate layer. self.mod = ScaleLinear(hidden_channels, in_channels, bias=True) # [BI] Transform incoming W to style. # Noise scale. if noisy: self.noise_scale = Parameter(torch.zeros(1), requires_grad=True) def forward(self, x, y, noise=None): w = self.weight * self.runtime_coef ww = w[np.newaxis] # [BOIkk] Introduce minibatch dimension. # Modulate. s = self.mod(y) + 1 # [BI] Add bias (initially 1). ww = ww * s[:, np.newaxis, :, np.newaxis, np.newaxis] # [BOIkk] Scale input feature maps. # Demodulate. if self.demodulize: d = torch.rsqrt(ww.pow(2).sum(dim=(2,3,4), keepdim=True) + 1e-8) # [BOIkk] Scaling factor. ww = ww * d # [BOIkk] Scale output feature maps. # Reshape/scale input. B = y.size(0) x = x.view(1, -1, *x.shape[2:]) # Fused [BIhw] =&gt; reshape minibatch to convolution groups [1(BI)hw]. w = ww.view(-1, *ww.shape[2:]) # [(BO)Ikk] # Convolution with optional up/downsampling. if self.up: x = F.interpolate(x, scale_factor=2, mode='bilinear', align_corners=False) x = F.conv2d(x, w, None, self.stride, self.padding, self.dilation, groups=B) # [1(BO)hw] # Reshape/scale output. x = x.view(B, -1, *x.shape[2:]) # [BOhw] # Apply noise and bias if self.noisy: if self.randomize_noise: noise = x.new_empty(B, 1, *x.shape[2:]).normal_() x += noise * self.noise_scale x += self.bias * self.lrmul return x </code></pre></div> <p dir="auto">The above code happens inside a DataParallel module and results are gathered afterward, followed by a loss to minimize pl_lengths.</p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">After some random number of updates, around 3000-8000, the problem occurs and training was terminated.</p> <p dir="auto">In PyTorch 1.3 it shows:</p> <blockquote> <p dir="auto">*** Error in `python3’: double free or corruption (fasttop): 0x00007f9e280c3fe0 ***<br> ======= Backtrace: =========<br> /lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7fa1793127e5]<br> /lib/x86_64-linux-gnu/libc.so.6(+0x8037a)[0x7fa17931b37a]<br> /lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7fa17931f53c]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d820e)[0x7fa13bb9420e]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d82b9)[0x7fa13bb942b9]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(+0x39d8435)[0x7fa13bb94435]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(_ZN5torch8autograd6Engine17evaluate_functionERNS0_8NodeTaskE+0x1210)[0x7fa13bb8bb50]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so(_ZN5torch8autograd6Engine11thread_mainEPNS0_9GraphTaskE+0x1c4)[0x7fa13bb8da04]<br> /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so(_ZN5torch8autograd6python12PythonEngine11thread_initEi+0x2a)[0x7fa16a537eda]<br> /opt/conda/lib/python3.6/site-packages/torch/…/…/…/libstdc++.so.6(+0xc819d)[0x7fa169ffb19d]<br> /lib/x86_64-linux-gnu/libpthread.so.0(+0x76ba)[0x7fa17966c6ba]<br> /lib/x86_64-linux-gnu/libc.so.6(clone+0x6d)[0x7fa1793a241d]</p> </blockquote> <p dir="auto">and followed by a long memory map:</p> <blockquote> <p dir="auto">======= Memory map: ========<br> 200000000-200200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 200200000-200400000 ---p 00000000 00:00 0<br> 200400000-200600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 200600000-202600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 202600000-205600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 205600000-206200000 ---p 00000000 00:00 0<br> 206200000-206400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206400000-206600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206600000-206800000 rw-s 206600000 00:06 492 /dev/nvidia-uvm<br> 206800000-206a00000 ---p 00000000 00:00 0<br> 206a00000-206c00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 206c00000-206e00000 ---p 00000000 00:00 0<br> 206e00000-207000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 207000000-207200000 ---p 00000000 00:00 0<br> 207200000-207400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 207400000-209400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 209400000-20c400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20c400000-20d000000 ---p 00000000 00:00 0<br> 20d000000-20d200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20d200000-20d400000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20d400000-20d600000 rw-s 20d400000 00:06 492 /dev/nvidia-uvm<br> 20d600000-20d800000 ---p 00000000 00:00 0<br> 20d800000-20da00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20da00000-20dc00000 ---p 00000000 00:00 0<br> 20dc00000-20de00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20de00000-20e000000 ---p 00000000 00:00 0<br> 20e000000-20e200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 20e200000-210200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 210200000-213200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 213200000-213e00000 ---p 00000000 00:00 0<br> 213e00000-214000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214000000-214200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214200000-214400000 rw-s 214200000 00:06 492 /dev/nvidia-uvm<br> 214400000-214600000 ---p 00000000 00:00 0<br> 214600000-214800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214800000-214a00000 ---p 00000000 00:00 0<br> 214a00000-214c00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 214c00000-214e00000 ---p 00000000 00:00 0<br> 214e00000-215000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 215000000-217000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 217000000-21a000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21a000000-21ac00000 ---p 00000000 00:00 0<br> 21ac00000-21ae00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21ae00000-21b000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21b000000-21b200000 rw-s 21b000000 00:06 492 /dev/nvidia-uvm<br> 21b200000-21b400000 ---p 00000000 00:00 0<br> 21b400000-21b600000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 21b600000-600200000 ---p 00000000 00:00 0<br> 10000000000-10810000000 ---p 00000000 00:00 0<br> 5578812bd000-557881314000 r--p 00000000 08:31 78220892 /opt/conda/bin/python3.6<br> 557881314000-5578814db000 r-xp 00057000 08:31 78220892 /opt/conda/bin/python3.6<br> 5578814db000-557881578000 r--p 0021e000 08:31 78220892 /opt/conda/bin/python3.6<br> 557881579000-55788157c000 r--p 002bb000 08:31 78220892 /opt/conda/bin/python3.6<br> 55788157c000-5578815df000 rw-p 002be000 08:31 78220892 /opt/conda/bin/python3.6<br> 5578815df000-557881610000 rw-p 00000000 00:00 0<br> 557881cc4000-5579eb27e000 rw-p 00000000 00:00 0 [heap]<br> 5579eb27e000-5579eb67e000 rw-p 00000000 00:00 0 [heap]<br> 5579eb67e000-5579ed2c1000 rw-p 00000000 00:00 0 [heap]<br> 5579ed2c1000-5579ee436000 rw-p 00000000 00:00 0 [heap]<br> 5579ee436000-5579ee491000 rw-p 00000000 00:00 0 [heap]<br> 5579ee491000-5579ef3d1000 rw-p 00000000 00:00 0 [heap]<br> 5579ef3d1000-5579effc9000 rw-p 00000000 00:00 0 [heap]<br> 7f98c0000000-7f9bc0a00000 ---p 00000000 00:00 0<br> 7f9bc0a00000-7f9bc0c00000 rw-s 00000000 00:05 1587841 /dev/zero (deleted)<br> 7f9bc0c00000-7f9c00000000 ---p 00000000 00:00 0<br> 7f9c00000000-7f9c03d1e000 rw-p 00000000 00:00 0<br> 7f9c03d1e000-7f9c04000000 ---p 00000000 00:00 0<br> 7f9c04000000-7f9c06fa0000 rw-p 00000000 00:00 0<br> 7f9c06fa0000-7f9c08000000 ---p 00000000 00:00 0<br> 7f9c08000000-7f9cd0000000 ---p 00000000 00:00 0<br> 7f9cd0000000-7f9cd2e22000 rw-p 00000000 00:00 0<br> 7f9cd2e22000-7f9cd4000000 ---p 00000000 00:00 0<br> 7f9cd6000000-7f9dd0a00000 ---p 00000000 00:00 0<br> 7f9dd0a00000-7f9dd0c00000 rw-s 00000000 00:05 1604789 /dev/zero (deleted)<br> 7f9dd0c00000-7f9dd8000000 ---p 00000000 00:00 0<br> 7f9dd8000000-7f9ddaeae000 rw-p 00000000 00:00 0<br> 7f9ddaeae000-7f9ddc000000 ---p 00000000 00:00 0<br> 7f9ddc000000-7f9ddfd11000 rw-p 00000000 00:00 0<br> 7f9ddfd11000-7f9de0000000 ---p 00000000 00:00 0<br> 7f9de0000000-7f9e18000000 ---p 00000000 00:00 0<br> 7f9e18000000-7f9e1814b000 rw-p 00000000 00:00 0<br> 7f9e1814b000-7f9e1c000000 ---p 00000000 00:00 0<br> 7f9e1c000000-7f9e1fd09000 rw-p 00000000 00:00 0<br> 7f9e1fd09000-7f9e20000000 ---p 00000000 00:00 0<br> 7f9e20000000-7f9e20150000 rw-p 00000000 00:00 0<br> 7f9e20150000-7f9e24000000 ---p 00000000 00:00 0<br> 7f9e28000000-7f9e282e5000 rw-p 00000000 00:00 0<br> 7f9e282e5000-7f9e2c000000 ---p 00000000 00:00 0<br> 7f9e2c000000-7f9e2c14b000 rw-p 00000000 00:00 0<br> 7f9e2c14b000-7f9e30000000 ---p 00000000 00:00 0<br> 7f9e30000000-7f9e30022000 rw-p 00000000 00:00 0<br> 7f9e30022000-7f9e34000000 ---p 00000000 00:00 0<br> 7f9e36000000-7f9ef8a00000 ---p 00000000 00:00 0<br> 7f9ef8a00000-7f9ef8c00000 rw-s 00000000 00:05 1582741 /dev/zero (deleted)<br> 7f9ef8c00000-7f9f00000000 ---p 00000000 00:00 0<br> 7f9f00000000-7f9f02e3a000 rw-p 00000000 00:00 0<br> 7f9f02e3a000-7f9f04000000 ---p 00000000 00:00 0<br> 7f9f05000000-7f9f05040000 rw-p 00000000 00:00 0<br> 7f9f06000000-7f9f08000000 ---p 00000000 00:00 0<br> 7f9f08000000-7f9f0bffc000 rw-p 00000000 00:00 0<br> 7f9f0bffc000-7f9f0c000000 ---p 00000000 00:00 0<br> 7f9f0c000000-7f9f0fd27000 rw-p 00000000 00:00 0<br> 7f9f0fd27000-7f9f10000000 ---p 00000000 00:00 0<br> 7f9f10000000-7f9f13ffe000 rw-p 00000000 00:00 0<br> 7f9f13ffe000-7f9f14000000 ---p 00000000 00:00 0<br> 7f9f14000000-7f9f18000000 rw-p 00000000 00:00 0<br> 7f9f18000000-7f9f1bffd000 rw-p 00000000 00:00 0<br> 7f9f1bffd000-7f9f1c000000 ---p 00000000 00:00 0<br> 7f9f1d166000-7f9f1d1a6000 rw-p 00000000 00:00 0<br> 7f9f1d266000-7f9f1d2a6000 rw-p 00000000 00:00 0<br> 7f9f1d2e5000-7f9f1d2e6000 ---p 00000000 00:00 0<br> 7f9f1d2e6000-7f9f1dae6000 rw-p 00000000 00:00 0<br> 7f9f1dae6000-7f9f1daf9000 r-xp 00000000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1daf9000-7f9f1dcf8000 ---p 00013000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dcf8000-7f9f1dcfa000 rw-p 00012000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dcfa000-7f9f1ddf1000 rw-p 00000000 00:00 0<br> 7f9f1ddf1000-7f9f1ddf3000 rw-p 00015000 08:31 85822789 /opt/conda/lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1ddf3000-7f9f1ddfd000 r-xp 00000000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1ddfd000-7f9f1dffc000 ---p 0000a000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dffc000-7f9f1dffe000 rw-p 00009000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1dffe000-7f9f1e000000 rw-p 0000c000 08:31 85822791 /opt/conda/lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f1e000000-7f9f47200000 ---p 00000000 00:00 0<br> 7f9f47200000-7f9f47400000 rw-s 00000000 00:05 1582740 /dev/zero (deleted)<br> 7f9f47400000-7f9f47e00000 ---p 00000000 00:00 0<br> 7f9f47e00000-7f9f48000000 rw-s 00000000 00:05 1590697 /dev/zero (deleted)<br> 7f9f48000000-7f9f48021000 rw-p 00000000 00:00 0<br> 7f9f48021000-7f9f4c000000 ---p 00000000 00:00 0<br> 7f9f4c021000-7f9f4c094000 r-xp 00000000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c094000-7f9f4c294000 ---p 00073000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c294000-7f9f4c29a000 rw-p 00073000 08:31 85822779 /opt/conda/lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c29a000-7f9f4c29c000 rw-p 00000000 00:00 0<br> 7f9f4c29c000-7f9f4c2f0000 r-xp 00000000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c2f0000-7f9f4c4f0000 ---p 00054000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c4f0000-7f9f4c4f5000 rw-p 00054000 08:31 85429655 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c4f5000-7f9f4c4f6000 rw-p 00000000 00:00 0<br> 7f9f4c4f6000-7f9f4c546000 r-xp 00000000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c546000-7f9f4c746000 ---p 00050000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c746000-7f9f4c74c000 rw-p 00050000 08:31 85429651 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c74c000-7f9f4c74d000 rw-p 00000000 00:00 0<br> 7f9f4c74d000-7f9f4c78a000 r-xp 00000000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c78a000-7f9f4c989000 ---p 0003d000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c989000-7f9f4c98f000 rw-p 0003c000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c98f000-7f9f4c990000 rw-p 00000000 00:00 0<br> 7f9f4c990000-7f9f4c993000 rw-p 00043000 08:31 85429645 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_bspl.cpython-36m-x86_64-linux-gnu.so<br> 7f9f4c993000-7f9f50000000 rw-p 00000000 00:00 0<br> 7f9f50000000-7f9f50021000 rw-p 00000000 00:00 0<br> 7f9f50021000-7f9f54000000 ---p 00000000 00:00 0<br> 7f9f54000000-7f9f5d400000 ---p 00000000 00:00 0<br> 7f9f5d400000-7f9f5d600000 rw-s 00000000 00:05 1567619 /dev/zero (deleted)<br> 7f9f5d600000-7f9f5d800000 ---p 00000000 00:00 0<br> 7f9f5d800000-7f9f5da00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f5da00000-7f9f5dc00000 ---p 00000000 00:00 0<br> 7f9f5dc00000-7f9f5de00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1567621688d8946ed5ccfe89eefb60cda478dd70/hovercard" href="https://github.com/pytorch/pytorch/commit/1567621688d8946ed5ccfe89eefb60cda478dd70"><tt>1567621</tt></a> /dev/zero (deleted)<br> 7f9f5de00000-7f9f5e0d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f5e0d6000-7f9f63200000 ---p 00000000 00:00 0<br> 7f9f63200000-7f9f63400000 rw-s 00000000 00:05 1598092 /dev/zero (deleted)<br> 7f9f63400000-7f9f63c00000 ---p 00000000 00:00 0<br> 7f9f63c00000-7f9f63e00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1567618e8e8e2aeee16fbd26886a9b594dbc76f9/hovercard" href="https://github.com/pytorch/pytorch/commit/1567618e8e8e2aeee16fbd26886a9b594dbc76f9"><tt>1567618</tt></a> /dev/zero (deleted)<br> 7f9f63e00000-7f9f64000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f64000000-7f9f64021000 rw-p 00000000 00:00 0<br> 7f9f64021000-7f9f68000000 ---p 00000000 00:00 0<br> 7f9f680b9000-7f9f68117000 r-xp 00000000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68117000-7f9f68317000 ---p 0005e000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68317000-7f9f6831e000 rw-p 0005e000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6831e000-7f9f68320000 rw-p 00066000 08:31 85429652 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68320000-7f9f68354000 r-xp 00000000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68354000-7f9f68554000 ---p 00034000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68554000-7f9f68555000 rw-p 00034000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68555000-7f9f68557000 rw-p 00036000 08:31 85429648 /opt/conda/lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68557000-7f9f68570000 r-xp 00000000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68570000-7f9f6876f000 ---p 00019000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6876f000-7f9f68774000 rw-p 00018000 08:31 85429603 /opt/conda/lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68774000-7f9f6878f000 r-xp 00000000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6878f000-7f9f6898e000 ---p 0001b000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f6898e000-7f9f68990000 rw-p 0001a000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68990000-7f9f68993000 rw-p 0001d000 08:31 85429576 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so<br> 7f9f68993000-7f9f6c000000 rw-p 00000000 00:00 0<br> 7f9f6c000000-7f9f6c021000 rw-p 00000000 00:00 0<br> 7f9f6c021000-7f9f70000000 ---p 00000000 00:00 0<br> 7f9f700e8000-7f9f70128000 rw-p 00000000 00:00 0<br> 7f9f701e8000-7f9f70219000 r-xp 00000000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70219000-7f9f70418000 ---p 00031000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70418000-7f9f7041a000 rw-p 00030000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7041a000-7f9f7041b000 rw-p 00000000 00:00 0<br> 7f9f7041b000-7f9f7041f000 rw-p 00033000 08:31 85429628 /opt/conda/lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7041f000-7f9f70439000 r-xp 00000000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70439000-7f9f70639000 ---p 0001a000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70639000-7f9f7063a000 rw-p 0001a000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7063a000-7f9f7063d000 rw-p 0001c000 08:31 85429600 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7063d000-7f9f70653000 r-xp 00000000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70653000-7f9f70852000 ---p 00016000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70852000-7f9f70853000 rw-p 00015000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70853000-7f9f70854000 rw-p 00000000 00:00 0<br> 7f9f70854000-7f9f70857000 rw-p 00017000 08:31 85429598 /opt/conda/lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70857000-7f9f7085a000 r-xp 00000000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7085a000-7f9f70a5a000 ---p 00003000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a5a000-7f9f70a5b000 rw-p 00003000 08:31 85560786 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsap_module.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a5b000-7f9f70a9d000 r-xp 00000000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70a9d000-7f9f70c9c000 ---p 00042000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70c9c000-7f9f70ca1000 rw-p 00041000 08:31 85560771 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_bglu_dense.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70ca1000-7f9f70ca2000 rw-p 00000000 00:00 0<br> 7f9f70ca2000-7f9f70cac000 r-xp 00000000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70cac000-7f9f70eac000 ---p 0000a000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eac000-7f9f70ead000 rw-p 0000a000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70ead000-7f9f70eaf000 rw-p 0000c000 08:31 85560810 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eaf000-7f9f70eb2000 r-xp 00000000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f70eb2000-7f9f710b1000 ---p 00003000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710b1000-7f9f710b2000 rw-p 00002000 08:31 85560872 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710b2000-7f9f710d9000 r-xp 00000000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f710d9000-7f9f712d8000 ---p 00027000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712d8000-7f9f712dc000 rw-p 00026000 08:31 85560802 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712dc000-7f9f712fb000 r-xp 00000000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f712fb000-7f9f714fb000 ---p 0001f000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f714fb000-7f9f714fe000 rw-p 0001f000 08:31 85560809 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f714fe000-7f9f71516000 r-xp 00000000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71516000-7f9f71715000 ---p 00018000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71715000-7f9f71719000 rw-p 00017000 08:31 85560825 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71719000-7f9f71737000 r-xp 00000000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71737000-7f9f71937000 ---p 0001e000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71937000-7f9f71938000 rw-p 0001e000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71938000-7f9f7193a000 rw-p 00020000 08:31 85560772 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7193a000-7f9f71946000 r-xp 00000000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71946000-7f9f71b45000 ---p 0000c000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b45000-7f9f71b46000 rw-p 0000b000 08:31 85560888 /opt/conda/lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b46000-7f9f71b63000 r-xp 00000000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71b63000-7f9f71d63000 ---p 0001d000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d63000-7f9f71d64000 rw-p 0001d000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d64000-7f9f71d67000 rw-p 0001f000 08:31 85560779 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71d67000-7f9f71def000 r-xp 00000000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71def000-7f9f71fef000 ---p 00088000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71fef000-7f9f71ffa000 rw-p 00088000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f71ffa000-7f9f71ffc000 rw-p 00000000 00:00 0<br> 7f9f71ffc000-7f9f72000000 rw-p 00094000 08:31 85691771 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so<br> 7f9f72000000-7f9f7a000000 ---p 00000000 00:00 0<br> 7f9f7a00a000-7f9f7a035000 r-xp 00000000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a035000-7f9f7a235000 ---p 0002b000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a235000-7f9f7a238000 rw-p 0002b000 08:31 85560777 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a238000-7f9f7a239000 rw-p 00000000 00:00 0<br> 7f9f7a239000-7f9f7a286000 r-xp 00000000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a286000-7f9f7a485000 ---p 0004d000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a485000-7f9f7a487000 rw-p 0004c000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a487000-7f9f7a48a000 rw-p 0004f000 08:31 85691749 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a48a000-7f9f7a4bb000 r-xp 00000000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a4bb000-7f9f7a6bb000 ---p 00031000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6bb000-7f9f7a6c2000 rw-p 00031000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6c2000-7f9f7a6c4000 rw-p 00000000 00:00 0<br> 7f9f7a6c4000-7f9f7a6c7000 rw-p 00039000 08:31 85691809 /opt/conda/lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a6c7000-7f9f7a710000 r-xp 00000000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a710000-7f9f7a910000 ---p 00049000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a910000-7f9f7a914000 rw-p 00049000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a914000-7f9f7a915000 rw-p 00000000 00:00 0<br> 7f9f7a915000-7f9f7a919000 rw-p 0004e000 08:31 85560832 /opt/conda/lib/python3.6/site-packages/scipy/optimize/_trlib/_trlib.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a919000-7f9f7a922000 r-xp 00000000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7a922000-7f9f7ab22000 ---p 00009000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab22000-7f9f7ab23000 rw-p 00009000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab23000-7f9f7ab25000 rw-p 0000b000 08:31 85560887 /opt/conda/lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ab25000-7f9f7ab26000 ---p 00000000 00:00 0<br> 7f9f7ab26000-7f9f7e993000 rw-p 00000000 00:00 0<br> 7f9f7eb8f000-7f9f7ebd8000 r-xp 00000000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7ebd8000-7f9f7edd8000 ---p 00049000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7edd8000-7f9f7eddc000 rw-p 00049000 08:31 85560677 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7eddc000-7f9f7edde000 rw-p 00000000 00:00 0<br> 7f9f7edde000-7f9f7edf9000 r-xp 00000000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7edf9000-7f9f7eff9000 ---p 0001b000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7eff9000-7f9f7effa000 rw-p 0001b000 08:31 85560675 /opt/conda/lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so<br> 7f9f7effa000-7f9f7effb000 ---p 00000000 00:00 0<br> 7f9f7effb000-7f9f7f7fb000 rw-p 00000000 00:00 0<br> 7f9f7f7fb000-7f9f7f7fc000 ---p 00000000 00:00 0<br> 7f9f7f7fc000-7f9f7fffc000 rw-p 00000000 00:00 0<br> 7f9f7fffc000-7f9f7fffd000 ---p 00000000 00:00 0<br> 7f9f7fffd000-7f9f807fd000 rw-p 00000000 00:00 0<br> 7f9f807fd000-7f9f807fe000 ---p 00000000 00:00 0<br> 7f9f807fe000-7f9f80ffe000 rw-p 00000000 00:00 0<br> 7f9f811ff000-7f9f81200000 ---p 00000000 00:00 0<br> 7f9f81200000-7f9f81a00000 rw-p 00000000 00:00 0<br> 7f9f82000000-7f9f83400000 ---p 00000000 00:00 0<br> 7f9f83400000-7f9f83600000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15799072b93f536902524747d2cd07a1f3e78182/hovercard" href="https://github.com/pytorch/pytorch/commit/15799072b93f536902524747d2cd07a1f3e78182"><tt>1579907</tt></a> /dev/zero (deleted)<br> 7f9f83600000-7f9f83800000 ---p 00000000 00:00 0<br> 7f9f83800000-7f9f83a00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f83a00000-7f9f83c00000 ---p 00000000 00:00 0<br> 7f9f83c00000-7f9f83e00000 rw-s 00000000 00:05 1579909 /dev/zero (deleted)<br> 7f9f83e00000-7f9f840d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f840d6000-7f9f89200000 ---p 00000000 00:00 0<br> 7f9f89200000-7f9f89400000 rw-s 00000000 00:05 1603718 /dev/zero (deleted)<br> 7f9f89400000-7f9f89c00000 ---p 00000000 00:00 0<br> 7f9f89c00000-7f9f89e00000 rw-s 00000000 00:05 1579906 /dev/zero (deleted)<br> 7f9f89e00000-7f9f8a000000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f8a000000-7f9f8a600000 rw-s 00000000 00:05 1595906 /dev/zero (deleted)<br> 7f9f8a600000-7f9f8ac00000 rw-s 00000000 00:05 1595908 /dev/zero (deleted)<br> 7f9f8ac00000-7f9f92400000 ---p 00000000 00:00 0<br> 7f9f92400000-7f9f92a00000 rw-s 00000000 00:05 1599848 /dev/zero (deleted)<br> 7f9f92a00000-7f9f93000000 rw-s 00000000 00:05 1579899 /dev/zero (deleted)<br> 7f9f93000000-7f9f93600000 rw-s 00000000 00:05 1579901 /dev/zero (deleted)<br> 7f9f93600000-7f9f93800000 ---p 00000000 00:00 0<br> 7f9f93800000-7f9f93e00000 rw-s 00000000 00:05 1589911 /dev/zero (deleted)<br> 7f9f93e00000-7f9f95200000 ---p 00000000 00:00 0<br> 7f9f95200000-7f9f95800000 rw-s 00000000 00:05 1599844 /dev/zero (deleted)<br> 7f9f95800000-7f9f95a00000 ---p 00000000 00:00 0<br> 7f9f95a00000-7f9f96000000 rw-s 00000000 00:05 1599846 /dev/zero (deleted)<br> 7f9f96000000-7f9f96600000 rw-s 00000000 00:05 1599843 /dev/zero (deleted)<br> 7f9f96600000-7f9f96800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f96800000-7f9f96a00000 ---p 00000000 00:00 0<br> 7f9f96a00000-7f9f97000000 rw-s 00000000 00:05 1589908 /dev/zero (deleted)<br> 7f9f97000000-7f9f97200000 rw-s 00000000 00:05 1603717 /dev/zero (deleted)<br> 7f9f97200000-7f9f974d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f974d6000-7f9f97600000 ---p 00000000 00:00 0<br> 7f9f97600000-7f9f97c00000 rw-s 00000000 00:05 1589910 /dev/zero (deleted)<br> 7f9f97c00000-7f9f98000000 ---p 00000000 00:00 0<br> 7f9f98000000-7f9f98021000 rw-p 00000000 00:00 0<br> 7f9f98021000-7f9f9c000000 ---p 00000000 00:00 0<br> 7f9f9c109000-7f9f9c11b000 r-xp 00000000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c11b000-7f9f9c31b000 ---p 00012000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c31b000-7f9f9c320000 rw-p 00012000 08:31 85692000 /opt/conda/lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c320000-7f9f9c3d5000 r-xp 00000000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c3d5000-7f9f9c5d5000 ---p 000b5000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5d5000-7f9f9c5de000 rw-p 000b5000 08:31 85692041 /opt/conda/lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5de000-7f9f9c5fb000 r-xp 00000000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c5fb000-7f9f9c7fb000 ---p 0001d000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c7fb000-7f9f9c7fc000 rw-p 0001d000 08:31 85692032 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so<br> 7f9f9c7fc000-7f9f9c7fd000 rw-p 00000000 00:00 0<br> 7f9f9c7fd000-7f9f9c7fe000 ---p 00000000 00:00 0<br> 7f9f9c7fe000-7f9f9cffe000 rw-p 00000000 00:00 0<br> 7f9f9cffe000-7f9f9cfff000 ---p 00000000 00:00 0<br> 7f9f9cfff000-7f9f9d7ff000 rw-p 00000000 00:00 0<br> 7f9f9d7ff000-7f9f9d800000 ---p 00000000 00:00 0<br> 7f9f9d800000-7f9f9e000000 rw-p 00000000 00:00 0<br> 7f9f9e000000-7f9f9e600000 rw-s 00000000 00:05 1587833 /dev/zero (deleted)<br> 7f9f9e600000-7f9f9e800000 ---p 00000000 00:00 0<br> 7f9f9e800000-7f9f9ee00000 rw-s 00000000 00:05 1599841 /dev/zero (deleted)<br> 7f9f9ee00000-7f9f9f000000 rw-s 00000000 00:05 1589158 /dev/zero (deleted)<br> 7f9f9f000000-7f9f9f200000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7f9f9f200000-7f9f9f800000 rw-s 00000000 00:05 1603715 /dev/zero (deleted)<br> 7f9f9f800000-7f9f9fa00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/158915924789c52fc25171cc8a14dc302e3b079f/hovercard" href="https://github.com/pytorch/pytorch/commit/158915924789c52fc25171cc8a14dc302e3b079f"><tt>1589159</tt></a> /dev/zero (deleted)<br> 7f9f9fa00000-7f9fa0000000 ---p 00000000 00:00 0<br> 7f9fa0000000-7f9fa0600000 rw-s 00000000 00:05 1589905 /dev/zero (deleted)<br> 7f9fa0600000-7f9fa0c00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15899061e0ae426b9d90dda2c61ccdf2afd87ce1/hovercard" href="https://github.com/pytorch/pytorch/commit/15899061e0ae426b9d90dda2c61ccdf2afd87ce1"><tt>1589906</tt></a> /dev/zero (deleted)<br> 7f9fa0c00000-7f9fa1200000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/158915414c5efc4ee431566cef1aa94bf40c626a/hovercard" href="https://github.com/pytorch/pytorch/commit/158915414c5efc4ee431566cef1aa94bf40c626a"><tt>1589154</tt></a> /dev/zero (deleted)<br> 7f9fa1200000-7f9fa1800000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589156e1821fd2aecb8ce99f2bdc402db66ff0b/hovercard" href="https://github.com/pytorch/pytorch/commit/1589156e1821fd2aecb8ce99f2bdc402db66ff0b"><tt>1589156</tt></a> /dev/zero (deleted)<br> 7f9fa1800000-7f9fa1e00000 rw-s 00000000 00:05 1580930 /dev/zero (deleted)<br> 7f9fa1e00000-7f9fa2000000 ---p 00000000 00:00 0<br> 7f9fa2000000-7f9fa2600000 rw-s 00000000 00:05 1589895 /dev/zero (deleted)<br> 7f9fa2600000-7f9fa2c00000 rw-s 00000000 00:05 1589897 /dev/zero (deleted)<br> 7f9fa2c00000-7f9fa3200000 rw-s 00000000 00:05 1589899 /dev/zero (deleted)<br> 7f9fa3200000-7f9fa3800000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15899013ebb120d51d685ceeb2aa95820354ad16/hovercard" href="https://github.com/pytorch/pytorch/commit/15899013ebb120d51d685ceeb2aa95820354ad16"><tt>1589901</tt></a> /dev/zero (deleted)<br> 7f9fa3800000-7f9fa3e00000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589903aa993f0740d3d394ce9ad3365df821916/hovercard" href="https://github.com/pytorch/pytorch/commit/1589903aa993f0740d3d394ce9ad3365df821916"><tt>1589903</tt></a> /dev/zero (deleted)<br> 7f9fa3e00000-7f9fa4000000 ---p 00000000 00:00 0<br> 7f9fa4000000-7f9fa4021000 rw-p 00000000 00:00 0<br> 7f9fa4021000-7f9fa8000000 ---p 00000000 00:00 0<br> 7f9fa800d000-7f9fa8013000 r-xp 00000000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8013000-7f9fa8213000 ---p 00006000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8213000-7f9fa8214000 rw-p 00006000 08:31 85691998 /opt/conda/lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa8214000-7f9fa83b7000 r-xp 00000000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa83b7000-7f9fa85b7000 ---p 001a3000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85b7000-7f9fa85c1000 rw-p 001a3000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85c1000-7f9fa85ca000 rw-p 00000000 00:00 0<br> 7f9fa85ca000-7f9fa85cf000 rw-p 001ae000 08:31 85692031 /opt/conda/lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85cf000-7f9fa85f9000 r-xp 00000000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa85f9000-7f9fa87f9000 ---p 0002a000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa87f9000-7f9fa87fc000 rw-p 0002a000 08:31 85691895 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_hausdorff.cpython-36m-x86_64-linux-gnu.so<br> 7f9fa87fc000-7f9fa87fd000 rw-p 00000000 00:00 0<br> 7f9fa87fd000-7f9fa87fe000 ---p 00000000 00:00 0<br> 7f9fa87fe000-7f9fa8ffe000 rw-p 00000000 00:00 0<br> 7f9fa8ffe000-7f9fa8fff000 ---p 00000000 00:00 0<br> 7f9fa8fff000-7f9fa97ff000 rw-p 00000000 00:00 0<br> 7f9fa97ff000-7f9fa9800000 ---p 00000000 00:00 0<br> 7f9fa9800000-7f9faa000000 rw-p 00000000 00:00 0<br> 7f9faa000000-7f9fab400000 ---p 00000000 00:00 0<br> 7f9fab400000-7f9faba00000 rw-s 00000000 00:05 1493310 /dev/zero (deleted)<br> 7f9faba00000-7f9fac000000 rw-s 00000000 00:05 1589892 /dev/zero (deleted)<br> 7f9fac000000-7f9facb90000 rw-p 00000000 00:00 0<br> 7f9facb90000-7f9fb0000000 ---p 00000000 00:00 0<br> 7f9fb0000000-7f9fb098b000 rw-p 00000000 00:00 0<br> 7f9fb098b000-7f9fb4000000 ---p 00000000 00:00 0<br> 7f9fb4000000-7f9fb444b000 rw-p 00000000 00:00 0<br> 7f9fb444b000-7f9fb8000000 ---p 00000000 00:00 0<br> 7f9fb804c000-7f9fb808c000 rw-p 00000000 00:00 0<br> 7f9fb808c000-7f9fb808d000 ---p 00000000 00:00 0<br> 7f9fb808d000-7f9fb888d000 rw-p 00000000 00:00 0<br> 7f9fb888d000-7f9fb888e000 ---p 00000000 00:00 0<br> 7f9fb888e000-7f9fb908e000 rw-p 00000000 00:00 0<br> 7f9fb908e000-7f9fba28c000 r-xp 00000000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba28c000-7f9fba48b000 ---p 011fe000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba48b000-7f9fba70e000 r--p 011fd000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba70e000-7f9fba755000 rw-p 01480000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba755000-7f9fba7fc000 rw-p 00000000 00:00 0<br> 7f9fba7fc000-7f9fba7fd000 rw-p 014c7000 08:31 80973568 /opt/conda/lib/libnvrtc.so.10.1.168<br> 7f9fba7fd000-7f9fba7fe000 ---p 00000000 00:00 0<br> 7f9fba7fe000-7f9fbaffe000 rw-p 00000000 00:00 0<br> 7f9fbaffe000-7f9fbafff000 ---p 00000000 00:00 0<br> 7f9fbafff000-7f9fbb7ff000 rw-p 00000000 00:00 0<br> 7f9fbb7ff000-7f9fbb800000 ---p 00000000 00:00 0<br> 7f9fbb800000-7f9fbc000000 rw-p 00000000 00:00 0<br> 7f9fbc000000-7f9fbc3a3000 rw-p 00000000 00:00 0<br> 7f9fbc3a3000-7f9fc0000000 ---p 00000000 00:00 0<br> 7f9fc0000000-7f9fc01eb000 rw-p 00000000 00:00 0<br> 7f9fc01eb000-7f9fc4000000 ---p 00000000 00:00 0<br> 7f9fc4000000-7f9fc4772000 rw-p 00000000 00:00 0<br> 7f9fc4772000-7f9fc8000000 ---p 00000000 00:00 0<br> 7f9fc8000000-7f9fc8722000 rw-p 00000000 00:00 0<br> 7f9fc8722000-7f9fcc000000 ---p 00000000 00:00 0<br> 7f9fcc000000-7f9fcc8ac000 rw-p 00000000 00:00 0<br> 7f9fcc8ac000-7f9fd0000000 ---p 00000000 00:00 0<br> 7f9fd0000000-7f9fd0649000 rw-p 00000000 00:00 0<br> 7f9fd0649000-7f9fd4000000 ---p 00000000 00:00 0<br> 7f9fd4000000-7f9fd467f000 rw-p 00000000 00:00 0<br> 7f9fd467f000-7f9fd8000000 ---p 00000000 00:00 0<br> 7f9fd8000000-7f9fd852f000 rw-p 00000000 00:00 0<br> 7f9fd852f000-7f9fdc000000 ---p 00000000 00:00 0<br> 7f9fdc000000-7f9fdc28d000 rw-p 00000000 00:00 0<br> 7f9fdc28d000-7f9fe0000000 ---p 00000000 00:00 0<br> 7f9fe0000000-7f9fe0ab9000 rw-p 00000000 00:00 0<br> 7f9fe0ab9000-7f9fe4000000 ---p 00000000 00:00 0<br> 7f9fe4000000-7f9fe49c6000 rw-p 00000000 00:00 0<br> 7f9fe49c6000-7f9fe8000000 ---p 00000000 00:00 0<br> 7f9fe8000000-7f9fe83db000 rw-p 00000000 00:00 0<br> 7f9fe83db000-7f9fec000000 ---p 00000000 00:00 0<br> 7f9fec000000-7f9fec917000 rw-p 00000000 00:00 0<br> 7f9fec917000-7f9ff0000000 ---p 00000000 00:00 0<br> 7f9ff0000000-7f9ff052e000 rw-p 00000000 00:00 0<br> 7f9ff052e000-7f9ff4000000 ---p 00000000 00:00 0<br> 7f9ff4000000-7f9ff7800000 ---p 00000000 00:00 0<br> 7f9ff7800000-7f9ff7e00000 rw-s 00000000 00:05 1591824 /dev/zero (deleted)<br> 7f9ff7e00000-7f9ff9600000 ---p 00000000 00:00 0<br> 7f9ff9600000-7f9ff9c00000 rw-s 00000000 00:05 1591827 /dev/zero (deleted)<br> 7f9ff9c00000-7fa002000000 ---p 00000000 00:00 0<br> 7fa00200c000-7fa00210c000 rw-p 00000000 00:00 0<br> 7fa00210c000-7fa002123000 r-xp 00000000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002123000-7fa002323000 ---p 00017000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002323000-7fa002324000 rw-p 00017000 08:31 85691894 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so<br> 7fa002324000-7fa002325000 ---p 00000000 00:00 0<br> 7fa002325000-7fa002b25000 rw-p 00000000 00:00 0<br> 7fa002b25000-7fa002b26000 ---p 00000000 00:00 0<br> 7fa002b26000-7fa006993000 rw-p 00000000 00:00 0<br> 7fa0069ac000-7fa006b16000 r-xp 00000000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006b16000-7fa006d16000 ---p 0016a000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006d16000-7fa006d2f000 rw-p 0016a000 08:01 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881/hovercard" href="https://github.com/pytorch/pytorch/commit/23741301101f5ebefffbaef4653b7ecfd9da2881"><tt>2374130</tt></a> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.430.64<br> 7fa006d2f000-7fa006ffa000 rw-p 00000000 00:00 0<br> 7fa006ffa000-7fa006ffb000 ---p 00000000 00:00 0<br> 7fa006ffb000-7fa0077fb000 rw-p 00000000 00:00 0<br> 7fa0077fb000-7fa0077fc000 ---p 00000000 00:00 0<br> 7fa0077fc000-7fa007ffc000 rw-p 00000000 00:00 0<br> 7fa007ffc000-7fa007ffd000 ---p 00000000 00:00 0<br> 7fa007ffd000-7fa0087fd000 rw-p 00000000 00:00 0<br> 7fa0087fd000-7fa0087fe000 ---p 00000000 00:00 0<br> 7fa0087fe000-7fa008ffe000 rw-p 00000000 00:00 0<br> 7fa008ffe000-7fa008fff000 ---p 00000000 00:00 0<br> 7fa008fff000-7fa0097ff000 rw-p 00000000 00:00 0<br> 7fa0097ff000-7fa009800000 ---p 00000000 00:00 0<br> 7fa009800000-7fa00a000000 rw-p 00000000 00:00 0<br> 7fa00a000000-7fa011200000 ---p 00000000 00:00 0<br> 7fa011200000-7fa011400000 rw-s 00000000 00:05 1589151 /dev/zero (deleted)<br> 7fa011400000-7fa017a00000 ---p 00000000 00:00 0<br> 7fa017a00000-7fa018000000 rw-s 00000000 00:05 1427137 /dev/zero (deleted)<br> 7fa018000000-7fa01b400000 ---p 00000000 00:00 0<br> 7fa01b400000-7fa01ba00000 rw-s 00000000 00:05 1567613 /dev/zero (deleted)<br> 7fa01ba00000-7fa01c000000 rw-s 00000000 00:05 1604786 /dev/zero (deleted)<br> 7fa01c000000-7fa01c021000 rw-p 00000000 00:00 0<br> 7fa01c021000-7fa020000000 ---p 00000000 00:00 0<br> 7fa020000000-7fa020021000 rw-p 00000000 00:00 0<br> 7fa020021000-7fa024000000 ---p 00000000 00:00 0<br> 7fa024031000-7fa02405a000 r-xp 00000000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02405a000-7fa02425a000 ---p 00029000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02425a000-7fa02425d000 rw-p 00029000 08:31 85691899 /opt/conda/lib/python3.6/site-packages/scipy/spatial/_voronoi.cpython-36m-x86_64-linux-gnu.so<br> 7fa02425d000-7fa02425e000 rw-p 00000000 00:00 0<br> 7fa02425e000-7fa024267000 r-xp 00000000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024267000-7fa024466000 ---p 00009000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024466000-7fa024468000 rw-p 00008000 08:31 85298773 /opt/conda/lib/python3.6/site-packages/scipy/_lib/messagestream.cpython-36m-x86_64-linux-gnu.so<br> 7fa024468000-7fa026000000 rw-p 00000000 00:00 0<br> 7fa026000000-7fa026400000 ---p 00000000 00:00 0<br> 7fa026400000-7fa026600000 rw-s 00000000 00:05 1589884 /dev/zero (deleted)<br> 7fa026600000-7fa026800000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa026800000-7fa026a00000 rw-s 00000000 00:05 1589885 /dev/zero (deleted)<br> 7fa026a00000-7fa026c00000 ---p 00000000 00:00 0<br> 7fa026c00000-7fa026e00000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa026e00000-7fa027000000 ---p 00000000 00:00 0<br> 7fa027000000-7fa027200000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/1589887c5645b703080f1edcac25caefa2fa16f7/hovercard" href="https://github.com/pytorch/pytorch/commit/1589887c5645b703080f1edcac25caefa2fa16f7"><tt>1589887</tt></a> /dev/zero (deleted)<br> 7fa027200000-7fa0274d6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa0274d6000-7fa027600000 ---p 00000000 00:00 0<br> 7fa027600000-7fa027c00000 rw-s 00000000 00:05 1589893 /dev/zero (deleted)<br> 7fa027c00000-7fa028000000 ---p 00000000 00:00 0<br> 7fa028000000-7fa028021000 rw-p 00000000 00:00 0<br> 7fa028021000-7fa02c000000 ---p 00000000 00:00 0<br> 7fa02c000000-7fa02c021000 rw-p 00000000 00:00 0<br> 7fa02c021000-7fa030000000 ---p 00000000 00:00 0<br> 7fa030000000-7fa030021000 rw-p 00000000 00:00 0<br> 7fa030021000-7fa034000000 ---p 00000000 00:00 0<br> 7fa034000000-7fa034021000 rw-p 00000000 00:00 0<br> 7fa034021000-7fa038000000 ---p 00000000 00:00 0<br> 7fa038000000-7fa038021000 rw-p 00000000 00:00 0<br> 7fa038021000-7fa03c000000 ---p 00000000 00:00 0<br> 7fa03c01c000-7fa03c05c000 rw-p 00000000 00:00 0<br> 7fa03c05c000-7fa03c147000 r-xp 00000000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c147000-7fa03c346000 ---p 000eb000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c346000-7fa03c34f000 rw-p 000ea000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c34f000-7fa03c352000 rw-p 00000000 00:00 0<br> 7fa03c352000-7fa03c356000 rw-p 000f4000 08:31 85691903 /opt/conda/lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c356000-7fa03c406000 r-xp 00000000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c406000-7fa03c605000 ---p 000b0000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c605000-7fa03c60f000 rw-p 000af000 08:31 85691900 /opt/conda/lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa03c60f000-7fa03c611000 rw-p 00000000 00:00 0<br> 7fa03c611000-7fa03c612000 ---p 00000000 00:00 0<br> 7fa03c612000-7fa03ce12000 rw-p 00000000 00:00 0<br> 7fa03ce12000-7fa03ce13000 ---p 00000000 00:00 0<br> 7fa03ce13000-7fa03d613000 rw-p 00000000 00:00 0<br> 7fa03d613000-7fa03d614000 ---p 00000000 00:00 0<br> 7fa03d614000-7fa03de14000 rw-p 00000000 00:00 0<br> 7fa03de14000-7fa03de15000 ---p 00000000 00:00 0<br> 7fa03de15000-7fa03e615000 rw-p 00000000 00:00 0<br> 7fa03e615000-7fa03edd8000 r-xp 00000000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03edd8000-7fa03efd7000 ---p 007c3000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03efd7000-7fa03eff6000 rw-p 007c2000 08:01 2374115 /usr/lib/x86_64-linux-gnu/libnvidia-ptxjitcompiler.so.430.64<br> 7fa03eff6000-7fa03efff000 rw-p 00000000 00:00 0<br> 7fa03f008000-7fa03f1c8000 rw-p 00000000 00:00 0<br> 7fa03f1c8000-7fa03f1d3000 r-xp 00000000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f1d3000-7fa03f3d2000 ---p 0000b000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d2000-7fa03f3d3000 r--p 0000a000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d3000-7fa03f3d4000 rw-p 0000b000 08:31 59728427 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br> 7fa03f3d4000-7fa03f3da000 rw-p 00000000 00:00 0<br> 7fa03f3da000-7fa03f3e5000 r-xp 00000000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f3e5000-7fa03f5e4000 ---p 0000b000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e4000-7fa03f5e5000 r--p 0000a000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e5000-7fa03f5e6000 rw-p 0000b000 08:31 59728431 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br> 7fa03f5e6000-7fa03f5fc000 r-xp 00000000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f5fc000-7fa03f7fb000 ---p 00016000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fb000-7fa03f7fc000 r--p 00015000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fc000-7fa03f7fd000 rw-p 00016000 08:31 59728421 /lib/x86_64-linux-gnu/libnsl-2.23.so<br> 7fa03f7fd000-7fa03f7ff000 rw-p 00000000 00:00 0<br> 7fa03f7ff000-7fa03f800000 ---p 00000000 00:00 0<br> 7fa03f800000-7fa040000000 rw-p 00000000 00:00 0<br> 7fa040000000-7fa040021000 rw-p 00000000 00:00 0<br> 7fa040021000-7fa044000000 ---p 00000000 00:00 0<br> 7fa044000000-7fa044021000 rw-p 00000000 00:00 0<br> 7fa044021000-7fa048000000 ---p 00000000 00:00 0<br> 7fa048000000-7fa048021000 rw-p 00000000 00:00 0<br> 7fa048021000-7fa04c000000 ---p 00000000 00:00 0<br> 7fa04c000000-7fa04c021000 rw-p 00000000 00:00 0<br> 7fa04c021000-7fa050000000 ---p 00000000 00:00 0<br> 7fa050000000-7fa050021000 rw-p 00000000 00:00 0<br> 7fa050021000-7fa054000000 ---p 00000000 00:00 0<br> 7fa054000000-7fa054021000 rw-p 00000000 00:00 0<br> 7fa054021000-7fa058000000 ---p 00000000 00:00 0<br> 7fa058000000-7fa058021000 rw-p 00000000 00:00 0<br> 7fa058021000-7fa05c000000 ---p 00000000 00:00 0<br> 7fa05c000000-7fa05c021000 rw-p 00000000 00:00 0<br> 7fa05c021000-7fa060000000 ---p 00000000 00:00 0<br> 7fa060000000-7fa060021000 rw-p 00000000 00:00 0<br> 7fa060021000-7fa064000000 ---p 00000000 00:00 0<br> 7fa064000000-7fa064021000 rw-p 00000000 00:00 0<br> 7fa064021000-7fa068000000 ---p 00000000 00:00 0<br> 7fa068000000-7fa068021000 rw-p 00000000 00:00 0<br> 7fa068021000-7fa06c000000 ---p 00000000 00:00 0<br> 7fa06c000000-7fa06c021000 rw-p 00000000 00:00 0<br> 7fa06c021000-7fa070000000 ---p 00000000 00:00 0<br> 7fa070000000-7fa070021000 rw-p 00000000 00:00 0<br> 7fa070021000-7fa074000000 ---p 00000000 00:00 0<br> 7fa074000000-7fa074021000 rw-p 00000000 00:00 0<br> 7fa074021000-7fa078000000 ---p 00000000 00:00 0<br> 7fa078000000-7fa078021000 rw-p 00000000 00:00 0<br> 7fa078021000-7fa07c000000 ---p 00000000 00:00 0<br> 7fa07c000000-7fa07c021000 rw-p 00000000 00:00 0<br> 7fa07c021000-7fa080000000 ---p 00000000 00:00 0<br> 7fa080000000-7fa080001000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080001000-7fa080002000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080002000-7fa080003000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080003000-7fa080004000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080004000-7fa080005000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080005000-7fa080006000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080006000-7fa080007000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080007000-7fa080008000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080008000-7fa080009000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080009000-7fa08000a000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000a000-7fa08000b000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000b000-7fa08000c000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000c000-7fa08000d000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000d000-7fa08000e000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000e000-7fa08000f000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa08000f000-7fa080010000 rw-s 00000000 00:06 768 /dev/nvidia4<br> 7fa080010000-7fa080011000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080011000-7fa080012000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080012000-7fa080013000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080013000-7fa080014000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080014000-7fa080015000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080015000-7fa080016000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080016000-7fa080017000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080017000-7fa080018000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080018000-7fa080019000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080019000-7fa08001a000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001a000-7fa08001b000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001b000-7fa08001c000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001c000-7fa08001d000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001d000-7fa08001e000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001e000-7fa08001f000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa08001f000-7fa080020000 rw-s 00000000 00:06 783 /dev/nvidia5<br> 7fa080020000-7fa080021000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080021000-7fa080022000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080022000-7fa080023000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080023000-7fa080024000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080024000-7fa080025000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080025000-7fa080026000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080026000-7fa080027000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080027000-7fa080028000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080028000-7fa080029000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080029000-7fa08002a000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002a000-7fa08002b000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002b000-7fa08002c000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002c000-7fa08002d000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002d000-7fa08002e000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002e000-7fa08002f000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa08002f000-7fa080030000 rw-s 00000000 00:06 798 /dev/nvidia6<br> 7fa080030000-7fa080031000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080031000-7fa080032000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080032000-7fa080033000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080033000-7fa080034000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080034000-7fa080035000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080035000-7fa080036000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080036000-7fa080037000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080037000-7fa080038000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080038000-7fa080039000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080039000-7fa08003a000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003a000-7fa08003b000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003b000-7fa08003c000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003c000-7fa08003d000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003d000-7fa08003e000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003e000-7fa08003f000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa08003f000-7fa080040000 rw-s 00000000 00:06 813 /dev/nvidia7<br> 7fa080040000-7fa090000000 ---p 00000000 00:00 0<br> 7fa09002d000-7fa0901ed000 rw-p 00000000 00:00 0<br> 7fa0901ed000-7fa0901f5000 r-xp 00000000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0901f5000-7fa0903f4000 ---p 00008000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f4000-7fa0903f5000 r--p 00007000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f5000-7fa0903f6000 rw-p 00008000 08:31 59728423 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br> 7fa0903f6000-7fa0903f7000 r-xp 00000000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0903f7000-7fa0905f7000 ---p 00001000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f7000-7fa0905f8000 r--p 00001000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f8000-7fa0905f9000 rw-p 00002000 08:31 83987909 /opt/conda/lib/python3.6/site-packages/torch/lib/libcaffe2_nvrtc.so<br> 7fa0905f9000-7fa0905fa000 ---p 00000000 00:00 0<br> 7fa0905fa000-7fa090dfa000 rw-p 00000000 00:00 0<br> 7fa090dfe000-7fa090efe000 rw-p 00000000 00:00 0<br> 7fa090efe000-7fa090eff000 ---p 00000000 00:00 0<br> 7fa090eff000-7fa0916ff000 rw-p 00000000 00:00 0<br> 7fa0916ff000-7fa091700000 ---p 00000000 00:00 0<br> 7fa091700000-7fa091f00000 rw-p 00000000 00:00 0<br> 7fa091f00000-7fa091f01000 ---p 00000000 00:00 0<br> 7fa091f01000-7fa092701000 rw-p 00000000 00:00 0<br> 7fa092701000-7fa092702000 ---p 00000000 00:00 0<br> 7fa092702000-7fa092f02000 rw-p 00000000 00:00 0<br> 7fa092f02000-7fa092f03000 ---p 00000000 00:00 0<br> 7fa092f03000-7fa093703000 rw-p 00000000 00:00 0<br> 7fa093703000-7fa093704000 ---p 00000000 00:00 0<br> 7fa093704000-7fa094004000 rw-p 00000000 00:00 0<br> 7fa094004000-7fa09403f000 r-xp 00000000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa09403f000-7fa09423f000 ---p 0003b000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa09423f000-7fa094244000 rw-p 0003b000 08:31 85691691 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so<br> 7fa094244000-7fa094245000 rw-p 00000000 00:00 0<br> 7fa094245000-7fa094273000 r-xp 00000000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094273000-7fa094473000 ---p 0002e000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094473000-7fa094477000 rw-p 0002e000 08:31 85691689 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_matching.cpython-36m-x86_64-linux-gnu.so<br> 7fa094477000-7fa094478000 rw-p 00000000 00:00 0<br> 7fa094478000-7fa0944b0000 r-xp 00000000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0944b0000-7fa0946b0000 ---p 00038000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946b0000-7fa0946b6000 rw-p 00038000 08:31 85691687 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_flow.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946b6000-7fa0946b7000 rw-p 00000000 00:00 0<br> 7fa0946b7000-7fa0946e2000 r-xp 00000000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0946e2000-7fa0948e2000 ---p 0002b000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0948e2000-7fa0948e6000 rw-p 0002b000 08:31 85691690 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so<br> 7fa0948e6000-7fa0948e7000 rw-p 00000000 00:00 0<br> 7fa0948e7000-7fa094908000 r-xp 00000000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094908000-7fa094b07000 ---p 00021000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b07000-7fa094b0c000 rw-p 00020000 08:31 85691694 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b0c000-7fa094b2e000 r-xp 00000000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094b2e000-7fa094d2e000 ---p 00022000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d2e000-7fa094d33000 rw-p 00022000 08:31 85691693 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d33000-7fa094d34000 rw-p 00000000 00:00 0<br> 7fa094d34000-7fa094d91000 r-xp 00000000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094d91000-7fa094f90000 ---p 0005d000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094f90000-7fa094f99000 rw-p 0005c000 08:31 85691692 /opt/conda/lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa094f99000-7fa094fdb000 rw-p 00000000 00:00 0<br> 7fa094fdb000-7fa095047000 r-xp 00000000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa095047000-7fa095246000 ---p 0006c000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa095246000-7fa09524c000 rw-p 0006b000 08:31 85691670 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa09524c000-7fa09528e000 rw-p 00000000 00:00 0<br> 7fa09528e000-7fa0955d7000 r-xp 00000000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0955d7000-7fa0957d7000 ---p 00349000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0957d7000-7fa0957d8000 rw-p 00349000 08:31 85691673 /opt/conda/lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so<br> 7fa0957d8000-7fa095872000 r-xp 00000000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095872000-7fa095a71000 ---p 0009a000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a71000-7fa095a75000 rw-p 00099000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a75000-7fa095a8a000 rw-p 0009e000 08:31 85560568 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa095a8a000-7fa095ac3000 r-xp 00000000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095ac3000-7fa095cc3000 ---p 00039000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095cc3000-7fa095ccd000 rw-p 00039000 08:31 85560566 /opt/conda/lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so<br> 7fa095ccd000-7fa095d15000 r-xp 00000000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095d15000-7fa095f15000 ---p 00048000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095f15000-7fa095f1b000 rw-p 00048000 08:31 85560549 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so<br> 7fa095f1b000-7fa0b1f1c000 rw-p 00000000 00:00 0<br> 7fa0b1f1c000-7fa0b1f50000 r-xp 00000000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b1f50000-7fa0b2150000 ---p 00034000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b2150000-7fa0b2154000 rw-p 00034000 08:31 85560561 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so<br> 7fa0b2154000-7fa0d6155000 rw-p 00000000 00:00 0<br> 7fa0d6155000-7fa0d6162000 r-xp 00000000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6162000-7fa0d6362000 ---p 0000d000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6362000-7fa0d6365000 rw-p 0000d000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6365000-7fa0d6368000 rw-p 00011000 08:31 85560553 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa0d6368000-7fa0e6368000 rw-p 00000000 00:00 0<br> 7fa0e6368000-7fa0e6486000 r-xp 00000000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e6486000-7fa0e6685000 ---p 0011e000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e6685000-7fa0e66ef000 rw-p 0011d000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e66ef000-7fa0e66f0000 rw-p 00000000 00:00 0<br> 7fa0e66f0000-7fa0e66f9000 rw-p 00188000 08:31 85560552 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so<br> 7fa0e66f9000-7fa0e86f9000 rw-p 00000000 00:00 0<br> 7fa0e86f9000-7fa0e86fa000 ---p 00000000 00:00 0<br> 7fa0e86fa000-7fa0e8efa000 rw-p 00000000 00:00 0<br> 7fa0e8efa000-7fa0e8efb000 ---p 00000000 00:00 0<br> 7fa0e8efb000-7fa0e96fb000 rw-p 00000000 00:00 0<br> 7fa0e96fb000-7fa0e96fc000 ---p 00000000 00:00 0<br> 7fa0e96fc000-7fa0e9efc000 rw-p 00000000 00:00 0<br> 7fa0e9efc000-7fa0e9efd000 ---p 00000000 00:00 0<br> 7fa0e9efd000-7fa0ea6fd000 rw-p 00000000 00:00 0<br> 7fa0ea735000-7fa0ea7f5000 rw-p 00000000 00:00 0<br> 7fa0ea7f5000-7fa0ea7f6000 ---p 00000000 00:00 0<br> 7fa0ea7f6000-7fa0eaff6000 rw-p 00000000 00:00 0<br> 7fa0eaff6000-7fa0eaff7000 ---p 00000000 00:00 0<br> 7fa0eaff7000-7fa0eb7f7000 rw-p 00000000 00:00 0<br> 7fa0eb7f7000-7fa0eb7f8000 ---p 00000000 00:00 0<br> 7fa0eb7f8000-7fa0ebff8000 rw-p 00000000 00:00 0<br> 7fa0ebff8000-7fa0ebff9000 ---p 00000000 00:00 0<br> 7fa0ebff9000-7fa0ec7f9000 rw-p 00000000 00:00 0<br> 7fa0ec7f9000-7fa0ec7fa000 ---p 00000000 00:00 0<br> 7fa0ec7fa000-7fa0ecffa000 rw-p 00000000 00:00 0<br> 7fa0ecffa000-7fa0ecffb000 ---p 00000000 00:00 0<br> 7fa0ecffb000-7fa0ed7fb000 rw-p 00000000 00:00 0<br> 7fa0ed7fb000-7fa0ed7fc000 ---p 00000000 00:00 0<br> 7fa0ed7fc000-7fa0edffc000 rw-p 00000000 00:00 0<br> 7fa0edffc000-7fa0edffd000 ---p 00000000 00:00 0<br> 7fa0edffd000-7fa0ee7fd000 rw-p 00000000 00:00 0<br> 7fa0ee7fd000-7fa0ee7fe000 ---p 00000000 00:00 0<br> 7fa0ee7fe000-7fa0eeffe000 rw-p 00000000 00:00 0<br> 7fa0eeffe000-7fa0eefff000 ---p 00000000 00:00 0<br> 7fa0eefff000-7fa0ef7ff000 rw-p 00000000 00:00 0<br> 7fa0ef7ff000-7fa0ef800000 ---p 00000000 00:00 0<br> 7fa0ef800000-7fa0f0000000 rw-p 00000000 00:00 0<br> 7fa0f0000000-7fa0f0021000 rw-p 00000000 00:00 0<br> 7fa0f0021000-7fa0f4000000 ---p 00000000 00:00 0<br> 7fa0f4011000-7fa0f4211000 rw-s 00000000 00:05 1567620 /dev/zero (deleted)<br> 7fa0f4211000-7fa0f4411000 rw-s 00000000 00:05 1579908 /dev/zero (deleted)<br> 7fa0f4411000-7fa0f4611000 rw-s 00000000 00:05 1589160 /dev/zero (deleted)<br> 7fa0f4611000-7fa0f4612000 ---p 00000000 00:00 0<br> 7fa0f4612000-7fa0f4e12000 rw-p 00000000 00:00 0<br> 7fa0f4e12000-7fa0f4e13000 ---p 00000000 00:00 0<br> 7fa0f4e13000-7fa0f5613000 rw-p 00000000 00:00 0<br> 7fa0f5614000-7fa0f57d4000 rw-p 00000000 00:00 0<br> 7fa0f57fb000-7fa0f58fb000 rw-p 00000000 00:00 0<br> 7fa0f58fb000-7fa0f597b000 rw-p 00000000 00:00 0<br> 7fa0f5994000-7fa0f9f14000 rw-p 00000000 00:00 0<br> 7fa0f9f32000-7fa0f9fb3000 rw-p 00000000 00:00 0<br> 7fa0f9fb3000-7fa0fa1b3000 rw-s 00000000 00:05 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/15898864a975cd31e3acaedd572e68a359ccbc75/hovercard" href="https://github.com/pytorch/pytorch/commit/15898864a975cd31e3acaedd572e68a359ccbc75"><tt>1589886</tt></a> /dev/zero (deleted)<br> 7fa0fa1b3000-7fa0fa5b3000 rw-p 00000000 00:00 0<br> 7fa0fa5b3000-7fa1005b3000 ---p 00000000 00:00 0<br> 7fa1005b3000-7fa10139c000 r-xp 00000000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa10139c000-7fa10159b000 ---p 00de9000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa10159b000-7fa101713000 rw-p 00de8000 08:01 1441951 /usr/lib/x86_64-linux-gnu/libcuda.so.430.64<br> 7fa101713000-7fa103723000 rw-p 00000000 00:00 0<br> 7fa103723000-7fa103724000 ---p 00000000 00:00 0<br> 7fa103724000-7fa105f24000 rw-p 00000000 00:00 0<br> 7fa105f24000-7fa105f25000 ---p 00000000 00:00 0<br> 7fa105f25000-7fa10a725000 rw-p 00000000 00:00 0<br> 7fa10a725000-7fa10a726000 r--p 00000000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a726000-7fa10a728000 r-xp 00001000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a728000-7fa10a729000 r--p 00003000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a729000-7fa10a72a000 r--p 00003000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72a000-7fa10a72b000 rw-p 00004000 08:31 78745082 /opt/conda/lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72b000-7fa10a72e000 r--p 00000000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72e000-7fa10a72f000 r-xp 00003000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a72f000-7fa10a730000 r--p 00004000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a730000-7fa10a731000 r--p 00004000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a731000-7fa10a733000 rw-p 00005000 08:31 78745095 /opt/conda/lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so<br> 7fa10a733000-7fa10a734000 rw-s 00000000 00:15 113 /dev/shm/8WILOt (deleted)<br> 7fa10a734000-7fa10a735000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a735000-7fa10a736000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a736000-7fa10a737000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a737000-7fa10a738000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a738000-7fa10a739000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a739000-7fa10a73a000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73a000-7fa10a73b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73b000-7fa10a73c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73c000-7fa10a73d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73d000-7fa10a73e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73e000-7fa10a73f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a73f000-7fa10a740000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a740000-7fa10a741000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a741000-7fa10a742000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a742000-7fa10a743000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a743000-7fa10a744000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a744000-7fa10a745000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a745000-7fa10a746000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a746000-7fa10a747000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a747000-7fa10a748000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a748000-7fa10a749000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a749000-7fa10a74a000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74a000-7fa10a74b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74b000-7fa10a74c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74c000-7fa10a74d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74d000-7fa10a74e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74e000-7fa10a74f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a74f000-7fa10a750000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a750000-7fa10a751000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a751000-7fa10a752000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a752000-7fa10a753000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a753000-7fa10a754000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a754000-7fa10a755000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a755000-7fa10a756000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a756000-7fa10a757000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a757000-7fa10a758000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa10a758000-7fa10ac18000 rw-p 00000000 00:00 0<br> 7fa10ac18000-7fa10acd8000 rw-p 00000000 00:00 0<br> 7fa10acd8000-7fa10acd9000 ---p 00000000 00:00 0<br> 7fa10acd9000-7fa10b4d9000 rw-p 00000000 00:00 0<br> 7fa10b4d9000-7fa10b520000 r-xp 00000000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b520000-7fa10b720000 ---p 00047000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b720000-7fa10b722000 rw-p 00047000 08:01 2374111 /usr/lib/x86_64-linux-gnu/libnvidia-fatbinaryloader.so.430.64<br> 7fa10b722000-7fa10b727000 rw-p 00000000 00:00 0<br> 7fa10b727000-7fa10b817000 r-xp 00000000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10b817000-7fa10ba16000 ---p 000f0000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba16000-7fa10ba18000 rw-p 000ef000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba18000-7fa10ba19000 rw-p 00000000 00:00 0<br> 7fa10ba19000-7fa10ba21000 rw-p 000f2000 08:31 85298692 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libgfortran-ed201abd.so.3.0.0<br> 7fa10ba21000-7fa10d517000 r-xp 00000000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d517000-7fa10d716000 ---p 01af6000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d716000-7fa10d72f000 rw-p 01af5000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d72f000-7fa10d73a000 rw-p 00000000 00:00 0<br> 7fa10d73a000-7fa10d7b2000 rw-p 01be1000 08:31 85298693 /opt/conda/lib/python3.6/site-packages/scipy/.libs/libopenblasp-r0-34a18dc3.3.7.so<br> 7fa10d7b2000-7fa10d81e000 r-xp 00000000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10d81e000-7fa10da1e000 ---p 0006c000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da1e000-7fa10da44000 rw-p 0006c000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da44000-7fa10da48000 rw-p 00093000 08:31 85560551 /opt/conda/lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so<br> 7fa10da48000-7fa10dafa000 r-xp 00000000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dafa000-7fa10dcfa000 ---p 000b2000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dcfa000-7fa10dcfc000 rw-p 000b2000 08:31 85298866 /opt/conda/lib/python3.6/site-packages/scipy/fft/_pocketfft/pypocketfft.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dcfc000-7fa10dd00000 rw-p 00000000 00:00 0<br> 7fa10dd00000-7fa10dd09000 r-xp 00000000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10dd09000-7fa10df09000 ---p 00009000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df09000-7fa10df0a000 rw-p 00009000 08:31 85298766 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_uarray/_uarray.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df0a000-7fa10df19000 r-xp 00000000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10df19000-7fa10e119000 ---p 0000f000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e119000-7fa10e11b000 rw-p 0000f000 08:31 85298749 /opt/conda/lib/python3.6/site-packages/scipy/_lib/_ccallback_c.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e11b000-7fa10e3dc000 rw-p 00000000 00:00 0<br> 7fa10e3dc000-7fa10e3e1000 r-xp 00000000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e3e1000-7fa10e5e0000 ---p 00005000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e0000-7fa10e5e1000 rw-p 00004000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e1000-7fa10e5e3000 rw-p 00006000 08:31 85823089 /opt/conda/lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e5e3000-7fa10e6a3000 rw-p 00000000 00:00 0<br> 7fa10e6a3000-7fa10e6b0000 r-xp 00000000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e6b0000-7fa10e8b0000 ---p 0000d000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e8b0000-7fa10e8b3000 rw-p 0000d000 08:31 85822855 /opt/conda/lib/python3.6/site-packages/skimage/.libs/libgomp-3300acd3.so.1.0.0<br> 7fa10e8b3000-7fa10e8b6000 r-xp 00000000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10e8b6000-7fa10eab6000 ---p 00003000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eab6000-7fa10eab9000 rw-p 00003000 08:31 85822879 /opt/conda/lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eab9000-7fa10eacc000 r-xp 00000000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eacc000-7fa10eccc000 ---p 00013000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eccc000-7fa10ecce000 rw-p 00013000 08:31 65356073 /opt/conda/lib/python3.6/site-packages/pandas/_libs/testing.cpython-36m-x86_64-linux-gnu.so<br> 7fa10ecce000-7fa10ed8e000 rw-p 00000000 00:00 0<br> 7fa10ed8e000-7fa10eda4000 r-xp 00000000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10eda4000-7fa10efa4000 ---p 00016000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efa4000-7fa10efa7000 rw-p 00016000 08:31 66928961 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efa7000-7fa10efb8000 r-xp 00000000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10efb8000-7fa10f1b8000 ---p 00011000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1b8000-7fa10f1ba000 rw-p 00011000 08:31 66928960 /opt/conda/lib/python3.6/site-packages/pandas/io/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1ba000-7fa10f1bb000 r-xp 00000000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f1bb000-7fa10f3bb000 ---p 00001000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3bb000-7fa10f3bc000 rw-p 00001000 08:31 85298548 /opt/conda/lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3bc000-7fa10f3ee000 r-xp 00000000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f3ee000-7fa10f5ee000 ---p 00032000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f5ee000-7fa10f5f2000 rw-p 00032000 08:31 65356076 /opt/conda/lib/python3.6/site-packages/pandas/_libs/writers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f5f2000-7fa10f5f3000 rw-p 00000000 00:00 0<br> 7fa10f5f3000-7fa10f607000 r-xp 00000000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f607000-7fa10f807000 ---p 00014000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f807000-7fa10f808000 rw-p 00014000 08:31 65356063 /opt/conda/lib/python3.6/site-packages/pandas/_libs/json.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f808000-7fa10f88e000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10f88e000-7fa10fa8e000 ---p 00086000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fa8e000-7fa10fa95000 rw-p 00086000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481/hovercard" href="https://github.com/pytorch/pytorch/commit/653560673dc36d2ece7b96d3f2da8bb3e4e07481"><tt>6535606</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/parsers.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fa95000-7fa10fa98000 rw-p 00000000 00:00 0<br> 7fa10fa98000-7fa10faf1000 r-xp 00000000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10faf1000-7fa10fcf1000 ---p 00059000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fcf1000-7fa10fcf6000 rw-p 00059000 08:31 65356069 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reduction.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fcf6000-7fa10fcf8000 rw-p 00000000 00:00 0<br> 7fa10fcf8000-7fa10fdf3000 r-xp 00000000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fdf3000-7fa10fff3000 ---p 000fb000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fff3000-7fa10fffd000 rw-p 000fb000 08:31 65356055 /opt/conda/lib/python3.6/site-packages/pandas/_libs/groupby.cpython-36m-x86_64-linux-gnu.so<br> 7fa10fffd000-7fa110000000 rw-p 00000000 00:00 0<br> 7fa110000000-7fa110021000 rw-p 00000000 00:00 0<br> 7fa110021000-7fa114000000 ---p 00000000 00:00 0<br> 7fa114000000-7fa114001000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114001000-7fa114002000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114002000-7fa114003000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114003000-7fa114004000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114004000-7fa114005000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114005000-7fa114006000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114006000-7fa114007000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114007000-7fa1141c7000 rw-p 00000000 00:00 0<br> 7fa1141c7000-7fa1141da000 r-xp 00000000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1141da000-7fa1143d9000 ---p 00013000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1143d9000-7fa1143db000 rw-p 00012000 08:31 65356071 /opt/conda/lib/python3.6/site-packages/pandas/_libs/skiplist.cpython-36m-x86_64-linux-gnu.so<br> 7fa1143db000-7fa114499000 r-xp 00000000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa114499000-7fa114698000 ---p 000be000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa114698000-7fa1146a0000 rw-p 000bd000 08:31 65356075 /opt/conda/lib/python3.6/site-packages/pandas/_libs/window.cpython-36m-x86_64-linux-gnu.so<br> 7fa1146a0000-7fa1147e2000 rw-p 00000000 00:00 0<br> 7fa1147e2000-7fa1147e3000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e3000-7fa1147e4000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e4000-7fa1147e5000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e5000-7fa1147e6000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e6000-7fa1147e7000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1147e7000-7fa1147e8000 rw-s 00000000 00:15 58 /dev/shm/4DKcfO (deleted)<br> 7fa1147e8000-7fa1147e9000 rw-s 00000000 00:15 57 /dev/shm/1bsMfw (deleted)<br> 7fa1147e9000-7fa1147ea000 rw-s 00000000 00:15 56 /dev/shm/sfXmge (deleted)<br> 7fa1147ea000-7fa1147eb000 rw-s 00000000 00:15 55 /dev/shm/AtAZgW (deleted)<br> 7fa1147eb000-7fa1147ec000 rw-s 00000000 00:15 54 /dev/shm/wr57sE (deleted)<br> 7fa1147ec000-7fa1147ed000 rw-s 00000000 00:15 53 /dev/shm/QmChFm (deleted)<br> 7fa1147ed000-7fa1147ee000 rw-s 00000000 00:15 52 /dev/shm/mvltR4 (deleted)<br> 7fa1147ee000-7fa1147ef000 rw-s 00000000 00:15 51 /dev/shm/2sD5eN (deleted)<br> 7fa1147ef000-7fa1147f0000 rw-s 00000000 00:15 50 /dev/shm/o6IICv (deleted)<br> 7fa1147f0000-7fa1147f1000 rw-s 00000000 00:15 49 /dev/shm/gRZn0d (deleted)<br> 7fa1147f1000-7fa1147f2000 rw-s 00000000 00:15 48 /dev/shm/lyUyzW (deleted)<br> 7fa1147f2000-7fa1147f3000 rw-s 00000000 00:15 47 /dev/shm/LfOK8E (deleted)<br> 7fa1147f3000-7fa1147f4000 rw-s 00000000 00:15 46 /dev/shm/lCXYHn (deleted)<br> 7fa1147f4000-7fa1147f5000 rw-s 00000000 00:15 45 /dev/shm/uWMxs6 (deleted)<br> 7fa1147f5000-7fa1147f6000 rw-s 00000000 00:15 44 /dev/shm/jds7cP (deleted)<br> 7fa1147f6000-7fa1147f7000 rw-s 00000000 00:15 43 /dev/shm/QF6IXx (deleted)<br> 7fa1147f7000-7fa1147f8000 rw-s 00000000 00:15 42 /dev/shm/VFKKTg (deleted)<br> 7fa1147f8000-7fa1147f9000 rw-s 00000000 00:15 41 /dev/shm/zmfNPZ (deleted)<br> 7fa1147f9000-7fa1147fa000 rw-s 00000000 00:15 40 /dev/shm/QIFRLI (deleted)<br> 7fa1147fa000-7fa1147fb000 rw-s 00000000 00:15 39 /dev/shm/lZQuTr (deleted)<br> 7fa1147fb000-7fa1147fc000 rw-s 00000000 00:15 38 /dev/shm/vAR80a (deleted)<br> 7fa1147fc000-7fa1147fd000 rw-s 00000000 00:15 37 /dev/shm/AZUO8T (deleted)<br> 7fa1147fd000-7fa1147fe000 rw-s 00000000 00:15 36 /dev/shm/DFEgsD (deleted)<br> 7fa1147fe000-7fa1147ff000 rw-s 00000000 00:15 35 /dev/shm/0ZbJLm (deleted)<br> 7fa1147ff000-7fa114800000 rw-s 00000000 00:15 34 /dev/shm/zbGd55 (deleted)<br> 7fa114800000-7fa114801000 rw-s 00000000 00:15 33 /dev/shm/lt85zP (deleted)<br> 7fa114801000-7fa114802000 rw-s 00000000 00:15 32 /dev/shm/VsiZ4y (deleted)<br> 7fa114802000-7fa114803000 rw-s 00000000 00:15 31 /dev/shm/jOiUzi (deleted)<br> 7fa114803000-7fa114804000 rw-s 00000000 00:15 30 /dev/shm/VGLbg2 (deleted)<br> 7fa114804000-7fa114805000 rw-s 00000000 00:15 29 /dev/shm/02auWL (deleted)<br> 7fa114805000-7fa114806000 rw-s 00000000 00:15 28 /dev/shm/XzLOCv (deleted)<br> 7fa114806000-7fa114807000 rw-s 00000000 00:15 27 /dev/shm/kFmRuf (deleted)<br> 7fa114807000-7fa114808000 rw-s 00000000 00:15 26 /dev/shm/XwHUmZ (deleted)<br> 7fa114808000-7fa114809000 rw-s 00000000 00:15 25 /dev/shm/Jfc0eJ (deleted)<br> 7fa114809000-7fa11480a000 rw-s 00000000 00:15 24 /dev/shm/nqTGit (deleted)<br> 7fa11480a000-7fa11480b000 rw-s 00000000 00:15 23 /dev/shm/njpomd (deleted)<br> 7fa11480b000-7fa11480c000 rw-s 00000000 00:15 22 /dev/shm/uexcqX (deleted)<br> 7fa11480c000-7fa11480d000 rw-s 00000000 00:15 21 /dev/shm/lA9DFH (deleted)<br> 7fa11480d000-7fa11480e000 rw-s 00000000 00:15 20 /dev/shm/lQz6Ur (deleted)<br> 7fa11480e000-7fa11480f000 rw-s 00000000 00:15 19 /dev/shm/AngBac (deleted)<br> 7fa11480f000-7fa114810000 rw-s 00000000 00:15 18 /dev/shm/EtDYCW (deleted)<br> 7fa114810000-7fa114811000 rw-s 00000000 00:15 17 /dev/shm/ARVm5G (deleted)<br> 7fa114811000-7fa114812000 rw-s 00000000 00:15 16 /dev/shm/2lvNxr (deleted)<br> 7fa114812000-7fa114813000 rw-s 00000000 00:15 15 /dev/shm/usDvdc (deleted)<br> 7fa114813000-7fa114814000 rw-s 00000000 00:15 14 /dev/shm/4KJeTW (deleted)<br> 7fa114814000-7fa114815000 rw-s 00000000 00:15 13 /dev/shm/Sea0yH (deleted)<br> 7fa114815000-7fa114816000 rw-s 00000000 00:15 12 /dev/shm/EjHcss (deleted)<br> 7fa114816000-7fa114817000 rw-s 00000000 00:15 11 /dev/shm/SaZpld (deleted)<br> 7fa114817000-7fa114818000 rw-s 00000000 00:15 10 /dev/shm/0UPDeY (deleted)<br> 7fa114818000-7fa114819000 rw-s 00000000 00:15 9 /dev/shm/qkwS7I (deleted)<br> 7fa114819000-7fa11481a000 rw-s 00000000 00:15 8 /dev/shm/sdU70t (deleted)<br> 7fa11481a000-7fa11481b000 rw-s 00000000 00:15 7 /dev/shm/UjOnUe (deleted)<br> 7fa11481b000-7fa11481c000 rw-s 00000000 00:15 6 /dev/shm/MrcENZ (deleted)<br> 7fa11481c000-7fa11481d000 rw-s 00000000 00:15 5 /dev/shm/EvrVGK (deleted)<br> 7fa11481d000-7fa11481e000 rw-s 00000000 00:15 4 /dev/shm/eeAdAv (deleted)<br> 7fa11481e000-7fa11481f000 rw-s 00000000 00:15 3 /dev/shm/cbCwtg (deleted)<br> 7fa11481f000-7fa114820000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114820000-7fa114821000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114821000-7fa114822000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa114822000-7fa114a22000 rw-p 00000000 00:00 0<br> 7fa114a22000-7fa114a5c000 r-xp 00000000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114a5c000-7fa114c5c000 ---p 0003a000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114c5c000-7fa114c5d000 rw-p 0003a000 08:31 58547880 /opt/conda/lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so<br> 7fa114c5d000-7fa114d9e000 rw-p 00000000 00:00 0<br> 7fa114d9e000-7fa114da2000 r-xp 00000000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114da2000-7fa114fa1000 ---p 00004000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa1000-7fa114fa2000 r--p 00003000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa2000-7fa114fa3000 rw-p 00004000 08:31 59728475 /lib/x86_64-linux-gnu/libuuid.so.1.3.0<br> 7fa114fa3000-7fa115263000 rw-p 00000000 00:00 0<br> 7fa115263000-7fa115290000 r-xp 00000000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115290000-7fa115490000 ---p 0002d000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115490000-7fa115491000 rw-p 0002d000 08:31 58547883 /opt/conda/lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so<br> 7fa115491000-7fa115512000 rw-p 00000000 00:00 0<br> 7fa115512000-7fa11554e000 r-xp 00000000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa11554e000-7fa11574d000 ---p 0003c000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa11574d000-7fa115750000 rw-p 0003b000 08:31 58547802 /opt/conda/lib/python3.6/site-packages/kiwisolver.cpython-36m-x86_64-linux-gnu.so<br> 7fa115750000-7fa115824000 r-xp 00000000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115824000-7fa115a24000 ---p 000d4000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115a24000-7fa115a2b000 rw-p 000d4000 08:31 58548057 /opt/conda/lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so<br> 7fa115a2b000-7fa115c6c000 rw-p 00000000 00:00 0<br> 7fa115c6c000-7fa115ca9000 r-xp 00000000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115ca9000-7fa115ea9000 ---p 0003d000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115ea9000-7fa115eae000 rw-p 0003d000 08:31 65356070 /opt/conda/lib/python3.6/site-packages/pandas/_libs/reshape.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eae000-7fa115eaf000 rw-p 00000000 00:00 0<br> 7fa115eaf000-7fa115eb1000 r--p 00000000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb1000-7fa115eb4000 r-xp 00002000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb4000-7fa115eb5000 r--p 00005000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb5000-7fa115eb6000 ---p 00006000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb6000-7fa115eb7000 r--p 00006000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb7000-7fa115eb8000 rw-p 00007000 08:31 78745085 /opt/conda/lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so<br> 7fa115eb8000-7fa115ef8000 rw-p 00000000 00:00 0<br> 7fa115ef8000-7fa115efb000 r--p 00000000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115efb000-7fa115f00000 r-xp 00003000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115f00000-7fa115fba000 r--p 00008000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fba000-7fa115fbb000 r--p 000c1000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fbb000-7fa115fd6000 rw-p 000c2000 08:31 78745096 /opt/conda/lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so<br> 7fa115fd6000-7fa116016000 rw-p 00000000 00:00 0<br> 7fa116016000-7fa116056000 r-xp 00000000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa116056000-7fa116256000 ---p 00040000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa116256000-7fa11625b000 rw-p 00040000 08:31 65356060 /opt/conda/lib/python3.6/site-packages/pandas/_libs/internals.cpython-36m-x86_64-linux-gnu.so<br> 7fa11625b000-7fa11629c000 rw-p 00000000 00:00 0<br> 7fa11629c000-7fa1162a5000 r-xp 00000000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1162a5000-7fa1164a4000 ---p 00009000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1164a4000-7fa1164a6000 rw-p 00008000 08:31 65356059 /opt/conda/lib/python3.6/site-packages/pandas/_libs/indexing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1164a6000-7fa116626000 rw-p 00000000 00:00 0<br> 7fa116626000-7fa116700000 r-xp 00000000 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116700000-7fa116900000 ---p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d/hovercard" href="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d"><tt>000da00</tt></a> 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116900000-7fa116907000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d/hovercard" href="https://github.com/pytorch/pytorch/commit/000da000f646a51b76ab56705763893490de558d"><tt>000da00</tt></a> 08:31 65356072 /opt/conda/lib/python3.6/site-packages/pandas/_libs/sparse.cpython-36m-x86_64-linux-gnu.so<br> 7fa116907000-7fa1169c9000 rw-p 00000000 00:00 0<br> 7fa1169c9000-7fa116c57000 r-xp 00000000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116c57000-7fa116e57000 ---p 0028e000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116e57000-7fa116e60000 rw-p 0028e000 08:31 65356062 /opt/conda/lib/python3.6/site-packages/pandas/_libs/join.cpython-36m-x86_64-linux-gnu.so<br> 7fa116e60000-7fa116e66000 rw-p 00000000 00:00 0<br> 7fa116e66000-7fa116f00000 r-xp 00000000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa116f00000-7fa1170ff000 ---p 0009a000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa1170ff000-7fa117108000 rw-p 00099000 08:31 65356058 /opt/conda/lib/python3.6/site-packages/pandas/_libs/index.cpython-36m-x86_64-linux-gnu.so<br> 7fa117108000-7fa11724b000 rw-p 00000000 00:00 0<br> 7fa11724b000-7fa11727f000 r-xp 00000000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa11727f000-7fa11747f000 ---p 00034000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa11747f000-7fa117483000 rw-p 00034000 08:31 65356066 /opt/conda/lib/python3.6/site-packages/pandas/_libs/ops.cpython-36m-x86_64-linux-gnu.so<br> 7fa117483000-7fa1174c4000 rw-p 00000000 00:00 0<br> 7fa1174c4000-7fa1174ee000 r-xp 00000000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1174ee000-7fa1176ed000 ---p 0002a000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176ed000-7fa1176f0000 rw-p 00029000 08:31 65356056 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176f0000-7fa1176f1000 rw-p 00000000 00:00 0<br> 7fa1176f1000-7fa1176fe000 r-xp 00000000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa1176fe000-7fa1178fe000 ---p 0000d000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa1178fe000-7fa117900000 rw-p 0000d000 08:31 65356068 /opt/conda/lib/python3.6/site-packages/pandas/_libs/properties.cpython-36m-x86_64-linux-gnu.so<br> 7fa117900000-7fa117940000 rw-p 00000000 00:00 0<br> 7fa117940000-7fa117b71000 r-xp 00000000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117b71000-7fa117d71000 ---p 00231000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117d71000-7fa117d83000 rw-p 00231000 08:31 65356061 /opt/conda/lib/python3.6/site-packages/pandas/_libs/interval.cpython-36m-x86_64-linux-gnu.so<br> 7fa117d83000-7fa117dc7000 rw-p 00000000 00:00 0<br> 7fa117dc7000-7fa117f71000 r-xp 00000000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa117f71000-7fa118170000 ---p 001aa000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa118170000-7fa11817c000 rw-p 001a9000 08:31 65356054 /opt/conda/lib/python3.6/site-packages/pandas/_libs/algos.cpython-36m-x86_64-linux-gnu.so<br> 7fa11817c000-7fa118182000 rw-p 00000000 00:00 0<br> 7fa118182000-7fa1181d0000 r-xp 00000000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1181d0000-7fa1183cf000 ---p 0004e000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1183cf000-7fa1183d5000 rw-p 0004d000 08:31 65356074 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1183d5000-7fa118416000 rw-p 00000000 00:00 0<br> 7fa118416000-7fa1184a2000 r-xp 00000000 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1184a2000-7fa1186a1000 ---p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0008c00036a2612849e4639ad5efb7c5e1ecae1f/hovercard" href="https://github.com/pytorch/pytorch/commit/0008c00036a2612849e4639ad5efb7c5e1ecae1f"><tt>0008c00</tt></a> 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186a1000-7fa1186ae000 rw-p 0008b000 08:31 65356064 /opt/conda/lib/python3.6/site-packages/pandas/_libs/lib.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186ae000-7fa1186b1000 rw-p 00000000 00:00 0<br> 7fa1186b1000-7fa1186c3000 r-xp 00000000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1186c3000-7fa1188c2000 ---p 00012000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1188c2000-7fa1188c4000 rw-p 00011000 08:31 65356065 /opt/conda/lib/python3.6/site-packages/pandas/_libs/missing.cpython-36m-x86_64-linux-gnu.so<br> 7fa1188c4000-7fa1188c5000 rw-p 00000000 00:00 0<br> 7fa1188c5000-7fa118954000 r-xp 00000000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118954000-7fa118b53000 ---p 0008f000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b53000-7fa118b5f000 rw-p 0008e000 08:31 65356057 /opt/conda/lib/python3.6/site-packages/pandas/_libs/hashtable.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b5f000-7fa118b61000 rw-p 00000000 00:00 0<br> 7fa118b61000-7fa118b9e000 r-xp 00000000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118b9e000-7fa118d9e000 ---p 0003d000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118d9e000-7fa118da3000 rw-p 0003d000 08:31 65618804 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/resolution.cpython-36m-x86_64-linux-gnu.so<br> 7fa118da3000-7fa118da4000 rw-p 00000000 00:00 0<br> 7fa118da4000-7fa118dee000 r-xp 00000000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118dee000-7fa118fee000 ---p 0004a000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118fee000-7fa118ff6000 rw-p 0004a000 08:31 65618807 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timestamps.cpython-36m-x86_64-linux-gnu.so<br> 7fa118ff6000-7fa118ff8000 rw-p 00000000 00:00 0<br> 7fa118ff8000-7fa119018000 r-xp 00000000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa119018000-7fa119217000 ---p 00020000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa119217000-7fa11921a000 rw-p 0001f000 08:31 65618798 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/frequencies.cpython-36m-x86_64-linux-gnu.so<br> 7fa11921a000-7fa11921b000 rw-p 00000000 00:00 0<br> 7fa11921b000-7fa11928a000 r-xp 00000000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa11928a000-7fa119489000 ---p 0006f000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa119489000-7fa119492000 rw-p 0006e000 08:31 65618803 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/period.cpython-36m-x86_64-linux-gnu.so<br> 7fa119492000-7fa1194d4000 rw-p 00000000 00:00 0<br> 7fa1194d4000-7fa11953c000 r-xp 00000000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11953c000-7fa11973c000 ---p 00068000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11973c000-7fa119744000 rw-p 00068000 08:31 65618802 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/parsing.cpython-36m-x86_64-linux-gnu.so<br> 7fa119744000-7fa119746000 rw-p 00000000 00:00 0<br> 7fa119746000-7fa119786000 r-xp 00000000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119786000-7fa119985000 ---p 00040000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119985000-7fa119989000 rw-p 0003f000 08:31 65618797 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/fields.cpython-36m-x86_64-linux-gnu.so<br> 7fa119989000-7fa11998b000 rw-p 00000000 00:00 0<br> 7fa11998b000-7fa1199f4000 r-xp 00000000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1199f4000-7fa119bf3000 ---p 00069000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa119bf3000-7fa119bfb000 rw-p 00068000 08:31 65618805 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/strptime.cpython-36m-x86_64-linux-gnu.so<br> 7fa119bfb000-7fa119c3d000 rw-p 00000000 00:00 0<br> 7fa119c3d000-7fa119c4a000 r-xp 00000000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119c4a000-7fa119e49000 ---p 0000d000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119e49000-7fa119e4c000 rw-p 0000c000 08:31 65618795 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/ccalendar.cpython-36m-x86_64-linux-gnu.so<br> 7fa119e4c000-7fa119eb2000 r-xp 00000000 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa119eb2000-7fa11a0b1000 ---p 00066000 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a0b1000-7fa11a0ba000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/00065000969fc05a19712cf13243a9d9e270dd7b/hovercard" href="https://github.com/pytorch/pytorch/commit/00065000969fc05a19712cf13243a9d9e270dd7b"><tt>0006500</tt></a> 08:31 65618801 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/offsets.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a0ba000-7fa11a0bd000 rw-p 00000000 00:00 0<br> 7fa11a0bd000-7fa11a133000 r-xp 00000000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a133000-7fa11a333000 ---p 00076000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a333000-7fa11a33b000 rw-p 00076000 08:31 65618806 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timedeltas.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a33b000-7fa11a33e000 rw-p 00000000 00:00 0<br> 7fa11a33e000-7fa11a38c000 r-xp 00000000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a38c000-7fa11a58b000 ---p 0004e000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a58b000-7fa11a590000 rw-p 0004d000 08:31 65618809 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/tzconversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a590000-7fa11a5d1000 rw-p 00000000 00:00 0<br> 7fa11a5d1000-7fa11a609000 r-xp 00000000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a609000-7fa11a809000 ---p 00038000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a809000-7fa11a80d000 rw-p 00038000 08:31 65618808 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/timezones.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a80d000-7fa11a80e000 rw-p 00000000 00:00 0<br> 7fa11a80e000-7fa11a819000 r-xp 00000000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11a819000-7fa11aa19000 ---p 0000b000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa19000-7fa11aa1a000 rw-p 0000b000 08:31 65618800 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/np_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa1a000-7fa11aa45000 r-xp 00000000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aa45000-7fa11ac45000 ---p 0002b000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac45000-7fa11ac4a000 rw-p 0002b000 08:31 65618799 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/nattype.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac4a000-7fa11ac4b000 rw-p 00000000 00:00 0<br> 7fa11ac4b000-7fa11ac8c000 r-xp 00000000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ac8c000-7fa11ae8b000 ---p 00041000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ae8b000-7fa11ae90000 rw-p 00040000 08:31 65618794 /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-36m-x86_64-linux-gnu.so<br> 7fa11ae90000-7fa11ae91000 rw-p 00000000 00:00 0<br> 7fa11ae91000-7fa11aed9000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11aed9000-7fa11b0d9000 ---p 00048000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b0d9000-7fa11b0de000 rw-p 00048000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7/hovercard" href="https://github.com/pytorch/pytorch/commit/65618796788a32446a77589368c3ab7e455e1da7"><tt>6561879</tt></a> /opt/conda/lib/python3.6/site-packages/pandas/_libs/tslibs/conversion.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b0de000-7fa11b11f000 rw-p 00000000 00:00 0<br> 7fa11b11f000-7fa11b166000 r--p 00000000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b166000-7fa11b1c7000 r-xp 00047000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b1c7000-7fa11b2c7000 r--p 000a8000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2c7000-7fa11b2c8000 r--p 001a7000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2c8000-7fa11b2cc000 rw-p 001a8000 08:31 84118908 /opt/conda/lib/python3.6/site-packages/torchvision/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b2cc000-7fa11b30d000 rw-p 00000000 00:00 0<br> 7fa11b30d000-7fa11b30f000 r--p 00000000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b30f000-7fa11b31d000 r-xp 00002000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b31d000-7fa11b31f000 r--p 00010000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b31f000-7fa11b320000 r--p 00011000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b320000-7fa11b321000 rw-p 00012000 08:31 78745055 /opt/conda/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b321000-7fa11b328000 r--p 00000000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b328000-7fa11b354000 r-xp 00007000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b354000-7fa11b35f000 r--p 00033000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b35f000-7fa11b362000 r--p 0003d000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b362000-7fa11b364000 rw-p 00040000 08:31 78745089 /opt/conda/lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b364000-7fa11b368000 r--p 00000000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b368000-7fa11b371000 r-xp 00004000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b371000-7fa11b374000 r--p 0000d000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b374000-7fa11b375000 r--p 0000f000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b375000-7fa11b377000 rw-p 00010000 08:31 78745052 /opt/conda/lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b377000-7fa11b4b7000 rw-p 00000000 00:00 0<br> 7fa11b4b7000-7fa11b4c1000 r--p 00000000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b4c1000-7fa11b54d000 r-xp 0000a000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b54d000-7fa11b559000 r--p 00096000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b559000-7fa11b55a000 ---p 000a2000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55a000-7fa11b55b000 r--p 000a2000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55b000-7fa11b55c000 rw-p 000a3000 08:31 78482777 /opt/conda/lib/libzstd.so.1.3.7<br> 7fa11b55c000-7fa11b566000 r--p 00000000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b566000-7fa11b5a9000 r-xp 0000a000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5a9000-7fa11b5d4000 r--p 0004d000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d4000-7fa11b5d5000 ---p 00078000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d5000-7fa11b5d9000 r--p 00078000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5d9000-7fa11b5da000 rw-p 0007c000 08:31 80973581 /opt/conda/lib/libtiff.so.5.4.0<br> 7fa11b5da000-7fa11b615000 r-xp 00000000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b615000-7fa11b814000 ---p 0003b000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b814000-7fa11b815000 r--p 0003a000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b815000-7fa11b816000 rw-p 0003b000 08:31 80973514 /opt/conda/lib/libjpeg.so.9.2.0<br> 7fa11b816000-7fa11b828000 r--p 00000000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b828000-7fa11b876000 r-xp 00012000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b876000-7fa11b884000 r--p 00060000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b884000-7fa11b885000 ---p 0006e000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b885000-7fa11b889000 r--p 0006e000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b889000-7fa11b88c000 rw-p 00072000 08:31 82677504 /opt/conda/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so<br> 7fa11b88c000-7fa11b94d000 rw-p 00000000 00:00 0<br> 7fa11b94d000-7fa11b94e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa11b94e000-7fa11bb8e000 rw-p 00000000 00:00 0<br> 7fa11bb8e000-7fa11bbad000 r--p 00000000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bbad000-7fa11bbf7000 r-xp 0001f000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bbf7000-7fa11bc10000 r--p 00069000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc10000-7fa11bc11000 ---p 00082000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc11000-7fa11bc1a000 r--p 00082000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc1a000-7fa11bc1e000 rw-p 0008b000 08:31 78482740 /opt/conda/lib/libssl.so.1.1<br> 7fa11bc1e000-7fa11bc28000 r--p 00000000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc28000-7fa11bc33000 r-xp 0000a000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc33000-7fa11bc39000 r--p 00015000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc39000-7fa11bc3a000 ---p 0001b000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc3a000-7fa11bc3b000 r--p 0001b000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc3b000-7fa11bc40000 rw-p 0001c000 08:31 78745071 /opt/conda/lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bc40000-7fa11bd80000 rw-p 00000000 00:00 0<br> 7fa11bd80000-7fa11bd82000 r--p 00000000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd82000-7fa11bd83000 r-xp 00002000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd83000-7fa11bd84000 r--p 00003000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd84000-7fa11bd85000 r--p 00003000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd85000-7fa11bd86000 rw-p 00004000 08:31 78745060 /opt/conda/lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so<br> 7fa11bd86000-7fa11c0c6000 rw-p 00000000 00:00 0<br> 7fa11c0c6000-7fa11c0ca000 r--p 00000000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0ca000-7fa11c0d2000 r-xp 00004000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d2000-7fa11c0d5000 r--p 0000c000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d5000-7fa11c0d6000 r--p 0000e000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d6000-7fa11c0d9000 rw-p 0000f000 08:31 78745078 /opt/conda/lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0d9000-7fa11c0de000 r--p 00000000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0de000-7fa11c0ec000 r-xp 00005000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0ec000-7fa11c0f1000 r--p 00013000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f1000-7fa11c0f2000 r--p 00017000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f2000-7fa11c0f7000 rw-p 00018000 08:31 78745069 /opt/conda/lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so<br> 7fa11c0f7000-7fa11c447000 rw-p 00000000 00:00 0<br> 7fa11c447000-7fa11e31b000 r-xp 00000000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e31b000-7fa11e51b000 ---p 01ed4000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e51b000-7fa11e58f000 rw-p 01ed4000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e58f000-7fa11e598000 rw-p 00000000 00:00 0<br> 7fa11e598000-7fa11e59a000 rw-p 01f48000 08:31 80973485 /opt/conda/lib/libcublasLt.so.10.2.0.168<br> 7fa11e59a000-7fa1259f5000 r-xp 00000000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa1259f5000-7fa125bf5000 ---p 0745b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125bf5000-7fa125c04000 rw-p 0745b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125c04000-7fa125c0b000 rw-p 00000000 00:00 0<br> 7fa125c0b000-7fa125c11000 rw-p 0746b000 08:31 80973503 /opt/conda/lib/libcusparse.so.10.1.168<br> 7fa125c11000-7fa125c1b000 r--p 00000000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c1b000-7fa125c32000 r-xp 0000a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c32000-7fa125c3b000 r--p 00021000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3b000-7fa125c3c000 ---p 0002a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3c000-7fa125c3d000 r--p 0002a000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3d000-7fa125c3e000 rw-p 0002b000 08:31 78482634 /opt/conda/lib/libgomp.so.1.0.0<br> 7fa125c3e000-7fa12979f000 r-xp 00000000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa12979f000-7fa12999e000 ---p 03b61000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa12999e000-7fa1299ac000 rw-p 03b60000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa1299ac000-7fa1299b6000 rw-p 00000000 00:00 0<br> 7fa1299b6000-7fa1299b9000 rw-p 03b6f000 08:31 80973482 /opt/conda/lib/libcublas.so.10.2.0.168<br> 7fa1299b9000-7fa12bef5000 r-xp 00000000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12bef5000-7fa12c0f4000 ---p 0253c000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12c0f4000-7fa12d4c4000 rw-p 0253b000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12d4c4000-7fa12da1a000 rw-p 00000000 00:00 0<br> 7fa12da1a000-7fa12da1b000 rw-p 0390b000 08:31 80973497 /opt/conda/lib/libcurand.so.10.1.168<br> 7fa12da1b000-7fa135dd3000 r-xp 00000000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135dd3000-7fa135fd3000 ---p 083b8000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135fd3000-7fa135fe5000 rw-p 083b8000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa135fe5000-7fa13605d000 rw-p 00000000 00:00 0<br> 7fa13605d000-7fa13605f000 rw-p 083ca000 08:31 80973491 /opt/conda/lib/libcufft.so.10.1.168<br> 7fa13605f000-7fa1360d6000 r-xp 00000000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1360d6000-7fa1362d6000 ---p 00077000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362d6000-7fa1362da000 rw-p 00077000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362da000-7fa1362db000 rw-p 00000000 00:00 0<br> 7fa1362db000-7fa1362de000 rw-p 0007c000 08:31 80973488 /opt/conda/lib/libcudart.so.10.1.168<br> 7fa1362de000-7fa1362e6000 r-xp 00000000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1362e6000-7fa1364e6000 ---p 00008000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e6000-7fa1364e7000 rw-p 00008000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e7000-7fa1364e8000 rw-p 0000a000 08:31 80973553 /opt/conda/lib/libnvToolsExt.so.1.0.0<br> 7fa1364e8000-7fa136531000 r-xp 00000000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136531000-7fa136731000 ---p 00049000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136731000-7fa136732000 r--p 00049000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136732000-7fa136733000 rw-p 0004a000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa136733000-7fa136734000 rw-p 00000000 00:00 0<br> 7fa136734000-7fa13673e000 rw-p 00063000 08:31 83987905 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10.so<br> 7fa13673e000-7fa136764000 r-xp 00000000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136764000-7fa136963000 ---p 00026000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136963000-7fa136964000 r--p 00025000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136964000-7fa136969000 rw-p 00026000 08:31 83987906 /opt/conda/lib/python3.6/site-packages/torch/lib/libc10_cuda.so<br> 7fa136969000-7fa137fa1000 r-xp 00000000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa137fa1000-7fa1381a0000 ---p 01638000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381a0000-7fa1381a4000 r--p 01637000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381a4000-7fa1381bc000 rw-p 0163b000 08:31 78482684 /opt/conda/lib/libmkl_gnu_thread.so<br> 7fa1381bc000-7fa169a60000 r-xp 00000000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169a60000-7fa169c5f000 ---p 318a4000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169c5f000-7fa169da3000 r--p 318a3000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169da3000-7fa169de4000 rw-p 319e7000 08:31 83987912 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch.so<br> 7fa169de4000-7fa169f33000 rw-p 00000000 00:00 0<br> 7fa169f33000-7fa169fd5000 r--p 00000000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa169fd5000-7fa16a054000 r-xp 000a2000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a054000-7fa16a095000 r--p 00121000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a095000-7fa16a0a0000 r--p 00161000 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a0a0000-7fa16a0a4000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0016c0003af25bece974a7717c23d0b7ab0be55c/hovercard" href="https://github.com/pytorch/pytorch/commit/0016c0003af25bece974a7717c23d0b7ab0be55c"><tt>0016c00</tt></a> 08:31 78482743 /opt/conda/lib/libstdc++.so.6.0.26<br> 7fa16a0a4000-7fa16a0a7000 rw-p 00000000 00:00 0<br> 7fa16a0a7000-7fa16ab20000 r-xp 00000000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ab20000-7fa16ad20000 ---p 00a79000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad20000-7fa16ad31000 r--p 00a79000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad31000-7fa16ad4d000 rw-p 00a8a000 08:31 83987913 /opt/conda/lib/python3.6/site-packages/torch/lib/libtorch_python.so<br> 7fa16ad4d000-7fa16ad9f000 rw-p 00000000 00:00 0<br> 7fa16ad9f000-7fa16ada7000 r-xp 00000000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16ada7000-7fa16afa7000 ---p 00008000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa7000-7fa16afa8000 r--p 00008000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa8000-7fa16afa9000 rw-p 00009000 08:31 83987911 /opt/conda/lib/python3.6/site-packages/torch/lib/libshm.so<br> 7fa16afa9000-7fa16afaa000 r--p 00000000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afaa000-7fa16afab000 r-xp 00001000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afab000-7fa16afac000 r--p 00002000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afac000-7fa16afad000 r--p 00002000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afad000-7fa16afae000 rw-p 00003000 08:31 83594736 /opt/conda/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so<br> 7fa16afae000-7fa16bb38000 r-xp 00000000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bb38000-7fa16bd37000 ---p 00b8a000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd37000-7fa16bd3a000 r--p 00b89000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd3a000-7fa16bd4f000 rw-p 00b8c000 08:31 78482697 /opt/conda/lib/libmkl_vml_avx2.so<br> 7fa16bd4f000-7fa16bd50000 rw-p 00000000 00:00 0<br> 7fa16bd50000-7fa16f229000 r-xp 00000000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f229000-7fa16f429000 ---p 034d9000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f429000-7fa16f430000 r--p 034d9000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f430000-7fa16f43e000 rw-p 034e0000 08:31 78482670 /opt/conda/lib/libmkl_avx2.so<br> 7fa16f43e000-7fa16f445000 rw-p 00000000 00:00 0<br> 7fa16f445000-7fa16fda4000 r-xp 00000000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16fda4000-7fa16ffa4000 ---p 0095f000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffa4000-7fa16ffa5000 r--p 0095f000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffa5000-7fa16ffb8000 rw-p 00960000 08:31 78482686 /opt/conda/lib/libmkl_intel_lp64.so<br> 7fa16ffb8000-7fa16ffbd000 rw-p 00000000 00:00 0<br> 7fa16ffbd000-7fa172026000 r-xp 00000000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172026000-7fa172226000 ---p 02069000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172226000-7fa17222a000 r--p 02069000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa17222a000-7fa172490000 rw-p 0206d000 08:31 78482687 /opt/conda/lib/libmkl_intel_thread.so<br> 7fa172490000-7fa172499000 rw-p 00000000 00:00 0<br> 7fa172499000-7fa176513000 r-xp 00000000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176513000-7fa176712000 ---p 0407a000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176712000-7fa176719000 r--p 04079000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176719000-7fa176747000 rw-p 04080000 08:31 78482680 /opt/conda/lib/libmkl_core.so<br> 7fa176747000-7fa1768ae000 rw-p 00000000 00:00 0<br> 7fa1768ae000-7fa1768bb000 r--p 00000000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa1768bb000-7fa176914000 r-xp 0000d000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176914000-7fa176940000 r--p 00066000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176940000-7fa176941000 ---p 00092000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176941000-7fa176942000 r--p 00092000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176942000-7fa176964000 rw-p 00093000 08:31 79793411 /opt/conda/lib/python3.6/site-packages/numpy/random/generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176964000-7fa176966000 rw-p 00000000 00:00 0<br> 7fa176966000-7fa17696a000 r--p 00000000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17696a000-7fa176971000 r-xp 00004000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176971000-7fa176974000 r--p 0000b000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176974000-7fa176975000 r--p 0000d000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176975000-7fa176976000 rw-p 0000e000 08:31 79793418 /opt/conda/lib/python3.6/site-packages/numpy/random/sfc64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176976000-7fa17697a000 r--p 00000000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17697a000-7fa176984000 r-xp 00004000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176984000-7fa176987000 r--p 0000e000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176987000-7fa176988000 r--p 00010000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa176988000-7fa17698a000 rw-p 00011000 08:31 79793415 /opt/conda/lib/python3.6/site-packages/numpy/random/pcg64.cpython-36m-x86_64-linux-gnu.so<br> 7fa17698a000-7fa17698e000 r--p 00000000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17698e000-7fa17699b000 r-xp 00004000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17699b000-7fa17699f000 r--p 00011000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa17699f000-7fa1769a0000 r--p 00014000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a0000-7fa1769a2000 rw-p 00015000 08:31 79793416 /opt/conda/lib/python3.6/site-packages/numpy/random/philox.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a2000-7fa1769a9000 r--p 00000000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769a9000-7fa1769c9000 r-xp 00007000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769c9000-7fa1769d0000 r--p 00027000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d0000-7fa1769d1000 r--p 0002d000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d1000-7fa1769d4000 rw-p 0002e000 08:31 79793410 /opt/conda/lib/python3.6/site-packages/numpy/random/entropy.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d4000-7fa1769d5000 rw-p 00000000 00:00 0<br> 7fa1769d5000-7fa1769d7000 r--p 00000000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d7000-7fa1769d9000 r-xp 00002000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769d9000-7fa1769da000 r--p 00004000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769da000-7fa1769db000 r--p 00004000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769db000-7fa1769dc000 rw-p 00005000 08:31 78745064 /opt/conda/lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769dc000-7fa1769dd000 r--p 00000000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769dd000-7fa1769de000 r-xp 00001000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769de000-7fa1769df000 r--p 00002000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769df000-7fa1769e0000 r--p 00002000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e0000-7fa1769e1000 rw-p 00003000 08:31 78745035 /opt/conda/lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e1000-7fa1769e4000 r--p 00000000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769e4000-7fa1769f7000 r-xp 00003000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f7000-7fa1769f8000 r--p 00016000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f8000-7fa1769f9000 ---p 00017000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769f9000-7fa1769fa000 r--p 00017000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fa000-7fa1769fc000 rw-p 00018000 08:31 78745067 /opt/conda/lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fc000-7fa1769fe000 r--p 00000000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa1769fe000-7fa176a08000 r-xp 00002000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a08000-7fa176a09000 r--p 0000c000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a09000-7fa176a0a000 ---p 0000d000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0a000-7fa176a0b000 r--p 0000d000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0b000-7fa176a0c000 rw-p 0000e000 08:31 78745036 /opt/conda/lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so<br> 7fa176a0c000-7fa176a87000 r--p 00000000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176a87000-7fa176bfd000 r-xp 0007b000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176bfd000-7fa176c88000 r--p 001f1000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176c88000-7fa176c89000 ---p 0027c000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176c89000-7fa176cb4000 r--p 0027c000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176cb4000-7fa176cb6000 rw-p 002a7000 08:31 78482609 /opt/conda/lib/libcrypto.so.1.1<br> 7fa176cb6000-7fa176cba000 rw-p 00000000 00:00 0<br> 7fa176cba000-7fa176cbc000 r--p 00000000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cbc000-7fa176cbf000 r-xp 00002000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cbf000-7fa176cc0000 r--p 00005000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc0000-7fa176cc1000 ---p 00006000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc1000-7fa176cc2000 r--p 00006000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc2000-7fa176cc3000 rw-p 00007000 08:31 78745053 /opt/conda/lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc3000-7fa176cc5000 r--p 00000000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc5000-7fa176cc8000 r-xp 00002000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cc8000-7fa176cca000 r--p 00005000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cca000-7fa176ccb000 r--p 00006000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ccb000-7fa176ccc000 rw-p 00007000 08:31 78745080 /opt/conda/lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ccc000-7fa176cd3000 r--p 00000000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cd3000-7fa176ced000 r-xp 00007000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ced000-7fa176cf5000 r--p 00021000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cf5000-7fa176cf6000 r--p 00028000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cf6000-7fa176cfb000 rw-p 00029000 08:31 79793405 /opt/conda/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cfb000-7fa176cff000 r--p 00000000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176cff000-7fa176d0f000 r-xp 00004000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d0f000-7fa176d17000 r--p 00014000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d17000-7fa176d18000 ---p 0001c000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d18000-7fa176d19000 r--p 0001c000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d19000-7fa176d1b000 rw-p 0001d000 08:31 79793413 /opt/conda/lib/python3.6/site-packages/numpy/random/mt19937.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d1b000-7fa176d20000 r--p 00000000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d20000-7fa176d6c000 r-xp 00005000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d6c000-7fa176d75000 r--p 00051000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d75000-7fa176d76000 r--p 00059000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d76000-7fa176d77000 rw-p 0005a000 08:31 79793407 /opt/conda/lib/python3.6/site-packages/numpy/random/bounded_integers.cpython-36m-x86_64-linux-gnu.so<br> 7fa176d77000-7fa176db8000 rw-p 00000000 00:00 0<br> 7fa176db8000-7fa176dbc000 r--p 00000000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176dbc000-7fa176ded000 r-xp 00004000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ded000-7fa176df0000 r--p 00035000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df0000-7fa176df1000 ---p 00038000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df1000-7fa176df2000 r--p 00038000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df2000-7fa176df4000 rw-p 00039000 08:31 79793408 /opt/conda/lib/python3.6/site-packages/numpy/random/common.cpython-36m-x86_64-linux-gnu.so<br> 7fa176df4000-7fa176e00000 r--p 00000000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e00000-7fa176e48000 r-xp 0000c000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e48000-7fa176e71000 r--p 00054000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e71000-7fa176e72000 ---p 0007d000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e72000-7fa176e73000 r--p 0007d000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e73000-7fa176e96000 rw-p 0007e000 08:31 79793414 /opt/conda/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so<br> 7fa176e96000-7fa176ed8000 rw-p 00000000 00:00 0<br> 7fa176ed8000-7fa176ee0000 r--p 00000000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176ee0000-7fa176f24000 r-xp 00008000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f24000-7fa176f2a000 r--p 0004c000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2a000-7fa176f2b000 ---p 00052000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2b000-7fa176f2c000 r--p 00052000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f2c000-7fa176f30000 rw-p 00053000 08:31 79531601 /opt/conda/lib/python3.6/site-packages/mkl_fft/_pydfti.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f30000-7fa176f31000 rw-p 00000000 00:00 0<br> 7fa176f31000-7fa176f32000 r--p 00000000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f32000-7fa176f44000 r-xp 00001000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f44000-7fa176f46000 r--p 00013000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f46000-7fa176f47000 r--p 00014000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f47000-7fa176f48000 rw-p 00015000 08:31 79662705 /opt/conda/lib/python3.6/site-packages/numpy/fft/pocketfft_internal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f48000-7fa176f88000 rw-p 00000000 00:00 0<br> 7fa176f88000-7fa176f8f000 r--p 00000000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176f8f000-7fa176fc3000 r-xp 00007000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fc3000-7fa176fcd000 r--p 0003b000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fcd000-7fa176fce000 r--p 00044000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fce000-7fa176fd6000 rw-p 00045000 08:31 78745051 /opt/conda/lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd6000-7fa176fd8000 r--p 00000000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd8000-7fa176fd9000 r-xp 00002000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fd9000-7fa176fda000 r--p 00003000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fda000-7fa176fdb000 r--p 00003000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fdb000-7fa176fdc000 rw-p 00004000 08:31 78745083 /opt/conda/lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so<br> 7fa176fdc000-7fa177001000 r-xp 00000000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177001000-7fa177200000 ---p 00025000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177200000-7fa177201000 r--p 00024000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177201000-7fa177202000 rw-p 00025000 08:31 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2/hovercard" href="https://github.com/pytorch/pytorch/commit/784826562a20668ee588675e8c30d66c5b4ecec2"><tt>7848265</tt></a> /opt/conda/lib/liblzma.so.5.2.4<br> 7fa177202000-7fa177205000 r--p 00000000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa177205000-7fa177209000 r-xp 00003000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa177209000-7fa17720b000 r--p 00007000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720b000-7fa17720c000 r--p 00008000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720c000-7fa17720e000 rw-p 00009000 08:31 78745057 /opt/conda/lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so<br> 7fa17720e000-7fa177211000 r--p 00000000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177211000-7fa177220000 r-xp 00003000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177220000-7fa177222000 r--p 00012000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177222000-7fa177223000 ---p 00014000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177223000-7fa177224000 r--p 00014000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177224000-7fa177226000 rw-p 00015000 08:31 78745037 /opt/conda/lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so<br> 7fa177226000-7fa177229000 r--p 00000000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177229000-7fa17723d000 r-xp 00003000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa17723d000-7fa177244000 r--p 00017000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177244000-7fa177245000 r--p 0001d000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177245000-7fa177246000 rw-p 0001e000 08:31 78482774 /opt/conda/lib/libz.so.1.2.11<br> 7fa177246000-7fa177248000 r--p 00000000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa177248000-7fa17724c000 r-xp 00002000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724c000-7fa17724d000 r--p 00006000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724d000-7fa17724e000 ---p 00007000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724e000-7fa17724f000 r--p 00007000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa17724f000-7fa177251000 rw-p 00008000 08:31 78745098 /opt/conda/lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so<br> 7fa177251000-7fa177311000 rw-p 00000000 00:00 0<br> 7fa177311000-7fa177319000 r--p 00000000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177319000-7fa177334000 r-xp 00008000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177334000-7fa177339000 r--p 00023000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa177339000-7fa17733a000 ---p 00028000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733a000-7fa17733b000 r--p 00028000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733b000-7fa17733c000 rw-p 00029000 08:31 79793272 /opt/conda/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so<br> 7fa17733c000-7fa17733d000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733d000-7fa17733e000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733e000-7fa17733f000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17733f000-7fa177340000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177340000-7fa177341000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177341000-7fa177342000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa177342000-7fa177344000 r--p 00000000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177344000-7fa177348000 r-xp 00002000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177348000-7fa177349000 r--p 00006000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa177349000-7fa17734a000 ---p 00007000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734a000-7fa17734b000 r--p 00007000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734b000-7fa17734d000 rw-p 00008000 08:31 78745045 /opt/conda/lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so<br> 7fa17734d000-7fa17740d000 rw-p 00000000 00:00 0<br> 7fa17740d000-7fa177416000 r--p 00000000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa177416000-7fa177428000 r-xp 00009000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa177428000-7fa17742d000 r--p 0001b000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742d000-7fa17742e000 r--p 0001f000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742e000-7fa17742f000 rw-p 00020000 08:31 79662234 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-x86_64-linux-gnu.so<br> 7fa17742f000-7fa17752f000 rw-p 00000000 00:00 0<br> 7fa17752f000-7fa177534000 r--p 00000000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa177534000-7fa177547000 r-xp 00005000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa177547000-7fa17754b000 r--p 00018000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754b000-7fa17754c000 r--p 0001b000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754c000-7fa17754f000 rw-p 0001c000 08:31 78745062 /opt/conda/lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so<br> 7fa17754f000-7fa1775cf000 rw-p 00000000 00:00 0<br> 7fa1775cf000-7fa1775fa000 r--p 00000000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa1775fa000-7fa177883000 r-xp 0002b000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa177883000-7fa17791a000 r--p 002b4000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17791a000-7fa17791e000 r--p 0034a000 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17791e000-7fa17793b000 rw-p <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0034e000180df558cce826b60d969a37ead61f33/hovercard" href="https://github.com/pytorch/pytorch/commit/0034e000180df558cce826b60d969a37ead61f33"><tt>0034e00</tt></a> 08:31 79662235 /opt/conda/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-x86_64-linux-gnu.so<br> 7fa17793b000-7fa17799b000 rw-p 00000000 00:00 0<br> 7fa17799b000-7fa1779a1000 r--p 00000000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779a1000-7fa1779b6000 r-xp 00006000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779b6000-7fa1779b9000 r--p 0001b000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779b9000-7fa1779ba000 ---p 0001e000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779ba000-7fa1779bb000 r--p 0001e000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779bb000-7fa1779be000 rw-p 0001f000 08:31 79531589 /opt/conda/lib/python3.6/site-packages/mkl/_py_mkl_service.cpython-36m-x86_64-linux-gnu.so<br> 7fa1779be000-7fa1779bf000 rw-p 00000000 00:00 0<br> 7fa1779bf000-7fa1779c2000 r--p 00000000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779c2000-7fa1779ce000 r-xp 00003000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779ce000-7fa1779d1000 r--p 0000f000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d1000-7fa1779d2000 r--p 00011000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d2000-7fa1779d3000 rw-p 00012000 08:31 78482628 /opt/conda/lib/libgcc_s.so.1<br> 7fa1779d3000-7fa177b83000 r-xp 00000000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177b83000-7fa177d82000 ---p 001b0000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d82000-7fa177d85000 r--p 001af000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d85000-7fa177d8f000 rw-p 001b2000 08:31 78482639 /opt/conda/lib/libiomp5.so<br> 7fa177d8f000-7fa177dbd000 rw-p 00000000 00:00 0<br> 7fa177dbd000-7fa178288000 r-xp 00000000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178288000-7fa178488000 ---p 004cb000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178488000-7fa17848e000 r--p 004cb000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa17848e000-7fa178490000 rw-p 004d1000 08:31 78482691 /opt/conda/lib/libmkl_rt.so<br> 7fa178490000-7fa1784a4000 rw-p 00000000 00:00 0<br> 7fa1784a4000-7fa1784ab000 r-xp 00000000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1784ab000-7fa1786ab000 ---p 00007000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ab000-7fa1786ac000 r--p 00007000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ac000-7fa1786ad000 rw-p 00008000 08:31 78482618 /opt/conda/lib/libffi.so.6.0.4<br> 7fa1786ad000-7fa1786b5000 r--p 00000000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786b5000-7fa1786c6000 r-xp 00008000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786c6000-7fa1786cd000 r--p 00019000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786cd000-7fa1786ce000 r--p 0001f000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786ce000-7fa1786d2000 rw-p 00020000 08:31 78745046 /opt/conda/lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so<br> 7fa1786d2000-7fa1787d2000 rw-p 00000000 00:00 0<br> 7fa1787d2000-7fa1787d4000 r--p 00000000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d4000-7fa1787d8000 r-xp 00002000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d8000-7fa1787d9000 r--p 00006000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787d9000-7fa1787da000 r--p 00006000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787da000-7fa1787dc000 rw-p 00007000 08:31 78745092 /opt/conda/lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787dc000-7fa1787e1000 r--p 00000000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787e1000-7fa1787f1000 r-xp 00005000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f1000-7fa1787f6000 r--p 00015000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f6000-7fa1787f7000 ---p 0001a000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f7000-7fa1787f8000 r--p 0001a000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787f8000-7fa1787fa000 rw-p 0001b000 08:31 78745050 /opt/conda/lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so<br> 7fa1787fa000-7fa17883a000 rw-p 00000000 00:00 0<br> 7fa17883a000-7fa17883b000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17883b000-7fa17883c000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa17883c000-7fa17883e000 r--p 00000000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa17883e000-7fa178840000 r-xp 00002000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178840000-7fa178841000 r--p 00004000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178841000-7fa178842000 r--p 00004000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178842000-7fa178843000 rw-p 00005000 08:31 79793274 /opt/conda/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so<br> 7fa178843000-7fa178983000 rw-p 00000000 00:00 0<br> 7fa178983000-7fa178a8b000 r-xp 00000000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178a8b000-7fa178c8a000 ---p 00108000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8a000-7fa178c8b000 r--p 00107000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8b000-7fa178c8c000 rw-p 00108000 08:31 59728410 /lib/x86_64-linux-gnu/libm-2.23.so<br> 7fa178c8c000-7fa178c93000 r-xp 00000000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178c93000-7fa178e92000 ---p 00007000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e92000-7fa178e93000 r--p 00006000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e93000-7fa178e94000 rw-p 00007000 08:31 59728452 /lib/x86_64-linux-gnu/librt-2.23.so<br> 7fa178e94000-7fa178e96000 r-xp 00000000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa178e96000-7fa179095000 ---p 00002000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179095000-7fa179096000 r--p 00001000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179096000-7fa179097000 rw-p 00002000 08:31 59728472 /lib/x86_64-linux-gnu/libutil-2.23.so<br> 7fa179097000-7fa17909a000 r-xp 00000000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17909a000-7fa179299000 ---p 00003000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa179299000-7fa17929a000 r--p 00002000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17929a000-7fa17929b000 rw-p 00003000 08:31 59728391 /lib/x86_64-linux-gnu/libdl-2.23.so<br> 7fa17929b000-7fa17945b000 r-xp 00000000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17945b000-7fa17965b000 ---p 001c0000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17965b000-7fa17965f000 r--p 001c0000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa17965f000-7fa179661000 rw-p 001c4000 08:31 59728378 /lib/x86_64-linux-gnu/libc-2.23.so<br> 7fa179661000-7fa179665000 rw-p 00000000 00:00 0<br> 7fa179665000-7fa17967d000 r-xp 00000000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17967d000-7fa17987c000 ---p 00018000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987c000-7fa17987d000 r--p 00017000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987d000-7fa17987e000 rw-p 00018000 08:31 59728446 /lib/x86_64-linux-gnu/libpthread-2.23.so<br> 7fa17987e000-7fa179882000 rw-p 00000000 00:00 0<br> 7fa179882000-7fa1798a8000 r-xp 00000000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa1798a8000-7fa1798a9000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798a9000-7fa1798aa000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798aa000-7fa1798ab000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798ab000-7fa1798ac000 r--p 00000000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ac000-7fa1798ad000 r-xp 00001000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ad000-7fa1798ae000 r--p 00002000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ae000-7fa1798af000 r--p 00002000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798af000-7fa1798b0000 rw-p 00003000 08:31 79531588 /opt/conda/lib/python3.6/site-packages/mkl/_mklinit.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b0000-7fa1798b1000 r--p 00000000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b1000-7fa1798b3000 r-xp 00001000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b3000-7fa1798b4000 r--p 00003000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b4000-7fa1798b5000 r--p 00003000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b5000-7fa1798b7000 rw-p 00004000 08:31 78745054 /opt/conda/lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798b7000-7fa1798f7000 rw-p 00000000 00:00 0<br> 7fa1798f7000-7fa1798f8000 rw-s 00000000 00:06 493 /dev/nvidiactl<br> 7fa1798f8000-7fa1798fa000 r--p 00000000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fa000-7fa1798fc000 r-xp 00002000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fc000-7fa1798fd000 r--p 00004000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fd000-7fa1798fe000 r--p 00004000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798fe000-7fa1798ff000 rw-p 00005000 08:31 78745063 /opt/conda/lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so<br> 7fa1798ff000-7fa179902000 r--p 00000000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa179902000-7fa179908000 r-xp 00003000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa179908000-7fa17990a000 r--p 00009000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990a000-7fa17990b000 r--p 0000a000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990b000-7fa17990d000 rw-p 0000b000 08:31 78745084 /opt/conda/lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so<br> 7fa17990d000-7fa179910000 r--p 00000000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179910000-7fa179916000 r-xp 00003000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179916000-7fa179918000 r--p 00009000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179918000-7fa179919000 ---p 0000b000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa179919000-7fa17991a000 r--p 0000b000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa17991a000-7fa17991c000 rw-p 0000c000 08:31 78745072 /opt/conda/lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so<br> 7fa17991c000-7fa179aa1000 rw-p 00000000 00:00 0<br> 7fa179aa1000-7fa179aa2000 rwxp 00000000 00:00 0<br> 7fa179aa2000-7fa179aa3000 r--p 00000000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa3000-7fa179aa4000 r-xp 00001000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa4000-7fa179aa5000 r--p 00002000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa5000-7fa179aa6000 r--p 00002000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa6000-7fa179aa7000 rw-p 00003000 08:31 78745061 /opt/conda/lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so<br> 7fa179aa7000-7fa179aa8000 r--p 00025000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa179aa8000-7fa179aa9000 rw-p 00026000 08:31 59728358 /lib/x86_64-linux-gnu/ld-2.23.so<br> 7fa179aa9000-7fa179aaa000 rw-p 00000000 00:00 0<br> 7fff4fa0b000-7fff4fa2d000 rw-p 00000000 00:00 0 [stack]<br> 7fff4fb0e000-7fff4fb11000 r--p 00000000 00:00 0 [vvar]<br> 7fff4fb11000-7fff4fb13000 r-xp 00000000 00:00 0 [vdso]<br> ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]</p> </blockquote> <p dir="auto">In PyTorch 1.4 it shows:</p> <blockquote> <p dir="auto">free(): invalid pointer</p> </blockquote> <p dir="auto">without other information.</p> <h2 dir="auto">Environment</h2> <p dir="auto">I'm using the official PyTorch Docker image to run my training. I tried both 1.3-cuda10.1-cudnn7-devel and 1.4-cuda10.1-cudnn7-devel (note that PyTorch version older than 1.3 will not successfully run the second-order gradient, in which case the grad return pl_lengths always have require_grad=False for some reason.)</p> <p dir="auto">I’m using 4 Titan x (pascal) for data-parallel training.</p> <h2 dir="auto">Additional context</h2>
1
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; : 3.4.1:</li> <li>Operating System / Platform =&gt; :MacOS High Sierra 10.13.6:</li> <li>Compiler =&gt; :Xcode 10.0:</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">command prompt : make -j2</p> <p dir="auto">Scanning dependencies of target opencv_ximgproc<br> [ 41%] Building CXX object modules/ximgproc/CMakeFiles/opencv_ximgproc.dir/src/adaptive_manifold_filter_n.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/reshape_layer.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/resize_nearest_neighbor_layer.cpp.o<br> [ 41%] Building CXX object modules/ximgproc/CMakeFiles/opencv_ximgproc.dir/src/domain_transform.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/scale_layer.cpp.o<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/domain_transform.cpp:38:<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.hpp:292:<br> /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.inl.hpp:473:44: error: no member named 'type' in<br> 'cv::Vec&lt;float, 1&gt;'; did you mean 'time'?<br> dst.create(guide.rows, guide.cols + 1, IDistVec::type);<br> ^~~~~~~~~~~~~~<br> time<br> /usr/include/time.h:117:8: note: 'time' declared here<br> time_t time(time_t *);<br> ^<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/domain_transform.cpp:38:<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.hpp:292:<br> /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.inl.hpp:500:52: error: no member named 'type' in<br> 'cv::Vec&lt;float, 1&gt;'; did you mean 'time'?<br> dist = getWExtendedMat(guide.rows, guide.cols, IDistVec::type, 1, 1);<br> ^~~~~~~~~~~~~~<br> time<br> /usr/include/time.h:117:8: note: 'time' declared here<br> time_t time(time_t *);<br> ^<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/domain_transform.cpp:38:<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.hpp:292:<br> /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.inl.hpp:501:57: error: no member named 'type' in<br> 'cv::Vec&lt;float, 1&gt;'; did you mean 'time'?<br> idist = getWExtendedMat(guide.rows, guide.cols + 1, IDistVec::type);<br> ^~~~~~~~~~~~~~<br> time<br> /usr/include/time.h:117:8: note: 'time' declared here<br> time_t time(time_t *);<br> ^<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/domain_transform.cpp:38:<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.hpp:292:<br> /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.inl.hpp:538:54: error: no member named 'type' in<br> 'cv::Vec&lt;float, 1&gt;'; did you mean 'time'?<br> dtf.a0distHor.create(guide.rows, guide.cols - 1, DistVec::type);<br> ^~~~~~~~~~~~~<br> time<br> /usr/include/time.h:117:8: note: 'time' declared here<br> time_t time(time_t *);<br> ^<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/domain_transform.cpp:38:<br> In file included from /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.hpp:292:<br> /Users/tarapaglino/opencv_contrib/modules/ximgproc/src/dtfilter_cpu.inl.hpp:568:55: error: no member named 'type' in<br> 'cv::Vec&lt;float, 1&gt;'; did you mean 'time'?<br> dtf.a0distVert.create(guide.rows - 1, guide.cols, DistVec::type);<br> ^~~~~~~~~~~~~<br> time<br> /usr/include/time.h:117:8: note: 'time' declared here<br> time_t time(time_t *);<br> ^<br> 5 errors generated.<br> make[2]: *** [modules/ximgproc/CMakeFiles/opencv_ximgproc.dir/src/domain_transform.cpp.o] Error 1<br> make[1]: *** [modules/ximgproc/CMakeFiles/opencv_ximgproc.dir/all] Error 2<br> make[1]: *** Waiting for unfinished jobs....<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/shift_layer.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/slice_layer.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/softmax_layer.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/layers/split_layer.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/nms.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/common.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/math_functions.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/ocl4dnn_conv_spatial.cpp.o<br> [ 41%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/ocl4dnn_inner_product.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/ocl4dnn_lrn.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/ocl4dnn_pool.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/ocl4dnn/src/ocl4dnn_softmax.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/op_halide.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/op_inf_engine.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/tensorflow/tf_importer.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/tensorflow/tf_io.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/torch/THDiskFile.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/torch/THFile.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/torch/THGeneral.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/src/torch/torch_importer.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/opencl_kernels_dnn.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/layers/layers_common.avx.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/layers/layers_common.avx2.cpp.o<br> [ 42%] Building CXX object modules/dnn/CMakeFiles/opencv_dnn.dir/layers/layers_common.avx512_skx.cpp.o<br> [ 42%] Linking CXX shared library ../../lib/libopencv_dnn.dylib<br> [ 42%] Built target opencv_dnn<br> make: *** [all] Error 2</p> <ul dir="auto"> <li>Any ideas?<br> --&gt;</li> </ul>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.1.2 dev</li> <li>Operating System / Platform =&gt; Mac OS X 64 Bit 10.15.1</li> <li>Compiler =&gt; Python 3.6</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">Hello all, I recently retrained a model and wanted to run it using OpenCV's DNN module. However, when I try to run the file, I keep getting this error.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="File &quot;Stone.py&quot;, line 23, in &lt;module&gt; net = cv2.dnn.readNetFromTensorflow('/Users/Username/Skystone-Vision/SkystoneVision/PB-File/model.pb', '/Users/Username/Skystone-Vision/SkystoneVision/new_PBtxt/plswork.pbtxt') cv2.error: OpenCV(4.1.2-dev) /Users/Username/opencv/modules/dnn/src/tensorflow/tf_importer.cpp:1495: error: (-215:Assertion failed) !haveConst || layer.input_size() == 2 in function 'populateNet'"><pre class="notranslate"><code class="notranslate">File "Stone.py", line 23, in &lt;module&gt; net = cv2.dnn.readNetFromTensorflow('/Users/Username/Skystone-Vision/SkystoneVision/PB-File/model.pb', '/Users/Username/Skystone-Vision/SkystoneVision/new_PBtxt/plswork.pbtxt') cv2.error: OpenCV(4.1.2-dev) /Users/Username/opencv/modules/dnn/src/tensorflow/tf_importer.cpp:1495: error: (-215:Assertion failed) !haveConst || layer.input_size() == 2 in function 'populateNet' </code></pre></div> <p dir="auto">I do not know how to proceed next as I have no clue on how to fix this problem. Please help if you can. I will be attaching my checkpoint files below.</p> <p dir="auto">Any help would be greatly appreciated. Thanks!</p> <p dir="auto">The link to reproduce can be running the Stone.py and changing the directories inside the script to match where the .pb file and the .pbtxt file are located.<br> <a href="https://drive.google.com/drive/folders/1C4SGBkQqsen7PVh8IlcyTM9r1VrLa_dE" rel="nofollow">https://drive.google.com/drive/folders/1C4SGBkQqsen7PVh8IlcyTM9r1VrLa_dE</a></p>
0
<p dir="auto">There is a lot of semi-duplication / differences in the <code class="notranslate">Series()</code> and <code class="notranslate">DataFrame()</code> methods.</p> <p dir="auto">Maybe it's worth taking a look through them and regularising.</p> <p dir="auto">Fwiw, I prefer <code class="notranslate">tostring</code> vs. <code class="notranslate">to_string</code></p> <p dir="auto">Also, would be nice to have <code class="notranslate">tohtml</code> on things, though expanding it is beyond the scope of this.</p>
<p dir="auto">I've needed this feature 3 or 4 times recently.<br> The way I've typically done it is by making a new dataframe, concatenating the many dataframes after renaming their columns to identify to which dataframe they originally belonged, dropping all NA from the concatenated dataframe, and then splitting up this dataframe and assigning it to the individual dataframes from before.</p> <p dir="auto">What is a better, less hacky way of doing this?<br> Can it already be done easily with an existing function in Pandas?</p>
0
<p dir="auto"><strong>Glide Version</strong>: 3.8.0</p> <p dir="auto"><strong>Integration libraries</strong>: none</p> <p dir="auto"><strong>Device/Android Version</strong>: any</p> <p dir="auto"><strong>Issue details / Repro steps / Use case background</strong>:</p> <p dir="auto">I try to load a gradient, which is defined as <code class="notranslate">my_gradient.xml</code>:</p> <div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;shape xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;&gt; &lt;gradient android:type=&quot;linear&quot; android:angle=&quot;0&quot; android:startColor=&quot;#f6ee19&quot; android:endColor=&quot;#115ede&quot; /&gt; &lt;/shape&gt;"><pre class="notranslate">&lt;?<span class="pl-ent">xml</span><span class="pl-e"> version</span>=<span class="pl-s"><span class="pl-pds">"</span>1.0<span class="pl-pds">"</span></span><span class="pl-e"> encoding</span>=<span class="pl-s"><span class="pl-pds">"</span>utf-8<span class="pl-pds">"</span></span>?&gt; &lt;<span class="pl-ent">shape</span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">android</span>=<span class="pl-s"><span class="pl-pds">"</span>http://schemas.android.com/apk/res/android<span class="pl-pds">"</span></span>&gt; &lt;<span class="pl-ent">gradient</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">type</span>=<span class="pl-s"><span class="pl-pds">"</span>linear<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">angle</span>=<span class="pl-s"><span class="pl-pds">"</span>0<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">startColor</span>=<span class="pl-s"><span class="pl-pds">"</span>#f6ee19<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">endColor</span>=<span class="pl-s"><span class="pl-pds">"</span>#115ede<span class="pl-pds">"</span></span> /&gt; &lt;/<span class="pl-ent">shape</span>&gt;</pre></div> <p dir="auto">Loading code:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Glide.with(context).load(R.id.my_gradient).crossFade().into(imageView);"><pre class="notranslate"><span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">context</span>).<span class="pl-en">load</span>(<span class="pl-smi">R</span>.<span class="pl-s1">id</span>.<span class="pl-s1">my_gradient</span>).<span class="pl-en">crossFade</span>().<span class="pl-en">into</span>(<span class="pl-s1">imageView</span>);</pre></div> <p dir="auto">But the ImageView is still empty.</p> <p dir="auto">If I create GradientDrawable programmatically I get the following exception:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="GradientDrawable gd = new GradientDrawable( GradientDrawable.Orientation.TOP_BOTTOM, new int[] {0xFF616261, 0xFF131313}); gd.setCornerRadius(0f); Glide.with(context).load(gd).crossFade().into(imageView);"><pre class="notranslate"><span class="pl-smi">GradientDrawable</span> <span class="pl-s1">gd</span> = <span class="pl-k">new</span> <span class="pl-smi">GradientDrawable</span>( <span class="pl-smi">GradientDrawable</span>.<span class="pl-s1">Orientation</span>.<span class="pl-c1">TOP_BOTTOM</span>, <span class="pl-k">new</span> <span class="pl-smi">int</span>[] {<span class="pl-c1">0xFF616261</span>, <span class="pl-c1">0xFF131313</span>}); <span class="pl-s1">gd</span>.<span class="pl-en">setCornerRadius</span>(<span class="pl-c1">0f</span>); <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">context</span>).<span class="pl-en">load</span>(<span class="pl-s1">gd</span>).<span class="pl-en">crossFade</span>().<span class="pl-en">into</span>(<span class="pl-s1">imageView</span>);</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.IllegalArgumentException: Unknown type class android.graphics.drawable.GradientDrawable. You must provide a Model of a type for which there is a registered ModelLoader, if you are using a custom model, you must first call Glide#register with a ModelLoaderFactory for your custom model class at com.bumptech.glide.RequestManager.loadGeneric(RequestManager.java:629) at com.bumptech.glide.RequestManager.load(RequestManager.java:598)"><pre class="notranslate"><code class="notranslate">java.lang.IllegalArgumentException: Unknown type class android.graphics.drawable.GradientDrawable. You must provide a Model of a type for which there is a registered ModelLoader, if you are using a custom model, you must first call Glide#register with a ModelLoaderFactory for your custom model class at com.bumptech.glide.RequestManager.loadGeneric(RequestManager.java:629) at com.bumptech.glide.RequestManager.load(RequestManager.java:598) </code></pre></div> <p dir="auto">Do I something wrong or there is no way to load gradients with Glide?</p>
<h2 dir="auto">Idea</h2> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Glide.with(this).load(bitmap).into(imageView); Glide.with(this).load(drawable).into(imageView);"><pre class="notranslate"><span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-smi">this</span>).<span class="pl-en">load</span>(<span class="pl-s1">bitmap</span>).<span class="pl-en">into</span>(<span class="pl-s1">imageView</span>); <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-smi">this</span>).<span class="pl-en">load</span>(<span class="pl-s1">drawable</span>).<span class="pl-en">into</span>(<span class="pl-s1">imageView</span>);</pre></div> <p dir="auto">This looks weird compared to <code class="notranslate">ImageView.setImageBitmap(bitmap)</code>, but if you need animation and error handling (null bitmap), the above could become an easy to use, fire and forget, go-to line instead of duplicating code.<br> Note: you've already made a wrapper of <code class="notranslate">ImageView#setImageResource</code> and <code class="notranslate">ImageView#setImageUri</code>.</p> <p dir="auto">Currently they throw</p> <blockquote> <p dir="auto">Caused by: java.lang.IllegalArgumentException: Unknown type android.graphics.Bitmap@44759ab8. You must provide a Model of a type for which there is a registered ModelLoader, if you are using a custom model, you must first call Glide#register with a ModelLoaderFactory for your custom model class.<br> <code class="notranslate">at com.bumptech.glide.RequestManager.loadGeneric(RequestManager.java:382)</code><br> <code class="notranslate">at com.bumptech.glide.RequestManager.load(RequestManager.java:374)</code></p> </blockquote> <h2 dir="auto">Context</h2> <p dir="auto">This came up when I was trying to display a captured image using Glide (oversimplified code):</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), Activity.RESULT_FIRST_USER); public void onActivityResult(int requestCode, int resultCode, Intent data) { if(requestCode == REQUEST_CODE_GET_PICTURE &amp;&amp; resultCode == Activity.RESULT_OK) { Bitmap bitmap = (Bitmap)data.getExtras().get(&quot;data&quot;); Glide.with(this).load(bitmap)/*...*/.into(image);"><pre class="notranslate"><span class="pl-en">startActivityForResult</span>(<span class="pl-k">new</span> <span class="pl-smi">Intent</span>(<span class="pl-smi">MediaStore</span>.<span class="pl-c1">ACTION_IMAGE_CAPTURE</span>), <span class="pl-smi">Activity</span>.<span class="pl-c1">RESULT_FIRST_USER</span>); <span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-s1">onActivityResult</span>(<span class="pl-smi">int</span> <span class="pl-s1">requestCode</span>, <span class="pl-smi">int</span> <span class="pl-s1">resultCode</span>, <span class="pl-smi">Intent</span> <span class="pl-s1">data</span>) { <span class="pl-k">if</span>(<span class="pl-s1">requestCode</span> == <span class="pl-c1">REQUEST_CODE_GET_PICTURE</span> &amp;&amp; <span class="pl-s1">resultCode</span> == <span class="pl-smi">Activity</span>.<span class="pl-c1">RESULT_OK</span>) { <span class="pl-smi">Bitmap</span> <span class="pl-s1">bitmap</span> = (<span class="pl-smi">Bitmap</span>)<span class="pl-s1">data</span>.<span class="pl-en">getExtras</span>().<span class="pl-en">get</span>(<span class="pl-s">"data"</span>); <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-smi">this</span>).<span class="pl-en">load</span>(<span class="pl-s1">bitmap</span>)<span class="pl-c">/*...*/</span>.<span class="pl-en">into</span>(<span class="pl-s1">image</span>);</pre></div>
1
<ol dir="auto"> <li>Load stocks app.</li> <li>Wait for it to load completely.</li> <li>Tap a row.</li> <li>Wait for the transition to complete.</li> <li>Hit back.</li> </ol> <p dir="auto"><code class="notranslate">[StockRowPartKey AAPL:arrow]</code> is seen twice somehow.</p>
<p dir="auto">There should be real way to execute code in background. I know that this is a duplicate. But it is FFF***ing hard to create a simple alarm clock using a Framework that "almighty Google" supports.</p>
0
<p dir="auto">The plotting functions on DataFrames always have grid=True. This overrides user settings in matplotlibrc.</p> <p dir="auto">If you have to created a desired default plot style with the rc file, you want every plot to show with this style unless otherwise specified.<br> Because pandas overrides this setting you have to manually set the grid option every time.</p> <p dir="auto">A better behaviour would be for Pandas not to override any plot styles by default.</p>
<p dir="auto">When using df.plot() to creat a simple line chart from a dataframe, the expected behavior is that, if no 'grid' keyword is passed, the plot will default to the matplotlib 'axes.grid' rcParam setting to determine whether to show a grid or not. However (in 0.16), the grid is always being shown, regardless of the matplotlib setting, unless I explicitly pass grid=False.</p> <p dir="auto">In general, there are several plot types where grid=True is forced, which basically breaks the consistent styling that you get from matplotlib rcparams or another package like Seaborn. I can understand forcing a default grid=False for the type of plots where a grid doesn't make sense, but forcing grid=True, overriding the configured defaults, for things like boxplots seems a bit counter intuitive.</p>
1
<h2 dir="auto">Feature Request</h2> <p dir="auto"><strong>For English only</strong>, other languages will not accept.</p> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response anymore and we cannot make decision by 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">Is your feature request related to a problem?</h3> <p dir="auto">NO</p> <h3 dir="auto">Describe the feature you would like.</h3> <h4 dir="auto">First of all, we can use DistSQL create two READWRITE_SPLITTING RULE in one logic schema.</h4> <p dir="auto">eg:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE READWRITE_SPLITTING RULE ms_group_0 ( WRITE_RESOURCE=write_ds, READ_RESOURCES(read_ds_0,read_ds_1), TYPE(NAME=random) ); CREATE READWRITE_SPLITTING RULE ms_group_1( WRITE_RESOURCE=write_ds, READ_RESOURCES(read_ds_0,read_ds_1), TYPE(NAME=random) ); "><pre class="notranslate"><code class="notranslate">CREATE READWRITE_SPLITTING RULE ms_group_0 ( WRITE_RESOURCE=write_ds, READ_RESOURCES(read_ds_0,read_ds_1), TYPE(NAME=random) ); CREATE READWRITE_SPLITTING RULE ms_group_1( WRITE_RESOURCE=write_ds, READ_RESOURCES(read_ds_0,read_ds_1), TYPE(NAME=random) ); </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/86462784/178705641-fbc56d1e-07e9-48a6-af7a-8e8328cda378.png"><img width="665" alt="image" src="https://user-images.githubusercontent.com/86462784/178705641-fbc56d1e-07e9-48a6-af7a-8e8328cda378.png" style="max-width: 100%;"></a></p> <h4 dir="auto">But when we use select in this logic schema,we can't figure out how to route,because of we have same table in two rules.</h4> <p dir="auto">And it is not legal, because we cant't have two same table in one schema.</p> <h4 dir="auto">So,can we verify dataSource in ReadWrite-splitting rules? Ensures that a logical schema does not exist the same table and cannot be routed.</h4>
<p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">2.0.0.M1</h3> <h3 dir="auto">各节点都更新成功</h3> <h3 dir="auto">执行操作后,无响应</h3> <h3 dir="auto">表t_order</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="( ORDER_ID INTEGER not null, USER_ID INTEGER not null, STATUS VARCHAR2(50) )"><pre lang="create" class="notranslate"><code class="notranslate">( ORDER_ID INTEGER not null, USER_ID INTEGER not null, STATUS VARCHAR2(50) ) </code></pre></div> <p dir="auto">分片键使用USER_ID,切分至2个数据库实例中,并在2个数据库实例中分别插入order_id=1234数据记录。<br> 并开启多个线程进行更新操作,语句如下</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="update t_order set status='11111' where order_id='1234'"><pre class="notranslate"><code class="notranslate">update t_order set status='11111' where order_id='1234' </code></pre></div> <h3 dir="auto">实例代码</h3> <h4 dir="auto">SpringMybatisShardingDatabaseOnlyMain2</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* * Copyright 1999-2015 dangdang.com. * &lt;p&gt; * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an &quot;AS IS&quot; BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * &lt;/p&gt; */ package io.shardingjdbc.example.spring.namespace.mybatis; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; /** *请求1 1、node1 update test set a=1 where user_id='1' 4、node2 update test set a=1 where user_id='1' 请求2 2、node1 update test set a=1 where user_id='1' 3、node2 update test set a=1 where user_id='1' * * 如果按照以上顺序执行时,会不会发生死锁现象 */ public final class SpringMybatisShardingDatabaseOnlyMain2 { public static void main(final String[] args) throws SQLException, InterruptedException { final ApplicationContext applicationContext = new ClassPathXmlApplicationContext(&quot;META-INF/mybatisShardingDatabaseOnlyContext.xml&quot;); ExecutorService executors = Executors.newFixedThreadPool(10); for (int i = 0; i &lt; 2; i++) { executors.execute(new UpdateRunable(applicationContext)); } TimeUnit.SECONDS.sleep(10); executors.shutdown(); while (!executors.isTerminated()){ } System.out.println(&quot;程序结束&quot;); } public static class UpdateRunable implements Runnable { ApplicationContext applicationContext; public UpdateRunable(ApplicationContext applicationContext) { this.applicationContext = applicationContext; } @Override public void run() { DataSource dataSource = (DataSource) applicationContext.getBean(&quot;shardingDataSource&quot;); Connection connection = null; PreparedStatement pre = null; try { connection = dataSource.getConnection(); connection.setAutoCommit(false); pre = connection.prepareStatement(&quot;update t_order set status='11111' where order_id='1234'&quot;); int c = pre.executeUpdate(); System.out.println(&quot;t-name:&quot; + Thread.currentThread().getName() + &quot; c1:&quot; + c); connection.commit(); } catch (Exception e) { e.printStackTrace(); } finally { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } } } } } "><pre class="notranslate"><code class="notranslate">/* * Copyright 1999-2015 dangdang.com. * &lt;p&gt; * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * &lt;/p&gt; */ package io.shardingjdbc.example.spring.namespace.mybatis; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; /** *请求1 1、node1 update test set a=1 where user_id='1' 4、node2 update test set a=1 where user_id='1' 请求2 2、node1 update test set a=1 where user_id='1' 3、node2 update test set a=1 where user_id='1' * * 如果按照以上顺序执行时,会不会发生死锁现象 */ public final class SpringMybatisShardingDatabaseOnlyMain2 { public static void main(final String[] args) throws SQLException, InterruptedException { final ApplicationContext applicationContext = new ClassPathXmlApplicationContext("META-INF/mybatisShardingDatabaseOnlyContext.xml"); ExecutorService executors = Executors.newFixedThreadPool(10); for (int i = 0; i &lt; 2; i++) { executors.execute(new UpdateRunable(applicationContext)); } TimeUnit.SECONDS.sleep(10); executors.shutdown(); while (!executors.isTerminated()){ } System.out.println("程序结束"); } public static class UpdateRunable implements Runnable { ApplicationContext applicationContext; public UpdateRunable(ApplicationContext applicationContext) { this.applicationContext = applicationContext; } @Override public void run() { DataSource dataSource = (DataSource) applicationContext.getBean("shardingDataSource"); Connection connection = null; PreparedStatement pre = null; try { connection = dataSource.getConnection(); connection.setAutoCommit(false); pre = connection.prepareStatement("update t_order set status='11111' where order_id='1234'"); int c = pre.executeUpdate(); System.out.println("t-name:" + Thread.currentThread().getName() + " c1:" + c); connection.commit(); } catch (Exception e) { e.printStackTrace(); } finally { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } } } } } </code></pre></div> <h4 dir="auto">mybatisShardingDatabaseOnlyContext.xml</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:context=&quot;http://www.springframework.org/schema/context&quot; xmlns:tx=&quot;http://www.springframework.org/schema/tx&quot; xmlns:sharding=&quot;http://shardingjdbc.io/schema/shardingjdbc/sharding&quot; xsi:schemaLocation=&quot;http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://shardingjdbc.io/schema/shardingjdbc/sharding http://shardingjdbc.io/schema/shardingjdbc/sharding/sharding.xsd&quot;&gt; &lt;context:component-scan base-package=&quot;io.shardingjdbc.example.spring.namespace.mybatis&quot; /&gt; &lt;bean id=&quot;demo_ds_0&quot; class=&quot;org.apache.commons.dbcp.BasicDataSource&quot; destroy-method=&quot;close&quot;&gt; &lt;property name=&quot;driverClassName&quot; value=&quot;oracle.jdbc.driver.OracleDriver&quot;/&gt; &lt;property name=&quot;url&quot; value=&quot;jdbc:oracle:thin:@127.0.0.1:1521:orcl&quot;/&gt; &lt;property name=&quot;username&quot; value=&quot;t2&quot;/&gt; &lt;property name=&quot;password&quot; value=&quot;t2&quot;/&gt; &lt;property name=&quot;maxActive&quot; value=&quot;50&quot;/&gt; &lt;/bean&gt; &lt;bean id=&quot;demo_ds_1&quot; class=&quot;org.apache.commons.dbcp.BasicDataSource&quot; destroy-method=&quot;close&quot;&gt; &lt;property name=&quot;driverClassName&quot; value=&quot;oracle.jdbc.driver.OracleDriver&quot;/&gt; &lt;property name=&quot;url&quot; value=&quot;jdbc:oracle:thin:@127.0.0.1:1521:orcl&quot;/&gt; &lt;property name=&quot;username&quot; value=&quot;t1&quot;/&gt; &lt;property name=&quot;password&quot; value=&quot;t1&quot;/&gt; &lt;property name=&quot;maxActive&quot; value=&quot;50&quot;/&gt; &lt;/bean&gt; &lt;sharding:standard-strategy id=&quot;databaseShardingStrategy&quot; sharding-column=&quot;user_id&quot; precise-algorithm-class=&quot;io.shardingjdbc.example.spring.namespace.mybatis.algorithm.PreciseModuloDatabaseShardingAlgorithm&quot;/&gt; &lt;sharding:data-source id=&quot;shardingDataSource&quot;&gt; &lt;sharding:sharding-rule data-source-names=&quot;demo_ds_0, demo_ds_1&quot;&gt; &lt;sharding:table-rules&gt; &lt;sharding:table-rule logic-table=&quot;t_order&quot; database-strategy-ref=&quot;databaseShardingStrategy&quot; generate-key-column=&quot;order_id&quot; /&gt; &lt;/sharding:table-rules&gt; &lt;/sharding:sharding-rule&gt; &lt;/sharding:data-source&gt; &lt;bean id=&quot;transactionManager&quot; class=&quot;org.springframework.jdbc.datasource.DataSourceTransactionManager&quot;&gt; &lt;property name=&quot;dataSource&quot; ref=&quot;shardingDataSource&quot; /&gt; &lt;/bean&gt; &lt;tx:annotation-driven transaction-manager=&quot;transactionManager&quot; /&gt; &lt;bean id=&quot;sqlSessionFactory&quot; class=&quot;org.mybatis.spring.SqlSessionFactoryBean&quot;&gt; &lt;property name=&quot;dataSource&quot; ref=&quot;shardingDataSource&quot;/&gt; &lt;property name=&quot;mapperLocations&quot; value=&quot;classpath*:META-INF/mappers/*.xml&quot;/&gt; &lt;/bean&gt; &lt;bean class=&quot;org.mybatis.spring.mapper.MapperScannerConfigurer&quot;&gt; &lt;property name=&quot;basePackage&quot; value=&quot;io.shardingjdbc.example.spring.namespace.mybatis&quot;/&gt; &lt;property name=&quot;sqlSessionFactoryBeanName&quot; value=&quot;sqlSessionFactory&quot;/&gt; &lt;/bean&gt; &lt;/beans&gt; "><pre class="notranslate"><code class="notranslate">&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:sharding="http://shardingjdbc.io/schema/shardingjdbc/sharding" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://shardingjdbc.io/schema/shardingjdbc/sharding http://shardingjdbc.io/schema/shardingjdbc/sharding/sharding.xsd"&gt; &lt;context:component-scan base-package="io.shardingjdbc.example.spring.namespace.mybatis" /&gt; &lt;bean id="demo_ds_0" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"&gt; &lt;property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/&gt; &lt;property name="url" value="jdbc:oracle:thin:@127.0.0.1:1521:orcl"/&gt; &lt;property name="username" value="t2"/&gt; &lt;property name="password" value="t2"/&gt; &lt;property name="maxActive" value="50"/&gt; &lt;/bean&gt; &lt;bean id="demo_ds_1" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"&gt; &lt;property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/&gt; &lt;property name="url" value="jdbc:oracle:thin:@127.0.0.1:1521:orcl"/&gt; &lt;property name="username" value="t1"/&gt; &lt;property name="password" value="t1"/&gt; &lt;property name="maxActive" value="50"/&gt; &lt;/bean&gt; &lt;sharding:standard-strategy id="databaseShardingStrategy" sharding-column="user_id" precise-algorithm-class="io.shardingjdbc.example.spring.namespace.mybatis.algorithm.PreciseModuloDatabaseShardingAlgorithm"/&gt; &lt;sharding:data-source id="shardingDataSource"&gt; &lt;sharding:sharding-rule data-source-names="demo_ds_0, demo_ds_1"&gt; &lt;sharding:table-rules&gt; &lt;sharding:table-rule logic-table="t_order" database-strategy-ref="databaseShardingStrategy" generate-key-column="order_id" /&gt; &lt;/sharding:table-rules&gt; &lt;/sharding:sharding-rule&gt; &lt;/sharding:data-source&gt; &lt;bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"&gt; &lt;property name="dataSource" ref="shardingDataSource" /&gt; &lt;/bean&gt; &lt;tx:annotation-driven transaction-manager="transactionManager" /&gt; &lt;bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"&gt; &lt;property name="dataSource" ref="shardingDataSource"/&gt; &lt;property name="mapperLocations" value="classpath*:META-INF/mappers/*.xml"/&gt; &lt;/bean&gt; &lt;bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"&gt; &lt;property name="basePackage" value="io.shardingjdbc.example.spring.namespace.mybatis"/&gt; &lt;property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/&gt; &lt;/bean&gt; &lt;/beans&gt; </code></pre></div> <h4 dir="auto">OrderMapper.xml</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt; &lt;!DOCTYPE mapper PUBLIC &quot;-//mybatis.org//DTD Mapper 3.0//EN&quot; &quot;http://mybatis.org/dtd/mybatis-3-mapper.dtd&quot;&gt; &lt;mapper namespace=&quot;io.shardingjdbc.example.spring.namespace.mybatis.repository.OrderRepository&quot;&gt; &lt;update id=&quot;createIfNotExistsTable&quot;&gt; CREATE TABLE t_order (order_id INT , user_id INT NOT NULL, status VARCHAR2(50), PRIMARY KEY (order_id)) &lt;/update&gt; &lt;update id=&quot;truncateTable&quot;&gt; TRUNCATE TABLE t_order &lt;/update&gt; &lt;update id=&quot;dropTable&quot;&gt; DROP TABLE t_order &lt;/update&gt; &lt;insert id=&quot;insert&quot; useGeneratedKeys=&quot;true&quot; keyProperty=&quot;orderId&quot;&gt; INSERT INTO t_order ( user_id, status ) VALUES ( #{userId,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR} ) &lt;/insert&gt; &lt;delete id=&quot;delete&quot;&gt; DELETE FROM t_order WHERE order_id = #{orderId,jdbcType=INTEGER} &lt;/delete&gt; &lt;/mapper&gt; "><pre class="notranslate"><code class="notranslate">&lt;?xml version="1.0" encoding="UTF-8" ?&gt; &lt;!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"&gt; &lt;mapper namespace="io.shardingjdbc.example.spring.namespace.mybatis.repository.OrderRepository"&gt; &lt;update id="createIfNotExistsTable"&gt; CREATE TABLE t_order (order_id INT , user_id INT NOT NULL, status VARCHAR2(50), PRIMARY KEY (order_id)) &lt;/update&gt; &lt;update id="truncateTable"&gt; TRUNCATE TABLE t_order &lt;/update&gt; &lt;update id="dropTable"&gt; DROP TABLE t_order &lt;/update&gt; &lt;insert id="insert" useGeneratedKeys="true" keyProperty="orderId"&gt; INSERT INTO t_order ( user_id, status ) VALUES ( #{userId,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR} ) &lt;/insert&gt; &lt;delete id="delete"&gt; DELETE FROM t_order WHERE order_id = #{orderId,jdbcType=INTEGER} &lt;/delete&gt; &lt;/mapper&gt; </code></pre></div>
0
<p dir="auto">When making higher order functions that return functions, type parameters are not preserved in return type. Notice in the following example how <code class="notranslate">identityM</code> has the generic type parameter <code class="notranslate">A</code> changed into <code class="notranslate">{}</code>, resulting in a loss of type safety in the rest of the code.</p> <p dir="auto">Ideally <code class="notranslate">identityM</code> would have the type <code class="notranslate">&lt;A&gt;(a: A) =&gt; A</code>. If this isn't possible, issuing a compiler warning (or error) about loss of genericity would be very helpful in tracking down errors like this.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function mirror&lt;A, B&gt;(f: (a: A) =&gt; B): (a: A) =&gt; B { return f; } function identity&lt;A&gt;(a: A): A { return a; } var identityM = mirror(identity); // type: (a: {}) =&gt; {} var x = 1; var y = identity(x); // type: number var z = identityM(x); // type: {}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">mirror</span><span class="pl-c1">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">,</span> <span class="pl-smi">B</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">f</span>: <span class="pl-kos">(</span><span class="pl-s1">a</span>: <span class="pl-smi">A</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">B</span><span class="pl-kos">)</span>: <span class="pl-kos">(</span><span class="pl-s1">a</span>: <span class="pl-smi">A</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">B</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">f</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">function</span> <span class="pl-en">identity</span><span class="pl-c1">&lt;</span><span class="pl-smi">A</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">a</span>: <span class="pl-smi">A</span><span class="pl-kos">)</span>: <span class="pl-smi">A</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">a</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">var</span> <span class="pl-s1">identityM</span> <span class="pl-c1">=</span> <span class="pl-en">mirror</span><span class="pl-kos">(</span><span class="pl-s1">identity</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// type: (a: {}) =&gt; {}</span> <span class="pl-k">var</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">identity</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// type: number</span> <span class="pl-k">var</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-en">identityM</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// type: {}</span></pre></div>
<p dir="auto">Motivating example (one of many):</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function compare&lt;T&gt;(lhs: T, rhs: T): boolean { return lhs === rhs; } if(compare('1', 1)) { // Expected: Error -- I made 'compare' generic for a reason! /* ... */ }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">compare</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">lhs</span>: <span class="pl-smi">T</span><span class="pl-kos">,</span> <span class="pl-s1">rhs</span>: <span class="pl-smi">T</span><span class="pl-kos">)</span>: <span class="pl-smi">boolean</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">lhs</span> <span class="pl-c1">===</span> <span class="pl-s1">rhs</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-en">compare</span><span class="pl-kos">(</span><span class="pl-s">'1'</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-kos">{</span> <span class="pl-c">// Expected: Error -- I made 'compare' generic for a reason!</span> <span class="pl-c">/* ... */</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Proposal</h3> <p dir="auto">When generic type inference performs its Best Common Type operation (4.12.2), it should be an error if this returns <code class="notranslate">{}</code> when <code class="notranslate">{}</code> was not one of the input types.</p> <p dir="auto">This is entirely consistent with other behavior already in the compiler:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var foo = bar ? '1' : 1; // Error, no BCT between '1' and 1 function fn() { // Error, no BCT between '1' and 1 if(foo) { return '1'; } else { return 1; } }"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-s1">bar</span> ? <span class="pl-s">'1'</span> : <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-c">// Error, no BCT between '1' and 1</span> <span class="pl-k">function</span> <span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// Error, no BCT between '1' and 1</span> <span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s">'1'</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-k">return</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Open Questions</h3> <p dir="auto">From @KamyarNazeri -- should this apply when there are zero input types? e.g.:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class List&lt;T&gt; { items: T[]; } var x = new List(); // Probably want an error here"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">List</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">items</span>: <span class="pl-smi">T</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">var</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">List</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Probably want an error here</span></pre></div> <p dir="auto">That seems desirable, but has some collateral damage:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo&lt;T&gt;(x: number, a?: T, b?: T) { } foo(0); // Error, zero input types provided for inference"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">,</span> <span class="pl-s1">a</span>?: <span class="pl-smi">T</span><span class="pl-kos">,</span> <span class="pl-s1">b</span>?: <span class="pl-smi">T</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">0</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Error, zero input types provided for inference</span></pre></div> <p dir="auto">This would come up slightly more often than naively expected because many .d.ts authors (mistakenly) create generic types which don't actually consume their type parameters. Perhaps this warning would effectively discourage them from doing so?</p>
1
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// https://msdn.microsoft.com/en-us/library/windows/apps/hh700334.aspx tempFolder.createFileAsync(&quot;tempfile.txt&quot;, Windows.Storage.CreationCollisionOption.replaceExisting) .then(function (tempFile) { // The createFileAsync call succeeded, so start the download operation. var downloader = new Windows.Networking.BackgroundTransfer.BackgroundDownloader(); var transfer = downloader.createDownload(uriExample, tempFile); return transfer.startAsync(); })"><pre class="notranslate"><span class="pl-c">// https://msdn.microsoft.com/en-us/library/windows/apps/hh700334.aspx</span> <span class="pl-s1">tempFolder</span><span class="pl-kos">.</span><span class="pl-en">createFileAsync</span><span class="pl-kos">(</span><span class="pl-s">"tempfile.txt"</span><span class="pl-kos">,</span> <span class="pl-v">Windows</span><span class="pl-kos">.</span><span class="pl-c1">Storage</span><span class="pl-kos">.</span><span class="pl-c1">CreationCollisionOption</span><span class="pl-kos">.</span><span class="pl-c1">replaceExisting</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">tempFile</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// The createFileAsync call succeeded, so start the download operation.</span> <span class="pl-k">var</span> <span class="pl-s1">downloader</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Windows</span><span class="pl-kos">.</span><span class="pl-c1">Networking</span><span class="pl-kos">.</span><span class="pl-c1">BackgroundTransfer</span><span class="pl-kos">.</span><span class="pl-c1">BackgroundDownloader</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">transfer</span> <span class="pl-c1">=</span> <span class="pl-s1">downloader</span><span class="pl-kos">.</span><span class="pl-en">createDownload</span><span class="pl-kos">(</span><span class="pl-s1">uriExample</span><span class="pl-kos">,</span> <span class="pl-s1">tempFile</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">transfer</span><span class="pl-kos">.</span><span class="pl-en">startAsync</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> <p dir="auto">Copy-pasting this to Visual Studio makes this (with 2-space indent):</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="tempFolder.createFileAsync(&quot;tempfile.txt&quot;, Windows.Storage.CreationCollisionOption.replaceExisting) .then(function (tempFile) { // The createFileAsync call succeeded, so start the download operation. var downloader = new Windows.Networking.BackgroundTransfer.BackgroundDownloader(); var transfer = downloader.createDownload(uriExample, tempFile); return transfer.startAsync(); })"><pre class="notranslate"><span class="pl-s1">tempFolder</span><span class="pl-kos">.</span><span class="pl-en">createFileAsync</span><span class="pl-kos">(</span><span class="pl-s">"tempfile.txt"</span><span class="pl-kos">,</span> <span class="pl-smi">Windows</span><span class="pl-kos">.</span><span class="pl-c1">Storage</span><span class="pl-kos">.</span><span class="pl-c1">CreationCollisionOption</span><span class="pl-kos">.</span><span class="pl-c1">replaceExisting</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">tempFile</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// The createFileAsync call succeeded, so start the download operation.</span> <span class="pl-k">var</span> <span class="pl-s1">downloader</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Windows</span><span class="pl-kos">.</span><span class="pl-c1">Networking</span><span class="pl-kos">.</span><span class="pl-c1">BackgroundTransfer</span><span class="pl-kos">.</span><span class="pl-c1">BackgroundDownloader</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">transfer</span> <span class="pl-c1">=</span> <span class="pl-s1">downloader</span><span class="pl-kos">.</span><span class="pl-en">createDownload</span><span class="pl-kos">(</span><span class="pl-s1">uriExample</span><span class="pl-kos">,</span> <span class="pl-s1">tempFile</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">transfer</span><span class="pl-kos">.</span><span class="pl-en">startAsync</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> <p dir="auto">This in fact worked in older version of TypeScript (I think the last version was 1.1), but now it's hard to make Promise chains.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// This is how I deal with Promise now somePromise().then(() =&gt; { }).then(() =&gt; { }); // Not good... somePromise().then(() =&gt; otherPromise( param1, &quot;long-string, let's say it's a URL.&quot; ).then(() =&gt; { blah(); }); // Doesn't work somePromise() .then(() =&gt; otherPromise( param1, &quot;long-string, let's say it's a URL.&quot; ) .then(() =&gt; { blah(); });"><pre class="notranslate"><span class="pl-c">// This is how I deal with Promise now</span> <span class="pl-en">somePromise</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">then</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">then</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-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Not good...</span> <span class="pl-en">somePromise</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">then</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-en">otherPromise</span><span class="pl-kos">(</span> <span class="pl-s1">param1</span><span class="pl-kos">,</span> <span class="pl-s">"long-string, let's say it's a URL."</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">then</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-en">blah</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-c">// Doesn't work</span> <span class="pl-s1">somePromise</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-c1">then</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-en">otherPromise</span><span class="pl-kos">(</span> <span class="pl-s1">param1</span><span class="pl-kos">,</span> <span class="pl-s">"long-string, let's say it's a URL."</span> <span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">then</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-en">blah</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></pre></div> <p dir="auto">Can we get this better so that the MSDN example just work?</p>
<p dir="auto">I have the following code:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" query(id: number) { return this.$http .get('/api/Entity/' + id) .then(function (data) { return data.data; // (a) }); // (b) }"><pre class="notranslate"> <span class="pl-en">query</span><span class="pl-kos">(</span><span class="pl-s1">id</span>: <span class="pl-s1">number</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-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">$http</span> <span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'/api/Entity/'</span> <span class="pl-c1">+</span> <span class="pl-s1">id</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">data</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-c1">data</span><span class="pl-kos">;</span> <span class="pl-c">// (a)</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// (b)</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">When I type the semi-colon at point (a), it gets correctly indented. When a type a semi-colon at point (b), both lines get 4 columns to the left, which is the same output when a format the whole document.</p> <p dir="auto">I must add it gets on my nerves.</p> <p dir="auto">Any way to avoid it? Tks</p>
1
<p dir="auto">I'm trying to get TensorBoard working with Keras.<br> It looks like I'm able to run an initial model with tf (1.12.0) and keras (2.1.6-tf). I have some simple code. Listed below:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="%matplotlib inline from io import StringIO import numpy as np import pandas as pd import tensorflow as tf csv = StringIO('''a,b,c,y 0,1,2,0 1,2,0,1 0,2,1,0 3,2,1,1 3,1,2,0''') data = pd.read_csv(csv) def tb_cb(batch_size): # visualize graphs and grandient tb = tf.keras.callbacks.TensorBoard(log_dir='/tmp/test/', histogram_freq=1, batch_size=batch_size, write_graph=True, write_grads=True) return tb m = tf.keras.Sequential([ # going to change 1 in the line below tf.keras.layers.Dense(1, activation='relu', input_shape=(3,), name='hidden1'), tf.keras.layers.Dense(1, activation='linear', name='output') ]) m.compile(loss='mse', optimizer='adam', metrics=['mae']) X = data.iloc[:,:3] y = data.y hist = m.fit(X, y, epochs=10, verbose=1, callbacks=[tb_cb(10)], validation_data=(X,y))"><pre class="notranslate"><span class="pl-c1">%</span><span class="pl-s1">matplotlib</span> <span class="pl-s1">inline</span> <span class="pl-k">from</span> <span class="pl-s1">io</span> <span class="pl-k">import</span> <span class="pl-v">StringIO</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-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <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-s1">csv</span> <span class="pl-c1">=</span> <span class="pl-v">StringIO</span>(<span class="pl-s">'''a,b,c,y</span> <span class="pl-s">0,1,2,0</span> <span class="pl-s">1,2,0,1</span> <span class="pl-s">0,2,1,0</span> <span class="pl-s">3,2,1,1</span> <span class="pl-s">3,1,2,0'''</span>) <span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s1">csv</span>) <span class="pl-k">def</span> <span class="pl-en">tb_cb</span>(<span class="pl-s1">batch_size</span>): <span class="pl-c"># visualize graphs and grandient</span> <span class="pl-s1">tb</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">callbacks</span>.<span class="pl-v">TensorBoard</span>(<span class="pl-s1">log_dir</span><span class="pl-c1">=</span><span class="pl-s">'/tmp/test/'</span>, <span class="pl-s1">histogram_freq</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">batch_size</span><span class="pl-c1">=</span><span class="pl-s1">batch_size</span>, <span class="pl-s1">write_graph</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">write_grads</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-k">return</span> <span class="pl-s1">tb</span> <span class="pl-s1">m</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-v">Sequential</span>([ <span class="pl-c"># going to change 1 in the line below</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">layers</span>.<span class="pl-v">Dense</span>(<span class="pl-c1">1</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'relu'</span>, <span class="pl-s1">input_shape</span><span class="pl-c1">=</span>(<span class="pl-c1">3</span>,), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'hidden1'</span>), <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">layers</span>.<span class="pl-v">Dense</span>(<span class="pl-c1">1</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s">'linear'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'output'</span>) ]) <span class="pl-s1">m</span>.<span class="pl-en">compile</span>(<span class="pl-s1">loss</span><span class="pl-c1">=</span><span class="pl-s">'mse'</span>, <span class="pl-s1">optimizer</span><span class="pl-c1">=</span><span class="pl-s">'adam'</span>, <span class="pl-s1">metrics</span><span class="pl-c1">=</span>[<span class="pl-s">'mae'</span>]) <span class="pl-v">X</span> <span class="pl-c1">=</span> <span class="pl-s1">data</span>.<span class="pl-s1">iloc</span>[:,:<span class="pl-c1">3</span>] <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">data</span>.<span class="pl-s1">y</span> <span class="pl-s1">hist</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>, <span class="pl-s1">y</span>, <span class="pl-s1">epochs</span><span class="pl-c1">=</span><span class="pl-c1">10</span>, <span class="pl-s1">verbose</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">callbacks</span><span class="pl-c1">=</span>[<span class="pl-en">tb_cb</span>(<span class="pl-c1">10</span>)], <span class="pl-s1">validation_data</span><span class="pl-c1">=</span>(<span class="pl-v">X</span>,<span class="pl-s1">y</span>))</pre></div> <p dir="auto">The first time I run this I get TensorBoard output. I have then changed the number of neurons in the hidden layer and re-run the model.</p> <p dir="auto">I get the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- InvalidArgumentError Traceback (most recent call last) &lt;ipython-input-11-4e4fb6f60bf0&gt; in &lt;module&gt; 15 y = data.y 16 hist = m.fit(X, y, epochs=10, verbose=1, callbacks=[tb_cb(10)], ---&gt; 17 validation_data=(X,y)) ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training.py in fit(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, max_queue_size, workers, use_multiprocessing, **kwargs) 1637 initial_epoch=initial_epoch, 1638 steps_per_epoch=steps_per_epoch, -&gt; 1639 validation_steps=validation_steps) 1640 1641 def evaluate(self, ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_arrays.py in fit_loop(model, inputs, targets, sample_weights, batch_size, epochs, verbose, callbacks, val_inputs, val_targets, val_sample_weights, shuffle, initial_epoch, steps_per_epoch, validation_steps) 231 sample_weights=val_sample_weights, 232 batch_size=batch_size, --&gt; 233 verbose=0) 234 if not isinstance(val_outs, list): 235 val_outs = [val_outs] ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_arrays.py in test_loop(model, inputs, targets, sample_weights, batch_size, verbose, steps) 437 ins_batch[i] = ins_batch[i].toarray() 438 --&gt; 439 batch_outs = f(ins_batch) 440 441 if isinstance(batch_outs, list): ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/backend.py in __call__(self, inputs) 2984 2985 fetched = self._callable_fn(*array_vals, -&gt; 2986 run_metadata=self.run_metadata) 2987 self._call_fetch_callbacks(fetched[-len(self._fetches):]) 2988 return fetched[:len(self.outputs)] ~/.env/364/lib/python3.6/site-packages/tensorflow/python/client/session.py in __call__(self, *args, **kwargs) 1437 ret = tf_session.TF_SessionRunCallable( 1438 self._session._session, self._handle, args, status, -&gt; 1439 run_metadata_ptr) 1440 if run_metadata: 1441 proto_data = tf_session.TF_GetBuffer(run_metadata_ptr) ~/.env/364/lib/python3.6/site-packages/tensorflow/python/framework/errors_impl.py in __exit__(self, type_arg, value_arg, traceback_arg) 526 None, None, 527 compat.as_text(c_api.TF_Message(self.status.status)), --&gt; 528 c_api.TF_GetCode(self.status.status)) 529 # Delete the underlying status object from memory otherwise it stays alive 530 # as there is a reference to status from this from the traceback due to InvalidArgumentError: You must feed a value for placeholder tensor 'dense_9_target' with dtype float and shape [?,?] [[{{node dense_9_target}} = Placeholder[dtype=DT_FLOAT, shape=[?,?], _device=&quot;/job:localhost/replica:0/task:0/device:CPU:0&quot;]()]]"><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- InvalidArgumentError Traceback (most recent call last) &lt;ipython-input-11-4e4fb6f60bf0&gt; in &lt;module&gt; 15 y = data.y 16 hist = m.fit(X, y, epochs=10, verbose=1, callbacks=[tb_cb(10)], ---&gt; 17 validation_data=(X,y)) ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training.py in fit(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, max_queue_size, workers, use_multiprocessing, **kwargs) 1637 initial_epoch=initial_epoch, 1638 steps_per_epoch=steps_per_epoch, -&gt; 1639 validation_steps=validation_steps) 1640 1641 def evaluate(self, ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_arrays.py in fit_loop(model, inputs, targets, sample_weights, batch_size, epochs, verbose, callbacks, val_inputs, val_targets, val_sample_weights, shuffle, initial_epoch, steps_per_epoch, validation_steps) 231 sample_weights=val_sample_weights, 232 batch_size=batch_size, --&gt; 233 verbose=0) 234 if not isinstance(val_outs, list): 235 val_outs = [val_outs] ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_arrays.py in test_loop(model, inputs, targets, sample_weights, batch_size, verbose, steps) 437 ins_batch[i] = ins_batch[i].toarray() 438 --&gt; 439 batch_outs = f(ins_batch) 440 441 if isinstance(batch_outs, list): ~/.env/364/lib/python3.6/site-packages/tensorflow/python/keras/backend.py in __call__(self, inputs) 2984 2985 fetched = self._callable_fn(*array_vals, -&gt; 2986 run_metadata=self.run_metadata) 2987 self._call_fetch_callbacks(fetched[-len(self._fetches):]) 2988 return fetched[:len(self.outputs)] ~/.env/364/lib/python3.6/site-packages/tensorflow/python/client/session.py in __call__(self, *args, **kwargs) 1437 ret = tf_session.TF_SessionRunCallable( 1438 self._session._session, self._handle, args, status, -&gt; 1439 run_metadata_ptr) 1440 if run_metadata: 1441 proto_data = tf_session.TF_GetBuffer(run_metadata_ptr) ~/.env/364/lib/python3.6/site-packages/tensorflow/python/framework/errors_impl.py in __exit__(self, type_arg, value_arg, traceback_arg) 526 None, None, 527 compat.as_text(c_api.TF_Message(self.status.status)), --&gt; 528 c_api.TF_GetCode(self.status.status)) 529 # Delete the underlying status object from memory otherwise it stays alive 530 # as there is a reference to status from this from the traceback due to InvalidArgumentError: You must feed a value for placeholder tensor 'dense_9_target' with dtype float and shape [?,?] [[{{node dense_9_target}} = Placeholder[dtype=DT_FLOAT, shape=[?,?], _device="/job:localhost/replica:0/task:0/device:CPU:0"]()]] </code></pre></div>
<p dir="auto">TensorBoard in Keras crashes deep in the callbacks for the end-of-epoch. Here's a simplified version of the code:</p> <h1 dir="auto">The Code</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import pandas as pd import keras from keras.models import Sequential from keras.layers import Dense class ToyNet (): def __init__(self, run=1, layer_1_nodes=50, layer_2_nodes=100, layer_3_nodes=50): self.run_seq = run self.layer_1_nodes = layer_1_nodes self.layer_2_nodes = layer_2_nodes self.layer_3_nodes = layer_3_nodes # Define the model self.model = Sequential() self.model.add(Dense(self.layer_1_nodes, input_dim=9, activation='relu', name='layer_1')) self.model.add(Dense(self.layer_2_nodes, activation='relu', name='layer_2')) self.model.add(Dense(self.layer_3_nodes, activation='relu', name='layer_3')) self.model.add(Dense(1, activation='linear', name='output_layer')) self.model.compile(loss='mean_squared_error', optimizer='adam') # Create a TensorBoard logger log_dir = &quot;logs_{}&quot;.format(self.run_seq) self.logger = keras.callbacks.TensorBoard( log_dir=log_dir, histogram_freq=5 ) def train(self, X, Y, epochs=50): # Train the model self.model.fit( X, Y, epochs=epochs, shuffle=True, verbose=2, validation_split=0.05, callbacks=[self.logger] ) def test(self, Xt, Yt): test_error_rate = self.model.evaluate(Xt, Yt, verbose=0) print(&quot;The mean squared error (MSE) for the test data set is: {}&quot;.format(test_error_rate)) if __name__ == '__main__': training_data_df = pd.read_csv(&quot;sales_data_training_scaled.csv&quot;) X = training_data_df.drop('total_earnings', axis=1).values Y = training_data_df[['total_earnings']].values # Load the test data set test_data_df = pd.read_csv(&quot;sales_data_test_scaled.csv&quot;) X_test = test_data_df.drop('total_earnings', axis=1).values Y_test = test_data_df[['total_earnings']].values print(&quot;Run #1&quot;) toy1 = ToyNet(1, 50, 100, 50) toy1.train(X, Y) toy1.test(X_test, Y_test) print(&quot;Run #2&quot;) toy2 = ToyNet(2, 5, 100, 50) toy2.train(X,Y) ### &lt;--- Crashes here at the end of first epoch while doing callbacks toy2.test(X_test, Y_test)"><pre class="notranslate"><code class="notranslate">import pandas as pd import keras from keras.models import Sequential from keras.layers import Dense class ToyNet (): def __init__(self, run=1, layer_1_nodes=50, layer_2_nodes=100, layer_3_nodes=50): self.run_seq = run self.layer_1_nodes = layer_1_nodes self.layer_2_nodes = layer_2_nodes self.layer_3_nodes = layer_3_nodes # Define the model self.model = Sequential() self.model.add(Dense(self.layer_1_nodes, input_dim=9, activation='relu', name='layer_1')) self.model.add(Dense(self.layer_2_nodes, activation='relu', name='layer_2')) self.model.add(Dense(self.layer_3_nodes, activation='relu', name='layer_3')) self.model.add(Dense(1, activation='linear', name='output_layer')) self.model.compile(loss='mean_squared_error', optimizer='adam') # Create a TensorBoard logger log_dir = "logs_{}".format(self.run_seq) self.logger = keras.callbacks.TensorBoard( log_dir=log_dir, histogram_freq=5 ) def train(self, X, Y, epochs=50): # Train the model self.model.fit( X, Y, epochs=epochs, shuffle=True, verbose=2, validation_split=0.05, callbacks=[self.logger] ) def test(self, Xt, Yt): test_error_rate = self.model.evaluate(Xt, Yt, verbose=0) print("The mean squared error (MSE) for the test data set is: {}".format(test_error_rate)) if __name__ == '__main__': training_data_df = pd.read_csv("sales_data_training_scaled.csv") X = training_data_df.drop('total_earnings', axis=1).values Y = training_data_df[['total_earnings']].values # Load the test data set test_data_df = pd.read_csv("sales_data_test_scaled.csv") X_test = test_data_df.drop('total_earnings', axis=1).values Y_test = test_data_df[['total_earnings']].values print("Run #1") toy1 = ToyNet(1, 50, 100, 50) toy1.train(X, Y) toy1.test(X_test, Y_test) print("Run #2") toy2 = ToyNet(2, 5, 100, 50) toy2.train(X,Y) ### &lt;--- Crashes here at the end of first epoch while doing callbacks toy2.test(X_test, Y_test) </code></pre></div> <h1 dir="auto">The Output</h1> <p dir="auto">/anaconda3/lib/python3.6/site-packages/h5py/<strong>init</strong>.py:36: FutureWarning: Conversion of the second argument of issubdtype from <code class="notranslate">float</code> to <code class="notranslate">np.floating</code> is deprecated. In future, it will be treated as <code class="notranslate">np.float64 == np.dtype(float).type</code>.<br> from ._conv import register_converters as _register_converters<br> Using TensorFlow backend.<br> Run <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="64886719" data-permission-text="Title is private" data-url="https://github.com/keras-team/keras/issues/1" data-hovercard-type="pull_request" data-hovercard-url="/keras-team/keras/pull/1/hovercard" href="https://github.com/keras-team/keras/pull/1">#1</a><br> Train on 950 samples, validate on 50 samples<br> Epoch 1/50</p> <ul dir="auto"> <li>1s - loss: 0.0314 - val_loss: 0.0043<br> Epoch 2/50</li> <li>0s - loss: 0.0048 - val_loss: 0.0011</li> </ul> <blockquote> <p dir="auto">... output snipped for brevity</p> </blockquote> <p dir="auto">Epoch 50/50</p> <ul dir="auto"> <li>0s - loss: 2.4237e-05 - val_loss: 5.0361e-05<br> The mean squared error (MSE) for the test data set is: 7.575784547952935e-05<br> Run <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="64933940" data-permission-text="Title is private" data-url="https://github.com/keras-team/keras/issues/2" data-hovercard-type="pull_request" data-hovercard-url="/keras-team/keras/pull/2/hovercard" href="https://github.com/keras-team/keras/pull/2">#2</a><br> Train on 950 samples, validate on 50 samples<br> Epoch 1/50</li> <li>1s - loss: 0.0333 - val_loss: 0.0172</li> </ul> <hr> <p dir="auto">InvalidArgumentError Traceback (most recent call last)<br> /anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _do_call(self, fn, *args)<br> 1321 try:<br> -&gt; 1322 return fn(*args)<br> 1323 except errors.OpError as e:</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _run_fn(feed_dict, fetch_list, target_list, options, run_metadata)<br> 1306 return self._call_tf_sessionrun(<br> -&gt; 1307 options, feed_dict, fetch_list, target_list, run_metadata)<br> 1308</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _call_tf_sessionrun(self, options, feed_dict, fetch_list, target_list, run_metadata)<br> 1408 self._session, options, feed_dict, fetch_list, target_list,<br> -&gt; 1409 run_metadata)<br> 1410 else:</p> <p dir="auto">InvalidArgumentError: You must feed a value for placeholder tensor 'layer_1_input' with dtype float and shape [?,9]<br> [[Node: layer_1_input = Placeholder<a href="">dtype=DT_FLOAT, shape=[?,9], _device="/job:localhost/replica:0/task:0/device:CPU:0"</a>]]</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">InvalidArgumentError Traceback (most recent call last)<br> in ()<br> 64<br> 65 toy2 = ToyNet(2, 5, 100, 50)<br> ---&gt; 66 toy2.train(X,Y) ### &lt;--- Crashes here at the end of first epoch while doing callbacks<br> 67 toy2.test(X_test, Y_test)</p> <p dir="auto"> in train(self, X, Y, epochs)<br> 39 verbose=2,<br> 40 validation_split=0.05,<br> ---&gt; 41 callbacks=[self.logger]<br> 42 )<br> 43</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/keras/engine/training.py in fit(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, **kwargs)<br> 1043 initial_epoch=initial_epoch,<br> 1044 steps_per_epoch=steps_per_epoch,<br> -&gt; 1045 validation_steps=validation_steps)<br> 1046<br> 1047 def evaluate(self, x=None, y=None,</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/keras/engine/training_arrays.py in fit_loop(model, f, ins, out_labels, batch_size, epochs, verbose, callbacks, val_f, val_ins, shuffle, callback_metrics, initial_epoch, steps_per_epoch, validation_steps)<br> 215 for l, o in zip(out_labels, val_outs):<br> 216 epoch_logs['val_' + l] = o<br> --&gt; 217 callbacks.on_epoch_end(epoch, epoch_logs)<br> 218 if callback_model.stop_training:<br> 219 break</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/keras/callbacks.py in on_epoch_end(self, epoch, logs)<br> 75 logs = logs or {}<br> 76 for callback in self.callbacks:<br> ---&gt; 77 callback.on_epoch_end(epoch, logs)<br> 78<br> 79 def on_batch_begin(self, batch, logs=None):</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/keras/callbacks.py in on_epoch_end(self, epoch, logs)<br> 915 assert len(batch_val) == len(tensors)<br> 916 feed_dict = dict(zip(tensors, batch_val))<br> --&gt; 917 result = self.sess.run([self.merged], feed_dict=feed_dict)<br> 918 summary_str = result[0]<br> 919 self.writer.add_summary(summary_str, epoch)</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in run(self, fetches, feed_dict, options, run_metadata)<br> 898 try:<br> 899 result = self._run(None, fetches, feed_dict, options_ptr,<br> --&gt; 900 run_metadata_ptr)<br> 901 if run_metadata:<br> 902 proto_data = tf_session.TF_GetBuffer(run_metadata_ptr)</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _run(self, handle, fetches, feed_dict, options, run_metadata)<br> 1133 if final_fetches or final_targets or (handle and feed_dict_tensor):<br> 1134 results = self._do_run(handle, final_targets, final_fetches,<br> -&gt; 1135 feed_dict_tensor, options, run_metadata)<br> 1136 else:<br> 1137 results = []</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _do_run(self, handle, target_list, fetch_list, feed_dict, options, run_metadata)<br> 1314 if handle is None:<br> 1315 return self._do_call(_run_fn, feeds, fetches, targets, options,<br> -&gt; 1316 run_metadata)<br> 1317 else:<br> 1318 return self._do_call(_prun_fn, handle, feeds, fetches)</p> <p dir="auto">/anaconda3/lib/python3.6/site-packages/tensorflow/python/client/session.py in _do_call(self, fn, *args)<br> 1333 except KeyError:<br> 1334 pass<br> -&gt; 1335 raise type(e)(node_def, op, message)<br> 1336<br> 1337 def _extend_graph(self):</p> <p dir="auto">InvalidArgumentError: You must feed a value for placeholder tensor 'layer_1_input' with dtype float and shape [?,9]<br> [[Node: layer_1_input = Placeholder<a href="">dtype=DT_FLOAT, shape=[?,9], _device="/job:localhost/replica:0/task:0/device:CPU:0"</a>]]</p> <p dir="auto">Caused by op 'layer_1_input', defined at:<br> File "/anaconda3/lib/python3.6/runpy.py", line 193, in _run_module_as_main<br> "<strong>main</strong>", mod_spec)<br> File "/anaconda3/lib/python3.6/runpy.py", line 85, in _run_code<br> exec(code, run_globals)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py", line 16, in <br> app.launch_new_instance()<br> File "/anaconda3/lib/python3.6/site-packages/traitlets/config/application.py", line 658, in launch_instance<br> app.start()<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/kernelapp.py", line 486, in start<br> self.io_loop.start()<br> File "/anaconda3/lib/python3.6/site-packages/tornado/platform/asyncio.py", line 127, in start<br> self.asyncio_loop.run_forever()<br> File "/anaconda3/lib/python3.6/asyncio/base_events.py", line 422, in run_forever<br> self._run_once()<br> File "/anaconda3/lib/python3.6/asyncio/base_events.py", line 1432, in _run_once<br> handle._run()<br> File "/anaconda3/lib/python3.6/asyncio/events.py", line 145, in _run<br> self._callback(*self._args)<br> File "/anaconda3/lib/python3.6/site-packages/tornado/platform/asyncio.py", line 117, in _handle_events<br> handler_func(fileobj, events)<br> File "/anaconda3/lib/python3.6/site-packages/tornado/stack_context.py", line 276, in null_wrapper<br> return fn(*args, **kwargs)<br> File "/anaconda3/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py", line 450, in _handle_events<br> self._handle_recv()<br> File "/anaconda3/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py", line 480, in _handle_recv<br> self._run_callback(callback, msg)<br> File "/anaconda3/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py", line 432, in _run_callback<br> callback(*args, **kwargs)<br> File "/anaconda3/lib/python3.6/site-packages/tornado/stack_context.py", line 276, in null_wrapper<br> return fn(*args, **kwargs)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/kernelbase.py", line 283, in dispatcher<br> return self.dispatch_shell(stream, msg)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/kernelbase.py", line 233, in dispatch_shell<br> handler(stream, idents, msg)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/kernelbase.py", line 399, in execute_request<br> user_expressions, allow_stdin)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/ipkernel.py", line 208, in do_execute<br> res = shell.run_cell(code, store_history=store_history, silent=silent)<br> File "/anaconda3/lib/python3.6/site-packages/ipykernel/zmqshell.py", line 537, in run_cell<br> return super(ZMQInteractiveShell, self).run_cell(*args, **kwargs)<br> File "/anaconda3/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2662, in run_cell<br> raw_cell, store_history, silent, shell_futures)<br> File "/anaconda3/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2785, in _run_cell<br> interactivity=interactivity, compiler=compiler, result=result)<br> File "/anaconda3/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2903, in run_ast_nodes<br> if self.run_code(code, result):<br> File "/anaconda3/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2963, in run_code<br> exec(code_obj, self.user_global_ns, self.user_ns)<br> File "", line 61, in <br> toy1 = ToyNet(1, 50, 100, 50)<br> File "", line 19, in <strong>init</strong><br> self.model.add(Dense(self.layer_1_nodes, input_dim=9, activation='relu', name='layer_1'))<br> File "/anaconda3/lib/python3.6/site-packages/keras/engine/sequential.py", line 160, in add<br> name=layer.name + '_input')<br> File "/anaconda3/lib/python3.6/site-packages/keras/engine/input_layer.py", line 178, in Input<br> input_tensor=tensor)<br> File "/anaconda3/lib/python3.6/site-packages/keras/legacy/interfaces.py", line 91, in wrapper<br> return func(*args, **kwargs)<br> File "/anaconda3/lib/python3.6/site-packages/keras/engine/input_layer.py", line 87, in <strong>init</strong><br> name=self.name)<br> File "/anaconda3/lib/python3.6/site-packages/keras/backend/tensorflow_backend.py", line 517, in placeholder<br> x = tf.placeholder(dtype, shape=shape, name=name)<br> File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/ops/array_ops.py", line 1734, in placeholder<br> return gen_array_ops.placeholder(dtype=dtype, shape=shape, name=name)<br> File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/ops/gen_array_ops.py", line 4924, in placeholder<br> "Placeholder", dtype=dtype, shape=shape, name=name)<br> File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/framework/op_def_library.py", line 787, in _apply_op_helper<br> op_def=op_def)<br> File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/framework/ops.py", line 3414, in create_op<br> op_def=op_def)<br> File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/framework/ops.py", line 1740, in <strong>init</strong><br> self._traceback = self._graph._extract_stack() # pylint: disable=protected-access</p> <p dir="auto">InvalidArgumentError (see above for traceback): You must feed a value for placeholder tensor 'layer_1_input' with dtype float and shape [?,9]<br> [[Node: layer_1_input = Placeholder<a href="">dtype=DT_FLOAT, shape=[?,9], _device="/job:localhost/replica:0/task:0/device:CPU:0"</a>]]</p> <h1 dir="auto">The Data</h1> <p dir="auto">For sanity's sake I've only included a short sample of each training and testing data below.</p> <h2 dir="auto">Training data ("sales_data_training_scaled.csv")</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="critic_rating,is_action,is_exclusive_to_us,is_portable,is_role_playing,is_sequel,is_sports,suitable_for_kids,total_earnings,unit_price 0.4999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.7991793127668619,1.0 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.15750170976506905,1.0 0.4999999999999999,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.18970444169239015,1.0 0.6666666666666666,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.39223304559989647,0.0 0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.21546366980277626,1.0 0.4999999999999999,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.2675699155283636,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.2418106874179775,1.0 0.4999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.7090183175911721,1.0 0.6666666666666666,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.4385279384854254,1.0 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.3957893569434946,1.0 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.24197334614886973,0.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.33607142197001905,1.0 0.4999999999999999,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.26054601578529046,1.0 0.6666666666666666,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.3501229182455038,1.0 0.8333333333333334,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.39457681004047984,0.0 0.6666666666666666,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2248313339864328,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.28864900833625995,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.05268664165172547,0.0 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.24431711058945305,0.0 0.16666666666666663,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.2740097225559601,1.0 0.33333333333333337,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.20141217352729157,1.0 0.4999999999999999,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.2802240254339107,0.0 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.4069129960629193,1.0 0.6666666666666666,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.21487957708729966,1.0 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.4250642317147557,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.28513336167538494,1.0 0.33333333333333337,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.40075044823570727,0.5 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.18811482227685256,0.0 0.33333333333333337,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1428661207741077,1.0 0.8333333333333334,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.27292286649045305,0.5 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.16160144914142066,1.0 0.4999999999999999,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.5831426406166245,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.18850668194672926,0.0 0.8333333333333334,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.6118297258830706,1.0 0.9999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.18928670449714424,0.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.13759449917746436,1.0 0.9999999999999999,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.34539842147095245,0.0 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.13583113066301916,0.5 0.9999999999999999,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.48629415352766125,0.0 0.9999999999999999,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.7500009241973347,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.04253895491765401,0.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.11630468937727585,0.0 0.16666666666666663,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.2775253692168352,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.10216816694700652,0.5 0.4999999999999999,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.23650949150662648,0.0 0.33333333333333337,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.18031089998336447,0.0 0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.05621337868061589,1.0 0.9999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.7949538825530027,0.5 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.18538289495573096,0.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2587900408495222,1.0 0.16666666666666663,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.08373227851610877,1.0 0.9999999999999999,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.7447329993900298,1.0 0.16666666666666663,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.20902386277517976,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.18850668194672926,0.0 0.16666666666666663,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.12509565442413267,0.5 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.3313875898781908,1.0 0.33333333333333337,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.3717861037688767,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.1434502134895843,1.0 0.33333333333333337,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.6329051219016284,1.0 0.8333333333333334,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.727753645958485,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15144267203933381,0.5 0.8333333333333334,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.8846601726400621,1.0 0.8333333333333334,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.30738433670357296,1.0"><pre class="notranslate"><code class="notranslate">critic_rating,is_action,is_exclusive_to_us,is_portable,is_role_playing,is_sequel,is_sports,suitable_for_kids,total_earnings,unit_price 0.4999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.7991793127668619,1.0 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.15750170976506905,1.0 0.4999999999999999,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.18970444169239015,1.0 0.6666666666666666,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.39223304559989647,0.0 0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.21546366980277626,1.0 0.4999999999999999,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.2675699155283636,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.2418106874179775,1.0 0.4999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.7090183175911721,1.0 0.6666666666666666,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.4385279384854254,1.0 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.3957893569434946,1.0 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.24197334614886973,0.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.33607142197001905,1.0 0.4999999999999999,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.26054601578529046,1.0 0.6666666666666666,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.3501229182455038,1.0 0.8333333333333334,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.39457681004047984,0.0 0.6666666666666666,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2248313339864328,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.28864900833625995,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.05268664165172547,0.0 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.24431711058945305,0.0 0.16666666666666663,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.2740097225559601,1.0 0.33333333333333337,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.20141217352729157,1.0 0.4999999999999999,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.2802240254339107,0.0 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.4069129960629193,1.0 0.6666666666666666,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.21487957708729966,1.0 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.4250642317147557,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.28513336167538494,1.0 0.33333333333333337,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.40075044823570727,0.5 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.18811482227685256,0.0 0.33333333333333337,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1428661207741077,1.0 0.8333333333333334,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.27292286649045305,0.5 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.16160144914142066,1.0 0.4999999999999999,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.5831426406166245,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.18850668194672926,0.0 0.8333333333333334,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.6118297258830706,1.0 0.9999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.18928670449714424,0.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.13759449917746436,1.0 0.9999999999999999,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.34539842147095245,0.0 0.16666666666666663,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.13583113066301916,0.5 0.9999999999999999,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.48629415352766125,0.0 0.9999999999999999,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.7500009241973347,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.04253895491765401,0.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.11630468937727585,0.0 0.16666666666666663,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.2775253692168352,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.10216816694700652,0.5 0.4999999999999999,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.23650949150662648,0.0 0.33333333333333337,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.18031089998336447,0.0 0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.05621337868061589,1.0 0.9999999999999999,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.7949538825530027,0.5 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.18538289495573096,0.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2587900408495222,1.0 0.16666666666666663,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.08373227851610877,1.0 0.9999999999999999,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.7447329993900298,1.0 0.16666666666666663,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.20902386277517976,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.18850668194672926,0.0 0.16666666666666663,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.12509565442413267,0.5 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.3313875898781908,1.0 0.33333333333333337,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.3717861037688767,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.1434502134895843,1.0 0.33333333333333337,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.6329051219016284,1.0 0.8333333333333334,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.727753645958485,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15144267203933381,0.5 0.8333333333333334,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.8846601726400621,1.0 0.8333333333333334,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.30738433670357296,1.0 </code></pre></div> <h2 dir="auto">Testing data ("sales_data_test_scaled.csv")</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="critic_rating,is_action,is_exclusive_to_us,is_portable,is_role_playing,is_sequel,is_sports,suitable_for_kids,total_earnings,unit_price 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.3747139609249367,1.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.19242527864549636,0.5 0.33333333333333337,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.11485185116726125,0.5 0.8333333333333334,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.14245208036820023,0.0 0.6666666666666666,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.4806824273118796,1.0 0.6666666666666666,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.13972015304707863,0.0 0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.11338792258923126,0.5 0.8333333333333334,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.44906748488937354,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.06127428328496702,0.0 0.16666666666666663,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.20668009833459638,1.0 0.8333333333333334,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.4777545701558197,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.13232657437015954,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.17925361823256503,0.5 0.6666666666666666,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.16335742407718895,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.23946692297739414,1.0 0.6666666666666666,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.31206816879540117,1.0 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.2285281233248923,0.5 0.33333333333333337,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.29274505092327313,1.0 0.16666666666666663,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.3480564130053049,0.5 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.42799208887081575,1.0 0.6666666666666666,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2248313339864328,1.0 0.8333333333333334,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.1280235115801926,0.5 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.40164507125561455,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.2963420269495943,0.5 0.8333333333333334,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.2486090830114046,0.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.28923310105173655,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.06283432838579693,0.0 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.29536607456424097,0.5 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.2693258904641319,1.0 0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.10460804791038984,0.5 0.4999999999999999,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.4651485185116726,0.5"><pre class="notranslate"><code class="notranslate">critic_rating,is_action,is_exclusive_to_us,is_portable,is_role_playing,is_sequel,is_sports,suitable_for_kids,total_earnings,unit_price 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.3747139609249367,1.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.19242527864549636,0.5 0.33333333333333337,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.11485185116726125,0.5 0.8333333333333334,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.14245208036820023,0.0 0.6666666666666666,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.4806824273118796,1.0 0.6666666666666666,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.13972015304707863,0.0 0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.11338792258923126,0.5 0.8333333333333334,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.44906748488937354,1.0 0.4999999999999999,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.06127428328496702,0.0 0.16666666666666663,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.20668009833459638,1.0 0.8333333333333334,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.4777545701558197,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.13232657437015954,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.17925361823256503,0.5 0.6666666666666666,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.16335742407718895,1.0 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.23946692297739414,1.0 0.6666666666666666,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.31206816879540117,1.0 0.4999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.2285281233248923,0.5 0.33333333333333337,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.29274505092327313,1.0 0.16666666666666663,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.3480564130053049,0.5 0.9999999999999999,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.42799208887081575,1.0 0.6666666666666666,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.2248313339864328,1.0 0.8333333333333334,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.1280235115801926,0.5 0.16666666666666663,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.40164507125561455,1.0 0.6666666666666666,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.2963420269495943,0.5 0.8333333333333334,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.2486090830114046,0.0 0.8333333333333334,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.28923310105173655,1.0 0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.06283432838579693,0.0 0.4999999999999999,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.29536607456424097,0.5 0.4999999999999999,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.2693258904641319,1.0 0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.10460804791038984,0.5 0.4999999999999999,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.4651485185116726,0.5 </code></pre></div>
1
<p dir="auto">Discussed in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="75355912" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/1818" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/1818/hovercard" href="https://github.com/angular/angular/issues/1818">#1818</a> and submitted a PR in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="115259445" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/5140" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/5140/hovercard" href="https://github.com/angular/angular/pull/5140">#5140</a>. Because the team is rewriting the compiler. The PR cannot be rebased. cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tbosch/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tbosch">@tbosch</a></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class MyClass { constructor(@Attributes() atts: Map&lt;string, string&gt;) } //Originally, @Attribute('foo') returns Map.get('foo'), now support @Attribute() to return the Map. "><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">MyClass</span> <span class="pl-kos">{</span> <span class="pl-c1">constructor</span><span class="pl-kos">(</span>@<span class="pl-v">Attributes</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">atts</span>: <span class="pl-v">Map</span><span class="pl-c1">&lt;</span><span class="pl-c1">string</span><span class="pl-kos">,</span> <span class="pl-c1">string</span><span class="pl-c1">&gt;</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-c">//Originally, @Attribute('foo') returns Map.get('foo'), now support @Attribute() to return the Map.</span></pre></div> <p dir="auto">PS: About <code class="notranslate">@attribute()</code> vs <code class="notranslate">@attribute</code>, since all decorators from angular has parentheses and according to the developer guides: 'Always include the parentheses! Always call <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Injectable/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Injectable">@Injectable</a>(). Our application will fail mysteriously if we forget the parentheses.' So I think we should use <code class="notranslate">@attribute()</code></p>
<p dir="auto">In the existing material design library for Angular 1, there are some components that use a concept of "responsive attributes". Say you have a component like <code class="notranslate">md-grid-list</code>, which has an attribute <code class="notranslate">cols</code>. You can specify the value conditionally on screen size, for example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cols-sm=&quot;2&quot; // Small screen size cols-lt-lg=&quot;4&quot; // Less than large screen size"><pre class="notranslate"><code class="notranslate">cols-sm="2" // Small screen size cols-lt-lg="4" // Less than large screen size </code></pre></div> <p dir="auto">We currently have a way to inject a <em>single</em> attribute (<code class="notranslate">@Attribute('cols')</code>), but the number of combinations gets large quickly (this one attribute has 9). One could also set up <code class="notranslate">properties</code>, but again it's a lot of boilerplate and unnecessary bindings.</p> <p dir="auto">One solution would be to allow injection of a <code class="notranslate">&lt;string, string&gt;</code> attribute map.</p> <p dir="auto">As a workaround, when per-component renderers are supported, the renderer can read the attributes and pass the values back to the directive via an event.</p>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=mlarchet" rel="nofollow">Mathieu Larchet</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1718?redirect=false" rel="nofollow">SPR-1718</a></strong> and commented</p> <p dir="auto">When configuring a PropertyPlaceHolderConfigurer for external property file, ${xxx} parsing fail for abstract beans.</p> <p dir="auto">&lt;bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt;<br> &lt;property name="location"&gt;<br> &lt;value&gt;/WEB-INF/classes/properties/config.properties&lt;/value&gt;<br> &lt;/property&gt;<br> &lt;/bean&gt;<br> &lt;bean id="test1" class="myproject.Test"&gt;<br> &lt;property name="name"&gt;&lt;value&gt;${name}&lt;/value&gt;&lt;/property&gt; &lt;---- Ok it works fine<br> &lt;/bean&gt;<br> &lt;bean id="template" abstract="true"&gt;<br> &lt;property name="test"&gt;&lt;ref bean="test1" /&gt;&lt;/property&gt;<br> &lt;/bean&gt;<br> &lt;bean id="concrete" class="myproject.Foo" parent="template"&gt;<br> &lt;property name="mail"&gt;&lt;value&gt;${mail}&lt;/value&gt;&lt;/property&gt; &lt;---- Error property 'mail' is set to value '${mail}' instead of '<a href="mailto:[email protected]">[email protected]</a>'<br> &lt;/bean&gt;</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.0 M2</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="398063801" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6438" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6438/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6438">#6438</a> ${..} property placeholder broken in 2-m2, was working on 2-m1 (<em><strong>"is duplicated by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398063618" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6416" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6416/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6416">#6416</a> PropertyPlaceholderConfigurer behaves differently in 2.0M2 than in 1.2.6. Some properties are not replaced. (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=radim.tlusty" rel="nofollow">Radim Tlusty</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6379?redirect=false" rel="nofollow">SPR-6379</a></strong> and commented</p> <p dir="auto">it's probably related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398095085" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10432" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10432/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10432">#10432</a>.</p> <p dir="auto">I think, that the issue is in DefaultBeanDefinitionDocumentReader class. In 3.0.0.RC1 there was used call 'ResourcePatternUtils.isUrl(location)', in 3.0.0.RC2 it's changed and I think, that it's related to this correction.</p> <p dir="auto">When the classes are unpacked, it leads to transformation of classpath* URL to file URL, which causes the problem.</p> <p dir="auto">Attach is simple test case, which works in 3.0.0.RC1, but fail on 3.0.0.RC2.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 RC2</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/15933/SPR-5762.ZIP" rel="nofollow">SPR-5762.ZIP</a> (<em>2.78 kB</em>)</li> </ul> <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="398099258" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11032" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11032/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11032">#11032</a> Cannot import bean definitions using classpath*: resource location (<em><strong>"duplicates"</strong></em>)</li> </ul>
0
<p dir="auto">Hi folks,<br> Wondering if someone can please help with this import error on a fresh install.</p> <p dir="auto">Background: Recently started a new conda environment with a couple of basics like jupyter, numpy, scipy. I'm using MacOS High Sierra 10.13.4, and python3.7</p> <p dir="auto">The specific error is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- ImportError Traceback (most recent call last) &lt;ipython-input-1-77da20ac745a&gt; in &lt;module&gt; ----&gt; 1 from jax import vmap # for auto-vectorizing functions 2 from functools import partial # for use with vmap 3 from jax import jit # for compiling functions for speedup 4 from jax import random # stax initialization uses jax.random 5 from jax.experimental import stax # neural network library"><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- ImportError Traceback (most recent call last) &lt;ipython-input-1-77da20ac745a&gt; in &lt;module&gt; ----&gt; 1 from jax import vmap # for auto-vectorizing functions 2 from functools import partial # for use with vmap 3 from jax import jit # for compiling functions for speedup 4 from jax import random # stax initialization uses jax.random 5 from jax.experimental import stax # neural network library </code></pre></div> <p dir="auto">...</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_client.py in &lt;module&gt; 36 # and TensorFlow may fail with duplicate protocol buffer message definitions. 37 ---&gt; 38 from . import xla_extension as _xla 39 from .xla_extension import ops 40 ImportError: dlopen(/Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so, 2): Symbol not found: ____chkstk_darwin Referenced from: /Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so (which was built for Mac OS X 10.15) Expected in: /usr/lib/libSystem.B.dylib in /Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so"><pre class="notranslate"><code class="notranslate">~/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_client.py in &lt;module&gt; 36 # and TensorFlow may fail with duplicate protocol buffer message definitions. 37 ---&gt; 38 from . import xla_extension as _xla 39 from .xla_extension import ops 40 ImportError: dlopen(/Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so, 2): Symbol not found: ____chkstk_darwin Referenced from: /Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so (which was built for Mac OS X 10.15) Expected in: /usr/lib/libSystem.B.dylib in /Users/lmar3213/miniconda3/envs/lew_jax/lib/python3.7/site-packages/jaxlib/xla_extension.so </code></pre></div> <p dir="auto">To install, I ran as per the installation instructions i.e. <code class="notranslate">pip install --upgrade pip</code> which was already up to date, and then <code class="notranslate">pip install --upgrade jax jaxlib</code> which installed happily.</p> <p dir="auto">The only clue I have as to understanding the error is that it mentions <code class="notranslate">xla_extension.so</code> was built for mac OS X 10.15 but Im on 10.13. Any help is appreciated! Thankyou!</p>
<h2 dir="auto">Steps to reproduce:</h2> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import functools from absl import app import jax from jax.experimental import maps from jax.experimental.pjit import PartitionSpec from jax.experimental.pjit import pjit import numpy as np jax.config.update('jax_parallel_functions_output_gda', True) @functools.partial( pjit, in_axis_resources=(), out_axis_resources=PartitionSpec('x'), ) def f(): return jax.numpy.zeros([32, 10]) def main(argv): del argv # Unused with maps.Mesh(np.asarray(jax.devices()), axis_names=['x']): print(f().shape) print(jax.eval_shape(f)) if __name__ == '__main__': app.run(main)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">functools</span> <span class="pl-k">from</span> <span class="pl-s1">absl</span> <span class="pl-k">import</span> <span class="pl-s1">app</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span> <span class="pl-k">from</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span> <span class="pl-k">import</span> <span class="pl-s1">maps</span> <span class="pl-k">from</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span>.<span class="pl-s1">pjit</span> <span class="pl-k">import</span> <span class="pl-v">PartitionSpec</span> <span class="pl-k">from</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span>.<span class="pl-s1">pjit</span> <span class="pl-k">import</span> <span class="pl-s1">pjit</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-s1">jax</span>.<span class="pl-s1">config</span>.<span class="pl-en">update</span>(<span class="pl-s">'jax_parallel_functions_output_gda'</span>, <span class="pl-c1">True</span>) <span class="pl-en">@<span class="pl-s1">functools</span>.<span class="pl-en">partial</span>(</span> <span class="pl-en"> <span class="pl-s1">pjit</span>,</span> <span class="pl-en"> <span class="pl-s1">in_axis_resources</span><span class="pl-c1">=</span>(),</span> <span class="pl-en"> <span class="pl-s1">out_axis_resources</span><span class="pl-c1">=</span><span class="pl-v">PartitionSpec</span>(<span class="pl-s">'x'</span>),</span> <span class="pl-en">)</span> <span class="pl-k">def</span> <span class="pl-en">f</span>(): <span class="pl-k">return</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span>.<span class="pl-en">zeros</span>([<span class="pl-c1">32</span>, <span class="pl-c1">10</span>]) <span class="pl-k">def</span> <span class="pl-en">main</span>(<span class="pl-s1">argv</span>): <span class="pl-k">del</span> <span class="pl-s1">argv</span> <span class="pl-c"># Unused</span> <span class="pl-k">with</span> <span class="pl-s1">maps</span>.<span class="pl-v">Mesh</span>(<span class="pl-s1">np</span>.<span class="pl-en">asarray</span>(<span class="pl-s1">jax</span>.<span class="pl-en">devices</span>()), <span class="pl-s1">axis_names</span><span class="pl-c1">=</span>[<span class="pl-s">'x'</span>]): <span class="pl-en">print</span>(<span class="pl-en">f</span>().<span class="pl-s1">shape</span>) <span class="pl-en">print</span>(<span class="pl-s1">jax</span>.<span class="pl-en">eval_shape</span>(<span class="pl-s1">f</span>)) <span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">'__main__'</span>: <span class="pl-s1">app</span>.<span class="pl-en">run</span>(<span class="pl-s1">main</span>)</pre></div> <h2 dir="auto">Expected output:</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(32, 10) ShapeDtypeStruct(shape=(32, 10), dtype=float32)"><pre class="notranslate"><code class="notranslate">(32, 10) ShapeDtypeStruct(shape=(32, 10), dtype=float32) </code></pre></div> <h2 dir="auto">Observed output:</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(32, 10) ShapeDtypeStruct(shape=(16, 10), dtype=float32)"><pre class="notranslate"><code class="notranslate">(32, 10) ShapeDtypeStruct(shape=(16, 10), dtype=float32) </code></pre></div> <p dir="auto">More generally, it would be nice if <code class="notranslate">eval_shape()</code> could recognise <code class="notranslate">GlobalDeviceArray</code> and produce a subtype of <code class="notranslate">ShapeDtypeStruct</code> conveying not just global shape but also the shard index and replica information derived from the corresponding <code class="notranslate">PartitionSpec</code>. Otherwise it is currently very hard to work out what shape a <code class="notranslate">GlobalDeviceArray</code> is going to have and what shape its shards will have.</p>
0
<p dir="auto">I am getting this error when printing an array or a sparse matrix:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Virals-MacBook-Pro 05:50:20 {master} ~/julia$ ./julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type &quot;help()&quot; to list help topics | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.3.0-prerelease+457 (2013-12-14 06:36 UTC) _/ |\__'_|_|_|\__'_| | Commit f60db95* (0 days old master) |__/ | x86_64-apple-darwin13.0.1 julia&gt; rand(500) 500-element Array{Float64,1}: Evaluation succeeded, but an error occurred while showing value of type Array{Float64,1}: ERROR: premature end of integer: &quot;31&quot; in error at error.jl:21 in parseint_nocheck at string.jl:1476 in parseint at string.jl:1513 in writemime at repl.jl:21 in display at multimedia.jl:117 in display at multimedia.jl:119 in display at multimedia.jl:151"><pre class="notranslate"><code class="notranslate">Virals-MacBook-Pro 05:50:20 {master} ~/julia$ ./julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "help()" to list help topics | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.3.0-prerelease+457 (2013-12-14 06:36 UTC) _/ |\__'_|_|_|\__'_| | Commit f60db95* (0 days old master) |__/ | x86_64-apple-darwin13.0.1 julia&gt; rand(500) 500-element Array{Float64,1}: Evaluation succeeded, but an error occurred while showing value of type Array{Float64,1}: ERROR: premature end of integer: "31" in error at error.jl:21 in parseint_nocheck at string.jl:1476 in parseint at string.jl:1513 in writemime at repl.jl:21 in display at multimedia.jl:117 in display at multimedia.jl:119 in display at multimedia.jl:151 </code></pre></div>
<p dir="auto">On <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/JuliaLang/julia/commit/2e56f22f2151f20ae3e670bdf9d529927d648024/hovercard" href="https://github.com/JuliaLang/julia/commit/2e56f22f2151f20ae3e670bdf9d529927d648024"><tt>2e56f22</tt></a> and Mac OS 10.9 I get:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ julia -p 2 ERROR: premature end of integer: &quot;9009&quot; in error at error.jl:21 in parseint_nocheck at string.jl:1476 in parseint at string.jl:1515 in parse_connection_info at multi.jl:1076 in read_worker_host_port at multi.jl:1009 in read_cb_response at multi.jl:981 in addprocs at multi.jl:1205"><pre class="notranslate"><code class="notranslate">$ julia -p 2 ERROR: premature end of integer: "9009" in error at error.jl:21 in parseint_nocheck at string.jl:1476 in parseint at string.jl:1515 in parse_connection_info at multi.jl:1076 in read_worker_host_port at multi.jl:1009 in read_cb_response at multi.jl:981 in addprocs at multi.jl:1205 </code></pre></div>
1