text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">(This is a suggestion, so I took the freedom to erase all the bug related template code.)</p>
<p dir="auto">The code below was tested with binding version 2.4.12.2 and the source code example was from git HEAD.</p>
<p dir="auto">Currently the doc string only contains a terse syntax description. E.g.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import cv2
print cv2.setUseOptimized.__doc__
setUseOptimized(onoff) -> None"><pre class="notranslate"><code class="notranslate">import cv2
print cv2.setUseOptimized.__doc__
setUseOptimized(onoff) -> None
</code></pre></div>
<p dir="auto">But if you look at the h-file declaration for the corresponding function you have:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/** @brief Enables or disables the optimized code.
The function can be used to dynamically turn on and off optimized code (code that uses SSE2, AVX,
and other instructions on the platforms that support it). It sets a global flag that is further
checked by OpenCV functions. Since the flag is not checked in the inner OpenCV loops, it is only
safe to call the function on the very top level in your application where you can be sure that no
other OpenCV function is currently executed.
By default, the optimized code is enabled unless you disable it in CMake. The current status can be
retrieved using useOptimized.
@param onoff The boolean flag specifying whether the optimized code should be used (onoff=true)
or not (onoff=false).
*/
CV_EXPORTS_W void setUseOptimized(bool onoff);"><pre class="notranslate"><code class="notranslate">/** @brief Enables or disables the optimized code.
The function can be used to dynamically turn on and off optimized code (code that uses SSE2, AVX,
and other instructions on the platforms that support it). It sets a global flag that is further
checked by OpenCV functions. Since the flag is not checked in the inner OpenCV loops, it is only
safe to call the function on the very top level in your application where you can be sure that no
other OpenCV function is currently executed.
By default, the optimized code is enabled unless you disable it in CMake. The current status can be
retrieved using useOptimized.
@param onoff The boolean flag specifying whether the optimized code should be used (onoff=true)
or not (onoff=false).
*/
CV_EXPORTS_W void setUseOptimized(bool onoff);
</code></pre></div>
<p dir="auto">I suggest to add to the python wrapper generator parsing of the entire doxygen string and conversion of its text to standard python strings. This will simplify interactive work as it will not be necessary to turn away from ipython (or any other doc sensitive IDE) in order to look up a description of what a function or method does.</p> | <p dir="auto">Transferred from <a href="http://code.opencv.org/issues/1215" rel="nofollow">http://code.opencv.org/issues/1215</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="|| Andrey Kamaev on 2011-07-11 14:43
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: documentation
|| Tracker: Bug
|| Difficulty: Medium
|| PR:
|| Platform: Any / Any"><pre class="notranslate"><code class="notranslate">|| Andrey Kamaev on 2011-07-11 14:43
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: documentation
|| Tracker: Bug
|| Difficulty: Medium
|| PR:
|| Platform: Any / Any
</code></pre></div>
<h2 dir="auto">Undocumented functions/methods in API exported to java/python</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Here is list of undocumented methods reported by gen_javadoc.py script:
<pre>
gen_javadoc error: could not find documentation for RotatedRect_ (module: core)
gen_javadoc error: could not find documentation for DMatch::distance (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch() (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch(_queryIdx,_trainIdx,_distance) (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch(_queryIdx,_trainIdx,_imgIdx,_distance) (module: features2d)
gen_javadoc error: could not find documentation for findCirclesGridDefault(image,patternSize,centers,flags) (module: calib3d)
gen_javadoc error: could not find documentation for findCirclesGridDefault(image,patternSize,centers) (module: calib3d)
gen_javadoc error: could not find documentation for getValidDisparityROI(roi1,roi2,minDisparity,numberOfDisparities,SADWindowSize) (module: calib3d)
gen_javadoc error: could not find documentation for rectify3Collinear(cameraMatrix1,distCoeffs1,cameraMatrix2,distCoeffs2,cameraMatrix3,distCoeffs3,imgpt1,imgpt3,imageSize,R12,T12,R13,T13,R1,R2,R3,P1,P2,P3,Q,alpha,newImgSize,roi1,roi2,flags) (module: calib3d)
gen_javadoc error: could not find documentation for validateDisparity(disparity,cost,minDisparity,numberOfDisparities,disp12MaxDisp) (module: calib3d)
gen_javadoc error: could not find documentation for validateDisparity(disparity,cost,minDisparity,numberOfDisparities) (module: calib3d)
gen_javadoc error: could not find documentation for StereoSGBM::operator()(left,right,disp) (module: calib3d)
gen_javadoc error: could not find documentation for PCABackProject(data,mean,eigenvectors,result) (module: core)
gen_javadoc error: could not find documentation for PCACompute(data,mean,eigenvectors,maxComponents) (module: core)
gen_javadoc error: could not find documentation for PCACompute(data,mean,eigenvectors) (module: core)
gen_javadoc error: could not find documentation for PCAProject(data,mean,eigenvectors,result) (module: core)
gen_javadoc error: could not find documentation for SVBackSubst(w,u,vt,rhs,dst) (module: core)
gen_javadoc error: could not find documentation for SVDecomp(src,w,u,vt,flags) (module: core)
gen_javadoc error: could not find documentation for SVDecomp(src,w,u,vt) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx,normType,K,mask,update,crosscheck) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx,normType,K) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx) (module: core)
gen_javadoc error: could not find documentation for extractChannel(src,dst,coi) (module: core)
gen_javadoc error: could not find documentation for getBuildInformation() (module: core)
gen_javadoc error: could not find documentation for getNumberOfCPUs() (module: core)
gen_javadoc error: could not find documentation for hconcat(src,dst) (module: core)
gen_javadoc error: could not find documentation for insertChannel(src,dst,coi) (module: core)
gen_javadoc error: could not find documentation for randShuffle_(dst,iterFactor) (module: core)
gen_javadoc error: could not find documentation for randShuffle_(dst) (module: core)
gen_javadoc error: could not find documentation for vconcat(src,dst) (module: core)
gen_javadoc error: could not find documentation for moveWindow(winname,x,y) (module: highgui)
gen_javadoc error: could not find documentation for resizeWindow(winname,width,height) (module: highgui)
gen_javadoc error: could not find documentation for getGaborKernel(ksize,sigma,theta,lambd,gamma,psi,ktype) (module: imgproc)
gen_javadoc error: could not find documentation for getGaborKernel(ksize,sigma,theta,lambd,gamma) (module: imgproc)
gen_javadoc error: could not find documentation for initWideAngleProjMap(cameraMatrix,distCoeffs,imageSize,destImageWidth,m1type,map1,map2,projType,alpha) (module: imgproc)
gen_javadoc error: could not find documentation for initWideAngleProjMap(cameraMatrix,distCoeffs,imageSize,destImageWidth,m1type,map1,map2) (module: imgproc)
gen_javadoc error: could not find documentation for intersectConvexConvex(_p1,_p2,_p12,handleNested) (module: imgproc)
gen_javadoc error: could not find documentation for intersectConvexConvex(_p1,_p2,_p12) (module: imgproc)
gen_javadoc error: could not find documentation for Moments (module: imgproc)
gen_javadoc error: could not find documentation for Moments::Moments() (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::Subdiv2D() (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::Subdiv2D(rect) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeDst(edge,dstpt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeDst(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeOrg(edge,orgpt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeOrg(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::findNearest(pt,nearestPt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::findNearest(pt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getEdge(edge,nextEdgeType) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getEdgeList(edgeList) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getTriangleList(triangleList) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVertex(vertex,firstEdge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVertex(vertex) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVoronoiFacetList(idx,facetList,facetCenters) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::initDelaunay(rect) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::insert(pt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::insert(ptvec) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::locate(pt,edge,vertex) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::nextEdge(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::rotateEdge(edge,rotate) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::symEdge(edge) (module: imgproc)
gen_javadoc error: could not find documentation for CvANN_MLP::clear() (module: ml)
gen_javadoc error: could not find documentation for CvBoost::clear() (module: ml)
gen_javadoc error: could not find documentation for CvDTree::CvDTree() (module: ml)
gen_javadoc error: could not find documentation for CvDTree::clear() (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::CvERTrees() (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::train(trainData,tflag,responses,varIdx,sampleIdx,varType,missingDataMask,params) (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::train(trainData,tflag,responses) (module: ml)
gen_javadoc error: could not find documentation for CvNormalBayesClassifier::clear() (module: ml)
gen_javadoc error: could not find documentation for CvRTParams::CvRTParams() (module: ml)
gen_javadoc error: could not find documentation for CvRTrees::CvRTrees() (module: ml)
gen_javadoc error: could not find documentation for CvRTrees::clear() (module: ml)
gen_javadoc error: could not find documentation for CvSVM::clear() (module: ml)
gen_javadoc error: could not find documentation for EM (module: ml)
gen_javadoc error: could not find documentation for EM::EM(nclusters,covMatType,termcrit) (module: ml)
gen_javadoc error: could not find documentation for EM::EM() (module: ml)
gen_javadoc error: could not find documentation for EM::clear() (module: ml)
gen_javadoc error: could not find documentation for EM::isTrained() (module: ml)
gen_javadoc error: could not find documentation for EM::predict(sample,probs,likelihood) (module: ml)
gen_javadoc error: could not find documentation for EM::predict(sample) (module: ml)
gen_javadoc error: could not find documentation for EM::train(samples,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::train(samples) (module: ml)
gen_javadoc error: could not find documentation for EM::trainE(samples,means0,covs0,weights0,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::trainE(samples,means0) (module: ml)
gen_javadoc error: could not find documentation for EM::trainM(samples,probs0,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::trainM(samples,probs0) (module: ml)
gen_javadoc error: could not find documentation for HOGDescriptor (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(_winSize,_blockSize,_blockStride,_cellSize,_nbins,_derivAperture,_winSigma,_histogramNormType,_L2HysThreshold,_gammaCorrection,_nlevels) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(_winSize,_blockSize,_blockStride,_cellSize,_nbins) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::checkDetectorSize() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::compute(img,descriptors,winStride,padding,locations) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::compute(img,descriptors) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::computeGradient(img,grad,angleOfs,paddingTL,paddingBR) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::computeGradient(img,grad,angleOfs) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detect(img,foundLocations,weights,hitThreshold,winStride,padding,searchLocations) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detect(img,foundLocations,weights) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detectMultiScale(img,foundLocations,foundWeights,hitThreshold,winStride,padding,scale,finalThreshold,useMeanshiftGrouping) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detectMultiScale(img,foundLocations,foundWeights) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDaimlerPeopleDetector() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDefaultPeopleDetector() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDescriptorSize() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getWinSigma() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::load(filename,objname) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::load(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::save(filename,objname) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::save(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::setSVMDetector(_svmdetector) (module: objdetect)
</pre>"><pre class="notranslate"><code class="notranslate">Here is list of undocumented methods reported by gen_javadoc.py script:
<pre>
gen_javadoc error: could not find documentation for RotatedRect_ (module: core)
gen_javadoc error: could not find documentation for DMatch::distance (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch() (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch(_queryIdx,_trainIdx,_distance) (module: features2d)
gen_javadoc error: could not find documentation for DMatch::DMatch(_queryIdx,_trainIdx,_imgIdx,_distance) (module: features2d)
gen_javadoc error: could not find documentation for findCirclesGridDefault(image,patternSize,centers,flags) (module: calib3d)
gen_javadoc error: could not find documentation for findCirclesGridDefault(image,patternSize,centers) (module: calib3d)
gen_javadoc error: could not find documentation for getValidDisparityROI(roi1,roi2,minDisparity,numberOfDisparities,SADWindowSize) (module: calib3d)
gen_javadoc error: could not find documentation for rectify3Collinear(cameraMatrix1,distCoeffs1,cameraMatrix2,distCoeffs2,cameraMatrix3,distCoeffs3,imgpt1,imgpt3,imageSize,R12,T12,R13,T13,R1,R2,R3,P1,P2,P3,Q,alpha,newImgSize,roi1,roi2,flags) (module: calib3d)
gen_javadoc error: could not find documentation for validateDisparity(disparity,cost,minDisparity,numberOfDisparities,disp12MaxDisp) (module: calib3d)
gen_javadoc error: could not find documentation for validateDisparity(disparity,cost,minDisparity,numberOfDisparities) (module: calib3d)
gen_javadoc error: could not find documentation for StereoSGBM::operator()(left,right,disp) (module: calib3d)
gen_javadoc error: could not find documentation for PCABackProject(data,mean,eigenvectors,result) (module: core)
gen_javadoc error: could not find documentation for PCACompute(data,mean,eigenvectors,maxComponents) (module: core)
gen_javadoc error: could not find documentation for PCACompute(data,mean,eigenvectors) (module: core)
gen_javadoc error: could not find documentation for PCAProject(data,mean,eigenvectors,result) (module: core)
gen_javadoc error: could not find documentation for SVBackSubst(w,u,vt,rhs,dst) (module: core)
gen_javadoc error: could not find documentation for SVDecomp(src,w,u,vt,flags) (module: core)
gen_javadoc error: could not find documentation for SVDecomp(src,w,u,vt) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx,normType,K,mask,update,crosscheck) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx,normType,K) (module: core)
gen_javadoc error: could not find documentation for batchDistance(src1,src2,dist,dtype,nidx) (module: core)
gen_javadoc error: could not find documentation for extractChannel(src,dst,coi) (module: core)
gen_javadoc error: could not find documentation for getBuildInformation() (module: core)
gen_javadoc error: could not find documentation for getNumberOfCPUs() (module: core)
gen_javadoc error: could not find documentation for hconcat(src,dst) (module: core)
gen_javadoc error: could not find documentation for insertChannel(src,dst,coi) (module: core)
gen_javadoc error: could not find documentation for randShuffle_(dst,iterFactor) (module: core)
gen_javadoc error: could not find documentation for randShuffle_(dst) (module: core)
gen_javadoc error: could not find documentation for vconcat(src,dst) (module: core)
gen_javadoc error: could not find documentation for moveWindow(winname,x,y) (module: highgui)
gen_javadoc error: could not find documentation for resizeWindow(winname,width,height) (module: highgui)
gen_javadoc error: could not find documentation for getGaborKernel(ksize,sigma,theta,lambd,gamma,psi,ktype) (module: imgproc)
gen_javadoc error: could not find documentation for getGaborKernel(ksize,sigma,theta,lambd,gamma) (module: imgproc)
gen_javadoc error: could not find documentation for initWideAngleProjMap(cameraMatrix,distCoeffs,imageSize,destImageWidth,m1type,map1,map2,projType,alpha) (module: imgproc)
gen_javadoc error: could not find documentation for initWideAngleProjMap(cameraMatrix,distCoeffs,imageSize,destImageWidth,m1type,map1,map2) (module: imgproc)
gen_javadoc error: could not find documentation for intersectConvexConvex(_p1,_p2,_p12,handleNested) (module: imgproc)
gen_javadoc error: could not find documentation for intersectConvexConvex(_p1,_p2,_p12) (module: imgproc)
gen_javadoc error: could not find documentation for Moments (module: imgproc)
gen_javadoc error: could not find documentation for Moments::Moments() (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::Subdiv2D() (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::Subdiv2D(rect) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeDst(edge,dstpt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeDst(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeOrg(edge,orgpt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::edgeOrg(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::findNearest(pt,nearestPt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::findNearest(pt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getEdge(edge,nextEdgeType) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getEdgeList(edgeList) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getTriangleList(triangleList) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVertex(vertex,firstEdge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVertex(vertex) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::getVoronoiFacetList(idx,facetList,facetCenters) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::initDelaunay(rect) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::insert(pt) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::insert(ptvec) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::locate(pt,edge,vertex) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::nextEdge(edge) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::rotateEdge(edge,rotate) (module: imgproc)
gen_javadoc error: could not find documentation for Subdiv2D::symEdge(edge) (module: imgproc)
gen_javadoc error: could not find documentation for CvANN_MLP::clear() (module: ml)
gen_javadoc error: could not find documentation for CvBoost::clear() (module: ml)
gen_javadoc error: could not find documentation for CvDTree::CvDTree() (module: ml)
gen_javadoc error: could not find documentation for CvDTree::clear() (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::CvERTrees() (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::train(trainData,tflag,responses,varIdx,sampleIdx,varType,missingDataMask,params) (module: ml)
gen_javadoc error: could not find documentation for CvERTrees::train(trainData,tflag,responses) (module: ml)
gen_javadoc error: could not find documentation for CvNormalBayesClassifier::clear() (module: ml)
gen_javadoc error: could not find documentation for CvRTParams::CvRTParams() (module: ml)
gen_javadoc error: could not find documentation for CvRTrees::CvRTrees() (module: ml)
gen_javadoc error: could not find documentation for CvRTrees::clear() (module: ml)
gen_javadoc error: could not find documentation for CvSVM::clear() (module: ml)
gen_javadoc error: could not find documentation for EM (module: ml)
gen_javadoc error: could not find documentation for EM::EM(nclusters,covMatType,termcrit) (module: ml)
gen_javadoc error: could not find documentation for EM::EM() (module: ml)
gen_javadoc error: could not find documentation for EM::clear() (module: ml)
gen_javadoc error: could not find documentation for EM::isTrained() (module: ml)
gen_javadoc error: could not find documentation for EM::predict(sample,probs,likelihood) (module: ml)
gen_javadoc error: could not find documentation for EM::predict(sample) (module: ml)
gen_javadoc error: could not find documentation for EM::train(samples,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::train(samples) (module: ml)
gen_javadoc error: could not find documentation for EM::trainE(samples,means0,covs0,weights0,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::trainE(samples,means0) (module: ml)
gen_javadoc error: could not find documentation for EM::trainM(samples,probs0,labels,probs,likelihoods) (module: ml)
gen_javadoc error: could not find documentation for EM::trainM(samples,probs0) (module: ml)
gen_javadoc error: could not find documentation for HOGDescriptor (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(_winSize,_blockSize,_blockStride,_cellSize,_nbins,_derivAperture,_winSigma,_histogramNormType,_L2HysThreshold,_gammaCorrection,_nlevels) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(_winSize,_blockSize,_blockStride,_cellSize,_nbins) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::HOGDescriptor(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::checkDetectorSize() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::compute(img,descriptors,winStride,padding,locations) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::compute(img,descriptors) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::computeGradient(img,grad,angleOfs,paddingTL,paddingBR) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::computeGradient(img,grad,angleOfs) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detect(img,foundLocations,weights,hitThreshold,winStride,padding,searchLocations) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detect(img,foundLocations,weights) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detectMultiScale(img,foundLocations,foundWeights,hitThreshold,winStride,padding,scale,finalThreshold,useMeanshiftGrouping) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::detectMultiScale(img,foundLocations,foundWeights) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDaimlerPeopleDetector() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDefaultPeopleDetector() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getDescriptorSize() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::getWinSigma() (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::load(filename,objname) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::load(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::save(filename,objname) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::save(filename) (module: objdetect)
gen_javadoc error: could not find documentation for HOGDescriptor::setSVMDetector(_svmdetector) (module: objdetect)
</pre>
</code></pre></div>
<h2 dir="auto">History</h2>
<h5 dir="auto">Alexander Shishkov on 2012-03-21 20:28</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Target version deleted ()"><pre class="notranslate"><code class="notranslate">- Target version deleted ()
</code></pre></div>
<h5 dir="auto">Alexander Shishkov on 2012-03-22 14:27</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Priority changed from Normal to Low"><pre class="notranslate"><code class="notranslate">- Priority changed from Normal to Low
</code></pre></div>
<h5 dir="auto">Alexander Shishkov on 2012-03-25 20:46</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Assignee deleted (Vadim Pisarevsky)"><pre class="notranslate"><code class="notranslate">- Assignee deleted (Vadim Pisarevsky)
</code></pre></div>
<h5 dir="auto">Alexander Shishkov on 2012-04-05 12:44</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Target version deleted ()"><pre class="notranslate"><code class="notranslate">- Target version deleted ()
</code></pre></div>
<h5 dir="auto">Andrey Kamaev on 2012-04-06 20:45</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Description changed from Here is list of undocumented methods
reported by gen_javadoc.py script: <p... to Here is list of
undocumented methods reported by gen_javadoc.py script: <p... More"><pre class="notranslate"><code class="notranslate">- Description changed from Here is list of undocumented methods
reported by gen_javadoc.py script: <p... to Here is list of
undocumented methods reported by gen_javadoc.py script: <p... More
</code></pre></div>
<h5 dir="auto">Kirill Kornyakov on 2012-05-11 16:49</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="We should probably consider this issue.
- Target version set to 3.0
- Assignee set to Andrey Pavlenko"><pre class="notranslate"><code class="notranslate">We should probably consider this issue.
- Target version set to 3.0
- Assignee set to Andrey Pavlenko
</code></pre></div>
<h5 dir="auto">Maksim Shabunin on 2015-04-27 15:06</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="After moving to doxygen, documentation for python and java is not generated anymore. This process should be reworked from scratch.
- Affected version set to branch 'master' (3.0-dev)
- Difficulty set to Medium
- Operating System set to Any
- HW Platform set to Any
- Target version changed from 3.0 to 3.1
- Priority changed from Low to Normal
- Assignee changed from Andrey Pavlenko to Maksim Shabunin"><pre class="notranslate"><code class="notranslate">After moving to doxygen, documentation for python and java is not generated anymore. This process should be reworked from scratch.
- Affected version set to branch 'master' (3.0-dev)
- Difficulty set to Medium
- Operating System set to Any
- HW Platform set to Any
- Target version changed from 3.0 to 3.1
- Priority changed from Low to Normal
- Assignee changed from Andrey Pavlenko to Maksim Shabunin
</code></pre></div> | 1 |
<p dir="auto">I have a router definition like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const routes: Routes = [
{
"path": "member",
"loadChildren": "app/member/member.module#MemberModule"
},
{
"path": "",
"loadChildren": "app/video/video.module#VideoModule"
},
{
"path": "**",
"redirectTo": ""
}
]"><pre class="notranslate"><code class="notranslate">const routes: Routes = [
{
"path": "member",
"loadChildren": "app/member/member.module#MemberModule"
},
{
"path": "",
"loadChildren": "app/video/video.module#VideoModule"
},
{
"path": "**",
"redirectTo": ""
}
]
</code></pre></div>
<p dir="auto">MemberRouter definition like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const routes: Routes = [
{
"path": "order",
"component": MemberComponent,
"loadChildren": "app/member/order/order.module#OrderModule"
},
{
"path": "",
"component": MemberComponent,
"loadChildren": "app/member/index/index.module#IndexModule"
}
]"><pre class="notranslate"><code class="notranslate">const routes: Routes = [
{
"path": "order",
"component": MemberComponent,
"loadChildren": "app/member/order/order.module#OrderModule"
},
{
"path": "",
"component": MemberComponent,
"loadChildren": "app/member/index/index.module#IndexModule"
}
]
</code></pre></div>
<p dir="auto">OrderRouter definition like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const routes: Routes = [
{
"path": "list",
"outlet": "member",
"component": OrderComponent,
"loadChildren": "app/member/order/list/list.module#ListModule"
},
{
"path": "",
"outlet": "member",
"component": OrderComponent
}
]`
ListRouter definition like this:
`const routes: Routes = [
{
"path": "",
"outlet": "order",
"component": ListComponent
}
]"><pre class="notranslate"><code class="notranslate">const routes: Routes = [
{
"path": "list",
"outlet": "member",
"component": OrderComponent,
"loadChildren": "app/member/order/list/list.module#ListModule"
},
{
"path": "",
"outlet": "member",
"component": OrderComponent
}
]`
ListRouter definition like this:
`const routes: Routes = [
{
"path": "",
"outlet": "order",
"component": ListComponent
}
]
</code></pre></div>
<p dir="auto">It dose not work at "/member/order/list"</p>
<p dir="auto">It is working at "/member/order"</p>
<p dir="auto">"OrderRouter" rules can not be matched when "MemberRouter" is lazy loaded</p>
<p dir="auto">"loadChildren" dose not work when nested</p>
<p dir="auto">Please help me solve, thank you!</p>
<p dir="auto"><a href="https://embed.plnkr.co/r0ofl7keNwlSvcU7sxdF/" rel="nofollow">Plunker Demo</a> Click "product/detail/item" button dose no work.</p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report => search github for a similar issue or PR before submitting
[ X ] feature request
[ ] support request => 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 => search github for a similar issue or PR before submitting
[ X ] feature request
[ ] support request => 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>
MetaService, or any other service, doesn't support setting/adding <code class="notranslate"><link rel="canonical" href="..."></code> tags.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
Like the HEAD services that allow addition of <code class="notranslate"><title></code> and <code class="notranslate"><meta></code> tags, adding <code class="notranslate"><link></code> tags should be supported as well.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
N/A</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
In the universal/server context, it is often useful to be able to set a rel="canonical" link element to prevent search engines from duplicating results. See <a href="https://en.wikipedia.org/wiki/Canonical_link_element" rel="nofollow">Canonical Link Element</a> for more details.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.0.X<br>
4.0.1</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong><br>
All</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
All</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =<br>
N/A</p>
</li>
</ul> | 0 |
<p dir="auto">This doesn't happen every time.</p>
<p dir="auto">Using tip (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/golang/go/commit/bbc4351eca2ff435106566497cef0fa15566c42a/hovercard" href="https://github.com/golang/go/commit/bbc4351eca2ff435106566497cef0fa15566c42a"><tt>bbc4351</tt></a>).</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# crypto/x509
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x854ad0, 0x15)
/home/ksh/work/os-code/go/src/runtime/panic.go:527 +0x96
runtime.gopanic(0x7ce940, 0xc20800e150)
/home/ksh/work/os-code/go/src/runtime/panic.go:354 +0xb9
runtime.panicslice()
/home/ksh/work/os-code/go/src/runtime/panic.go:18 +0x49
runtime.gcInstallStackBarrier(0xc208000160, 0xc2084b1c78)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:510 +0xae
runtime.scanstack.func1(0xc2084b1c78, 0x0, 0x1)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:365 +0x9f
runtime.gentraceback(0x75d275, 0xc2080911b0, 0x0, 0xc208000160, 0x0, 0x0, 0x7fffffff, 0xc2084b1d90, 0x0, 0x0, ...)
/home/ksh/work/os-code/go/src/runtime/traceback.go:336 +0xa7e
runtime.scanstack(0xc208000160)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:380 +0x34e
runtime.gcphasework(0xc208000160)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:273 +0x6d
runtime.stopg(0xc208000160, 0x3)
/home/ksh/work/os-code/go/src/runtime/proc1.go:395 +0x8e
runtime.markroot(0xc208020000, 0x5)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:138 +0x1ef
runtime.parfordo(0xc208020000)
/home/ksh/work/os-code/go/src/runtime/parfor.go:95 +0x12a
runtime.gcscan_m()
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:37 +0xde
runtime.gc.func1()
/home/ksh/work/os-code/go/src/runtime/mgc.go:843 +0x5c
runtime.systemstack(0xc208026000)
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:262 +0x7c
runtime.mstart()
/home/ksh/work/os-code/go/src/runtime/proc1.go:656
goroutine 5 [garbage collection scan]:
runtime.systemstack_switch()
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:216 fp=0xc20802fce8 sp=0xc20802fce0
runtime.gc(0x0)
/home/ksh/work/os-code/go/src/runtime/mgc.go:855 +0x1d9 fp=0xc20802ff90 sp=0xc20802fce8
runtime.backgroundgc()
/home/ksh/work/os-code/go/src/runtime/mgc.go:775 +0x3d fp=0xc20802ffc0 sp=0xc20802ff90
runtime.goexit()
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc20802ffc8 sp=0xc20802ffc0
created by runtime.startGC
/home/ksh/work/os-code/go/src/runtime/mgc.go:748 +0x147
goroutine 1 [syscall]:
syscall.Syscall(0x4, 0xc20849bef0, 0xc2085886c0, 0x0, 0xffffffffffffffff, 0x0, 0x2)
/home/ksh/work/os-code/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.Stat(0xc20849be30, 0x25, 0xc2085886c0, 0x0, 0x0)
/home/ksh/work/os-code/go/src/syscall/zsyscall_linux_amd64.go:1529 +0x8b
os.Stat(0xc20849be30, 0x25, 0x0, 0x0, 0x0, 0x0)
/home/ksh/work/os-code/go/src/os/file_unix.go:154 +0x6a
cmd/internal/obj.Access(0xc20849be30, 0x25, 0x0, 0x2)
/home/ksh/work/os-code/go/src/cmd/internal/obj/util.go:173 +0x8e
cmd/compile/internal/gc.findpkg(0xc20845a3f0, 0xc, 0xc20849be30, 0x25, 0xc9a300)
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:605 +0x8a9
cmd/compile/internal/gc.importfile(0xc208092a50, 0x26a)
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:711 +0xc2d
cmd/compile/internal/gc.(*yyParserImpl).Parse(0xc208032038, 0x7fbad15be728, 0xdc0e10, 0x0)
go.y:292 +0x2008
cmd/compile/internal/gc.yyparse()
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:1822 +0xb4
cmd/compile/internal/gc.Main()
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:345 +0x1b35
cmd/compile/internal/amd64.Main()
/home/ksh/work/os-code/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d
main.main()
/home/ksh/work/os-code/go/src/cmd/compile/main.go:26 +0x189
ok crypto/sha512 0.003s
ok crypto/subtle 0.005s
ok crypto/tls 1.769s
FAIL crypto/x509 [build failed]
ok database/sql 0.048s
ok database/sql/driver 0.005s
ok debug/dwarf 0.015s
"><pre class="notranslate"><code class="notranslate"># crypto/x509
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x854ad0, 0x15)
/home/ksh/work/os-code/go/src/runtime/panic.go:527 +0x96
runtime.gopanic(0x7ce940, 0xc20800e150)
/home/ksh/work/os-code/go/src/runtime/panic.go:354 +0xb9
runtime.panicslice()
/home/ksh/work/os-code/go/src/runtime/panic.go:18 +0x49
runtime.gcInstallStackBarrier(0xc208000160, 0xc2084b1c78)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:510 +0xae
runtime.scanstack.func1(0xc2084b1c78, 0x0, 0x1)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:365 +0x9f
runtime.gentraceback(0x75d275, 0xc2080911b0, 0x0, 0xc208000160, 0x0, 0x0, 0x7fffffff, 0xc2084b1d90, 0x0, 0x0, ...)
/home/ksh/work/os-code/go/src/runtime/traceback.go:336 +0xa7e
runtime.scanstack(0xc208000160)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:380 +0x34e
runtime.gcphasework(0xc208000160)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:273 +0x6d
runtime.stopg(0xc208000160, 0x3)
/home/ksh/work/os-code/go/src/runtime/proc1.go:395 +0x8e
runtime.markroot(0xc208020000, 0x5)
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:138 +0x1ef
runtime.parfordo(0xc208020000)
/home/ksh/work/os-code/go/src/runtime/parfor.go:95 +0x12a
runtime.gcscan_m()
/home/ksh/work/os-code/go/src/runtime/mgcmark.go:37 +0xde
runtime.gc.func1()
/home/ksh/work/os-code/go/src/runtime/mgc.go:843 +0x5c
runtime.systemstack(0xc208026000)
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:262 +0x7c
runtime.mstart()
/home/ksh/work/os-code/go/src/runtime/proc1.go:656
goroutine 5 [garbage collection scan]:
runtime.systemstack_switch()
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:216 fp=0xc20802fce8 sp=0xc20802fce0
runtime.gc(0x0)
/home/ksh/work/os-code/go/src/runtime/mgc.go:855 +0x1d9 fp=0xc20802ff90 sp=0xc20802fce8
runtime.backgroundgc()
/home/ksh/work/os-code/go/src/runtime/mgc.go:775 +0x3d fp=0xc20802ffc0 sp=0xc20802ff90
runtime.goexit()
/home/ksh/work/os-code/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc20802ffc8 sp=0xc20802ffc0
created by runtime.startGC
/home/ksh/work/os-code/go/src/runtime/mgc.go:748 +0x147
goroutine 1 [syscall]:
syscall.Syscall(0x4, 0xc20849bef0, 0xc2085886c0, 0x0, 0xffffffffffffffff, 0x0, 0x2)
/home/ksh/work/os-code/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.Stat(0xc20849be30, 0x25, 0xc2085886c0, 0x0, 0x0)
/home/ksh/work/os-code/go/src/syscall/zsyscall_linux_amd64.go:1529 +0x8b
os.Stat(0xc20849be30, 0x25, 0x0, 0x0, 0x0, 0x0)
/home/ksh/work/os-code/go/src/os/file_unix.go:154 +0x6a
cmd/internal/obj.Access(0xc20849be30, 0x25, 0x0, 0x2)
/home/ksh/work/os-code/go/src/cmd/internal/obj/util.go:173 +0x8e
cmd/compile/internal/gc.findpkg(0xc20845a3f0, 0xc, 0xc20849be30, 0x25, 0xc9a300)
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:605 +0x8a9
cmd/compile/internal/gc.importfile(0xc208092a50, 0x26a)
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:711 +0xc2d
cmd/compile/internal/gc.(*yyParserImpl).Parse(0xc208032038, 0x7fbad15be728, 0xdc0e10, 0x0)
go.y:292 +0x2008
cmd/compile/internal/gc.yyparse()
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:1822 +0xb4
cmd/compile/internal/gc.Main()
/home/ksh/work/os-code/go/src/cmd/compile/internal/gc/lex.go:345 +0x1b35
cmd/compile/internal/amd64.Main()
/home/ksh/work/os-code/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d
main.main()
/home/ksh/work/os-code/go/src/cmd/compile/main.go:26 +0x189
ok crypto/sha512 0.003s
ok crypto/subtle 0.005s
ok crypto/tls 1.769s
FAIL crypto/x509 [build failed]
ok database/sql 0.048s
ok database/sql/driver 0.005s
ok debug/dwarf 0.015s
</code></pre></div>
<p dir="auto">Not sure if it is related but also getting the following test failure (consistently):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ok cmd/fix 0.075s
--- FAIL: TestNoteReading-4 (11.84s)
note_test.go:46: buildID in hello binary = "", want "TestNoteReading-Build-ID"
FAIL
FAIL cmd/go 19.592s"><pre class="notranslate"><code class="notranslate">ok cmd/fix 0.075s
--- FAIL: TestNoteReading-4 (11.84s)
note_test.go:46: buildID in hello binary = "", want "TestNoteReading-Build-ID"
FAIL
FAIL cmd/go 19.592s
</code></pre></div> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="##### GOMAXPROCS=2 runtime -cpu=1,2,4
--- FAIL: TestStackOverflow (0.04s)
crash_test.go:92: building source: exit status 2
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x985d70, 0x15)
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:527 +0x96
runtime.gopanic(0x891b00, 0xc208010190)
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:354 +0xbc
runtime.panicslice()
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:18 +0x50
runtime.gcInstallStackBarrier(0xc20863c9a0, 0xc208033c78)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:510 +0xb1
runtime.scanstack.func1(0xc208033c78, 0x0, 0x1)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:365 +0xa2
runtime.gentraceback(0x6286a5, 0xc2080fca18, 0x0, 0xc20863c9a0, 0x0, 0x0, 0x7fffffff, 0xc208033d90, 0x0, 0x0, ...)
/tmp/buildlet-scatch465833892/go/src/runtime/traceback.go:336 +0xa81
runtime.scanstack(0xc20863c9a0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:380 +0x351
runtime.gcphasework(0xc20863c9a0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:273 +0x70
runtime.stopg(0xc20863c9a0, 0x3)
/tmp/buildlet-scatch465833892/go/src/runtime/proc1.go:395 +0x91
runtime.markroot(0xc208018000, 0xd)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:138 +0x1f2
runtime.parfordo(0xc208018000)
/tmp/buildlet-scatch465833892/go/src/runtime/parfor.go:95 +0x12d
runtime.gcscan_m()
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:37 +0xe1
runtime.gc.func1()
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:843 +0x5f
runtime.systemstack(0xc20801b500)
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:262 +0x7c
runtime.mstart()
/tmp/buildlet-scatch465833892/go/src/runtime/proc1.go:656
goroutine 21 [garbage collection scan]:
runtime.systemstack_switch()
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:216 fp=0xc2080204e8 sp=0xc2080204e0
runtime.gc(0x0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:855 +0x1dc fp=0xc208020790 sp=0xc2080204e8
runtime.backgroundgc()
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:775 +0x40 fp=0xc2080207c0 sp=0xc208020790
runtime.goexit()
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc2080207c8 sp=0xc2080207c0
created by runtime.startGC
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:748 +0x14a
goroutine 1 [semacquire]:
sync.runtime_Semacquire(0xc208617360)
/tmp/buildlet-scatch465833892/go/src/runtime/sema.go:43 +0x2d
sync.(*WaitGroup).Wait(0xc2086495a0)
/tmp/buildlet-scatch465833892/go/src/sync/waitgroup.go:132 +0x15d
main.(*builder).do(0xc2081399d0, 0xc208112d00)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1153 +0x3c9
main.runBuild(0xb90360, 0xc208056130, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:441 +0x51f
main.main()
/tmp/buildlet-scatch465833892/go/src/cmd/go/main.go:177 +0x750
goroutine 19 [syscall]:
os/signal.loop()
/tmp/buildlet-scatch465833892/go/src/os/signal/signal_unix.go:22 +0x1f
created by os/signal.init.1
/tmp/buildlet-scatch465833892/go/src/os/signal/signal_unix.go:28 +0x3e
goroutine 23 [syscall]:
syscall.Syscall(0x0, 0x6, 0xc2080fcae0, 0x8, 0x0, 0x8, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.readlen(0x6, 0xc2080fcae0, 0x8, 0xf, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/zsyscall_linux_amd64.go:1085 +0x53
syscall.forkExec(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fccb0, 0x15d4, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/exec_unix.go:200 +0x56a
syscall.StartProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fccb0, 0x1, 0x4, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/exec_unix.go:238 +0x6e
os.startProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fcee8, 0x90a160, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec_posix.go:45 +0x33f
os.StartProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fcee8, 0x0, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/doc.go:24 +0x6c
os/exec.(*Cmd).Start(0xc208670000, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec/exec.go:319 +0x76a
os/exec.(*Cmd).Run(0xc208670000, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec/exec.go:246 +0x34
main.(*builder).runOut(0xc2081399d0, 0xc208127100, 0x16, 0xc208127080, 0x17, 0x0, 0x0, 0x0, 0xc20866c000, 0xd, ...)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1902 +0x334
main.gcToolchain.gc(0xc2081399d0, 0xc208125400, 0xc208644b40, 0x30, 0xc20865e200, 0x34, 0xc208172600, 0xc20800e540, 0x2, 0x2, ...)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:2146 +0xf1e
main.(*gcToolchain).gc(0xbbcf70, 0xc2081399d0, 0xc208125400, 0xc208644b40, 0x30, 0xc20865e200, 0x34, 0x0, 0xc20800e540, 0x2, ...)
<autogenerated>:3 +0x191
main.(*builder).build(0xc2081399d0, 0xc208112d00, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1320 +0x2551
main.(*builder).do.func1(0xc208112d00)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1087 +0x3bc
main.(*builder).do.func2(0xc2086495a0, 0xc2081399d0, 0xc208649580)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1144 +0x158
created by main.(*builder).do
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1150 +0x3a1
goroutine 24 [select]:
main.(*builder).do.func2(0xc2086495a0, 0xc2081399d0, 0xc208649580)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1134 +0x1d1
created by main.(*builder).do
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1150 +0x3a1
FAIL
FAIL runtime 25.490s"><pre class="notranslate"><code class="notranslate">##### GOMAXPROCS=2 runtime -cpu=1,2,4
--- FAIL: TestStackOverflow (0.04s)
crash_test.go:92: building source: exit status 2
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x985d70, 0x15)
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:527 +0x96
runtime.gopanic(0x891b00, 0xc208010190)
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:354 +0xbc
runtime.panicslice()
/tmp/buildlet-scatch465833892/go/src/runtime/panic.go:18 +0x50
runtime.gcInstallStackBarrier(0xc20863c9a0, 0xc208033c78)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:510 +0xb1
runtime.scanstack.func1(0xc208033c78, 0x0, 0x1)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:365 +0xa2
runtime.gentraceback(0x6286a5, 0xc2080fca18, 0x0, 0xc20863c9a0, 0x0, 0x0, 0x7fffffff, 0xc208033d90, 0x0, 0x0, ...)
/tmp/buildlet-scatch465833892/go/src/runtime/traceback.go:336 +0xa81
runtime.scanstack(0xc20863c9a0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:380 +0x351
runtime.gcphasework(0xc20863c9a0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:273 +0x70
runtime.stopg(0xc20863c9a0, 0x3)
/tmp/buildlet-scatch465833892/go/src/runtime/proc1.go:395 +0x91
runtime.markroot(0xc208018000, 0xd)
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:138 +0x1f2
runtime.parfordo(0xc208018000)
/tmp/buildlet-scatch465833892/go/src/runtime/parfor.go:95 +0x12d
runtime.gcscan_m()
/tmp/buildlet-scatch465833892/go/src/runtime/mgcmark.go:37 +0xe1
runtime.gc.func1()
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:843 +0x5f
runtime.systemstack(0xc20801b500)
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:262 +0x7c
runtime.mstart()
/tmp/buildlet-scatch465833892/go/src/runtime/proc1.go:656
goroutine 21 [garbage collection scan]:
runtime.systemstack_switch()
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:216 fp=0xc2080204e8 sp=0xc2080204e0
runtime.gc(0x0)
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:855 +0x1dc fp=0xc208020790 sp=0xc2080204e8
runtime.backgroundgc()
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:775 +0x40 fp=0xc2080207c0 sp=0xc208020790
runtime.goexit()
/tmp/buildlet-scatch465833892/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc2080207c8 sp=0xc2080207c0
created by runtime.startGC
/tmp/buildlet-scatch465833892/go/src/runtime/mgc.go:748 +0x14a
goroutine 1 [semacquire]:
sync.runtime_Semacquire(0xc208617360)
/tmp/buildlet-scatch465833892/go/src/runtime/sema.go:43 +0x2d
sync.(*WaitGroup).Wait(0xc2086495a0)
/tmp/buildlet-scatch465833892/go/src/sync/waitgroup.go:132 +0x15d
main.(*builder).do(0xc2081399d0, 0xc208112d00)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1153 +0x3c9
main.runBuild(0xb90360, 0xc208056130, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:441 +0x51f
main.main()
/tmp/buildlet-scatch465833892/go/src/cmd/go/main.go:177 +0x750
goroutine 19 [syscall]:
os/signal.loop()
/tmp/buildlet-scatch465833892/go/src/os/signal/signal_unix.go:22 +0x1f
created by os/signal.init.1
/tmp/buildlet-scatch465833892/go/src/os/signal/signal_unix.go:28 +0x3e
goroutine 23 [syscall]:
syscall.Syscall(0x0, 0x6, 0xc2080fcae0, 0x8, 0x0, 0x8, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.readlen(0x6, 0xc2080fcae0, 0x8, 0xf, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/zsyscall_linux_amd64.go:1085 +0x53
syscall.forkExec(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fccb0, 0x15d4, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/exec_unix.go:200 +0x56a
syscall.StartProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fccb0, 0x1, 0x4, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/syscall/exec_unix.go:238 +0x6e
os.startProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fcee8, 0x90a160, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec_posix.go:45 +0x33f
os.StartProcess(0xc20800a880, 0x3d, 0xc20866e0e0, 0xe, 0xe, 0xc2080fcee8, 0x0, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/doc.go:24 +0x6c
os/exec.(*Cmd).Start(0xc208670000, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec/exec.go:319 +0x76a
os/exec.(*Cmd).Run(0xc208670000, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/os/exec/exec.go:246 +0x34
main.(*builder).runOut(0xc2081399d0, 0xc208127100, 0x16, 0xc208127080, 0x17, 0x0, 0x0, 0x0, 0xc20866c000, 0xd, ...)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1902 +0x334
main.gcToolchain.gc(0xc2081399d0, 0xc208125400, 0xc208644b40, 0x30, 0xc20865e200, 0x34, 0xc208172600, 0xc20800e540, 0x2, 0x2, ...)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:2146 +0xf1e
main.(*gcToolchain).gc(0xbbcf70, 0xc2081399d0, 0xc208125400, 0xc208644b40, 0x30, 0xc20865e200, 0x34, 0x0, 0xc20800e540, 0x2, ...)
<autogenerated>:3 +0x191
main.(*builder).build(0xc2081399d0, 0xc208112d00, 0x0, 0x0)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1320 +0x2551
main.(*builder).do.func1(0xc208112d00)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1087 +0x3bc
main.(*builder).do.func2(0xc2086495a0, 0xc2081399d0, 0xc208649580)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1144 +0x158
created by main.(*builder).do
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1150 +0x3a1
goroutine 24 [select]:
main.(*builder).do.func2(0xc2086495a0, 0xc2081399d0, 0xc208649580)
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1134 +0x1d1
created by main.(*builder).do
/tmp/buildlet-scatch465833892/go/src/cmd/go/build.go:1150 +0x3a1
FAIL
FAIL runtime 25.490s
</code></pre></div>
<p dir="auto"><a href="http://build.golang.org/log/de2894c6b3b2b342cb66bd859be2c197e8e641ad" rel="nofollow">http://build.golang.org/log/de2894c6b3b2b342cb66bd859be2c197e8e641ad</a></p>
<p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aclements/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aclements">@aclements</a></p> | 1 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report
[ ] feature request
[ ] support request => 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">Aux-Routes are not found when using two levels of "default routes" (with <code class="notranslate">path:''</code>).<br>
This config works:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" RouterModule.forRoot([
{
path: 'tasks', component: TasksComponent, //container-component has two outlets!
children: [
{ path: '', component:TaskListComponent },
{ path: 'overview/:id', component: TasksComponent, outlet: 'right' },
]
}
],"><pre class="notranslate"> <span class="pl-smi">RouterModule</span><span class="pl-kos">.</span><span class="pl-c1">forRoot</span><span class="pl-kos">(</span><span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s">'tasks'</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">TasksComponent</span><span class="pl-kos">,</span> <span class="pl-c">//container-component has two outlets! </span>
<span class="pl-c1">children</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">''</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>:<span class="pl-smi">TaskListComponent</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">'overview/:id'</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">TasksComponent</span><span class="pl-kos">,</span> <span class="pl-c1">outlet</span>: <span class="pl-s">'right'</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 can open the Tasks-overview by doing:</p>
<p dir="auto"><code class="notranslate">http://localhost:4200/tasks/(right:overview/3)</code></p>
<p dir="auto">See this plnkr and click "to list", "open aux"</p>
<p dir="auto">As I want to extract the whole Tasks-Functionality into a <code class="notranslate">TasksModule</code> I need to be able to do something like this:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" RouterModule.forRoot([
{
path: 'tasks', : children: [ // this one would be in main module
//this is defined in the TasksModule:
{ path: '', component: TasksComponent, //container-component has two outlets!
children: [
{ path: '', component:TaskListComponent },
{ path: 'overview/:id', component: TasksComponent, outlet: 'right' },
]
}
],"><pre class="notranslate"> <span class="pl-smi">RouterModule</span><span class="pl-kos">.</span><span class="pl-c1">forRoot</span><span class="pl-kos">(</span><span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s">'tasks'</span><span class="pl-kos">,</span> : <span class="pl-c1">children</span>: <span class="pl-kos">[</span> <span class="pl-c">// this one would be in main module</span>
<span class="pl-c">//this is defined in the TasksModule:</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">''</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">TasksComponent</span><span class="pl-kos">,</span> <span class="pl-c">//container-component has two outlets! </span>
<span class="pl-c1">children</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">''</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>:<span class="pl-smi">TaskListComponent</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">'overview/:id'</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">TasksComponent</span><span class="pl-kos">,</span> <span class="pl-c1">outlet</span>: <span class="pl-s">'right'</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 would assume both configs are equivalent, and all of the "normal" routing works perfectly fine. But now the link above <code class="notranslate">http://localhost:4200/tasks/(right:overview/3)</code> leads to:</p>
<p dir="auto"><code class="notranslate">Uncaught (in promise): Error: Cannot match any routes: 'tasks'</code></p>
<p dir="auto">See this plnkr: <a href="http://plnkr.co/edit/xd77Mkpqfq6U9tKM4USU?p=preview" rel="nofollow">http://plnkr.co/edit/xd77Mkpqfq6U9tKM4USU?p=preview</a></p>
<p dir="auto"><strong>Expected/desired behavior</strong></p>
<p dir="auto">Aux-Routes should also work with empty-path parents</p>
<p dir="auto"><strong>Reproduction of the problem</strong></p>
<p dir="auto">Working version: <a href="http://plnkr.co/edit/Twx4hXQ0TLfHfrYSe4MO?p=preview" rel="nofollow">http://plnkr.co/edit/Twx4hXQ0TLfHfrYSe4MO?p=preview</a><br>
Non-working version: <a href="http://plnkr.co/edit/xd77Mkpqfq6U9tKM4USU?p=preview" rel="nofollow">http://plnkr.co/edit/xd77Mkpqfq6U9tKM4USU?p=preview</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Both versions of route definition should lead to the same behavior</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">With the current implementation it is impossible to create an encapsulated Config / Module for the tasks behaviour and include it under a certain path into the main config e.g. "myTasks".</p>
<p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vsavkin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vsavkin">@vsavkin</a></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.5</li>
<li><strong>Browser:</strong> [all ]</li>
<li><strong>Language:</strong> [TS ]</li>
</ul> | <p dir="auto">According to the <a href="https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setTimeout" rel="nofollow">doc of setTimeout</a> the fuction supports the syntax <code class="notranslate">setTimeout(string code, [delay])</code></p>
<p dir="auto">The version in <code class="notranslate">angular2-polyfills.js</code> does not support this syntax and this is casing problems with ASP.NET which generates code using this version.</p>
<p dir="auto">I understand that this version should be avoided but I am only able to replace the old asp.net code in stages</p> | 0 |
<p dir="auto">The following program causes an ICE:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn main() {
match ("", "") {
(a, "") => a,
("", b) => b,
};
}"><pre class="notranslate"><code class="notranslate">fn main() {
match ("", "") {
(a, "") => a,
("", b) => b,
};
}
</code></pre></div>
<p dir="auto">The compiler output, with backtraces enabled, is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ RUST_BACKTRACE=1 rustc test.rs
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. 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
task 'rustc' failed at 'index out of bounds: the len is 0 but the index is 0', /home/matt/code/apps/rust/rust/src/librustc/middle/check_match.rs:250
stack backtrace:
1: 0x7fa0afc51af0 - rt::backtrace::imp::write::h58498fa079570ea6AGp::v0.11.0.pre
2: 0x7fa0afc59220 - failure::on_fail::ha6379e4c4ae5dc18N1p::v0.11.0.pre
3: 0x7fa0b03ef870 - unwind::begin_unwind_inner::hd80eddaab5a23324QRd::v0.11.0.pre
4: 0x7fa0b03ef300 - unwind::begin_unwind_fmt::h9099725093fae462jPd::v0.11.0.pre
5: 0x7fa0b03ef2c0 - rust_begin_unwind
6: 0x7fa0b043e110 - failure::begin_unwind::h6da20b95db835a9a23v::v0.11.0.pre
7: 0x7fa0b0441f00 - failure::fail_bounds_check::h4924096447067a67e2v::v0.11.0.pre
8: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
9: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
10: 0x7fa0b0f242c0 - middle::check_match::is_useful_specialized::h8c30afeb07f47663nhB::v0.11.0.pre
11: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
12: 0x7fa0b0f242c0 - middle::check_match::is_useful_specialized::h8c30afeb07f47663nhB::v0.11.0.pre
13: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
14: 0x7fa0b0f18f90 - middle::check_match::check_expr::hf9af3ea0df0373f5BRA::v0.11.0.pre
15: 0x7fa0b0f1dca0 - visit::Visitor::visit_block::h9833201876906112987::v0.11.0.pre
16: 0x7fa0b0f1ba90 - middle::check_match::check_fn::hbc4df80e3ee3042bBQB::v0.11.0.pre
17: 0x7fa0b0f1c9d0 - visit::walk_item::h15784207179804928906::v0.11.0.pre
18: 0x7fa0b0f1bf40 - middle::check_match::check_crate::hf2b699455d6a2b2b7QA::v0.11.0.pre
19: 0x7fa0b13c0bf0 - driver::driver::phase_3_run_analysis_passes::h26bdb20640374ad81mv::v0.11.0.pre
20: 0x7fa0b13b9160 - driver::driver::compile_input::h71908766a89db12fgbv::v0.11.0.pre
21: 0x7fa0b1483c10 - driver::run_compiler::h75dfd515de0d47cfOSx::v0.11.0.pre
22: 0x7fa0b1483b20 - driver::main_args::closure.98525
23: 0x7fa0b149f680 - driver::monitor::closure.99615
24: 0x7fa0b149a5c0 - task::TaskBuilder::try::closure.99378
25: 0x7fa0b33bfc60 - task::spawn_opts::closure.7148
26: 0x7fa0b03ec420 - task::Task::run::closure.5303
27: 0x7fa0b0457960 - rust_try
28: 0x7fa0b03eee60 - unwind::try::ha9ea19d69d80ec42fGd::v0.11.0.pre
29: 0x7fa0b03ec2a0 - task::Task::run::h0268eeb27ce86be2VVc::v0.11.0.pre
30: 0x7fa0b33bfa00 - task::spawn_opts::closure.7121
31: 0x7fa0b03ee430 - thread::thread_start::hf5e1787e63284712kdd::v0.11.0.pre
32: 0x7fa0af6cd000 - start_thread
33: 0x7fa0b00c4fc9 - __clone
34: 0x0 - <unknown>"><pre class="notranslate"><code class="notranslate">$ RUST_BACKTRACE=1 rustc test.rs
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. 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
task 'rustc' failed at 'index out of bounds: the len is 0 but the index is 0', /home/matt/code/apps/rust/rust/src/librustc/middle/check_match.rs:250
stack backtrace:
1: 0x7fa0afc51af0 - rt::backtrace::imp::write::h58498fa079570ea6AGp::v0.11.0.pre
2: 0x7fa0afc59220 - failure::on_fail::ha6379e4c4ae5dc18N1p::v0.11.0.pre
3: 0x7fa0b03ef870 - unwind::begin_unwind_inner::hd80eddaab5a23324QRd::v0.11.0.pre
4: 0x7fa0b03ef300 - unwind::begin_unwind_fmt::h9099725093fae462jPd::v0.11.0.pre
5: 0x7fa0b03ef2c0 - rust_begin_unwind
6: 0x7fa0b043e110 - failure::begin_unwind::h6da20b95db835a9a23v::v0.11.0.pre
7: 0x7fa0b0441f00 - failure::fail_bounds_check::h4924096447067a67e2v::v0.11.0.pre
8: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
9: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
10: 0x7fa0b0f242c0 - middle::check_match::is_useful_specialized::h8c30afeb07f47663nhB::v0.11.0.pre
11: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
12: 0x7fa0b0f242c0 - middle::check_match::is_useful_specialized::h8c30afeb07f47663nhB::v0.11.0.pre
13: 0x7fa0b0f1e880 - middle::check_match::is_useful::h86038b3c4ff660f459A::v0.11.0.pre
14: 0x7fa0b0f18f90 - middle::check_match::check_expr::hf9af3ea0df0373f5BRA::v0.11.0.pre
15: 0x7fa0b0f1dca0 - visit::Visitor::visit_block::h9833201876906112987::v0.11.0.pre
16: 0x7fa0b0f1ba90 - middle::check_match::check_fn::hbc4df80e3ee3042bBQB::v0.11.0.pre
17: 0x7fa0b0f1c9d0 - visit::walk_item::h15784207179804928906::v0.11.0.pre
18: 0x7fa0b0f1bf40 - middle::check_match::check_crate::hf2b699455d6a2b2b7QA::v0.11.0.pre
19: 0x7fa0b13c0bf0 - driver::driver::phase_3_run_analysis_passes::h26bdb20640374ad81mv::v0.11.0.pre
20: 0x7fa0b13b9160 - driver::driver::compile_input::h71908766a89db12fgbv::v0.11.0.pre
21: 0x7fa0b1483c10 - driver::run_compiler::h75dfd515de0d47cfOSx::v0.11.0.pre
22: 0x7fa0b1483b20 - driver::main_args::closure.98525
23: 0x7fa0b149f680 - driver::monitor::closure.99615
24: 0x7fa0b149a5c0 - task::TaskBuilder::try::closure.99378
25: 0x7fa0b33bfc60 - task::spawn_opts::closure.7148
26: 0x7fa0b03ec420 - task::Task::run::closure.5303
27: 0x7fa0b0457960 - rust_try
28: 0x7fa0b03eee60 - unwind::try::ha9ea19d69d80ec42fGd::v0.11.0.pre
29: 0x7fa0b03ec2a0 - task::Task::run::h0268eeb27ce86be2VVc::v0.11.0.pre
30: 0x7fa0b33bfa00 - task::spawn_opts::closure.7121
31: 0x7fa0b03ee430 - thread::thread_start::hf5e1787e63284712kdd::v0.11.0.pre
32: 0x7fa0af6cd000 - start_thread
33: 0x7fa0b00c4fc9 - __clone
34: 0x0 - <unknown>
</code></pre></div>
<p dir="auto">Rust version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc -v
rustc 0.11.0-pre (6d8342f 2014-06-14 17:51:49 +0000)
host: x86_64-unknown-linux-gnu"><pre class="notranslate"><code class="notranslate">$ rustc -v
rustc 0.11.0-pre (6d8342f 2014-06-14 17:51:49 +0000)
host: x86_64-unknown-linux-gnu
</code></pre></div>
<p dir="auto">running on Debian unstable.</p> | <p dir="auto">Code:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fn main() {
match ("", ()) {
(_, _) => (),
("", _) => (),
}
}"><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">match</span> <span class="pl-kos">(</span><span class="pl-s">""</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><span class="pl-s">""</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">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~ > rustc test.rs
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://static.rust-lang.org/doc/master/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' failed at 'index out of bounds: the len is 0 but the index is 0', /build/rust-git/src/rust/src/librustc/middle/check_match.rs:262
stack backtrace:
1: 0x7fb6b7174290 - rt::backtrace::imp::write::h2bd81792b12baabaPUy::v0.11.0.pre
2: 0x7fb6b70f1020 - rt::unwind::begin_unwind_inner::hf025459ac89965dbXuy::v0.11.0.pre
3: 0x7fb6b70e97e0 - rt::unwind::begin_unwind_fmt::hdf2abde05ea171af7ty::v0.11.0.pre
4: 0x7fb6b7174030 - rust_begin_unwind
5: 0x7fb6b71b6120 - failure::begin_unwind::hd8511e7163654fd6IOv::v0.11.0.pre
6: 0x7fb6b71b6d70 - failure::fail_bounds_check::ha1974902474a29f7IMv::v0.11.0.pre
7: 0x7fb6b7e3d900 - <unknown>
8: 0x7fb6b7e3d900 - <unknown>
9: 0x7fb6b7e43830 - <unknown>
10: 0x7fb6b7e3d900 - <unknown>
11: 0x7fb6b7e43830 - <unknown>
12: 0x7fb6b7e3d900 - <unknown>
13: 0x7fb6b7e37170 - <unknown>
14: 0x7fb6b7e3ced0 - <unknown>
15: 0x7fb6b7e39d90 - <unknown>
16: 0x7fb6b7e3a960 - <unknown>
17: 0x7fb6b7e3a010 - middle::check_match::check_crate::h4ecc262850114c4bYQw::v0.11.0.pre
18: 0x7fb6b7e32380 - <unknown>
19: 0x7fb6b82a2f60 - driver::driver::phase_3_run_analysis_passes::h9fe69b3bb03d321dITj::v0.11.0.pre
20: 0x7fb6b829c160 - driver::driver::compile_input::hc60c22b08c843c82iJj::v0.11.0.pre
21: 0x7fb6b8367980 - <unknown>
22: 0x7fb6b83678a0 - <unknown>
23: 0x7fb6b837cb70 - <unknown>
24: 0x7fb6b8377e60 - <unknown>
25: 0x7fb6ba209f10 - <unknown>
26: 0x7fb6b716e410 - <unknown>
27: 0x7fb6b71cbdf0 - rust_try
28: 0x7fb6b716e360 - rt::task::Task::run::h5672b3545148c66eAjw::v0.11.0.pre
29: 0x7fb6ba209cc0 - <unknown>
30: 0x7fb6b7172690 - <unknown>
31: 0x7fb6b6ab8060 - start_thread
32: 0x7fb6b6db8489 - __clone
33: 0x0 - <unknown>
~ > rustc -v
rustc 0.11.0-pre (87ad19e 2014-05-22 15:16:31 -0700)
host: x86_64-unknown-linux-gnu"><pre class="notranslate"><code class="notranslate">~ > rustc test.rs
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://static.rust-lang.org/doc/master/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' failed at 'index out of bounds: the len is 0 but the index is 0', /build/rust-git/src/rust/src/librustc/middle/check_match.rs:262
stack backtrace:
1: 0x7fb6b7174290 - rt::backtrace::imp::write::h2bd81792b12baabaPUy::v0.11.0.pre
2: 0x7fb6b70f1020 - rt::unwind::begin_unwind_inner::hf025459ac89965dbXuy::v0.11.0.pre
3: 0x7fb6b70e97e0 - rt::unwind::begin_unwind_fmt::hdf2abde05ea171af7ty::v0.11.0.pre
4: 0x7fb6b7174030 - rust_begin_unwind
5: 0x7fb6b71b6120 - failure::begin_unwind::hd8511e7163654fd6IOv::v0.11.0.pre
6: 0x7fb6b71b6d70 - failure::fail_bounds_check::ha1974902474a29f7IMv::v0.11.0.pre
7: 0x7fb6b7e3d900 - <unknown>
8: 0x7fb6b7e3d900 - <unknown>
9: 0x7fb6b7e43830 - <unknown>
10: 0x7fb6b7e3d900 - <unknown>
11: 0x7fb6b7e43830 - <unknown>
12: 0x7fb6b7e3d900 - <unknown>
13: 0x7fb6b7e37170 - <unknown>
14: 0x7fb6b7e3ced0 - <unknown>
15: 0x7fb6b7e39d90 - <unknown>
16: 0x7fb6b7e3a960 - <unknown>
17: 0x7fb6b7e3a010 - middle::check_match::check_crate::h4ecc262850114c4bYQw::v0.11.0.pre
18: 0x7fb6b7e32380 - <unknown>
19: 0x7fb6b82a2f60 - driver::driver::phase_3_run_analysis_passes::h9fe69b3bb03d321dITj::v0.11.0.pre
20: 0x7fb6b829c160 - driver::driver::compile_input::hc60c22b08c843c82iJj::v0.11.0.pre
21: 0x7fb6b8367980 - <unknown>
22: 0x7fb6b83678a0 - <unknown>
23: 0x7fb6b837cb70 - <unknown>
24: 0x7fb6b8377e60 - <unknown>
25: 0x7fb6ba209f10 - <unknown>
26: 0x7fb6b716e410 - <unknown>
27: 0x7fb6b71cbdf0 - rust_try
28: 0x7fb6b716e360 - rt::task::Task::run::h5672b3545148c66eAjw::v0.11.0.pre
29: 0x7fb6ba209cc0 - <unknown>
30: 0x7fb6b7172690 - <unknown>
31: 0x7fb6b6ab8060 - start_thread
32: 0x7fb6b6db8489 - __clone
33: 0x0 - <unknown>
~ > rustc -v
rustc 0.11.0-pre (87ad19e 2014-05-22 15:16:31 -0700)
host: x86_64-unknown-linux-gnu
</code></pre></div> | 1 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions and Help</h2>
<p dir="auto">-- Build files have been written to: /home/feng/pytorch/build</p>
<ul dir="auto">
<li>make install -j12<br>
Scanning dependencies of target js_embed<br>
Scanning dependencies of target benchmark<br>
Scanning dependencies of target nccl_external<br>
Scanning dependencies of target pthreadpool<br>
Scanning dependencies of target clog<br>
Scanning dependencies of target gtest<br>
Scanning dependencies of target gloo<br>
Scanning dependencies of target onnxifi_dummy<br>
Scanning dependencies of target onnxifi_loader<br>
Scanning dependencies of target libprotobuf-lite<br>
Scanning dependencies of target libprotobuf<br>
[ 0%] Creating directories for 'nccl_external'<br>
Scanning dependencies of target mkldnn<br>
[ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/js_embed.dir/<strong>/src/google/protobuf/compiler/js/embed.cc.o<br>
[ 1%] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o<br>
[ 1%] No download step for 'nccl_external'<br>
[ 1%] No patch step for 'nccl_external'<br>
[ 1%] No update step for 'nccl_external'<br>
[ 1%] No configure step for 'nccl_external'<br>
[ 1%] Performing build step for 'nccl_external'<br>
[ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_loader.dir/onnx/onnxifi_loader.c.o<br>
[ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_dummy.dir/onnx/onnxifi_dummy.c.o<br>
[ 1%] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/threadpool-pthreads.c.o<br>
make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’:<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:120:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br>
write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br>
^<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_error’:<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:196:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br>
write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br>
^<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_warning’:<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:272:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br>
write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br>
^<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_info’:<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:348:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br>
write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br>
^<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_debug’:<br>
/home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:424:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br>
write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br>
^<br>
[ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/arena.cc.o<br>
Generating nccl.h.in > /home/feng/pytorch/build/nccl/include/nccl.h<br>
Compiling init.cu > /home/feng/pytorch/build/nccl/obj/init.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 1%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o<br>
[ 1%] Linking CXX executable ../../../bin/js_embed<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/arenastring.cc.o<br>
[ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o<br>
[ 1%] Linking C shared library ../../lib/libonnxifi_dummy.so<br>
[ 1%] Linking C static library ../../lib/libpthreadpool.a<br>
[ 1%] Linking C static library ../../lib/libclog.a<br>
[ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o<br>
[ 1%] Linking C static library ../../lib/libonnxifi_loader.a<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive.cpp.o<br>
[ 1%] Built target onnxifi_dummy<br>
[ 1%] Built target js_embed<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/pooling.cpp.o<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/extension_set.cc.o<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/arena.cc.o<br>
[ 1%] Built target onnxifi_loader<br>
[ 1%] Built target pthreadpool<br>
[ 1%] Built target clog<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/arenastring.cc.o<br>
Scanning dependencies of target python_copy_files<br>
Scanning dependencies of target c10<br>
[ 1%] Building CXX object c10/CMakeFiles/c10.dir/DeviceType.cpp.o<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/engine.cpp.o<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/query.cpp.o<br>
[ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br>
[ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/softmax.cpp.o<br>
[ 1%] Building CXX object c10/CMakeFiles/c10.dir/Half.cpp.o<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/mkldnn_debug.cpp.o<br>
[ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/batch_normalization.cpp.o<br>
[ 2%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/extension_set.cc.o<br>
[ 2%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/scratchpad.cpp.o<br>
[ 2%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_attr.cpp.o<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/Device.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/verbose.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/eltwise.cpp.o<br>
[ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory_desc_wrapper.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_iterator.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/lrn.cpp.o<br>
[ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/Stream.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory.cpp.o<br>
[ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/inner_product.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchema.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/KernelRegistration.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DeviceId.cpp.o<br>
[ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/stream.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution_relu.cpp.o<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/coded_stream.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/rnn.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/reorder.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchKey.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br>
[ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution.cpp.o<br>
[ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_desc.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/Dispatcher.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchemaRegistration.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/deconvolution.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/utils.cpp.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_conv_kernel_f32.cpp.o<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br>
[ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o<br>
[ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_batch_normalization_utils.cpp.o<br>
init.cu:52:1: warning: ‘ncclNet’ initialized and declared ‘extern’<br>
ncclNet_t* ncclNet = NULL;<br>
^<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchTable.cpp.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/LayoutId.cpp.o<br>
[ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o<br>
[ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br>
[ 3%] Building CXX object c10/CMakeFiles/c10.dir/impl/DeviceGuardImplInterface.cpp.o<br>
[ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/message_lite.cc.o<br>
[ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Type.cpp.o<br>
[ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/coded_stream.cc.o<br>
[ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/repeated_field.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 4%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_lrn.cpp.o<br>
[ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o<br>
[ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o<br>
[ 4%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o<br>
[ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o<br>
Compiling ring.cu > /home/feng/pytorch/build/nccl/obj/ring.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o<br>
[ 5%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o<br>
[ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br>
[ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br>
[ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o<br>
[ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o<br>
[ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br>
[ 5%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_conv_kernel.cpp.o<br>
[ 5%] Linking CXX static library ../../../lib/libgtest.a<br>
[ 5%] Built target gtest<br>
Scanning dependencies of target ATEN_CPU_FILES_GEN_TARGET<br>
[ 5%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br>
[ 6%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o<br>
[ 6%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_deconvolution.cpp.o<br>
[ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_conv_kernel_f32.cpp.o<br>
[ 7%] Built target python_copy_files<br>
Scanning dependencies of target common<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br>
[ 7%] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br>
[ 7%] Built target common<br>
Scanning dependencies of target mkrename<br>
[ 7%] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o<br>
[ 7%] Linking C executable ../../bin/mkrename<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o<br>
[ 7%] Built target mkrename<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o<br>
[ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_sum.cpp.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/int128.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/message_lite.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/mpi/context.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o<br>
Compiling bootstrap.cu > /home/feng/pytorch/build/nccl/obj/bootstrap.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/repeated_field.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/stringpiece.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/stringprintf.cc.o<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o<br>
[ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution.cpp.o<br>
[ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_winograd_kernel_f32.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/structurally_valid.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/strutil.cc.o<br>
[ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/time.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/wire_format_lite.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeId.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o<br>
[ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeIdRegistration.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o<br>
[ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_inner_product.cpp.o<br>
Compiling transport.cu > /home/feng/pytorch/build/nccl/obj/transport.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 7%] Linking CXX static library ../../../lib/libprotobuf-lite.a<br>
[ 7%] Built target libprotobuf-lite<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o<br>
Scanning dependencies of target mkdisp<br>
[ 7%] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o<br>
[ 7%] Linking C executable ../../bin/mkdisp<br>
[ 7%] Built target mkdisp<br>
Scanning dependencies of target renamedsp256.h_generated<br>
[ 7%] Generating renamedsp256.h<br>
[ 7%] Built target renamedsp256.h_generated<br>
Scanning dependencies of target dispavx.c_generated<br>
[ 7%] Generating dispavx.c<br>
[ 7%] Built target dispavx.c_generated<br>
Scanning dependencies of target renameSSE2.h_generated<br>
[ 7%] Generating include/renamesse2.h<br>
[ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o<br>
Generating renamesse2.h: mkrename 2 4 sse2<br>
[ 7%] Built target renameSSE2.h_generated<br>
Scanning dependencies of target renameFMA4.h_generated<br>
[ 7%] Generating include/renamefma4.h<br>
Generating renamefma4.h: mkrename 4 8 fma4<br>
[ 7%] Built target renameFMA4.h_generated<br>
Scanning dependencies of target renameAVX2.h_generated<br>
[ 7%] Generating include/renameavx2.h<br>
Generating renameavx2.h: mkrename 4 8 avx2<br>
[ 7%] Built target renameAVX2.h_generated<br>
Scanning dependencies of target renameAVX2128.h_generated<br>
[ 7%] Generating include/renameavx2128.h<br>
Generating renameavx2128.h: mkrename 2 4 avx2128<br>
[ 7%] Built target renameAVX2128.h_generated<br>
Scanning dependencies of target renameSSE4.h_generated<br>
[ 8%] Generating include/renamesse4.h<br>
Generating renamesse4.h: mkrename 2 4 sse4<br>
[ 8%] Built target renameSSE4.h_generated<br>
Scanning dependencies of target ATEN_CUDA_FILES_GEN_TARGET<br>
[ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/int128.cc.o<br>
[ 8%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br>
[ 8%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o<br>
[ 8%] Linking CXX shared library ../lib/libc10.so<br>
[ 8%] Built target c10<br>
Scanning dependencies of target mkrename_gnuabi<br>
[ 8%] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o<br>
[ 8%] Linking C executable ../../bin/mkrename_gnuabi<br>
[ 8%] Built target mkrename_gnuabi<br>
Scanning dependencies of target mkmasked_gnuabi<br>
[ 8%] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o<br>
[ 8%] Linking C executable ../../bin/mkmasked_gnuabi<br>
[ 8%] Built target mkmasked_gnuabi<br>
Scanning dependencies of target mkalias<br>
[ 8%] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o<br>
Scanning dependencies of target arraymap<br>
[ 8%] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o<br>
[ 8%] Linking C executable ../../bin/mkalias<br>
[ 8%] Built target mkalias<br>
[ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br>
Scanning dependencies of target torch_shm_manager<br>
[ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br>
[ 8%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o<br>
[ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br>
[ 8%] Built target arraymap<br>
Scanning dependencies of target c10_utils_gpu<br>
[ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_gpu.dir/dummy.cpp.o<br>
[ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_barrier.cpp.o<br>
[ 9%] Built target c10_utils_gpu<br>
Scanning dependencies of target c10_utils_hip<br>
[ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip.dir/dummy.cpp.o<br>
[ 9%] Built target c10_utils_hip<br>
Scanning dependencies of target c10_utils_cpu<br>
[ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_cpu.dir/dummy.cpp.o<br>
[ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_sum.cpp.o<br>
[ 9%] Built target c10_utils_cpu<br>
Scanning dependencies of target cpuinfo<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o<br>
[ 9%] Linking CXX static library ../../../lib/libbenchmark.a<br>
[ 9%] Built target benchmark<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o<br>
Scanning dependencies of target nnpack_reference_layers<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o<br>
[ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ncsp_batch_normalization.cpp.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o<br>
[ 9%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o<br>
[ 9%] Built target ATEN_CPU_FILES_GEN_TARGET<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o<br>
[ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_inner_product.cpp.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o<br>
[ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o<br>
[ 9%] Linking C static library ../../lib/libnnpack_reference_layers.a<br>
[ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o<br>
[ 10%] Built target nnpack_reference_layers<br>
Scanning dependencies of target gtest_main<br>
[ 10%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/current.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o<br>
[ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o<br>
Scanning dependencies of target benchmark_main<br>
[ 10%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o<br>
[ 10%] Linking C static library ../../lib/libcpuinfo.a<br>
[ 10%] Built target cpuinfo<br>
Scanning dependencies of target onnxifi_wrapper<br>
[ 10%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/stringpiece.cc.o<br>
[ 10%] Building C object third_party/onnx/CMakeFiles/onnxifi_wrapper.dir/onnx/onnxifi_wrapper.c.o<br>
[ 10%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_concat.cpp.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 10%] Linking CXX executable ../../../../bin/torch_shm_manager<br>
[ 10%] Linking C shared module ../../lib/libonnxifi.so<br>
[ 10%] Built target onnxifi_wrapper<br>
Scanning dependencies of target <strong>aten_op_header_gen<br>
[ 10%] Generating contrib/aten/aten_op.h<br>
[ 10%] Built target torch_shm_manager<br>
Scanning dependencies of target renameAVX.h_generated<br>
[ 10%] Generating include/renameavx.h<br>
Generating renameavx.h: mkrename 4 8 avx<br>
[ 10%] Built target renameAVX.h_generated<br>
[ 11%] Linking CXX static library ../../../lib/libgloo.a<br>
Scanning dependencies of target renamedsp128.h_generated<br>
[ 11%] Generating renamedsp128.h<br>
[ 11%] Built target renamedsp128.h_generated<br>
Scanning dependencies of target headers<br>
[ 12%] Generating ../../../include/sleef.h<br>
[ 12%] Built target gloo<br>
Scanning dependencies of target dispsse.c_generated<br>
[ 12%] Generating dispsse.c<br>
Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2<br>
Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse2<br>
Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse4<br>
Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX<br>
Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX avx<br>
Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX fma4<br>
Generating sleef.h: mkrename 4 8 m256d m256 m128i m256i AVX avx2<br>
Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 avx2128<br>
Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F<br>
Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F avx512f<br>
[ 12%] Built target dispsse.c_generated<br>
[ 12%] Built target headers<br>
Scanning dependencies of target sleefsse2<br>
Scanning dependencies of target sleeffma4<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o<br>
Compiling misc/group.cu > /home/feng/pytorch/build/nccl/obj/misc/group.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 12%] Linking CXX static library ../../../lib/libbenchmark_main.a<br>
[ 12%] Linking CXX static library ../../../lib/libgtest_main.a<br>
[ 12%] Built target benchmark_main<br>
Scanning dependencies of target sleefavx2<br>
[ 12%] Built target gtest_main<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o<br>
Scanning dependencies of target sleefavx2128<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o<br>
[ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/stringprintf.cc.o<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o<br>
[ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/structurally_valid.cc.o<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o<br>
[ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_conv_kernel.cpp.o<br>
[ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution.cpp.o<br>
[ 12%] Built target sleeffma4<br>
Scanning dependencies of target sleefsse4<br>
[ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/strutil.cc.o<br>
[ 12%] Built target sleefavx2128<br>
Scanning dependencies of target c10_utils_gpu_test<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o<br>
[ 12%] Linking CXX executable ../../bin/c10_utils_gpu_test<br>
[ 12%] Built target sleefavx2<br>
Scanning dependencies of target c10_utils_hip_test<br>
[ 12%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o<br>
[ 12%] Linking CXX executable ../../bin/c10_utils_hip_test<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 12%] Built target c10_utils_gpu_test<br>
Scanning dependencies of target c10_utils_cpu_test<br>
[ 12%] Linking CXX executable ../../bin/c10_utils_cpu_test<br>
[ 12%] Built target c10_utils_hip_test<br>
Scanning dependencies of target qnnpack<br>
[ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o<br>
[ 12%] Built target c10_utils_cpu_test<br>
[ 12%] Generating src/x86_64-fma/2d-fourier-8x8.py.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o<br>
[ 12%] Built target sleefsse2<br>
Scanning dependencies of target c10_registry_test<br>
[ 12%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o<br>
[ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pool_kernel_f32.cpp.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o<br>
[ 12%] Built target sleefsse4<br>
Compiling misc/nvmlwrap.cu > /home/feng/pytorch/build/nccl/obj/misc/nvmlwrap.o<br>
Scanning dependencies of target c10_OpSchema_test<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 12%] Building CXX object c10/test/CMakeFiles/c10_OpSchema_test.dir/dispatch/OpSchema_test.cpp.o<br>
[ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dw/9c8-sse2.c.o<br>
[ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/time.cc.o<br>
[ 12%] Linking C static library ../../lib/libqnnpack.a<br>
[ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/wire_format_lite.cc.o<br>
[ 13%] Built target qnnpack<br>
Scanning dependencies of target c10_InlineStreamGuard_test<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/impl/InlineStreamGuard_test.cpp.o<br>
[ 13%] Linking CXX executable ../../bin/c10_OpSchema_test<br>
[ 13%] Built target c10_OpSchema_test<br>
Scanning dependencies of target c10_StreamGuard_test<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o<br>
[ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_u8s8s32x_convolution.cpp.o<br>
[ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.cc.o<br>
[ 13%] Linking CXX executable ../../bin/c10_registry_test<br>
[ 13%] Built target c10_registry_test<br>
Scanning dependencies of target c10_DeviceGuard_test<br>
[ 13%] Linking CXX executable ../../bin/c10_StreamGuard_test<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o<br>
[ 13%] Built target c10_StreamGuard_test<br>
Scanning dependencies of target c10_TypeTraits_test<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o<br>
[ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.pb.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 13%] Generating src/x86_64-fma/2d-fourier-16x16.py.o<br>
[ 13%] Built target ATEN_CUDA_FILES_GEN_TARGET<br>
Scanning dependencies of target c10_Metaprogramming_test<br>
[ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/api.pb.cc.o<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o<br>
[ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_convolution.cpp.o<br>
[ 13%] Linking CXX executable ../../bin/c10_TypeTraits_test<br>
[ 13%] Built target c10_TypeTraits_test<br>
Scanning dependencies of target c10_logging_test<br>
[ 13%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o<br>
[ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/importer.cc.o<br>
[ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_gemm_f32.cpp.o<br>
[ 14%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 14%] Built target c10_InlineStreamGuard_test<br>
Scanning dependencies of target c10_Array_test<br>
[ 14%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o<br>
[ 14%] Linking CXX executable ../../bin/c10_DeviceGuard_test<br>
Compiling misc/ibvwrap.cu > /home/feng/pytorch/build/nccl/obj/misc/ibvwrap.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 14%] Built target c10_DeviceGuard_test<br>
Scanning dependencies of target c10_InlineDeviceGuard_test<br>
[ 14%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/impl/InlineDeviceGuard_test.cpp.o<br>
[ 14%] Linking CXX executable ../../bin/c10_Metaprogramming_test<br>
[ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/parser.cc.o<br>
[ 14%] Built target c10_Metaprogramming_test<br>
Scanning dependencies of target c10_typeid_test<br>
[ 14%] Linking CXX executable ../../bin/c10_Array_test<br>
[ 14%] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o<br>
[ 14%] Built target c10_Array_test<br>
Scanning dependencies of target c10_flags_test<br>
[ 14%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o<br>
[ 14%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pooling.cpp.o<br>
[ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.cc.o<br>
[ 14%] Linking CXX executable ../../bin/c10_logging_test<br>
[ 14%] Built target c10_logging_test<br>
Scanning dependencies of target c10_TypeList_test<br>
Skipping _th_multinomial Because of Arg: Generator * (Generator*)<br>
Skipping _th_normal Because of Arg: Generator * (Generator*)<br>
Skipping _th_normal Because of Arg: Generator * (Generator*)<br>
Skipping _th_normal Because of Arg: Generator * (Generator*)<br>
Skipping _th_tensor Because of Arg: Storage (Storage)<br>
Skipping _th_tensor Because of Arg: Storage (Storage)<br>
Skipping rrelu_with_noise Because of Arg: Generator * (Generator*)<br>
Skipping rrelu_with_noise_forward Because of Arg: Generator * (Generator*)<br>
[ 14%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o<br>
Skipping thnn_conv_transpose2d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping thnn_conv_transpose3d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping thnn_conv2d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping thnn_conv_depthwise2d_backward Because of Arg: std::array<bool,2> (std::array<bool,2>)<br>
Skipping thnn_conv3d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping thnn_conv_dilated2d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping thnn_conv_dilated3d_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping _cudnn_rnn_backward Because of Arg: std::array<bool,4> (std::array<bool,4>)<br>
Skipping _cudnn_init_dropout_state because it is a factory method<br>
Skipping _fused_dropout Because of Arg: Generator * (Generator *)<br>
Skipping arange because it is a factory method<br>
Skipping bartlett_window because it is a factory method<br>
Skipping bernoulli Because of Arg: Generator * (Generator *)<br>
Skipping bernoulli Because of Arg: Generator * (Generator *)<br>
Skipping blackman_window because it is a factory method<br>
Skipping clamp Because of Arg: c10::optional (Scalar)<br>
Skipping clamp Because of Arg: c10::optional (Scalar)<br>
Skipping _convolution_double_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping cudnn_convolution_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping cudnn_convolution_transpose_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping cumsum Because of Arg: ScalarType (ScalarType)<br>
Skipping cumprod Because of Arg: ScalarType (ScalarType)<br>
Skipping einsum Because of Arg: std::string (std::string)<br>
Skipping empty because it is a factory method<br>
Skipping empty_like because it is a factory method<br>
Skipping empty_strided because it is a factory method<br>
Skipping eye because it is a factory method<br>
Skipping full because it is a factory method<br>
Skipping full_like because it is a factory method<br>
Skipping hann_window because it is a factory method<br>
Skipping hamming_window because it is a factory method<br>
Skipping _cufft_set_plan_cache_max_size Because of Ret: void (void)<br>
Skipping _cufft_clear_plan_cache Because of Ret: void (void)<br>
Skipping linspace because it is a factory method<br>
Skipping logspace because it is a factory method<br>
Skipping log_softmax Because of Arg: ScalarType (ScalarType)<br>
Skipping mean Because of Arg: ScalarType (ScalarType)<br>
Skipping mean Because of Arg: ScalarType (ScalarType)<br>
Skipping mean Because of Arg: ScalarType (ScalarType)<br>
Skipping mkldnn_convolution_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping miopen_convolution_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping miopen_convolution_transpose_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping native_batch_norm_backward Because of Arg: std::array<bool,3> (std::array<bool,3>)<br>
Skipping ones because it is a factory method<br>
Skipping ones_like because it is a factory method<br>
Skipping rand because it is a factory method<br>
Skipping rand_like because it is a factory method<br>
Skipping randint because it is a factory method<br>
Skipping randint_like because it is a factory method<br>
Skipping randn because it is a factory method<br>
Skipping randn_like because it is a factory method<br>
Skipping randperm because it is a factory method<br>
Skipping range because it is a factory method<br>
Skipping rrelu Because of Arg: Generator * (Generator *)<br>
Skipping softmax Because of Arg: ScalarType (ScalarType)<br>
Skipping sum Because of Arg: ScalarType (ScalarType)<br>
Skipping sum Because of Arg: ScalarType (ScalarType)<br>
Skipping sum Because of Arg: ScalarType (ScalarType)<br>
Skipping prod Because of Arg: ScalarType (ScalarType)<br>
Skipping prod Because of Arg: ScalarType (ScalarType)<br>
Skipping prod Because of Arg: ScalarType (ScalarType)<br>
Skipping zeros because it is a factory method<br>
Skipping zeros_like because it is a factory method<br>
Skipping _standard_gamma Because of Arg: Generator * (Generator <em>)<br>
Skipping poisson Because of Arg: Generator * (Generator <em>)<br>
Skipping sparse_coo_tensor because it is a factory method<br>
Skipping _sparse_coo_tensor_unsafe because it is a factory method<br>
Skipping _sparse_coo_tensor_with_dims because it is a factory method<br>
Skipping _sparse_coo_tensor_with_dims_and_tensors because it is a factory method<br>
Skipping sparse_mask Because of Arg: SparseTensorRef (SparseTensorRef)<br>
Skipping to because it is a factory method<br>
Skipping data_ptr Because of Ret: void</em> (void</em>)<br>
Skipping multinomial Because of Arg: Generator * (Generator *)<br>
Skipping normal Because of Arg: Generator * (Generator *)<br>
Skipping normal Because of Arg: Generator * (Generator *)<br>
Skipping normal Because of Arg: Generator * (Generator *)<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 14%] Built target aten_op_header_gen<br>
Scanning dependencies of target sleefavx<br>
[ 14%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o<br>
[ 14%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test<br>
[ 14%] Linking CXX executable ../../bin/c10_flags_test<br>
[ 14%] Built target c10_flags_test<br>
[ 14%] Built target c10_InlineDeviceGuard_test<br>
Scanning dependencies of target dispsse_obj<br>
Scanning dependencies of target dispavx_obj<br>
[ 14%] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o<br>
[ 14%] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o<br>
[ 14%] Linking CXX executable ../../bin/c10_TypeList_test<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 14%] Built target c10_TypeList_test<br>
[ 15%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o<br>
[ 15%] Linking CXX executable ../../bin/c10_typeid_test<br>
[ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn_kernel_f32.cpp.o<br>
[ 15%] Built target c10_typeid_test<br>
Compiling misc/rings.cu > /home/feng/pytorch/build/nccl/obj/misc/rings.o<br>
[ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_concat.cpp.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 15%] Built target dispsse_obj<br>
[ 15%] Built target dispavx_obj<br>
[ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_convolution.cpp.o<br>
[ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.pb.cc.o<br>
[ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor_database.cc.o<br>
[ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_i8i8_pooling.cpp.o<br>
[ 15%] Built target sleefavx<br>
Scanning dependencies of target sleef<br>
[ 15%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o<br>
[ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nchw_pooling.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reducer.cpp.o<br>
[ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_gemm_f32.cpp.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/duration.pb.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_conv_kernel_f32.cpp.o<br>
Compiling misc/utils.cu > /home/feng/pytorch/build/nccl/obj/misc/utils.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder.cpp.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_engine.cpp.o<br>
[ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o<br>
[ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/dynamic_message.cc.o<br>
[ 16%] Linking C static library ../../lib/libsleef.a<br>
[ 16%] Built target sleef<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/empty.pb.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_convolution_winograd.cpp.o<br>
Compiling misc/enqueue.cu > /home/feng/pytorch/build/nccl/obj/misc/enqueue.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/extension_set_heavy.cc.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_lrn.cpp.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/field_mask.pb.cc.o<br>
[ 16%] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_reflection.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_table_driven.cc.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/gzip_stream.cc.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_convolution.cpp.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/printer.cc.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution_winograd.cpp.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/strtod.cc.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_convolution.cpp.o<br>
[ 16%] Generating src/x86_64-fma/blas/s8gemm.py.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/tokenizer.cc.o<br>
Compiling transport/p2p.cu > /home/feng/pytorch/build/nccl/obj/transport/p2p.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 16%] Generating src/x86_64-fma/blas/c8gemm.py.o<br>
[ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_eltwise.cpp.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/zero_copy_stream_impl.cc.o<br>
[ 16%] Generating src/x86_64-fma/blas/s4c6gemm.py.o<br>
[ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/map_field.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/message.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/reflection_ops.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/service.cc.o<br>
[ 17%] Generating src/x86_64-fma/blas/conv1x1.py.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_pooling.cpp.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_conv_kernel_f32.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 17%] Generating src/x86_64-fma/blas/sgemm.py.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/source_context.pb.cc.o<br>
[ 17%] Generating src/x86_64-fma/max-pooling.py.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/struct.pb.cc.o<br>
[ 17%] Generating src/x86_64-fma/relu.py.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_convolution.cpp.o<br>
[ 17%] Generating src/x86_64-fma/softmax.py.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/mathlimits.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/substitute.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/text_format.cc.o<br>
Compiling transport/shm.cu > /home/feng/pytorch/build/nccl/obj/transport/shm.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/timestamp.pb.cc.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_batch_normalization.cpp.o<br>
[ 17%] Generating src/x86_64-fma/blas/sdotxf.py.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_inner_product.cpp.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/type.pb.cc.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder_utils.cpp.o<br>
[ 17%] Generating src/x86_64-fma/blas/shdotxf.py.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/unknown_field_set.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/delimited_message_util.cc.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_conv_kernel.cpp.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_comparator.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_mask_util.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/internal/datapiece.cc.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_batch_normalization.cpp.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/default_value_objectwriter.cc.o<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_convolution.cpp.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/error_listener.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/field_mask_utility.cc.o<br>
Compiling transport/net.cu > /home/feng/pytorch/build/nccl/obj/transport/net.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_escaping.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/json_objectwriter.cc.o<br>
[ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_stream_parser.cc.o<br>
[ 18%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/object_writer.cc.o<br>
[ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_convolution.cpp.o<br>
[ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_convolution.cpp.o<br>
Scanning dependencies of target nnpack<br>
[ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/proto_writer.cc.o<br>
[ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o<br>
[ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o<br>
[ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/protostream_objectsource.cc.o<br>
[ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/protostream_objectwriter.cc.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/type_info.cc.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/type_info_test_helper.cc.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o<br>
[ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o<br>
[ 20%] Linking C static library ../../lib/libnnpack.a<br>
[ 20%] Built target nnpack<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/utility.cc.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reorder.cpp.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/json_util.cc.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/message_differencer.cc.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/time_util.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/type_resolver_util.cc.o<br>
Compiling transport/net_socket.cu > /home/feng/pytorch/build/nccl/obj/transport/net_socket.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/wire_format.cc.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/wrappers.pb.cc.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_conv_kernel_f32.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_kernel.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution_utils.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_softmax.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_transpose_src_utils.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_rnn.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_eltwise.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_convolution.cpp.o<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nspc_batch_normalization.cpp.o<br>
[ 20%] Linking CXX static library ../../../lib/libprotobuf.a<br>
[ 20%] Built target libprotobuf<br>
[ 20%] Generating ../../../../third_party/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.cc<br>
Scanning dependencies of target libprotoc<br>
[ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_conv_winograd_kernel_f32.cpp.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/code_generator.cc.o<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/command_line_interface.cc.o<br>
Compiling transport/net_ib.cu > /home/feng/pytorch/build/nccl/obj/transport/net_ib.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_enum.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_extension.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_file.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_generator.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_message.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_service.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o<br>
Compiling collectives/all_reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/all_reduce.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_enum.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_generator.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o<br>
[ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_message.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_context.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_doc_comment.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_field.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_lite.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_extension.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_extension_lite.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_field.cc.o<br>
Compiling collectives/all_gather.cu > /home/feng/pytorch/build/nccl/obj/collectives/all_gather.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_file.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_generator.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_generator_factory.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_helpers.cc.o<br>
[ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_lazy_message_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_map_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_map_field_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_builder.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_field.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_field_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_name_resolver.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_primitive_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_service.cc.o<br>
Compiling collectives/broadcast.cu > /home/feng/pytorch/build/nccl/obj/collectives/broadcast.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_string_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_string_field_lite.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_enum.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_enum_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_extension.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_field.cc.o<br>
[ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_file.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_generator.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_helpers.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_map_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_message.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_message_field.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/js/js_generator.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/js/well_known_types_embed.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o<br>
Compiling collectives/reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/reduce.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/php/php_generator.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/plugin.cc.o<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/plugin.pb.cc.o<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/python/python_generator.cc.o<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/ruby/ruby_generator.cc.o<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/subprocess.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/zip_writer.cc.o<br>
Compiling collectives/reduce_scatter.cu > /home/feng/pytorch/build/nccl/obj/collectives/reduce_scatter.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 25%] Linking CXX shared library ../../../../lib/libmkldnn.so<br>
[ 25%] Built target mkldnn<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 25%] Linking CXX static library ../../../lib/libprotoc.a<br>
[ 25%] Built target libprotoc<br>
Scanning dependencies of target protoc<br>
[ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/<strong>/src/google/protobuf/compiler/main.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 25%] Linking CXX executable ../../../bin/protoc<br>
[ 25%] Built target protoc<br>
Scanning dependencies of target gen_onnx_proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/prof_dag.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/predictor_consts.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/torch.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/hsm.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/metanet.proto<br>
[ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2_legacy.proto<br>
[ 25%] Running gen_proto.py on onnx/onnx.in.proto<br>
Processing /home/feng/pytorch/third_party/onnx/onnx/onnx.in.proto<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br>
Compiling all_reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_sum.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto3<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx.pb.h<br>
generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_pb.py<br>
[ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br>
Scanning dependencies of target Caffe2_PROTO<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o<br>
[ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o<br>
[ 25%] Built target gen_onnx_proto<br>
[ 25%] Running gen_proto.py on onnx/onnx-operators.in.proto<br>
Processing /home/feng/pytorch/third_party/onnx/onnx/onnx-operators.in.proto<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto3<br>
Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators.pb.h<br>
generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py<br>
[ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br>
Scanning dependencies of target onnx_proto<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch.pb.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch.pb.cc.o<br>
[ 26%] Linking CXX static library ../../lib/libonnx_proto.a<br>
[ 26%] Built target onnx_proto<br>
Scanning dependencies of target onnx<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/schema.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o<br>
[ 26%] Built target Caffe2_PROTO<br>
Scanning dependencies of target Caffe2_perfkernels_avx2<br>
[ 26%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o<br>
[ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o<br>
[ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/defs.cc.o<br>
[ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/common_avx2.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/experiments_functions.cc.o<br>
[ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/onnxifi_utils.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o<br>
[ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_registry.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/optimize.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_manager.cc.o<br>
[ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
Scanning dependencies of target caffe2_protos<br>
[ 27%] Linking CXX static library ../lib/libcaffe2_protos.a<br>
[ 27%] Built target caffe2_protos<br>
Scanning dependencies of target Caffe2_perfkernels_avx<br>
[ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o<br>
[ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o<br>
[ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/common_avx.cc.o<br>
[ 28%] Built target Caffe2_perfkernels_avx<br>
[ 28%] Built target Caffe2_perfkernels_avx2<br>
[ 28%] Linking CXX static library ../../lib/libonnx.a<br>
[ 28%] Built target onnx<br>
Scanning dependencies of target caffe2<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
Compiling broadcast.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_sum.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
Compiling reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_sum.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/DLConvertor.cpp.o<br>
[ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorUtils.cpp.o<br>
[ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUGenerator.cpp.o<br>
[ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorGeometry.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/UndefinedType.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/Utils.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/Context.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUGeneral.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUTypeDefault.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseTensorImpl.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/ExpandUtils.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/ComplexHooksInterface.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/detail/CPUGuardImpl.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/CUDAHooksInterface.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/cpu/FlushDenormal.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Storage.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/context_base.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/thread_pool.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenCoreTest.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/StorageImpl.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Formatting.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/LegacyTypeDispatch.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/register_symbols.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/VariableHooksInterface.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Tensor.cpp.o<br>
[ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/interned_strings.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/TensorOptions.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Range.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ivalue.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Allocator.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenGeneral.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/UndefinedTensorImpl.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Scalar.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/blob.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/intrusive_ptr.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/TensorImpl.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/UniqueVoidPtr.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/type.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/OptionsGuard.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Embedding.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/SoftMax.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/DispatchStub.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Dropout.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorCompare.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LinearAlgebra.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/GridSampler.cpp.o<br>
[ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ReduceOps.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/UnaryOps.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Linear.cpp.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Indexing.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PixelShuffle.cpp.o<br>
Compiling all_gather.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_sum.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorIterator.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LegacyBridge.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TypeProperties.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Copy.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Loss.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/EmbeddingBag.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Normalization.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/WeightNorm.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Resize.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Convolution.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RoiPooling.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PackedSequence.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/LegacyDefinitions.cpp.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distance.cpp.o<br>
Compiling reduce_scatter.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorFactories.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConvolutionTBC.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SummaryOps.cpp.o<br>
[ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorTransformations.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Unique.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorIteratorReduce.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Pooling.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distributions.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SpectralOps.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Memory.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorProperties.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Scalar.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorShape.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BinaryOps.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Activation.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LossCTC.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RNN.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConstantPadNd.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorConversions.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BatchLinearAlgebra.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/sparse/SparseTensor.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/mkl/SpectralOps.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkldnn/Conv.cpp.o<br>
[ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUByteType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUCharType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUCopy.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUDoubleType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUFloatType.cpp.o<br>
Compiling all_reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_prod.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUHalfType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUIntType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPULongType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUShortType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/RegisterCPU.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUByteType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUCharType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUDoubleType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUFloatType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUIntType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPULongType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUShortType.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TypeDefault.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THGeneral.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THAllocator.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THSize.cpp.o<br>
[ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THStorageFunctions.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensor.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorCopy.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorRandom.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorMath.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorMoreMath.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorEvenMoreMath.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorConv.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorLapack.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THBlas.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THLapack.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THLogAdd.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THRandom.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THFile.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THDiskFile.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THMemoryFile.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THVector.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/vector/AVX.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/vector/AVX2.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/THNN/init.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o<br>
[ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o<br>
Compiling broadcast.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_prod.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
Compiling reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_prod.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o<br>
Compiling all_gather.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_prod.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o<br>
Compiling reduce_scatter.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o<br>
[ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/mkldnn/Runtime.cpp.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o<br>
Compiling all_reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_min.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o<br>
[ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o<br>
Compiling broadcast.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_min.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o<br>
[ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
Compiling reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_min.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/utils/ideep_register.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/dropout_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/pool_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/momentum_sgd_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/local_response_normalization_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/relu_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/elementwise_sum_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/squeeze_op.cc.o<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/utility_ops.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_fusion_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/operator_fallback_ideep.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/concat_split_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/spatial_batch_norm_op.cc.o<br>
Compiling all_gather.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_min.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/fully_connected_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
Compiling reduce_scatter.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o<br>
Compiling all_reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_max.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o<br>
[ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o<br>
Compiling broadcast.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_max.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
Compiling reduce.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_max.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o<br>
[ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o<br>
Compiling all_gather.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_max.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o<br>
[ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o<br>
Compiling reduce_scatter.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
Compiling functions.cu > /home/feng/pytorch/build/nccl/obj/collectives/device/functions.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o<br>
[ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o<br>
ptxas warning : Too big maxrregcount value specified 96, will be ignored<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o<br>
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br>
nvlink fatal : Internal error: reference to deleted section<br>
Makefile:83: recipe for target '/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o' failed<br>
make[5]: *** [/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o] Error 1<br>
Makefile:45: recipe for target 'devicelib' failed<br>
make[4]: *** [devicelib] Error 2<br>
Makefile:25: recipe for target 'src.build' failed<br>
make[3]: *** [src.build] Error 2<br>
CMakeFiles/nccl_external.dir/build.make:110: recipe for target 'nccl_external-prefix/src/nccl_external-stamp/nccl_external-build' failed<br>
make[2]: *** [nccl_external-prefix/src/nccl_external-stamp/nccl_external-build] Error 2<br>
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/nccl_external.dir/all' failed<br>
make[1]: *** [CMakeFiles/nccl_external.dir/all] Error 2<br>
make[1]: *** Waiting for unfinished jobs....<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o<br>
[ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o<br>
[ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o<br>
[ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o<br>
[ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o<br>
[ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o<br>
[ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o<br>
[ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/layer_norm.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o<br>
[ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o<br>
[ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o<br>
[ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o<br>
[ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o<br>
[ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o<br>
[ 57%] Linking CXX shared library ../lib/libcaffe2.so<br>
[ 57%] Built target caffe2<br>
Makefile:138: recipe for target 'all' failed<br>
make: *** [all] Error 2<br>
Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack --use-mkldnn --use-qnnpack caffe2'</li>
</ul>
<h3 dir="auto">Please note that this issue tracker is not a help form and this issue will be closed.</h3>
<p dir="auto">We have a set of <a href="https://pytorch.org/resources" rel="nofollow">listed resources available on the website</a>. Our primary means of support is our discussion forum:</p>
<ul dir="auto">
<li><a href="https://discuss.pytorch.org/" rel="nofollow">Discussion Forum</a></li>
</ul> | <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>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>I tried code below, and I got warning like</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="torch/autograd/__init__.py:127: UserWarning: Mixed memory format inputs detected while calling the operator.
The operator will output contiguous tensor even if some of the inputs are in channels_last format.
(Triggered internally at /pytorch/aten/src/ATen/native/TensorIterator.cpp:918.)
allow_unreachable=True) # allow_unreachable flag"><pre class="notranslate"><code class="notranslate">torch/autograd/__init__.py:127: UserWarning: Mixed memory format inputs detected while calling the operator.
The operator will output contiguous tensor even if some of the inputs are in channels_last format.
(Triggered internally at /pytorch/aten/src/ATen/native/TensorIterator.cpp:918.)
allow_unreachable=True) # allow_unreachable flag
</code></pre></div>
<ol start="2" dir="auto">
<li>Then I comment the second nn.ReLU in self.bbox_subnet, rerun the code, and I got a warning free running.<br>
This is strange for me.</li>
</ol>
<p dir="auto">Here is the code:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
from torch import nn
class Head(nn.Module):
def __init__(self):
super().__init__()
in_channels = 4
self.cls_subnet = nn.Sequential(*[
nn.Conv2d(in_channels, in_channels, kernel_size=3, padding=1),
nn.ReLU(),
])
self.bbox_subnet = nn.Sequential(*[
nn.Conv2d(in_channels, in_channels, kernel_size=3, padding=1),
nn.ReLU(),
])
def forward(self, x):
cls_subnet = self.cls_subnet(x)
bbox_subnet = self.bbox_subnet(x)
return cls_subnet, bbox_subnet
if __name__ == "__main__":
x = torch.randn(2, 4, 100, 152)
x.requires_grad_()
head = Head()
cls, box = head(x)
N, _, H, W = box.shape
tensor = box.reshape(N, -1, 4, H, W).permute(0, 3, 4, 1, 2)
tensor.mean().backward()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-k">from</span> <span class="pl-s1">torch</span> <span class="pl-k">import</span> <span class="pl-s1">nn</span>
<span class="pl-k">class</span> <span class="pl-v">Head</span>(<span class="pl-s1">nn</span>.<span class="pl-v">Module</span>):
<span class="pl-k">def</span> <span class="pl-en">__init__</span>(<span class="pl-s1">self</span>):
<span class="pl-en">super</span>().<span class="pl-en">__init__</span>()
<span class="pl-s1">in_channels</span> <span class="pl-c1">=</span> <span class="pl-c1">4</span>
<span class="pl-s1">self</span>.<span class="pl-s1">cls_subnet</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(<span class="pl-c1">*</span>[
<span class="pl-s1">nn</span>.<span class="pl-v">Conv2d</span>(<span class="pl-s1">in_channels</span>, <span class="pl-s1">in_channels</span>, <span class="pl-s1">kernel_size</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">padding</span><span class="pl-c1">=</span><span class="pl-c1">1</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(),
])
<span class="pl-s1">self</span>.<span class="pl-s1">bbox_subnet</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(<span class="pl-c1">*</span>[
<span class="pl-s1">nn</span>.<span class="pl-v">Conv2d</span>(<span class="pl-s1">in_channels</span>, <span class="pl-s1">in_channels</span>, <span class="pl-s1">kernel_size</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">padding</span><span class="pl-c1">=</span><span class="pl-c1">1</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(),
])
<span class="pl-k">def</span> <span class="pl-en">forward</span>(<span class="pl-s1">self</span>, <span class="pl-s1">x</span>):
<span class="pl-s1">cls_subnet</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">cls_subnet</span>(<span class="pl-s1">x</span>)
<span class="pl-s1">bbox_subnet</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">bbox_subnet</span>(<span class="pl-s1">x</span>)
<span class="pl-k">return</span> <span class="pl-s1">cls_subnet</span>, <span class="pl-s1">bbox_subnet</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">x</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randn</span>(<span class="pl-c1">2</span>, <span class="pl-c1">4</span>, <span class="pl-c1">100</span>, <span class="pl-c1">152</span>)
<span class="pl-s1">x</span>.<span class="pl-en">requires_grad_</span>()
<span class="pl-s1">head</span> <span class="pl-c1">=</span> <span class="pl-v">Head</span>()
<span class="pl-s1">cls</span>, <span class="pl-s1">box</span> <span class="pl-c1">=</span> <span class="pl-en">head</span>(<span class="pl-s1">x</span>)
<span class="pl-v">N</span>, <span class="pl-s1">_</span>, <span class="pl-v">H</span>, <span class="pl-v">W</span> <span class="pl-c1">=</span> <span class="pl-s1">box</span>.<span class="pl-s1">shape</span>
<span class="pl-s1">tensor</span> <span class="pl-c1">=</span> <span class="pl-s1">box</span>.<span class="pl-en">reshape</span>(<span class="pl-v">N</span>, <span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-c1">4</span>, <span class="pl-v">H</span>, <span class="pl-v">W</span>).<span class="pl-en">permute</span>(<span class="pl-c1">0</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>)
<span class="pl-s1">tensor</span>.<span class="pl-en">mean</span>().<span class="pl-en">backward</span>()</pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">A warning-free running.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">Please copy and paste the output from our<br>
<a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br>
(or fill out the checklist below manually).</p>
<p dir="auto">You can get the script and run it with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py"><pre class="notranslate"><code class="notranslate">wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
</code></pre></div>
<ul dir="auto">
<li>PyTorch Version (e.g., 1.0): 1.6</li>
<li>OS (e.g., Linux): Ubuntu</li>
<li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source): pip install torch==1.6.0+cu101 torchvision==0.7.0+cu101 -f <a href="https://download.pytorch.org/whl/torch_stable.html" rel="nofollow">https://download.pytorch.org/whl/torch_stable.html</a></li>
<li>Build command you used (if compiling from source):</li>
<li>Python version: 3.6.8</li>
<li>CUDA/cuDNN version: 10.1</li>
<li>GPU models and configuration: 2080Ti</li>
<li>Any other relevant information:</li>
</ul>
<h2 dir="auto">Additional context</h2>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/VitalyFedyunin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/VitalyFedyunin">@VitalyFedyunin</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jamesr66a/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jamesr66a">@jamesr66a</a></p> | 0 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">“Bug Report”</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.6 (master <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/1b3f77fafd93de119b4d0cc15c16fb854d4082f4/hovercard" href="https://github.com/ansible/ansible/commit/1b3f77fafd93de119b4d0cc15c16fb854d4082f4"><tt>1b3f77f</tt></a>) last updated 2014/03/30 19:39:04 (GMT +800)</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">host: ubuntu 12.04 python: 2.7.3<br>
guests: ubuntu 12.04.4 python: 2.7.3</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">This is a same task on different remote servers. fail happen on v1.4.5 successors. one server success and one fail.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">part of tasks/main.yml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: create /var/www directory
file: dest=/var/www/ state=directory owner=www-data
- name: extract kibana tarball
unarchive: src=kibana.tar.bz2 dest=/var/www/"><pre class="notranslate"><code class="notranslate">- name: create /var/www directory
file: dest=/var/www/ state=directory owner=www-data
- name: extract kibana tarball
unarchive: src=kibana.tar.bz2 dest=/var/www/
</code></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">all servers success.</p>
<h5 dir="auto">Actual Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [kibana | create /var/www directory] ************************************
ok: [cnbjlx9913] => {"changed": false, "gid": 33, "group": "www-data", "item": "", "mode": "0755", "owner": "www-data", "path": "/var/www/", "size": 4096, "state": "directory", "uid": 33}
ok: [cnbjlnx006] => {"changed": false, "gid": 33, "group": "www-data", "item": "", "mode": "0755", "owner": "www-data", "path": "/var/www/", "size": 4096, "state": "directory", "uid": 33}
TASK: [kibana | extract kibana tarball] ***************************************
failed: [cnbjlx9913] => {"failed": true, "item": ""}
msg: dest '/var/www/' must be an existing dir
ok: [cnbjlnx006] => {"changed": false, "check_results": {"cmd": "tar -v -C \"/var/www/\" --diff -f \"/home/CORPUSERS/xp013826/.ansible/tmp/ansible-tmp-1396339364.42-237678010154795/source\"", "err": "", "out": "kibana/\nkibana/app/\nkibana/app/app.js"><pre class="notranslate"><code class="notranslate">TASK: [kibana | create /var/www directory] ************************************
ok: [cnbjlx9913] => {"changed": false, "gid": 33, "group": "www-data", "item": "", "mode": "0755", "owner": "www-data", "path": "/var/www/", "size": 4096, "state": "directory", "uid": 33}
ok: [cnbjlnx006] => {"changed": false, "gid": 33, "group": "www-data", "item": "", "mode": "0755", "owner": "www-data", "path": "/var/www/", "size": 4096, "state": "directory", "uid": 33}
TASK: [kibana | extract kibana tarball] ***************************************
failed: [cnbjlx9913] => {"failed": true, "item": ""}
msg: dest '/var/www/' must be an existing dir
ok: [cnbjlnx006] => {"changed": false, "check_results": {"cmd": "tar -v -C \"/var/www/\" --diff -f \"/home/CORPUSERS/xp013826/.ansible/tmp/ansible-tmp-1396339364.42-237678010154795/source\"", "err": "", "out": "kibana/\nkibana/app/\nkibana/app/app.js
</code></pre></div> | <h5 dir="auto">Issue Type:</h5>
<p dir="auto">Feature Idea</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">1.7.1</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">OS X 10.9.4</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">For the following, I will only talk about tagging tasks. However, this could be applied to any resource (play, role, task) that can be tagged.</p>
<p dir="auto">When you want to use tags to include <strong>and</strong> exclude specific tasks from a playbook, you need to use the --tags <strong>and</strong> --skip-tags options. However, the issue is that all of your tasks must be tagged. Would it make sense that every task declared is automatically tagged with a default tag. For the sake of this issue, let's say that tag is <code class="notranslate">default</code>.</p>
<p dir="auto">An example:</p>
<p dir="auto">My plays and roles are initially designed to be run against our environments in our data centers. When I want to use those same scripts for a Vagrant setup, there are certain tasks that I want to include <strong>and</strong> exclude. Just to reiterate, I don't tag all of my tasks. Currently, I can exclude tasks by assigning a tag like <code class="notranslate">skip-vagrant</code> and use <code class="notranslate">--skip-tags "skip-vagrant"</code>. However, when I want to also include a task, I can't simply tag it as <code class="notranslate">vagrant</code> and use <code class="notranslate">--tags "vagrant"</code> because Ansible won't run my other non-tagged tasks. If every task (i.e. resource) was automatically tagged with a default tag, I could include <strong>and</strong> exclude tasks using <code class="notranslate">--tags "default,vagrant" --skip-tags "skip-vagrant"</code>. This also prevents me from adding noise to my configurations with <code class="notranslate">tags: [default]</code> to every task.</p> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Create a view with a text input, and a submit callback listener. In the submit listener, call something like <code class="notranslate">Navigator.popAndPushNamed()</code>. This will result in the following error message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/flutter (11330): 'package:flutter/src/widgets/routes.dart': Failed assertion: line 200 pos 12: '!_transitionCompleter.isCompleted': Cannot reuse a MaterialPageRoute after disposing it."><pre class="notranslate"><code class="notranslate">E/flutter (11330): 'package:flutter/src/widgets/routes.dart': Failed assertion: line 200 pos 12: '!_transitionCompleter.isCompleted': Cannot reuse a MaterialPageRoute after disposing it.
</code></pre></div>
<p dir="auto">Probably not the best error message to read.</p>
<p dir="auto">Through a conversation on the flutter gitter I found that dismissing the keyboard using <code class="notranslate">Focus.clear(context);</code> before popping the view resolved the error.</p>
<p dir="auto">I propose the error message is changed to be more helpful towards this (seemingly quite common) error case - something like 'If you're popping and pushing a route with a text input, make sure you dismiss the keyboard using <code class="notranslate">Focus.clear(BuildContext)</code> before changing the route. Failing to do this results in the navigator trying to double-pop the keyboard.` or something along those lines!</p>
<p dir="auto">I'd quite like to open a PR for this, I just want to check I haven't totally misunderstood what's going on underneath the hood!</p>
<p dir="auto">Thanks,</p>
<p dir="auto">Tom</p> | <h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/34681083/52030061-1de7c380-256a-11e9-880f-da07f00c93d2.gif"><img src="https://user-images.githubusercontent.com/34681083/52030061-1de7c380-256a-11e9-880f-da07f00c93d2.gif" alt="gif" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Video: <a href="https://i.imgur.com/A85IETe.mp4" rel="nofollow">https://i.imgur.com/A85IETe.mp4</a></p>
<ol dir="auto">
<li>Install Flutter Gallery on iOS simulator</li>
<li>Open and close any sample using the swipe mechanism</li>
<li>After a few successful swipes pick up the pace of opening and closing the sample</li>
<li>Crashes</li>
</ol>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter: ══╡ EXCEPTION CAUGHT BY ANIMATION LIBRARY ╞═════════════════════════════════════════════════════════
flutter: The following assertion was thrown while notifying status listeners for AnimationController:
flutter: Cannot reuse a MaterialPageRoute<dynamic> after disposing it.
flutter: 'package:flutter/src/widgets/routes.dart': Failed assertion: line 218 pos 12:
flutter: '!_transitionCompleter.isCompleted'
flutter:
flutter: Either the assertion indicates an error in the framework itself, or we should provide substantially
flutter: more information in this error message to help you determine and fix the underlying cause.
flutter: In either case, please report this assertion by filing a bug on GitHub:
flutter: https://github.com/flutter/flutter/issues/new?template=BUG.md
flutter:
flutter: When the exception was thrown, this was the stack:
flutter: #2 TransitionRoute.didPopNext (package:flutter/src/widgets/routes.dart:218:12)
flutter: #3 NavigatorState.pop (package:flutter/src/widgets/navigator.dart:1944:23)
flutter: #4 _CupertinoBackGestureController._handleStatusChanged (package:flutter/src/cupertino/route.dart:651:17)
flutter: #5 _AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin.notifyStatusListeners (package:flutter/src/animation/listener_helpers.dart:192:19)
flutter: #6 AnimationController._checkStatusChanged (package:flutter/src/animation/animation_controller.dart:736:7)
flutter: #7 AnimationController._tick (package:flutter/src/animation/animation_controller.dart:752:5)
flutter: #8 Ticker._tick (package:flutter/src/scheduler/ticker.dart:228:5)
flutter: #9 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15)
flutter: #10 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleBeginFrame.<anonymous closure> (package:flutter/src/scheduler/binding.dart:906:11)
flutter: #11 __InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin.forEach (dart:collection/runtime/libcompact_hash.dart:367:8)
flutter: #12 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleBeginFrame (package:flutter/src/scheduler/binding.dart:904:17)
flutter: #13 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleBeginFrame (package:flutter/src/scheduler/binding.dart:834:5)
flutter: #17 _invoke1 (dart:ui/hooks.dart:203:10)
flutter: #18 _beginFrame (dart:ui/hooks.dart:156:3)
flutter: (elided 5 frames from class _AssertionError and package dart:async)
flutter:
flutter: The AnimationController notifying status listeners was:
flutter: AnimationController#f0974(⏮ 0.000; paused; DISPOSED; for
flutter: MaterialPageRoute<dynamic>(/cupertino/alert))
flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
"><pre class="notranslate"><code class="notranslate">flutter: ══╡ EXCEPTION CAUGHT BY ANIMATION LIBRARY ╞═════════════════════════════════════════════════════════
flutter: The following assertion was thrown while notifying status listeners for AnimationController:
flutter: Cannot reuse a MaterialPageRoute<dynamic> after disposing it.
flutter: 'package:flutter/src/widgets/routes.dart': Failed assertion: line 218 pos 12:
flutter: '!_transitionCompleter.isCompleted'
flutter:
flutter: Either the assertion indicates an error in the framework itself, or we should provide substantially
flutter: more information in this error message to help you determine and fix the underlying cause.
flutter: In either case, please report this assertion by filing a bug on GitHub:
flutter: https://github.com/flutter/flutter/issues/new?template=BUG.md
flutter:
flutter: When the exception was thrown, this was the stack:
flutter: #2 TransitionRoute.didPopNext (package:flutter/src/widgets/routes.dart:218:12)
flutter: #3 NavigatorState.pop (package:flutter/src/widgets/navigator.dart:1944:23)
flutter: #4 _CupertinoBackGestureController._handleStatusChanged (package:flutter/src/cupertino/route.dart:651:17)
flutter: #5 _AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin.notifyStatusListeners (package:flutter/src/animation/listener_helpers.dart:192:19)
flutter: #6 AnimationController._checkStatusChanged (package:flutter/src/animation/animation_controller.dart:736:7)
flutter: #7 AnimationController._tick (package:flutter/src/animation/animation_controller.dart:752:5)
flutter: #8 Ticker._tick (package:flutter/src/scheduler/ticker.dart:228:5)
flutter: #9 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15)
flutter: #10 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleBeginFrame.<anonymous closure> (package:flutter/src/scheduler/binding.dart:906:11)
flutter: #11 __InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin.forEach (dart:collection/runtime/libcompact_hash.dart:367:8)
flutter: #12 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleBeginFrame (package:flutter/src/scheduler/binding.dart:904:17)
flutter: #13 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleBeginFrame (package:flutter/src/scheduler/binding.dart:834:5)
flutter: #17 _invoke1 (dart:ui/hooks.dart:203:10)
flutter: #18 _beginFrame (dart:ui/hooks.dart:156:3)
flutter: (elided 5 frames from class _AssertionError and package dart:async)
flutter:
flutter: The AnimationController notifying status listeners was:
flutter: AnimationController#f0974(⏮ 0.000; paused; DISPOSED; for
flutter: MaterialPageRoute<dynamic>(/cupertino/alert))
flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
flutter: Another exception was thrown: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1507 pos 12: '!_debugLocked': is not true.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing flutter_gallery...
No issues found! (ran in 5.6s)"><pre class="notranslate"><code class="notranslate">Analyzing flutter_gallery...
No issues found! (ran in 5.6s)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel master, v1.2.1-pre.50, on Mac OS X 10.14.2, locale en-US)
• Flutter version 1.2.1-pre.50 at /Users/droidery/flutter
• Framework revision dbd1b317ff (76 minutes ago), 2019-01-30 21:31:44 -0500
• Engine revision 15f2b92cce
• Dart version 2.1.1 (build 2.1.1-dev.3.2 71bee8f05e)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at /Users/droidery/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
• All Android licenses accepted.
[!] iOS toolchain - develop for iOS devices (Xcode 10.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.1, Build version 10B61
✗ Verify that all connected devices have been paired with this computer in Xcode.
If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
To update with Brew, run:
brew update
brew uninstall --ignore-dependencies libimobiledevice
brew uninstall --ignore-dependencies usbmuxd
brew install --HEAD usbmuxd
brew unlink usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
• ios-deploy 1.9.4
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.3)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 31.3.3
• Dart plugin version 182.5124
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
[✓] IntelliJ IDEA Community Edition (version 2018.3.4)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 32.0.3
• Dart plugin version 183.5429.25
[✓] VS Code (version 1.30.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.22.2
[✓] Connected device (1 available)
• iPhone SE • 58F34A3E-1576-453E-B1B4-3DCB22E1FEDD • ios • iOS 12.1 (simulator)"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel master, v1.2.1-pre.50, on Mac OS X 10.14.2, locale en-US)
• Flutter version 1.2.1-pre.50 at /Users/droidery/flutter
• Framework revision dbd1b317ff (76 minutes ago), 2019-01-30 21:31:44 -0500
• Engine revision 15f2b92cce
• Dart version 2.1.1 (build 2.1.1-dev.3.2 71bee8f05e)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at /Users/droidery/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
• All Android licenses accepted.
[!] iOS toolchain - develop for iOS devices (Xcode 10.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.1, Build version 10B61
✗ Verify that all connected devices have been paired with this computer in Xcode.
If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
To update with Brew, run:
brew update
brew uninstall --ignore-dependencies libimobiledevice
brew uninstall --ignore-dependencies usbmuxd
brew install --HEAD usbmuxd
brew unlink usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
• ios-deploy 1.9.4
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.3)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 31.3.3
• Dart plugin version 182.5124
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
[✓] IntelliJ IDEA Community Edition (version 2018.3.4)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 32.0.3
• Dart plugin version 183.5429.25
[✓] VS Code (version 1.30.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.22.2
[✓] Connected device (1 available)
• iPhone SE • 58F34A3E-1576-453E-B1B4-3DCB22E1FEDD • ios • iOS 12.1 (simulator)
</code></pre></div>
<p dir="auto">Might be related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="405069628" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/27333" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/27333/hovercard" href="https://github.com/flutter/flutter/issues/27333">#27333</a> but error message and reproduction steps are difference.</p> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">Here is my code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let value: any
if (value instanceof MyClass) {
// value is any. needs to typecast like this to get intellisense working:
(<MyClass>value).prop=true;
}"><pre class="notranslate"><code class="notranslate">let value: any
if (value instanceof MyClass) {
// value is any. needs to typecast like this to get intellisense working:
(<MyClass>value).prop=true;
}
</code></pre></div>
<p dir="auto">It would be great to support this feature.</p>
<p dir="auto">Thanks in advance and I hope this could help others.</p> | <p dir="auto">I am using the following example that I took directly from the blog post (<a href="http://blogs.msdn.com/b/typescript/archive/2014/11/18/what-s-new-in-the-typescript-type-system.aspx" rel="nofollow">http://blogs.msdn.com/b/typescript/archive/2014/11/18/what-s-new-in-the-typescript-type-system.aspx</a>)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var x: any = "foo";
if(typeof x === 'string') {
console.log(x.subtr(1)); // Error, 'subtr' does not exist on 'string'
}
// x is still any here
x.unknown(); // OK"><pre class="notranslate"><code class="notranslate">var x: any = "foo";
if(typeof x === 'string') {
console.log(x.subtr(1)); // Error, 'subtr' does not exist on 'string'
}
// x is still any here
x.unknown(); // OK
</code></pre></div>
<p dir="auto">I am not seeing the error or intellisense for the console.log statement.</p>
<p dir="auto">Are type guards actually supported in this case or only for union types?</p> | 1 |
<pre class="notranslate">Before filing a bug, please check whether it has been fixed since the
latest release. Search the issue tracker and check that you're running the
latest version of Go:
Run "go version" and compare against
<a href="http://golang.org/doc/devel/release.html" rel="nofollow">http://golang.org/doc/devel/release.html</a> If a newer version of Go exists,
install it and retry what you did to reproduce the problem.
Thanks.
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. Access the download page,
<a href="http://code.google.com/p/go/downloads/list?can=2&" rel="nofollow">http://code.google.com/p/go/downloads/list?can=2&</a>;q=OpSys-Darwin
2. Download both packages
3. Install one and then the other
4. Both Installers fail at the end in the package scripts phase
What is the expected output?
Installation successful
What do you see instead?
Failed
Which compiler are you using (5g, 6g, 8g, gccgo)?
go1.0.2
Which operating system are you using?
Mac OS X Lion 10.7.4
Which version are you using? (run 'go version')
1.0.2
Please provide any additional information below.
This is the second thing I've ever tried to do with Go! (the first one failed too)
I'm on the page 2 of the tour!
Most folks would just give up at this point</pre> | <p dir="auto">by <strong>krolaw</strong>:</p>
<pre class="notranslate">This would be useful when parsing (really) large JSON documents in low memory
environments.
At the moment one would need to write their own comma and key handling code. Since this
is available in the encoding/xml package (through RawToken), it would be consistent to
have similar functionality in the json package.
Thanks.</pre> | 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"> 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"> 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"> 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"> 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"> 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"> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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"> 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 & 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 & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: celery==5.0.5</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: python 3.8</li>
<li><strong>Minimal Celery Version</strong>: celery==5.0.5</li>
<li><strong>Minimal Kombu Version</strong>: kombu==5.0.2</li>
<li><strong>Minimal Broker Version</strong>: redis:4.0.14</li>
<li><strong>Minimal Result Backend Version</strong>: redis:4.0.14</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: ubuntu 20.04</li>
<li><strong>Minimal Broker Client Version</strong>: redis==3.5.3</li>
<li><strong>Minimal Result Backend Client Version</strong>: redis==3.5.3</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>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def test_celery_redis_connection_reset(celery_app):
# Manual wait so we can have redis up when celery_app fixture is created, but then shut redis down manually before call to send_task
input("waiting for your input ...")
# If redis is down, fails immediately with redis.exceptions.ConnectionError instead of retrying
celery_app.send_task("ping")"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">test_celery_redis_connection_reset</span>(<span class="pl-s1">celery_app</span>):
<span class="pl-c"># Manual wait so we can have redis up when celery_app fixture is created, but then shut redis down manually before call to send_task</span>
<span class="pl-en">input</span>(<span class="pl-s">"waiting for your input ..."</span>)
<span class="pl-c"># If redis is down, fails immediately with redis.exceptions.ConnectionError instead of retrying</span>
<span class="pl-s1">celery_app</span>.<span class="pl-en">send_task</span>(<span class="pl-s">"ping"</span>)</pre></div>
<details>
<p dir="auto">
</p><p dir="auto">celery_app.send_task doesn't retry to establish connection to redis at all.<br>
There is a retry logic built into celery, and it's being used when creating celery_app pytest fixture, but it's not used in celery_app.send_task. Why? What could be done to turn it on?</p>
<p dir="auto">I'm using</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" celery_app.conf.broker_transport_options = {
'retry_policy': {
'timeout': 5.0
}
}"><pre class="notranslate"> <span class="pl-s1">celery_app</span>.<span class="pl-s1">conf</span>.<span class="pl-s1">broker_transport_options</span> <span class="pl-c1">=</span> {
<span class="pl-s">'retry_policy'</span>: {
<span class="pl-s">'timeout'</span>: <span class="pl-c1">5.0</span>
}
}</pre></div>
<p dir="auto">but that's not honored at all - even when celery_app test fixture tries to establish connection it instead performs up to 20 retries spaced out at 1 seconds interval.</p>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">To be resilient to intermittent connection problems celery client should retry to reestablish connection if it fails the first time.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">Celery client fails immediately with redis.exceptions.ConnectionError if connection can't be established on first attempt.</p> | <ul class="contains-task-list">
<li>[x ] I have checked the <a href="https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+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%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li>[x ] 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>[ x] I have included all related issues and possible duplicate issues in this issue<br>
(If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<p dir="auto">(actually a pull request)</p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="429072124" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5437" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5437/hovercard" href="https://github.com/celery/celery/pull/5437">#5437</a></li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h1 dir="auto">Description</h1>
<p dir="auto">Correct fix in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="429072124" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5437" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5437/hovercard" href="https://github.com/celery/celery/pull/5437">#5437</a> has been merged yet still shows incorrect migration command on the website. <a href="https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html" rel="nofollow">https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html</a></p>
<h1 dir="auto">Suggestions</h1>
<p dir="auto">Review the web page and make sure the change in the repo is reflected in the website.</p> | 0 |
<p dir="auto">I have encountered some performance issues with JAX version 0.2.26 and 0.2.27. This has surfaced while running the TestU01 small-crush RNG testsuite against the <code class="notranslate">jax.random</code> RNG as well as my own implementation in <a href="https://github.com/DPBayes/jax-chacha-prng">https://github.com/DPBayes/jax-chacha-prng</a> which run significantly slower than in previous versions. Running JAX version 0.2.26 with JAXlib version 0.1.74 took me 30:47.50 minutes (close to that with JAX version 0.2.27). With JAX version 0.2.25, same JAXlib version, took only 0:38.59 minutes.</p>
<p dir="auto">I'm not sure what causes this and it's hard to track down. It could of course be an issue in my wrapping code around the Python rngs as I haven't yet found a simpler working example that demonstrates this behaviour. I'm trying to narrow it down further, but wanted to ask whether anyone else has encountered something similar or if there were any changes in JAX version 0.2.26 that I'm not aware of and that could explain this.</p>
<p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:<br>
As said above, I have not boiled this down to a simple complete example.</li>
</ul> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jax
import jax.numpy as jnp
f = lambda x: jnp.add(x, 1)
x = jax.pmap(f)(jnp.array([1])) # x is a SDA
# jnp.add will use the JAX C++ jit path which has SDA handling falling back to numpy-like handling
x = jnp.add(x, 1)"><pre class="notranslate"><code class="notranslate">import jax
import jax.numpy as jnp
f = lambda x: jnp.add(x, 1)
x = jax.pmap(f)(jnp.array([1])) # x is a SDA
# jnp.add will use the JAX C++ jit path which has SDA handling falling back to numpy-like handling
x = jnp.add(x, 1)
</code></pre></div>
<p dir="auto">Handling: <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/compiler/xla/python/py_values.cc#L220-L223">https://github.com/tensorflow/tensorflow/blob/master/tensorflow/compiler/xla/python/py_values.cc#L220-L223</a></p> | 0 |
<h3 dir="auto">Problem description</h3>
<p dir="auto">The UI jitters time to time, mostly when the drawer pops out/off for the first time. Even the home page <a href="http://www.material-ui.com" rel="nofollow">www.material-ui.com</a> has this problem when opening/closing the drawer by clicking the 3-lines icon at top-left corner.</p>
<p dir="auto">It happens more often on Chromium:<br>
Version 55.0.2883.87 Built on Ubuntu , running on Ubuntu 16.04 (64-bit).<br>
It also happens on Opera (43.0.2442.806) although not so frequently as Chromium.<br>
It never happens on Firefox (51.0.1 (64-bit)).</p>
<h3 dir="auto">Link to minimally-working code that reproduces the issue</h3>
<p dir="auto"><a href="http://www.material-ui.com" rel="nofollow">www.material-ui.com</a></p>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: <a href="http://www.material-ui.com" rel="nofollow">www.material-ui.com</a></li>
<li>React: <a href="http://www.material-ui.com" rel="nofollow">www.material-ui.com</a></li>
<li>Browser: Chromium 55.0.2883.87, Opera 43.0.2442.806</li>
</ul> | <h3 dir="auto">Problem description</h3>
<p dir="auto">Once i tap the the drawer button there is a significant lag until a menu appears. it does not feel fluid or native like. I'm assuming you used the react drawer component on your own site as well.</p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">open <a href="http://www.material-ui.com/#/" rel="nofollow">http://www.material-ui.com/#/</a> in chrome browser mobile on mobile device and touch the top left menu drawerbutton.</p>
<p dir="auto">In comparison this Drawer demo( <a href="url">https://googlechrome.github.io/ui-element-samples/side-nav/</a> ) runs native like fluid on my chrome mobile browser.</p> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/show-the-local-weather" rel="nofollow">Show the Local Weather</a> has an issue.</p>
<p dir="auto">I didn't manually mess with most challenges but I doubt this is the only instance of this. Like most privacy aware users, I run HTTPS-Everywhere and it makes codepens fail when they load insecure ressources.</p>
<p dir="auto">Change http: for https:</p> | <h4 dir="auto">Challenge Name</h4>
<p dir="auto">Show the Local Weather</p>
<p dir="auto"><a href="https://www.freecodecamp.com/challenges/show-the-local-weather" rel="nofollow">https://www.freecodecamp.com/challenges/show-the-local-weather</a></p>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">getCurrentPosition does not work over http. I think that changing the url to codepen.io in that particular challenge would help others campers not thinking their code isn't correct.</p>
<h4 dir="auto">Browser Information</h4>
<ul dir="auto">
<li>Browser Name, Version: Chrome 51.0.2704.84 m</li>
<li>Operating System: Windows 10</li>
<li>Mobile, Desktop, or Tablet: Desktop</li>
</ul>
<h4 dir="auto">Your Code</h4>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// If relevant, paste all of your challenge code in here
"><pre class="notranslate"><span class="pl-c">// If relevant, paste all of your challenge code in here</span></pre></div>
<h4 dir="auto">Screenshot</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/507366/16065574/6c4c6126-3282-11e6-94cf-4396a1040fcd.png"><img src="https://cloud.githubusercontent.com/assets/507366/16065574/6c4c6126-3282-11e6-94cf-4396a1040fcd.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<pre class="notranslate">godoc at goneat.org (an Ubuntu amd64 virtual machine) is exploding frequently with this
error message:
runtime: address space conflict: map() =
throw: runtime: address space conflict
runtime.throw+0x40
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/runtime.c:102
runtime.throw(0x80881a, 0xf84dfe0000)
runtime.SysMap+0x8d
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/linux/mem.c:63
runtime.SysMap(0xf84dfe0000, 0x3b30000, 0xbec22c00bec220,
0xbec23c00bec233)
runtime.MHeap_SysAlloc+0x61
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/malloc.c:257
runtime.MHeap_SysAlloc(0x81f438, 0x3b30000, 0xbec3d600bec3cc,
0xbec44d00bec3e4)
MHeap_Grow+0xa1 /build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/mheap.c:188
MHeap_Grow(0x81f438, 0x3b30, 0x100000000, 0xce0e4200ce0db7)
MHeap_AllocLocked+0x2ba
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/mheap.c:93
MHeap_AllocLocked(0x81f438, 0x3b2d, 0xdd5bf200000000,
0xdd5c1300dd5bfb, 0xdd5c1300dd5c13, ...)
runtime.MHeap_Alloc+0xb9
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/mheap.c:64
runtime.MHeap_Alloc(0x81f438, 0x3b2d, 0x100000000,
0xdd6a4f00dd6a4f, 0xdd6bbb00dd6b5a, ...)
runtime.mallocgc+0x2ca
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/malloc.c:58
runtime.mallocgc(0x3b2c5cc, 0x100000001, 0xecb08200000001,
0x4, 0xecb12e00ecb117, ...)
makeslice1+0x7d /build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/slice.c:44
makeslice1(0x595a30, 0xecb17300ecb173, 0x7f892e9e7ba0,
0xecb17300ecb173, 0xecb17300ecb173, ...)
runtime.makeslice+0x86
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/slice.c:24
runtime.makeslice(0x595a30, 0xecb173, 0xecb173, 0x1,
0xecb17300ecb173, ...)
index/suffixarray.initGroups+0x3b
/build/buildd/golang-0~2011.03.07.1/src/pkg/index/suffixarray/qsufsort.go:99
index/suffixarray.initGroups(0xf84a4b0000, 0xecb17300ecb173,
0xf842a00000, 0x11ffe0000ecb173, 0x1, ...)
index/suffixarray.qsufsort+0xfd
/build/buildd/golang-0~2011.03.07.1/src/pkg/index/suffixarray/qsufsort.go:37
index/suffixarray.qsufsort(0xf842a00000, 0x11ffe0000ecb173,
0x58d4a8, 0xf842a00000, 0xf846c5a240, ...)
index/suffixarray.New+0x55
/build/buildd/golang-0~2011.03.07.1/src/pkg/index/suffixarray/suffixarray.go:36
index/suffixarray.New(0xf842a00000, 0x11ffe0000ecb173,
0x11ffe0000ecb173, 0xf844016120, 0x719800007198, ...)
main.NewIndex+0x65d
/build/buildd/golang-0~2011.03.07.1/src/cmd/godoc/index.go:863
main.NewIndex(0xf8402a2c00, 0x1, 0x0, 0x0, 0x0, ...)
main.indexer+0xdf
/build/buildd/golang-0~2011.03.07.1/src/cmd/godoc/godoc.go:1259
main.indexer()
runtime.goexit /build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/proc.c:150
runtime.goexit()</pre> | <pre class="notranslate">None of these docs specify the control flow of recover:
<a href="http://golang.org/ref/spec#Handling_panics" rel="nofollow">http://golang.org/ref/spec#Handling_panics</a>
"manage behavior of a panicking goroutine"
"restoring normal execution"
<a href="http://golang.org/pkg/builtin/#recover" rel="nofollow">http://golang.org/pkg/builtin/#recover</a>
"manage behavior of a panicking goroutine"
"restoring normal execution"
<a href="http://golang.org/doc/articles/defer_panic_recover.html" rel="nofollow">http://golang.org/doc/articles/defer_panic_recover.html</a>
"regains control of a panicking goroutine"
"resume normal execution"
Where does normal execution resume? Here are three plausible interpretations:
1) if a statement form panicked, control jumps to the immediately following statement;
if an expression form panicked, the expression evaluates to its zero value.
2) the function that deferred the call to recover returns immediately with the zero
value of its result type.
3) the function that deferred the call to recover returns immediately, with the zero
value of its result type iff the result parameters were unnamed, or as if by a
zero-argument "return" statement otherwise.
The implementation seems to follow #3.</pre> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto">When you build next.js when the index page is located in <code class="notranslate">/index/index.js</code> instead of <code class="notranslate">/index.js</code> The client side script will not be executed when you access <code class="notranslate">http://localhost/</code>.</p>
<p dir="auto">The built index page will register with <code class="notranslate">/index</code> (as shown below)</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(window.__NEXT_P = window.__NEXT_P || []).push(["/index", function () {
var e = n("gDgk");
return {
page: e.default || e
}
}])"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">__NEXT_P</span> <span class="pl-c1">=</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">__NEXT_P</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-en">push</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">"/index"</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">e</span> <span class="pl-c1">=</span> <span class="pl-en">n</span><span class="pl-kos">(</span><span class="pl-s">"gDgk"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">page</span>: <span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">default</span> <span class="pl-c1">||</span> <span class="pl-s1">e</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">Moving the index.js to the pages root will restore the wanted behaviour.<br>
It took a while for me to figure out what the actual issue is as it's working just fine in dev mode.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior, please provide code snippets or a repository:</p>
<ol dir="auto">
<li>Check out <a href="https://github.com/adlk/nextjs-index-issue">https://github.com/adlk/nextjs-index-issue</a></li>
<li>Run <code class="notranslate">npm install && npm run build && npm start</code></li>
<li>Check in DevTools if you have a log with <code class="notranslate">Home: component did mount</code></li>
</ol>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>Version of Next.js: 8.0.0</li>
</ul> | <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?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Components lose all references when staticly exporting the app</p>
<h2 dir="auto">Context</h2>
<p dir="auto">In my project i have multiple components which use refs to determine dom-specific stuff (e.g. height of elements), they work as expected when building for production and running next. I intend to use the static export of the app. When i run the exported build on my server (apache), all refs that should be populated, are set to null. i also tried to wrap these components with <code class="notranslate">react-no-ssr</code> to no avail.</p>
<p dir="auto"><strong>One of my Components which produce this behaviour</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React,{Component} from 'react'
import ReactDOM from 'react-dom'
function isElementInViewport (el) {
const rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
export default class Runningback extends Component {
state = {visible:false}
componentDidMount(){
window.addEventListener('scroll',this.handleScroll,false);
this.handleScroll();
}
componentWillUnmount(){
window.removeEventListener('scroll',this.handleScroll);
}
handleScroll = ()=>{
const el = ReactDOM.findDOMNode(this.refs[0]);
if(!el) return;
const visible = isElementInViewport(el);
const {both=false} = this.props;
if(this.state.visible !== visible && (visible || both)){
// console.log(`el switched ${visible?'visible':'invisible'}`);
this.setState({visible});
}
}
render(){
const {children} = this.props;
const {visible} = this.state;
if(typeof(children) !== 'function') throw new Error('expects a function as children-prop');
return React.Children.map(children(visible),(child,index)=>{
//debugger;
return <child.type {...child.props} ref={index} />;
});
}
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span><span class="pl-kos">,</span><span class="pl-kos">{</span><span class="pl-v">Component</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span>
<span class="pl-k">import</span> <span class="pl-v">ReactDOM</span> <span class="pl-k">from</span> <span class="pl-s">'react-dom'</span>
<span class="pl-k">function</span> <span class="pl-en">isElementInViewport</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-k">const</span> <span class="pl-s1">rect</span> <span class="pl-c1">=</span> <span class="pl-s1">el</span><span class="pl-kos">.</span><span class="pl-en">getBoundingClientRect</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-s1">rect</span><span class="pl-kos">.</span><span class="pl-c1">top</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span> <span class="pl-c1">&&</span>
<span class="pl-s1">rect</span><span class="pl-kos">.</span><span class="pl-c1">left</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span> <span class="pl-c1">&&</span>
<span class="pl-s1">rect</span><span class="pl-kos">.</span><span class="pl-c1">bottom</span> <span class="pl-c1"><=</span> <span class="pl-kos">(</span><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">innerHeight</span> <span class="pl-c1">||</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">documentElement</span><span class="pl-kos">.</span><span class="pl-c1">clientHeight</span><span class="pl-kos">)</span> <span class="pl-c1">&&</span>
<span class="pl-s1">rect</span><span class="pl-kos">.</span><span class="pl-c1">right</span> <span class="pl-c1"><=</span> <span class="pl-kos">(</span><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">innerWidth</span> <span class="pl-c1">||</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">documentElement</span><span class="pl-kos">.</span><span class="pl-c1">clientWidth</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-k">class</span> <span class="pl-v">Runningback</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-c1">state</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">visible</span>:<span class="pl-c1">false</span><span class="pl-kos">}</span>
<span class="pl-en">componentDidMount</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">addEventListener</span><span class="pl-kos">(</span><span class="pl-s">'scroll'</span><span class="pl-kos">,</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleScroll</span><span class="pl-kos">,</span><span class="pl-c1">false</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">handleScroll</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">componentWillUnmount</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">removeEventListener</span><span class="pl-kos">(</span><span class="pl-s">'scroll'</span><span class="pl-kos">,</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleScroll</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c1">handleScroll</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-c1">=></span><span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">el</span> <span class="pl-c1">=</span> <span class="pl-v">ReactDOM</span><span class="pl-kos">.</span><span class="pl-en">findDOMNode</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">refs</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-kos">;</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">el</span><span class="pl-kos">)</span> <span class="pl-k">return</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">visible</span> <span class="pl-c1">=</span> <span class="pl-en">isElementInViewport</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-k">const</span> <span class="pl-kos">{</span>both<span class="pl-c1">=</span><span class="pl-c1">false</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">;</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">visible</span> <span class="pl-c1">!==</span> <span class="pl-s1">visible</span> <span class="pl-c1">&&</span> <span class="pl-kos">(</span><span class="pl-s1">visible</span> <span class="pl-c1">||</span> <span class="pl-s1">both</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-c">// console.log(`el switched ${visible?'visible':'invisible'}`);</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">setState</span><span class="pl-kos">(</span><span class="pl-kos">{</span>visible<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">render</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-kos">{</span>children<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span>visible<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</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-kos">(</span><span class="pl-s1">children</span><span class="pl-kos">)</span> <span class="pl-c1">!==</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">Error</span><span class="pl-kos">(</span><span class="pl-s">'expects a function as children-prop'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Children</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-en">children</span><span class="pl-kos">(</span><span class="pl-s1">visible</span><span class="pl-kos">)</span><span class="pl-kos">,</span><span class="pl-kos">(</span><span class="pl-s1">child</span><span class="pl-kos">,</span><span class="pl-s1">index</span><span class="pl-kos">)</span><span class="pl-c1">=></span><span class="pl-kos">{</span>
<span class="pl-c">//debugger;</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-s1">type</span> <span class="pl-kos">{</span>...<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">}</span> <span class="pl-c1">ref</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">index</span><span class="pl-kos">}</span> <span class="pl-c1">/</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>
<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>v5.0.1-canary.11</td>
</tr>
<tr>
<td>node</td>
<td>v9.1.0</td>
</tr>
<tr>
<td>OS</td>
<td>macOS High Sierra</td>
</tr>
<tr>
<td>browser</td>
<td>Google Chrome</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<h3 dir="auto">Bug summary</h3>
<p dir="auto">There are several rendering errors when creating a <code class="notranslate">bar3d</code> chart:</p>
<ul dir="auto">
<li>for some bars the side walls are missing, e.g. at (1,0), (3,0) or (7,0).</li>
<li>the edge to the x-axis of the top of bar (0,1) is partially visible, although it should be completely covered by bar (0,0).</li>
<li>the label of the y-axis is shifted to the left, the 0 is not at the level of the 0-coordinate.</li>
</ul>
<p dir="auto">The list of errors is not complete, I think everyone can recognize the errors when looking closely.</p>
<h3 dir="auto">Code for reproduction</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm
# generate data
x = np.array(10*list(range(10)))
y = np.array([])
for i in x[0:10]:
y = np.append(y,np.ones(10)*i)
rng = np.random.default_rng(4)
z = rng.random(len(x))+0.5
# plot
fig = plt.figure()
ax = fig.add_subplot(1,1,1, projection='3d')
ax.set_xlabel('x')
ax.set_ylabel('y')
x_pos = x-1/2
y_pos = y-1/2
z_pos = [0]*len(z)
x_size = np.ones(len(z))
y_size = np.ones(len(z))
z_size = z
colormap = cm.ScalarMappable()
color = colormap.to_rgba(z)
ax.bar3d(x_pos, y_pos, z_pos, x_size, y_size, z_size, color=color, shade=True)
plt.savefig('plt.png', dpi=300)"><pre class="notranslate"><span class="pl-c">#!/usr/bin/env python3</span>
<span class="pl-c"># -*- coding: utf-8 -*-</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">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">cm</span>
<span class="pl-c"># generate data</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-c1">10</span><span class="pl-c1">*</span><span class="pl-en">list</span>(<span class="pl-en">range</span>(<span class="pl-c1">10</span>)))
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([])
<span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-s1">x</span>[<span class="pl-c1">0</span>:<span class="pl-c1">10</span>]:
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">append</span>(<span class="pl-s1">y</span>,<span class="pl-s1">np</span>.<span class="pl-en">ones</span>(<span class="pl-c1">10</span>)<span class="pl-c1">*</span><span class="pl-s1">i</span>)
<span class="pl-s1">rng</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">default_rng</span>(<span class="pl-c1">4</span>)
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">rng</span>.<span class="pl-en">random</span>(<span class="pl-en">len</span>(<span class="pl-s1">x</span>))<span class="pl-c1">+</span><span class="pl-c1">0.5</span>
<span class="pl-c"># plot</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">add_subplot</span>(<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>, <span class="pl-s1">projection</span><span class="pl-c1">=</span><span class="pl-s">'3d'</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">set_xlabel</span>(<span class="pl-s">'x'</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">set_ylabel</span>(<span class="pl-s">'y'</span>)
<span class="pl-s1">x_pos</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">2</span>
<span class="pl-s1">y_pos</span> <span class="pl-c1">=</span> <span class="pl-s1">y</span><span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-c1">/</span><span class="pl-c1">2</span>
<span class="pl-s1">z_pos</span> <span class="pl-c1">=</span> [<span class="pl-c1">0</span>]<span class="pl-c1">*</span><span class="pl-en">len</span>(<span class="pl-s1">z</span>)
<span class="pl-s1">x_size</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>(<span class="pl-en">len</span>(<span class="pl-s1">z</span>))
<span class="pl-s1">y_size</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>(<span class="pl-en">len</span>(<span class="pl-s1">z</span>))
<span class="pl-s1">z_size</span> <span class="pl-c1">=</span> <span class="pl-s1">z</span>
<span class="pl-s1">colormap</span> <span class="pl-c1">=</span> <span class="pl-s1">cm</span>.<span class="pl-v">ScalarMappable</span>()
<span class="pl-s1">color</span> <span class="pl-c1">=</span> <span class="pl-s1">colormap</span>.<span class="pl-en">to_rgba</span>(<span class="pl-s1">z</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">bar3d</span>(<span class="pl-s1">x_pos</span>, <span class="pl-s1">y_pos</span>, <span class="pl-s1">z_pos</span>, <span class="pl-s1">x_size</span>, <span class="pl-s1">y_size</span>, <span class="pl-s1">z_size</span>, <span class="pl-s1">color</span><span class="pl-c1">=</span><span class="pl-s1">color</span>, <span class="pl-s1">shade</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'plt.png'</span>, <span class="pl-s1">dpi</span><span class="pl-c1">=</span><span class="pl-c1">300</span>)</pre></div>
<h3 dir="auto">Actual outcome</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/81165783/221412290-1787d46c-ca96-4f93-a65c-c7d34b1fc2d0.png"><img src="https://user-images.githubusercontent.com/81165783/221412290-1787d46c-ca96-4f93-a65c-c7d34b1fc2d0.png" alt="plt" style="max-width: 100%;"></a></p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto">I expect a correct 3D rendering</p>
<h3 dir="auto">Additional information</h3>
<p dir="auto">There is a similar bug <a href="https://github.com/matplotlib/matplotlib/issues/13728" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/13728/hovercard">reported here</a>.</p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">Linux Mint</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.7.0</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">module://matplotlib_inline.backend_inline</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">3.10.6</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Installation</h3>
<p dir="auto">pip</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong><br>
Z-order of rendered planes in 3d bar chart produced by bar3d is wrong. It is seen even in the example here <a href="https://matplotlib.org/gallery/mplot3d/3d_bars.html" rel="nofollow">https://matplotlib.org/gallery/mplot3d/3d_bars.html</a>. One of the bars (at location 2, 4, height 6) is drawn on top of the highest bar, even though it supposed to be behind it.</p>
<p dir="auto"><strong>Code for reproduction</strong><br>
A small modification of the code from example to make it more pronounced.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import matplotlib.pyplot as plt
# This import registers the 3D projection, but is otherwise unused.
from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import
# setup the figure and axes
fig = plt.figure(figsize=(8, 8))
ax1 = fig.add_subplot(111, projection='3d')
# fake data
_x = np.arange(8)
_y = np.arange(8)
_xx, _yy = np.meshgrid(_x, _y)
x, y = _xx.ravel(), _yy.ravel()
top = x + y
bottom = np.zeros_like(top)
width = depth = 1
ax1.bar3d(x, y, bottom, width, depth, top, shade=True)
ax1.set_title('Shaded')
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-c"># This import registers the 3D projection, but is otherwise unused.</span>
<span class="pl-k">from</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">mplot3d</span> <span class="pl-k">import</span> <span class="pl-v">Axes3D</span> <span class="pl-c"># noqa: F401 unused import</span>
<span class="pl-c"># setup the figure and axes</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>(<span class="pl-s1">figsize</span><span class="pl-c1">=</span>(<span class="pl-c1">8</span>, <span class="pl-c1">8</span>))
<span class="pl-s1">ax1</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">add_subplot</span>(<span class="pl-c1">111</span>, <span class="pl-s1">projection</span><span class="pl-c1">=</span><span class="pl-s">'3d'</span>)
<span class="pl-c"># fake data</span>
<span class="pl-s1">_x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">8</span>)
<span class="pl-s1">_y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">8</span>)
<span class="pl-s1">_xx</span>, <span class="pl-s1">_yy</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">_x</span>, <span class="pl-s1">_y</span>)
<span class="pl-s1">x</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">_xx</span>.<span class="pl-en">ravel</span>(), <span class="pl-s1">_yy</span>.<span class="pl-en">ravel</span>()
<span class="pl-s1">top</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">y</span>
<span class="pl-s1">bottom</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">zeros_like</span>(<span class="pl-s1">top</span>)
<span class="pl-s1">width</span> <span class="pl-c1">=</span> <span class="pl-s1">depth</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span>
<span class="pl-s1">ax1</span>.<span class="pl-en">bar3d</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">bottom</span>, <span class="pl-s1">width</span>, <span class="pl-s1">depth</span>, <span class="pl-s1">top</span>, <span class="pl-s1">shade</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">ax1</span>.<span class="pl-en">set_title</span>(<span class="pl-s">'Shaded'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9054941/54744129-1905ce80-4c01-11e9-808a-39a54d870363.png"><img src="https://user-images.githubusercontent.com/9054941/54744129-1905ce80-4c01-11e9-808a-39a54d870363.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Everything to the right from diagonal is rendered incorrectly.</p>
<p dir="auto"><strong>Matplotlib version</strong><br>
Tested on two machines with the same results.</p>
<ul dir="auto">
<li>Operating system: mac and windows</li>
<li>Matplotlib version:<br>
matplotlib 2.1.2 py36h6d6146d_0<br>
and<br>
matplotlib 3.0.3 py37_0 conda-forge</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): module://ipykernel.pylab.backend_inline</li>
<li>Python version:<br>
3.6.0 |Anaconda custom (64-bit)| (default, Dec 23 2016, 13:19:00)<br>
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]<br>
and<br>
3.7.1 | packaged by conda-forge | (default, Mar 13 2019, 13:32:59) [MSC v.1900 64 bit (AMD64)]</li>
<li>Jupyter version (if applicable):<br>
ipython 5.1.0 py36_1<br>
and<br>
ipython 7.3.0 py37h39e3cac_0 conda-forge</li>
</ul> | 1 |
<p dir="auto">Introduced with <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/symfony/symfony/commit/c2f6078d014e24171fd168c19f58da8917e328ce/hovercard" href="https://github.com/symfony/symfony/commit/c2f6078d014e24171fd168c19f58da8917e328ce"><tt>c2f6078</tt></a>. Is this on purpose? 3.0.3 lacked the <code class="notranslate">-DEV</code> part. I assumed that the 3.x.x release branch is stable.</p> | <p dir="auto">After upgrading Symfony to version 3.0.4 I see "3.0.4-DEV" instead of "3.0.4" as version in console and debug toolbar. Would you be so kind to fix this issue?</p>
<p dir="auto">Thank you.</p> | 1 |
<p dir="auto">I had to set frustumCulled = false on objects far from origin or else they would not render</p> | <p dir="auto">ArrayCamera only extends and only supports Perspective Cameras.</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>Symfony version</td>
<td>3.4.1</td>
</tr>
<tr>
<td>PHPUnit</td>
<td>5.7.26</td>
</tr>
</tbody>
</table>
<p dir="auto">I have a problem after the upgrade to symfony 3.4. I have a login in my unit test. I've implemented the login like the documentation describes here:</p>
<p dir="auto"><a href="https://symfony.com/doc/current/testing/http_authentication.html" rel="nofollow">https://symfony.com/doc/current/testing/http_authentication.html</a></p>
<p dir="auto">I use that code for years now and before 3.4 is was working well.</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$session = $client->getContainer()->get('session');
$token = new UsernamePasswordToken($testUser, $testUser->getPassword(), $firewall, $roles);
$session->set('_security_'.$firewall, serialize($token));
$session->save();
$cookie = new Cookie($session->getName(), $session->getId());
$client->getCookieJar()->set($cookie);"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>session</span> = <span class="pl-s1"><span class="pl-c1">$</span>client</span>-><span class="pl-en">getContainer</span>()-><span class="pl-en">get</span>(<span class="pl-s">'session'</span>);
<span class="pl-s1"><span class="pl-c1">$</span>token</span> = <span class="pl-k">new</span> <span class="pl-v">UsernamePasswordToken</span>(<span class="pl-s1"><span class="pl-c1">$</span>testUser</span>, <span class="pl-s1"><span class="pl-c1">$</span>testUser</span>-><span class="pl-en">getPassword</span>(), <span class="pl-s1"><span class="pl-c1">$</span>firewall</span>, <span class="pl-s1"><span class="pl-c1">$</span>roles</span>);
<span class="pl-s1"><span class="pl-c1">$</span>session</span>-><span class="pl-en">set</span>(<span class="pl-s">'_security_'</span>.<span class="pl-s1"><span class="pl-c1">$</span>firewall</span>, serialize(<span class="pl-s1"><span class="pl-c1">$</span>token</span>));
<span class="pl-s1"><span class="pl-c1">$</span>session</span>-><span class="pl-en">save</span>();
<span class="pl-s1"><span class="pl-c1">$</span>cookie</span> = <span class="pl-k">new</span> <span class="pl-v">Cookie</span>(<span class="pl-s1"><span class="pl-c1">$</span>session</span>-><span class="pl-en">getName</span>(), <span class="pl-s1"><span class="pl-c1">$</span>session</span>-><span class="pl-en">getId</span>());
<span class="pl-s1"><span class="pl-c1">$</span>client</span>-><span class="pl-en">getCookieJar</span>()-><span class="pl-en">set</span>(<span class="pl-s1"><span class="pl-c1">$</span>cookie</span>);</pre></div>
<p dir="auto">if i run the phpunit command over the bridge. I get the following error:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#bin/simple-phpunit
1) Tests\APIBundle\Controller\AutoresponderApiControllerTest::testAutoresponderInsAPI
RuntimeException: Failed to start the session because headers have already been sent by "/xxxx/.phpunit/phpunit-5.7/src/Util/Printer.php" at line 110.
/xxx/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:141
/xxx/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:302
/xxx/vendor/symfony/http-foundation/Session/Session.php:260
/xxx/vendor/symfony/http-foundation/Session/Session.php:80
/xxx/tests/MainBundle/ExtendedWebTestCase.php:151
/xxx/tests/MainBundle/ExtendedWebTestCase.php:62"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span>bin/simple-phpunit</span>
1) Tests<span class="pl-cce">\A</span>PIBundle<span class="pl-cce">\C</span>ontroller<span class="pl-cce">\A</span>utoresponderApiControllerTest::testAutoresponderInsAPI
RuntimeException: Failed to start the session because headers have already been sent by <span class="pl-s"><span class="pl-pds">"</span>/xxxx/.phpunit/phpunit-5.7/src/Util/Printer.php<span class="pl-pds">"</span></span> at line 110.
/xxx/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:141
/xxx/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:302
/xxx/vendor/symfony/http-foundation/Session/Session.php:260
/xxx/vendor/symfony/http-foundation/Session/Session.php:80
/xxx/tests/MainBundle/ExtendedWebTestCase.php:151
/xxx/tests/MainBundle/ExtendedWebTestCase.php:62</pre></div>
<p dir="auto">without the lines with the login it's working.</p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>yes</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.4.x</td>
</tr>
</tbody>
</table>
<p dir="auto">I have a project that depends on symfony/http-foundation. With 3.4.x-dev I'm getting some RuntimeErrors recently:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RuntimeException: Failed to set the session handler because headers have already been sent
by ".../vendor/phpunit/phpunit/src/Util/Printer.php" at line 110.
.../vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:397
.../vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:112
.../classes/Http/SessionProvider.php:128
.../vendor/autarky/container/classes/Factory/Factory.php:89
.../vendor/autarky/container/classes/Container.php:256
.../vendor/autarky/container/classes/Container.php:226
.../classes/Application.php:511
.../tests/unit/Session/SessionProviderTest.php:20"><pre class="notranslate"><code class="notranslate">RuntimeException: Failed to set the session handler because headers have already been sent
by ".../vendor/phpunit/phpunit/src/Util/Printer.php" at line 110.
.../vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:397
.../vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:112
.../classes/Http/SessionProvider.php:128
.../vendor/autarky/container/classes/Factory/Factory.php:89
.../vendor/autarky/container/classes/Container.php:256
.../vendor/autarky/container/classes/Container.php:226
.../classes/Application.php:511
.../tests/unit/Session/SessionProviderTest.php:20
</code></pre></div>
<p dir="auto">I tracked down the line to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="246510573" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/23711" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/23711/hovercard" href="https://github.com/symfony/symfony/pull/23711">#23711</a> which was merged 2 days ago. If I remove the if headers_sent thing from setSaveHandler, my test runs fine again.</p>
<p dir="auto">PHPUnit 5.7.22, symfony/http-foundation is at <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/symfony/symfony/commit/0fe9b3dc9902a89e646ca5bf053690018830999b/hovercard" href="https://github.com/symfony/symfony/commit/0fe9b3dc9902a89e646ca5bf053690018830999b"><tt>0fe9b3d</tt></a></p> | 1 |
<p dir="auto">What version of Go are you using (go version)?<br>
I have tried go1.5rc1 and building from source:<br>
go version devel +6f0c7df Tue Aug 18 17:00:59 2015 +0000 linux/amd64</p>
<p dir="auto">What operating system and processor architecture are you using?<br>
Linux 3.4, amd64</p>
<p dir="auto">What did you do?<br>
Build a distribution of our library as a tarball of the desired contents of GOPATH/src and GOPATH/pkg. Our distribution script implements the "mtime hack" discussed <a href="http://stackoverflow.com/a/28407323" rel="nofollow">here</a>, packaging dummy source files that only contain the package declaration line and .a files that have an mtime later than the corresponding source files.</p>
<p dir="auto">Then to test our distribution we try to build an executable that imports the libraries in our distribution.</p>
<p dir="auto">What did you expect to see?<br>
A built executable.</p>
<p dir="auto">What did you see instead?<br>
The go tool complains about missing structs and funcs in our dummy go files.</p>
<p dir="auto">This issue is also referenced in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51279689" data-permission-text="Title is private" data-url="https://github.com/golang/go/issues/2775" data-hovercard-type="issue" data-hovercard-url="/golang/go/issues/2775/hovercard" href="https://github.com/golang/go/issues/2775">#2775</a></p>
<p dir="auto">I also tried to use the shared library feature of go1.5 to distribute our library, but that appears to also require the source code.</p> | <p dir="auto">by <strong>czapkofan</strong>:</p>
<pre class="notranslate">What steps will reproduce the problem?
1. Try to compile the following code ("test01-forrange.go"):
package main
var tab = []int{55, 44, 33}
func main() {
var i int
for i, v := range tab {
if v == 44 {
break
}
}
print(i)
}
What is the expected output?
(compilation succeeds)
What do you see instead?
test01-forrange.go:7: i declared and not used
Which compiler are you using (5g, 6g, 8g, gccgo)?
8g
Which operating system are you using?
Linux
Which revision are you using? (hg identify)
409c37909d73 tip
Please provide any additional information below.
Current behaviour in the code example is different to one employed in regular :=
variables assignment statement - the latter allows mixing pre-declared variables with
newly created ones. I believe that the difference is against the "principle of
least surprise".</pre> | 0 |
<p dir="auto">When going from Babel 4 to 5 I am getting this error and not sure where it is coming from. Any ideas?</p>
<p dir="auto">My .babelrc is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"stage": 0,
"auxiliaryComment": "istanbul ignore next"
}"><pre class="notranslate"><code class="notranslate">{
"stage": 0,
"auxiliaryComment": "istanbul ignore next"
}
</code></pre></div>
<p dir="auto">The error is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/lib/babel/helpers/parse.js:70
throw err;
^
AssertionError: /Users/wavded/Projects/widnr/modules/models/User.js: undefined does not match type Pattern
at Type.Tp.assert (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:53:16)
at addPattern (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:220:24)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:167:9)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at NodePath.<anonymous> (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:150:13)
at NodePath.each (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/path.js:96:22)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:149:14)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at /Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:176:13
at /Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:627:18
at Array.forEach (native)
at Object.exports.eachField (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:626:27)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:173:15)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at NodePath.<anonymous> (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:150:13)
at NodePath.each (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/path.js:96:22)"><pre class="notranslate"><code class="notranslate">/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/lib/babel/helpers/parse.js:70
throw err;
^
AssertionError: /Users/wavded/Projects/widnr/modules/models/User.js: undefined does not match type Pattern
at Type.Tp.assert (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:53:16)
at addPattern (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:220:24)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:167:9)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at NodePath.<anonymous> (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:150:13)
at NodePath.each (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/path.js:96:22)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:149:14)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at /Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:176:13
at /Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:627:18
at Array.forEach (native)
at Object.exports.eachField (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/types.js:626:27)
at recursiveScanScope (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:173:15)
at recursiveScanChild (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:214:9)
at NodePath.<anonymous> (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/scope.js:150:13)
at NodePath.each (/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/node_modules/ast-types/lib/path.js:96:22)
</code></pre></div> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import foo from 'bar';
(function* () {});"><pre class="notranslate"><code class="notranslate">import foo from 'bar';
(function* () {});
</code></pre></div>
<p dir="auto">Compiling this raises <code class="notranslate">AssertionError: test.js: undefined does not match type Pattern</code></p> | 1 |
<p dir="auto">Although getting ansible through the "quick and dirty" manner is very useful for hacking scenarios, including it as a part of other projects requires being able to set it up from <em>easy_install</em> or <em>pip</em>.</p>
<p dir="auto">It would be great if this tool was published in pypi for each new release</p> | <p dir="auto">Hello,</p>
<p dir="auto">Do you have any plan to put Ansible on <a href="http://pypi.python.org/pypi" rel="nofollow">Pypi</a> ?</p>
<p dir="auto">Thanks,</p> | 1 |
<ul dir="auto">
<li>matplotlib 1.5.1, python 3.4.4, win8.1, seaborn 0.7.0</li>
<li>anaconda installation</li>
<li>EPS produced while using the <code class="notranslate">seaborn</code> package are empty in my win 8.1 environment. I went through <code class="notranslate">seaborn</code>'s rcmod.py and figured that setting <code class="notranslate">"font.sans-serif": ["Arial", "Liberation Sans", "Bitstream Vera Sans", "sans-serif"]</code> causes the problem, which itself calls <code class="notranslate">matplotlib.rcParams.update()</code>. PNG, JPG etc. work without problem. It also runs without problems on my UX system.</li>
<li>Cannot say it has worked before, as I only recently started to use seaborn</li>
</ul> | <p dir="auto">Using Arial as <code class="notranslate">font.sans-serif</code> in a figure will produce an EPS file that can't be opened or converted to PDF. In my case, using any other font, e.g. Bitstream Vera Sans or Liberation Sans produces a valid EPS.</p> | 1 |
<p dir="auto">A failed assertion in unit_test.ts gives me incorrect line numbers, plus the following scary error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:126369:77)
at Array.map (<anonymous>)
at prepareStackTrace$1 (gen/bundle/main.js:126369:28)
at Function.prepareStackTraceWrapper (gen/bundle/main.js:126358:18)
at Object.runTests [as cb] (C:/Users/BertBelder/d/deno/js/testing/testing.ts:60:39)
=====Original error=======================
Error
at Object.assert (eval at _gatherDependencies (gen/bundle/main.js:126631:16), <anonymous>:32:19)
at makeTempDir (C:/Users/BertBelder/d/deno/js/unit_tests.ts:72:28)
at Object.runTests [as cb] (C:/Users/BertBelder/d/deno/js/testing/testing.ts:55:23)
out\debug\deno.exe js/unit_tests.ts permW0N0
out\debug\deno.exe js/unit_tests.ts permW1N0 --allow-write"><pre class="notranslate"><code class="notranslate">=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:126369:77)
at Array.map (<anonymous>)
at prepareStackTrace$1 (gen/bundle/main.js:126369:28)
at Function.prepareStackTraceWrapper (gen/bundle/main.js:126358:18)
at Object.runTests [as cb] (C:/Users/BertBelder/d/deno/js/testing/testing.ts:60:39)
=====Original error=======================
Error
at Object.assert (eval at _gatherDependencies (gen/bundle/main.js:126631:16), <anonymous>:32:19)
at makeTempDir (C:/Users/BertBelder/d/deno/js/unit_tests.ts:72:28)
at Object.runTests [as cb] (C:/Users/BertBelder/d/deno/js/testing/testing.ts:55:23)
out\debug\deno.exe js/unit_tests.ts permW0N0
out\debug\deno.exe js/unit_tests.ts permW1N0 --allow-write
</code></pre></div> | <p dir="auto">When running</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="eval("unknownVariable")"><pre class="notranslate"><span class="pl-en">eval</span><span class="pl-kos">(</span><span class="pl-s">"unknownVariable"</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">Deno gives the following cryptic error message.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:127367:77)
at Array.map (<anonymous>)
at prepareStackTrace$1 (gen/bundle/main.js:127367:28)
at Function.prepareStackTraceWrapper (gen/bundle/main.js:127355:18)
at onGlobalError (gen/bundle/main.js:127912:25)
=====Original error=======================
ERROR RS -"><pre class="notranslate"><code class="notranslate">=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:127367:77)
at Array.map (<anonymous>)
at prepareStackTrace$1 (gen/bundle/main.js:127367:28)
at Function.prepareStackTraceWrapper (gen/bundle/main.js:127355:18)
at onGlobalError (gen/bundle/main.js:127912:25)
=====Original error=======================
ERROR RS -
</code></pre></div> | 1 |
<ul dir="auto">
<li>[x ] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">There should be no error</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">The following error happens:</p>
<blockquote>
<p dir="auto">Menu.js:535 Uncaught TypeError: Cannot read property 'props' of undefined<br>
at Object.handleClickAway [as onClickAway] (Menu.js:535)<br>
at HTMLDocument.ClickAwayListener._this.handleClickAway</p>
</blockquote>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Provide SelectField an empty array [] as child instead of array of MenuItem's.</li>
<li>Open this SelectField's dropdown. Empty dropdown is shown as there are no items to select.</li>
<li>Click away to close the dropdown. Error will appear in the console.</li>
</ol>
<p dir="auto">(the same happens if I provide undefined instead of empty array)</p>
<h2 dir="auto">Context</h2>
<p dir="auto">Perhaps it is intended I provide at least one MenuItem in the child array but empty array should be valid also as I don't want items in the dropdown in my context.</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>0.19.4</td>
</tr>
</tbody>
</table> | <p dir="auto">Property 'ref' does not exist on type 'IntrinsicAttributes & IconButtonProps & { children?: ReactNode; }'</p>
<p dir="auto">This is the case for IconButton, but might be the case for others as well (didn't test any others).</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 ref property should be available for any react component.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">It is not, making TS complain with a 'Property 'ref' does not exist on type 'IntrinsicAttributes & IconButtonProps & { children?: ReactNode; }' when trying to add it.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">Create a tsx file that uses the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" <IconButton
ref={node => { console.log(node); }}
>
</IconButton>"><pre class="notranslate"><code class="notranslate"> <IconButton
ref={node => { console.log(node); }}
>
</IconButton>
</code></pre></div>
<h2 dir="auto">Context</h2>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>latest beta</td>
</tr>
<tr>
<td>React</td>
<td>16</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 62</td>
</tr>
<tr>
<td>ts</td>
<td>2.6.1</td>
</tr>
</tbody>
</table> | 0 |
<h3 dir="auto">Description</h3>
<p dir="auto">Possibly similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1031744079" data-permission-text="Title is private" data-url="https://github.com/scrapy/scrapy/issues/5286" data-hovercard-type="issue" data-hovercard-url="/scrapy/scrapy/issues/5286/hovercard" href="https://github.com/scrapy/scrapy/issues/5286">#5286</a>?</p>
<p dir="auto">Following Curl commands:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ curl --proxy 'https://user:[email protected]:port' https://ipinfo.io/ip # https over https proxy
# yields proxy_ip
$ curl --proxy 'https://user:[email protected]:port' http://ipinfo.io/ip # http over https proxy
# yields proxy_ip
$ curl http://ipinfo.io/ip # http
# yields home_ip
$ curl https://ipinfo.io/ip # https
# yields home_ip
"><pre class="notranslate">$ curl --proxy <span class="pl-s"><span class="pl-pds">'</span>https://user:[email protected]:port<span class="pl-pds">'</span></span> https://ipinfo.io/ip <span class="pl-c"><span class="pl-c">#</span> https over https proxy</span>
<span class="pl-c"><span class="pl-c">#</span> yields proxy_ip</span>
$ curl --proxy <span class="pl-s"><span class="pl-pds">'</span>https://user:[email protected]:port<span class="pl-pds">'</span></span> http://ipinfo.io/ip <span class="pl-c"><span class="pl-c">#</span> http over https proxy</span>
<span class="pl-c"><span class="pl-c">#</span> yields proxy_ip</span>
$ curl http://ipinfo.io/ip <span class="pl-c"><span class="pl-c">#</span> http</span>
<span class="pl-c"><span class="pl-c">#</span> yields home_ip</span>
$ curl https://ipinfo.io/ip <span class="pl-c"><span class="pl-c">#</span> https</span>
<span class="pl-c"><span class="pl-c">#</span> yields home_ip</span>
</pre></div>
<p dir="auto">Using Scrapy Shell</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fetch(scrapy.Request('https://ipinfo.io/ip', meta={'download_timeout': 5, 'proxy': 'https://user:[email protected]:port'})) # https over https proxy
# Times out or hangs indefinitely if no timeout specified
fetch(scrapy.Request('http://ipinfo.io/ip', meta={'download_timeout': 5, 'proxy': 'https://user:[email protected]:port'})) # http over https proxy
# yields proxy_ip
fetch(scrapy.Request('http://ipinfo.io/ip', meta={'download_timeout': 5})) # http
# yields home_ip
fetch(scrapy.Request('https://ipinfo.io/ip', meta={'download_timeout': 5})) # https
# yields home_ip"><pre class="notranslate"><span class="pl-en">fetch</span>(<span class="pl-s1">scrapy</span>.<span class="pl-v">Request</span>(<span class="pl-s">'https://ipinfo.io/ip'</span>, <span class="pl-s1">meta</span><span class="pl-c1">=</span>{<span class="pl-s">'download_timeout'</span>: <span class="pl-c1">5</span>, <span class="pl-s">'proxy'</span>: <span class="pl-s">'https://user:[email protected]:port'</span>})) <span class="pl-c"># https over https proxy</span>
<span class="pl-c"># Times out or hangs indefinitely if no timeout specified</span>
<span class="pl-en">fetch</span>(<span class="pl-s1">scrapy</span>.<span class="pl-v">Request</span>(<span class="pl-s">'http://ipinfo.io/ip'</span>, <span class="pl-s1">meta</span><span class="pl-c1">=</span>{<span class="pl-s">'download_timeout'</span>: <span class="pl-c1">5</span>, <span class="pl-s">'proxy'</span>: <span class="pl-s">'https://user:[email protected]:port'</span>})) <span class="pl-c"># http over https proxy</span>
<span class="pl-c"># yields proxy_ip</span>
<span class="pl-en">fetch</span>(<span class="pl-s1">scrapy</span>.<span class="pl-v">Request</span>(<span class="pl-s">'http://ipinfo.io/ip'</span>, <span class="pl-s1">meta</span><span class="pl-c1">=</span>{<span class="pl-s">'download_timeout'</span>: <span class="pl-c1">5</span>})) <span class="pl-c"># http</span>
<span class="pl-c"># yields home_ip</span>
<span class="pl-en">fetch</span>(<span class="pl-s1">scrapy</span>.<span class="pl-v">Request</span>(<span class="pl-s">'https://ipinfo.io/ip'</span>, <span class="pl-s1">meta</span><span class="pl-c1">=</span>{<span class="pl-s">'download_timeout'</span>: <span class="pl-c1">5</span>})) <span class="pl-c"># https</span>
<span class="pl-c"># yields home_ip</span></pre></div>
<h3 dir="auto">Steps to Reproduce</h3>
<ol dir="auto">
<li>fetch https request using https proxy</li>
</ol>
<p dir="auto"><strong>Expected behavior:</strong> response received</p>
<p dir="auto"><strong>Actual behavior:</strong> scrapy hangs indefinitely or times out if timeout specified</p>
<p dir="auto"><strong>Reproduces how often:</strong> 100%</p>
<h3 dir="auto">Versions</h3>
<p dir="auto">Please paste here the output of executing <code class="notranslate">scrapy version --verbose</code> in the command line.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Scrapy : 2.4.1
lxml : 4.7.1.0
libxml2 : 2.9.12
cssselect : 1.1.0
parsel : 1.6.0
w3lib : 1.22.0
Twisted : 21.7.0
Python : 3.10.2 | packaged by conda-forge | (main, Feb 1 2022, 19:29:00) [GCC 9.4.0]
pyOpenSSL : 22.0.0 (OpenSSL 1.1.1f 31 Mar 2020)
cryptography : 36.0.0
Platform : Linux-5.4.0-100-generic-x86_64-with-glibc2.31"><pre class="notranslate"><code class="notranslate">Scrapy : 2.4.1
lxml : 4.7.1.0
libxml2 : 2.9.12
cssselect : 1.1.0
parsel : 1.6.0
w3lib : 1.22.0
Twisted : 21.7.0
Python : 3.10.2 | packaged by conda-forge | (main, Feb 1 2022, 19:29:00) [GCC 9.4.0]
pyOpenSSL : 22.0.0 (OpenSSL 1.1.1f 31 Mar 2020)
cryptography : 36.0.0
Platform : Linux-5.4.0-100-generic-x86_64-with-glibc2.31
</code></pre></div>
<h3 dir="auto">Additional context</h3>
<p dir="auto">Conda environment.yml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="channels:
- conda-forge
- defaults
dependencies:
- python >=3.9.0
- scrapy
- brotlipy
- zstandard
- rich
- genanki
- imagemagick
- apsw
- pip
- pip:
- m3u8
- switch
"><pre lang="conda" class="notranslate"><code class="notranslate">channels:
- conda-forge
- defaults
dependencies:
- python >=3.9.0
- scrapy
- brotlipy
- zstandard
- rich
- genanki
- imagemagick
- apsw
- pip
- pip:
- m3u8
- switch
</code></pre></div>
<details>
<summary>`conda env export` output</summary>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="channels:
- conda-forge
- defaults
dependencies:
- _libgcc_mutex=0.1=conda_forge
- _openmp_mutex=4.5=1_gnu
- appdirs=1.4.4=pyh9f0ad1d_0
- apsw=3.37.0.r1=py310h4988143_0
- atk-1.0=2.36.0=h3371d22_4
- attrs=21.4.0=pyhd8ed1ab_0
- automat=20.2.0=py_0
- bcrypt=3.2.0=py310h6acc77f_2
- brotlipy=0.7.0=py310h6acc77f_1003
- bzip2=1.0.8=h7f98852_4
- ca-certificates=2021.10.8=ha878542_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.16.0=ha00ac49_1009
- cffi=1.15.0=py310h0fdd8cc_0
- chevron=0.14.0=pyhd3deb0d_1
- colorama=0.4.4=pyh9f0ad1d_0
- commonmark=0.9.1=py_0
- constantly=15.1.0=py_0
- cryptography=36.0.0=py310h9ce1e76_0
- cssselect=1.1.0=py_0
- dataclasses=0.8=pyhc8e2a94_3
- expat=2.4.4=h9c3ff4c_0
- fftw=3.3.10=nompi_h77c792f_102
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=hab24e00_0
- fontconfig=2.13.94=ha180cfb_0
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- freetype=2.10.4=h0708190_1
- fribidi=1.0.10=h36c2ea0_0
- frozendict=2.3.0=py310h6acc77f_1
- future=0.18.2=py310hff52083_4
- gdk-pixbuf=2.42.6=h04a7f16_0
- genanki=0.13.0=pyhd8ed1ab_0
- gettext=0.19.8.1=h73d1719_1008
- ghostscript=9.54.0=h9c3ff4c_1
- giflib=5.2.1=h36c2ea0_2
- graphite2=1.3.13=h58526e2_1001
- graphviz=2.50.0=h85b4f2f_1
- gtk2=2.24.33=h539f30e_1
- gts=0.7.6=h64030ff_2
- harfbuzz=3.3.1=hb4a5f5f_0
- hyperlink=21.0.0=pyhd3deb0d_0
- icu=69.1=h9c3ff4c_0
- idna=3.3=pyhd8ed1ab_0
- imagemagick=7.1.0_23=pl5321hb118871_0
- incremental=21.3.0=pyhd8ed1ab_0
- itemadapter=0.4.0=pyhd8ed1ab_0
- jbig=2.1=h7f98852_2003
- jpeg=9e=h7f98852_0
- ld_impl_linux-64=2.36.1=hea4e1c9_2
- lerc=3.0=h9c3ff4c_0
- libdeflate=1.8=h7f98852_0
- libffi=3.4.2=h7f98852_5
- libgcc-ng=11.2.0=h1d223b6_12
- libgd=2.3.3=h3cfcdeb_1
- libgfortran-ng=11.2.0=h69a702a_12
- libgfortran5=11.2.0=h5c6108e_12
- libglib=2.70.2=h174f98d_2
- libgomp=11.2.0=h1d223b6_12
- libiconv=1.16=h516909a_0
- libnsl=2.0.0=h7f98852_0
- libpng=1.6.37=h21135ba_2
- librsvg=2.52.5=hc3c00ef_1
- libstdcxx-ng=11.2.0=he4da1e4_12
- libtiff=4.3.0=h6f004c6_2
- libtool=2.4.6=h9c3ff4c_1008
- libuuid=2.32.1=h7f98852_1000
- libwebp=1.2.2=h3452ae3_0
- libwebp-base=1.2.2=h7f98852_1
- libxcb=1.13=h7f98852_1004
- libxml2=2.9.12=h885dcf4_1
- libxslt=1.1.33=h0ef7038_3
- libzlib=1.2.11=h36c2ea0_1013
- lxml=4.7.1=py310ha5446b1_0
- lz4-c=1.9.3=h9c3ff4c_1
- ncurses=6.3=h9c3ff4c_0
- openjpeg=2.4.0=hb52868f_1
- openssl=3.0.0=h7f98852_2
- pango=1.48.10=h54213e6_2
- parsel=1.6.0=py_0
- pcre=8.45=h9c3ff4c_0
- perl=5.32.1=1_h7f98852_perl5
- pip=22.0.3=pyhd8ed1ab_0
- pixman=0.40.0=h36c2ea0_0
- pkg-config=0.29.2=h36c2ea0_1008
- pthread-stubs=0.4=h36c2ea0_1001
- pyasn1=0.4.8=py_0
- pyasn1-modules=0.2.7=py_0
- pycparser=2.21=pyhd8ed1ab_0
- pydispatcher=2.0.5=py_1
- pygments=2.11.2=pyhd8ed1ab_0
- pyopenssl=22.0.0=pyhd8ed1ab_0
- python=3.10.2=hc74c709_3_cpython
- python_abi=3.10=2_cp310
- pyyaml=6.0=py310h6acc77f_3
- queuelib=1.6.2=pyhd8ed1ab_0
- readline=8.1=h46c0cb4_0
- rich=11.1.0=pyhd8ed1ab_0
- scrapy=2.4.1=py310h06a4308_0
- service_identity=18.1.0=py_0
- setuptools=60.7.1=py310hff52083_0
- six=1.16.0=pyh6c4a22f_0
- sqlite=3.37.0=h9cd32fc_0
- tk=8.6.11=h27826a3_1
- twisted=21.7.0=py310h6acc77f_1
- typing-extensions=4.0.1=hd8ed1ab_0
- typing_extensions=4.0.1=pyha770c72_0
- tzdata=2021e=he74cb21_0
- w3lib=1.22.0=pyh9f0ad1d_0
- wheel=0.37.1=pyhd8ed1ab_0
- xorg-kbproto=1.0.7=h7f98852_1002
- xorg-libice=1.0.10=h7f98852_0
- xorg-libsm=1.2.3=hd9c2040_1000
- xorg-libx11=1.7.2=h7f98852_0
- xorg-libxau=1.0.9=h7f98852_0
- xorg-libxdmcp=1.1.3=h7f98852_0
- xorg-libxext=1.3.4=h7f98852_1
- xorg-libxrender=0.9.10=h7f98852_1003
- xorg-libxt=1.2.1=h7f98852_2
- xorg-renderproto=0.11.1=h7f98852_1002
- xorg-xextproto=7.3.0=h7f98852_1002
- xorg-xproto=7.0.31=h7f98852_1007
- xz=5.2.5=h516909a_1
- yaml=0.2.5=h7f98852_2
- zlib=1.2.11=h36c2ea0_1013
- zope.interface=5.4.0=py310h6acc77f_1
- zstandard=0.17.0=py310h6acc77f_0
- zstd=1.5.2=ha95c52a_0
- pip:
- iso8601==1.0.2
- m3u8==1.0.0
- switch==1.1.0"><pre class="notranslate"><code class="notranslate">channels:
- conda-forge
- defaults
dependencies:
- _libgcc_mutex=0.1=conda_forge
- _openmp_mutex=4.5=1_gnu
- appdirs=1.4.4=pyh9f0ad1d_0
- apsw=3.37.0.r1=py310h4988143_0
- atk-1.0=2.36.0=h3371d22_4
- attrs=21.4.0=pyhd8ed1ab_0
- automat=20.2.0=py_0
- bcrypt=3.2.0=py310h6acc77f_2
- brotlipy=0.7.0=py310h6acc77f_1003
- bzip2=1.0.8=h7f98852_4
- ca-certificates=2021.10.8=ha878542_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.16.0=ha00ac49_1009
- cffi=1.15.0=py310h0fdd8cc_0
- chevron=0.14.0=pyhd3deb0d_1
- colorama=0.4.4=pyh9f0ad1d_0
- commonmark=0.9.1=py_0
- constantly=15.1.0=py_0
- cryptography=36.0.0=py310h9ce1e76_0
- cssselect=1.1.0=py_0
- dataclasses=0.8=pyhc8e2a94_3
- expat=2.4.4=h9c3ff4c_0
- fftw=3.3.10=nompi_h77c792f_102
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=hab24e00_0
- fontconfig=2.13.94=ha180cfb_0
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- freetype=2.10.4=h0708190_1
- fribidi=1.0.10=h36c2ea0_0
- frozendict=2.3.0=py310h6acc77f_1
- future=0.18.2=py310hff52083_4
- gdk-pixbuf=2.42.6=h04a7f16_0
- genanki=0.13.0=pyhd8ed1ab_0
- gettext=0.19.8.1=h73d1719_1008
- ghostscript=9.54.0=h9c3ff4c_1
- giflib=5.2.1=h36c2ea0_2
- graphite2=1.3.13=h58526e2_1001
- graphviz=2.50.0=h85b4f2f_1
- gtk2=2.24.33=h539f30e_1
- gts=0.7.6=h64030ff_2
- harfbuzz=3.3.1=hb4a5f5f_0
- hyperlink=21.0.0=pyhd3deb0d_0
- icu=69.1=h9c3ff4c_0
- idna=3.3=pyhd8ed1ab_0
- imagemagick=7.1.0_23=pl5321hb118871_0
- incremental=21.3.0=pyhd8ed1ab_0
- itemadapter=0.4.0=pyhd8ed1ab_0
- jbig=2.1=h7f98852_2003
- jpeg=9e=h7f98852_0
- ld_impl_linux-64=2.36.1=hea4e1c9_2
- lerc=3.0=h9c3ff4c_0
- libdeflate=1.8=h7f98852_0
- libffi=3.4.2=h7f98852_5
- libgcc-ng=11.2.0=h1d223b6_12
- libgd=2.3.3=h3cfcdeb_1
- libgfortran-ng=11.2.0=h69a702a_12
- libgfortran5=11.2.0=h5c6108e_12
- libglib=2.70.2=h174f98d_2
- libgomp=11.2.0=h1d223b6_12
- libiconv=1.16=h516909a_0
- libnsl=2.0.0=h7f98852_0
- libpng=1.6.37=h21135ba_2
- librsvg=2.52.5=hc3c00ef_1
- libstdcxx-ng=11.2.0=he4da1e4_12
- libtiff=4.3.0=h6f004c6_2
- libtool=2.4.6=h9c3ff4c_1008
- libuuid=2.32.1=h7f98852_1000
- libwebp=1.2.2=h3452ae3_0
- libwebp-base=1.2.2=h7f98852_1
- libxcb=1.13=h7f98852_1004
- libxml2=2.9.12=h885dcf4_1
- libxslt=1.1.33=h0ef7038_3
- libzlib=1.2.11=h36c2ea0_1013
- lxml=4.7.1=py310ha5446b1_0
- lz4-c=1.9.3=h9c3ff4c_1
- ncurses=6.3=h9c3ff4c_0
- openjpeg=2.4.0=hb52868f_1
- openssl=3.0.0=h7f98852_2
- pango=1.48.10=h54213e6_2
- parsel=1.6.0=py_0
- pcre=8.45=h9c3ff4c_0
- perl=5.32.1=1_h7f98852_perl5
- pip=22.0.3=pyhd8ed1ab_0
- pixman=0.40.0=h36c2ea0_0
- pkg-config=0.29.2=h36c2ea0_1008
- pthread-stubs=0.4=h36c2ea0_1001
- pyasn1=0.4.8=py_0
- pyasn1-modules=0.2.7=py_0
- pycparser=2.21=pyhd8ed1ab_0
- pydispatcher=2.0.5=py_1
- pygments=2.11.2=pyhd8ed1ab_0
- pyopenssl=22.0.0=pyhd8ed1ab_0
- python=3.10.2=hc74c709_3_cpython
- python_abi=3.10=2_cp310
- pyyaml=6.0=py310h6acc77f_3
- queuelib=1.6.2=pyhd8ed1ab_0
- readline=8.1=h46c0cb4_0
- rich=11.1.0=pyhd8ed1ab_0
- scrapy=2.4.1=py310h06a4308_0
- service_identity=18.1.0=py_0
- setuptools=60.7.1=py310hff52083_0
- six=1.16.0=pyh6c4a22f_0
- sqlite=3.37.0=h9cd32fc_0
- tk=8.6.11=h27826a3_1
- twisted=21.7.0=py310h6acc77f_1
- typing-extensions=4.0.1=hd8ed1ab_0
- typing_extensions=4.0.1=pyha770c72_0
- tzdata=2021e=he74cb21_0
- w3lib=1.22.0=pyh9f0ad1d_0
- wheel=0.37.1=pyhd8ed1ab_0
- xorg-kbproto=1.0.7=h7f98852_1002
- xorg-libice=1.0.10=h7f98852_0
- xorg-libsm=1.2.3=hd9c2040_1000
- xorg-libx11=1.7.2=h7f98852_0
- xorg-libxau=1.0.9=h7f98852_0
- xorg-libxdmcp=1.1.3=h7f98852_0
- xorg-libxext=1.3.4=h7f98852_1
- xorg-libxrender=0.9.10=h7f98852_1003
- xorg-libxt=1.2.1=h7f98852_2
- xorg-renderproto=0.11.1=h7f98852_1002
- xorg-xextproto=7.3.0=h7f98852_1002
- xorg-xproto=7.0.31=h7f98852_1007
- xz=5.2.5=h516909a_1
- yaml=0.2.5=h7f98852_2
- zlib=1.2.11=h36c2ea0_1013
- zope.interface=5.4.0=py310h6acc77f_1
- zstandard=0.17.0=py310h6acc77f_0
- zstd=1.5.2=ha95c52a_0
- pip:
- iso8601==1.0.2
- m3u8==1.0.0
- switch==1.1.0
</code></pre></div>
</details> | <p dir="auto"><code class="notranslate">DOWNLOADER_CLIENT_TLS_METHOD</code> only supports values defined in <a href="https://github.com/scrapy/scrapy/blob/5a386393595ae6505840f00d6ea4a51beda31e19/scrapy/core/downloader/tls.py#L22"><code class="notranslate">scrapy.core.downloader.tls.openssl_methods</code></a> and they don't include TLS 1.3. I've found that there is no similar <code class="notranslate">TLSv1_3_METHOD</code> in pyOpenSSL, then I've found <a href="https://stackoverflow.com/questions/62243123/python-pyopenssl-server-doesnt-negotiate-tls-1-3" rel="nofollow">https://stackoverflow.com/questions/62243123/python-pyopenssl-server-doesnt-negotiate-tls-1-3</a> but I didn't check the implications of this.</p> | 1 |
<p dir="auto">Hello,<br>
I would suggest to add a "regex literal" type to make ensuring that a string data matches a pattern at assigment.</p>
<p dir="auto">As the literal string feature has been added in the latest release, i found very convenient to type my variables with, e.g. for typing my react props (size : "small"| "big" )... On the same idea, it could be convenient to be able to type a variable with a pattern.</p>
<p dir="auto">Example :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" var myString : /\d{3}.*\d{2}/;
myString="555hhhhh44" ; //correct
myString="55dsds5dss4"; //error"><pre class="notranslate"><code class="notranslate"> var myString : /\d{3}.*\d{2}/;
myString="555hhhhh44" ; //correct
myString="55dsds5dss4"; //error
</code></pre></div>
<p dir="auto">In react it could be vey useful for defining a react prop like phone numbers, emails, dates, ...</p>
<p dir="auto">regards<br>
Xavier</p> | <p dir="auto">There are cases, where a property can not just be any string (or a set of strings), but needs to match a pattern.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let fontStyle: 'normal' | 'italic' = 'normal'; // already available in master
let fontColor: /^#([0-9a-f]{3}|[0-9a-f]{6})$/i = '#000'; // my suggestion"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">fontStyle</span>: <span class="pl-s">'normal'</span> <span class="pl-c1">|</span> <span class="pl-s">'italic'</span> <span class="pl-c1">=</span> <span class="pl-s">'normal'</span><span class="pl-kos">;</span> <span class="pl-c">// already available in master</span>
<span class="pl-k">let</span> <span class="pl-s1">fontColor</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">^</span>#<span class="pl-kos">(</span><span class="pl-kos">[</span>0-9a-f<span class="pl-kos">]</span><span class="pl-kos">{</span>3<span class="pl-kos">}</span><span class="pl-c1">|</span><span class="pl-kos">[</span>0-9a-f<span class="pl-kos">]</span><span class="pl-kos">{</span>6<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span>i</span> <span class="pl-c1">=</span> <span class="pl-s">'#000'</span><span class="pl-kos">;</span> <span class="pl-c">// my suggestion</span></pre></div>
<p dir="auto">It's common practice in JavaScript to store color values in css notation, such as in the css style reflection of DOM nodes or various 3rd party libraries.</p>
<p dir="auto">What do you think?</p> | 1 |
<h2 dir="auto">Bug Report</h2>
<h3 dir="auto">Which version of ShardingSphere did you use?</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" apache-shardingsphere-4.1.0-sharding-proxy-bin.tar.gz"><pre class="notranslate"><code class="notranslate"> apache-shardingsphere-4.1.0-sharding-proxy-bin.tar.gz
</code></pre></div>
<h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ShardingSphere-Proxy"><pre class="notranslate"><code class="notranslate"> ShardingSphere-Proxy
</code></pre></div>
<h3 dir="auto">Expected behavior</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" can get data correctly"><pre class="notranslate"><code class="notranslate"> can get data correctly
</code></pre></div>
<h3 dir="auto">Actual behavior</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if there are null values in a record, wrong data will be return ."><pre class="notranslate"><code class="notranslate"> if there are null values in a record, wrong data will be return .
</code></pre></div>
<h3 dir="auto">Reason analyze (If you can)</h3>
<h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="542272429" data-permission-text="Title is private" data-url="https://github.com/apache/shardingsphere/issues/3801" data-hovercard-type="issue" data-hovercard-url="/apache/shardingsphere/issues/3801/hovercard" href="https://github.com/apache/shardingsphere/issues/3801">#3801</a> can be refered to create the test data.<br>
test.zip is the source file of a test project.<br>
yaml.zip includes the configuration files in conf folder.</p>
<h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
<p dir="auto"><a href="https://github.com/apache/shardingsphere/files/4722468/test.zip">test.zip</a><br>
<a href="https://github.com/apache/shardingsphere/files/4722482/yaml.zip">yaml.zip</a></p> | <p dir="auto">my version is upgraded to 4.0.0-RC3.<br>
and i still have the problem while shardingjdbc load all the default database table metadata info causing application start slowly. i browsed all the questions commited on the git issues. i set "check.table.metadata.enabled" with false, i event set "executor.size" with 100。 but all of them do not work. and no body can give an correct answer。 is this question an Unsolvable problem? can someone tell me that whether the problem can be solved or not ?</p> | 0 |
<p dir="auto">Is there currently a way to use reflection with an <code class="notranslate">AsyncEngine</code>?</p>
<p dir="auto">e.g. something like</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import asyncio
from sqlalchemy import text, select, MetaData
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession, create_async_engine
from sqlalchemy.ext.automap import automap_base
async def main():
eng = create_async_engine(
"postgresql+asyncpg://..."
)
meta = MetaData()
base = automap_base(metadata=meta)
await base.prepare(
eng,
reflect=True,
schema="public",
)
# sqlalchemy.exc.NoInspectionAvailable:
# No inspection system is available for
# object of type <class 'sqlalchemy.ext.asyncio.engine.AsyncEngine'>
(
asyncio
.get_event_loop()
.run_until_complete(main())
)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">asyncio</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span> <span class="pl-k">import</span> <span class="pl-s1">text</span>, <span class="pl-s1">select</span>, <span class="pl-v">MetaData</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">ext</span>.<span class="pl-s1">asyncio</span> <span class="pl-k">import</span> <span class="pl-v">AsyncEngine</span>, <span class="pl-v">AsyncSession</span>, <span class="pl-s1">create_async_engine</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">ext</span>.<span class="pl-s1">automap</span> <span class="pl-k">import</span> <span class="pl-s1">automap_base</span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">main</span>():
<span class="pl-s1">eng</span> <span class="pl-c1">=</span> <span class="pl-en">create_async_engine</span>(
<span class="pl-s">"postgresql+asyncpg://..."</span>
)
<span class="pl-s1">meta</span> <span class="pl-c1">=</span> <span class="pl-v">MetaData</span>()
<span class="pl-s1">base</span> <span class="pl-c1">=</span> <span class="pl-en">automap_base</span>(<span class="pl-s1">metadata</span><span class="pl-c1">=</span><span class="pl-s1">meta</span>)
<span class="pl-k">await</span> <span class="pl-s1">base</span>.<span class="pl-en">prepare</span>(
<span class="pl-s1">eng</span>,
<span class="pl-s1">reflect</span><span class="pl-c1">=</span><span class="pl-c1">True</span>,
<span class="pl-s1">schema</span><span class="pl-c1">=</span><span class="pl-s">"public"</span>,
)
<span class="pl-c"># sqlalchemy.exc.NoInspectionAvailable: </span>
<span class="pl-c"># No inspection system is available for</span>
<span class="pl-c"># object of type <class 'sqlalchemy.ext.asyncio.engine.AsyncEngine'></span>
(
<span class="pl-s1">asyncio</span>
.<span class="pl-en">get_event_loop</span>()
.<span class="pl-en">run_until_complete</span>(<span class="pl-en">main</span>())
)</pre></div> | <p dir="auto">The title pretty much describes this feature request. I would greatly appreciate if SQLAlchemy would support the Runtime Inspection API with a <code class="notranslate">AsyncEngine</code> much in the same way that it does with normal <code class="notranslate">Engine</code> objects. I know that the SQLAlchemy devs are very busy atm, so please don't feel any pressure to implement this soon. Just wanted to let you guys know about this.</p>
<p dir="auto"><strong>Have a nice day!</strong></p> | 1 |
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mpdehaan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mpdehaan">@mpdehaan</a> this is for you buddy</p>
<ul dir="auto">
<li>Bump specfile</li>
<li>Review man pages (any new paramaters added?)</li>
<li>For good measure:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ touch VERSION
$ make docs"><pre class="notranslate"><code class="notranslate">$ touch VERSION
$ make docs
</code></pre></div>
<ul dir="auto">
<li>Tag 0.7</li>
<li>ping me to start working on the corresponding Fedora update</li>
</ul> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible/modules/cloud/openstack/os_server.py<br>
ansible/modules/cloud/openstack/os_volume.py<br>
ansible/modules/cloud/openstack/os_server_volume.py</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2.3.1.0"><pre class="notranslate"><code class="notranslate">2.3.1.0
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">default ansible.cfg</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<ol dir="auto">
<li>ansible installed Ubuntu 14.04</li>
<li>Test public cloud based on Openstack</li>
</ol>
<h5 dir="auto">SUMMARY</h5>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">ansible-playbook test.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="test.yml
---
- name: Create an instance
hosts: localhost
gather_facts: false
vars:
ipv4_address: 10.32.15.150
tasks:
- name: Create System Volume
os_volume:
state: present
availability_zone: "AZ1"
size: "8"
wait: yes
image: "Standard_CentOS_7.3_latest"
volume_type: "SATA"
display_name: "ops-dummy-0001-volume-system"
- name: Create Data Volume
os_volume:
state: present
availability_zone: "AZ1"
size: "50"
wait: yes
volume_type: "SSD"
display_name: "ops-dummy-0001-volume-data"
- name: Create static IP NIC
os_port:
state: present
name: "ops-dummy-0001-port1"
admin_state_up: true
network: "76cc4d0c-18b8-433d-9dc8-a26b5c3f6508"
security_groups: "ops-sg-tier1"
fixed_ips:
- ip_address: "10.32.15.150"
when: ipv4_address is defined
- name: Create DHCP NIC
os_port:
state: present
name: "ops-dummy-0001-port1"
admin_state_up: true
network: "76cc4d0c-18b8-433d-9dc8-a26b5c3f6508"
security_groups: "ops-sg-tier1"
when: ipv4_address is not defined
- name: Create an instance
os_server:
state: present
name: "ops-dummy-0001"
key_name: "ops"
boot_volume: "ops-dummy-0001-volume-system"
timeout: 200
flavor: "c1.medium"
availability_zone: "AZ1"
auto_ip: false
reuse_ips: false # for now
nics:
- port-name: "ops-dummy-0001-port1"
register: osvm
- name: Attach volumes
os_server_volume:
state: present
server: "ops-dummy-0001"
volume: "ops-dummy-0001-volume-data"
device: "/dev/xvdb"
- name: Return configured local ipv4
set_fact:
instance_ipv4: "{{ osvm.openstack.private_v4}}"
- name: Wait for 90 seconds so the instance is ready for the next task
pause:
seconds: 90"><pre class="notranslate"><span class="pl-s">test.yml</span>
---
- <span class="pl-ent">name</span>: <span class="pl-s">Create an instance</span>
<span class="pl-ent">hosts</span>: <span class="pl-s">localhost</span>
<span class="pl-ent">gather_facts</span>: <span class="pl-c1">false</span>
<span class="pl-ent">vars</span>:
<span class="pl-ent">ipv4_address</span>: <span class="pl-s">10.32.15.150</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">Create System Volume</span>
<span class="pl-ent">os_volume</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">availability_zone</span>: <span class="pl-s"><span class="pl-pds">"</span>AZ1<span class="pl-pds">"</span></span>
<span class="pl-ent">size</span>: <span class="pl-s"><span class="pl-pds">"</span>8<span class="pl-pds">"</span></span>
<span class="pl-ent">wait</span>: <span class="pl-s">yes </span>
<span class="pl-ent">image</span>: <span class="pl-s"><span class="pl-pds">"</span>Standard_CentOS_7.3_latest<span class="pl-pds">"</span></span>
<span class="pl-ent">volume_type</span>: <span class="pl-s"><span class="pl-pds">"</span>SATA<span class="pl-pds">"</span></span>
<span class="pl-ent">display_name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-volume-system<span class="pl-pds">"</span></span>
- <span class="pl-ent">name</span>: <span class="pl-s">Create Data Volume</span>
<span class="pl-ent">os_volume</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">availability_zone</span>: <span class="pl-s"><span class="pl-pds">"</span>AZ1<span class="pl-pds">"</span></span>
<span class="pl-ent">size</span>: <span class="pl-s"><span class="pl-pds">"</span>50<span class="pl-pds">"</span></span>
<span class="pl-ent">wait</span>: <span class="pl-s">yes </span>
<span class="pl-ent">volume_type</span>: <span class="pl-s"><span class="pl-pds">"</span>SSD<span class="pl-pds">"</span></span>
<span class="pl-ent">display_name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-volume-data<span class="pl-pds">"</span></span>
- <span class="pl-ent">name</span>: <span class="pl-s">Create static IP NIC</span>
<span class="pl-ent">os_port</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-port1<span class="pl-pds">"</span></span>
<span class="pl-ent">admin_state_up</span>: <span class="pl-c1">true</span>
<span class="pl-ent">network</span>: <span class="pl-s"><span class="pl-pds">"</span>76cc4d0c-18b8-433d-9dc8-a26b5c3f6508<span class="pl-pds">"</span></span>
<span class="pl-ent">security_groups</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-sg-tier1<span class="pl-pds">"</span></span>
<span class="pl-ent">fixed_ips</span>:
- <span class="pl-ent">ip_address</span>: <span class="pl-s"><span class="pl-pds">"</span>10.32.15.150<span class="pl-pds">"</span></span>
<span class="pl-ent">when</span>: <span class="pl-s">ipv4_address is defined</span>
- <span class="pl-ent">name</span>: <span class="pl-s">Create DHCP NIC</span>
<span class="pl-ent">os_port</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-port1<span class="pl-pds">"</span></span>
<span class="pl-ent">admin_state_up</span>: <span class="pl-c1">true</span>
<span class="pl-ent">network</span>: <span class="pl-s"><span class="pl-pds">"</span>76cc4d0c-18b8-433d-9dc8-a26b5c3f6508<span class="pl-pds">"</span></span>
<span class="pl-ent">security_groups</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-sg-tier1<span class="pl-pds">"</span></span>
<span class="pl-ent">when</span>: <span class="pl-s">ipv4_address is not defined</span>
- <span class="pl-ent">name</span>: <span class="pl-s">Create an instance</span>
<span class="pl-ent">os_server</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001<span class="pl-pds">"</span></span>
<span class="pl-ent">key_name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops<span class="pl-pds">"</span></span>
<span class="pl-ent">boot_volume</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-volume-system<span class="pl-pds">"</span></span>
<span class="pl-ent">timeout</span>: <span class="pl-c1">200</span>
<span class="pl-ent">flavor</span>: <span class="pl-s"><span class="pl-pds">"</span>c1.medium<span class="pl-pds">"</span></span>
<span class="pl-ent">availability_zone</span>: <span class="pl-s"><span class="pl-pds">"</span>AZ1<span class="pl-pds">"</span></span>
<span class="pl-ent">auto_ip</span>: <span class="pl-c1">false</span>
<span class="pl-ent">reuse_ips</span>: <span class="pl-s">false </span><span class="pl-c"><span class="pl-c">#</span> for now</span>
<span class="pl-ent">nics</span>:
- <span class="pl-ent">port-name</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-port1<span class="pl-pds">"</span></span>
<span class="pl-ent">register</span>: <span class="pl-s">osvm </span>
- <span class="pl-ent">name</span>: <span class="pl-s">Attach volumes</span>
<span class="pl-ent">os_server_volume</span>:
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">server</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001<span class="pl-pds">"</span></span>
<span class="pl-ent">volume</span>: <span class="pl-s"><span class="pl-pds">"</span>ops-dummy-0001-volume-data<span class="pl-pds">"</span></span>
<span class="pl-ent">device</span>: <span class="pl-s"><span class="pl-pds">"</span>/dev/xvdb<span class="pl-pds">"</span></span>
- <span class="pl-ent">name</span>: <span class="pl-s">Return configured local ipv4</span>
<span class="pl-ent">set_fact</span>:
<span class="pl-ent">instance_ipv4</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ osvm.openstack.private_v4}}<span class="pl-pds">"</span></span>
- <span class="pl-ent">name</span>: <span class="pl-s">Wait for 90 seconds so the instance is ready for the next task</span>
<span class="pl-ent">pause</span>:
<span class="pl-ent">seconds</span>: <span class="pl-c1">90</span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">1.The whole job completes within a very short time.<br>
2. No performance difference between openstack plugin and aws plugin</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">===============================================================================<br>
Create an instance ---------------------------------------------------- 218.52s<br>
Attach volumes -------------------------------------------------------- 173.52s<br>
Create System Volume -------------------------------------------------- 116.32s<br>
Wait for 90 seconds so the instance is ready for the next task --------- 90.01s<br>
Create static IP NIC --------------------------------------------------- 16.40s<br>
Create Data Volume ----------------------------------------------------- 13.59s<br>
Return configured local ipv4 -------------------------------------------- 0.02s<br>
Create DHCP NIC --------------------------------------------------------- 0.01s<br>
real 10m29.258s<br>
user 0m44.327s<br>
sys 0m6.167s</p>
<p dir="auto"><strong>Analyse:</strong></p>
<p dir="auto">From the API log, we find some unreasonable parts , which means unreasonable api calls.</p>
<p dir="auto">1.When we create system volume, the playbook specify volume name and image id, the plugin should use the list API with filter for volume and get image by id, rather than List all Volumes with detail and List all images with detail.</p>
<p dir="auto">2.The API like this list all images and all volumes cost much time that the API with some filter parameters.</p>
<ol start="3" dir="auto">
<li>
<p dir="auto">Since the playbook specify flavor name already, the OpenStack plugin shouldn’t get all flavors with detail and loop to query every flavor detail</p>
</li>
<li>
<p dir="auto">When we create data volume, the playbook specify volume name, the plugin should use the list API with filter for volume rather than List all Volumes with detail, the same to the port, floatingip, network, subnet, security-group, image.</p>
</li>
</ol>
<p dir="auto">5.After the VM create successful, the plugin should call get detail by instance id rather that loop to get all of the resources, such as port, floatingip, network, security-group, image, subnet etc.</p>
<p dir="auto">6.The playbook specify image id, the plugin should use get image by id API, rather than List all images with detail.</p>
<p dir="auto">7.For the step attaching volume for instance, there is no reason to list all of the resource about the tenant, from the process, we find that this step call lots of list all resource for port, servers, floatingips, networks, subnets, security-groups, volumes etc.</p>
<p dir="auto">In all,</p>
<p dir="auto">Every get_${resource} function in OpenStack plugin has the below logic:<br>
a. List all of the resources for the specify tenant.<br>
b. Loop all resource to find the one which the user specify.<br>
The resource maybe image, flavor, volume, server, port, subnet, floating-ip, security-group, network etc.</p>
<p dir="auto">These functions are called very frequently during the task, for example, after create instance request sent, the plugin will call get_server(server_id) function to check if the VM status is ACTIVE.</p>
<p dir="auto">Every query function to check the resource status in Amazon plugin is not similar with the implementation in OpenStack plugin, and we can find the amazon plugin have better performance and specialized optimization in the Plugin.</p>
<p dir="auto"><strong>Above all,</strong><br>
<strong>a. The result of callback plugin isn’t very proper, it includes lots of unreasonable API calls lead to more time cost of the testing, and we can confirm that all the API calls during the testing is normal. For example, the time of creating instances cost 23s, but the ansible count 218s totally.<br>
For create instance task, it include the following API calls:</strong><br>
List all flavors<br>
Get every flavors detail<br>
List all flavors with detail<br>
List all volumes with detail<br>
Create Instances<br>
List all servers<br>
List all networks<br>
List all subnets<br>
List all servers to check if servers ACTIVE<br>
List all ports<br>
List all floatingips<br>
List all ports<br>
List all floatingips<br>
List all flavors with detail<br>
Get Server security-groups<br>
List all images with detail<br>
List all volumes with detail<br>
<strong>b. The logic of OpenStack plugin of Ansible has poor performance, if the plugin would get a resource by id, it will get all the resources of the tenant, the loop to find the specify resource.</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="We use a temporary method to improve a little the performance, but it is really not the best way. We hope ansible can fix this issue. Thanks~
Our steps are as follows:
1. Modify these three modules
ansible/modules/cloud/openstack/os_server.py
ansible/modules/cloud/openstack/os_volume.py
ansible/modules/cloud/openstack/os_server_volume.py
a. Edit the os_server.py and append the below code before the line with content “cloud = shade.openstack_cloud(**cloud_params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_server()
b.Edit the os_volume.py and append the below code before the line with content “cloud = shade.openstack_cloud(**module.params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_volume()
c.Edit the os_server_volume.py and append the below code before the line with content “cloud = shade.openstack_cloud(**module.params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_server_volume()
2. Touch a new file called **os_monkey_patch.py**
python2.7/dist-packages/shade/os_monkey_patch.py
The file is as follows:
import shade
import uuid
import keystoneauth1.exceptions
import warnings
from urllib import urlencode
from shade import _utils
from shade import meta
from shade.openstackcloud import OpenStackCloud
# Patch the os_server module in ansible.modules.cloud.openstack
def patch_list_flavors(self, get_extra=None, filters=None):
if get_extra is None:
get_extra = self._extra_config['get_flavor_extra_specs']
flavors = self._normalize_flavors(
self._compute_client.get(
'/flavors/detail', params=dict(is_public='None'),
error_message="Error fetching flavor list"))
filters_values = filters.values() if filters else []
for flavor in flavors:
if flavor.id not in filters_values and flavor.name not in filters_values:
continue
if not flavor.extra_specs and get_extra:
endpoint = "/flavors/{id}/os-extra_specs".format(
id=flavor.id)
try:
flavor.extra_specs = self._compute_client.get(
endpoint,
error_message="Error fetching flavor extra specs")
except shade.exc.OpenStackCloudHTTPError as e:
flavor.extra_specs = {}
self.log.debug(
'Fetching extra specs for flavor failed:'
' %(msg)s', {'msg': str(e)})
return flavors
def patch_search_flavors(self, name_or_id=None, filters=None, get_extra=True):
flavors = self.list_flavors(get_extra=get_extra, filters={'name_or_id': name_or_id})
return _utils._filter_list(flavors, name_or_id, filters)
def _no_pending_images(images):
"""If there are any images not in a steady state, don't cache"""
for image in images:
if image.status not in ('active', 'deleted', 'killed'):
return False
return True
@_utils.cache_on_arguments(should_cache_fn=_no_pending_images)
def patch_list_images(self, filter_deleted=True, filters=None):
images = []
image_list = []
try:
if self.cloud_config.get_api_version('image') == '2':
endpoint = '/images'
else:
endpoint = '/images/detail'
params = {}
try:
uuid.UUID(filters['name_or_id'])
params['id'] = filters['name_or_id']
except ValueError:
params['name'] = filters['name_or_id']
if params:
response = self._image_client.get(endpoint + "?" + urlencode(params))
if len(response['images']) == 0 and 'id' in params:
params['name'] = params.pop('id')
response = self._image_client.get(endpoint + "?" + urlencode(params))
else:
response = self._image_client.get(endpoint)
except keystoneauth1.exceptions.catalog.EndpointNotFound:
response = self._compute_client.get('/images/detail')
while 'next' in response:
image_list.extend(meta.obj_list_to_munch(response['images']))
endpoint = response['next']
response = self._raw_image_client.get(endpoint)
if 'images' in response:
image_list.extend(meta.obj_list_to_munch(response['images']))
else:
image_list.extend(response)
for image in image_list:
if not filter_deleted:
images.append(image)
elif image.status.lower() != 'deleted':
images.append(image)
return self._normalize_images(images)
def patch_search_images(self, name_or_id=None, filters=None):
images = self.list_images(filters={'name_or_id': name_or_id})
return _utils._filter_list(images, name_or_id, filters)
def _no_pending_volumes(volumes):
for volume in volumes:
if volume['status'] not in ('available', 'error', 'in-use'):
return False
return True
def patch_search_volumes(self, name_or_id=None, filters=None):
volumes = self.list_volumes(filters={'name_or_id': name_or_id})
return _utils._filter_list(
volumes, name_or_id, filters)
@_utils.cache_on_arguments(should_cache_fn=_no_pending_volumes)
def patch_list_volumes(self, cache=True, filters=None):
def _list(data):
volumes.extend(data.get('volumes', []))
endpoint = None
for l in data.get('volumes_links', []):
if 'rel' in l and 'next' == l['rel']:
endpoint = l['href']
break
if endpoint:
try:
_list(self._volume_client.get(endpoint))
except shade.exc.OpenStackCloudURINotFound:
self.log.debug(
"While listing volumes, could not find next link"
" {link}.".format(link=data))
raise
if not cache:
warnings.warn('cache argument to list_volumes is deprecated. Use '
'invalidate instead.')
attempts = 5
for _ in range(attempts):
volumes = []
params = {}
if not filters:
data = self._volume_client.get('/volumes/detail')
else:
try:
uuid.UUID(filters['name_or_id'])
params['id'] = filters['name_or_id']
except ValueError:
params['name'] = filters['name_or_id']
if params:
data = self._volume_client.get('/volumes/detail', params=params)
if len(data.get('volumes', [])) == 0 and 'id' in params:
params['name'] = params.pop('id')
data = self._volume_client.get('/volumes/detail', params=params)
else:
data = self._volume_client.get('/volumes/detail')
if 'volumes_links' not in data:
volumes.extend(data.get('volumes', []))
break
try:
_list(data)
break
except shade.exc.OpenStackCloudURINotFound:
pass
else:
self.log.debug(
"List volumes failed to retrieve all volumes after"
" {attempts} attempts. Returning what we found.".format(
attempts=attempts))
return self._normalize_volumes(
meta.get_and_munchify(key=None, data=volumes))
def monkey_patch_os_server():
setattr(OpenStackCloud, 'list_flavors', patch_list_flavors)
setattr(OpenStackCloud, 'search_flavors', patch_search_flavors)
setattr(OpenStackCloud, 'list_images', patch_list_images)
setattr(OpenStackCloud, 'search_images', patch_search_images)
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
def monkey_patch_os_volume():
setattr(OpenStackCloud, 'list_images', patch_list_images)
setattr(OpenStackCloud, 'search_images', patch_search_images)
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
def monkey_patch_os_server_volume():
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
"><pre class="notranslate"><code class="notranslate">We use a temporary method to improve a little the performance, but it is really not the best way. We hope ansible can fix this issue. Thanks~
Our steps are as follows:
1. Modify these three modules
ansible/modules/cloud/openstack/os_server.py
ansible/modules/cloud/openstack/os_volume.py
ansible/modules/cloud/openstack/os_server_volume.py
a. Edit the os_server.py and append the below code before the line with content “cloud = shade.openstack_cloud(**cloud_params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_server()
b.Edit the os_volume.py and append the below code before the line with content “cloud = shade.openstack_cloud(**module.params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_volume()
c.Edit the os_server_volume.py and append the below code before the line with content “cloud = shade.openstack_cloud(**module.params)”
from shade import os_monkey_patch
os_monkey_patch.monkey_patch_os_server_volume()
2. Touch a new file called **os_monkey_patch.py**
python2.7/dist-packages/shade/os_monkey_patch.py
The file is as follows:
import shade
import uuid
import keystoneauth1.exceptions
import warnings
from urllib import urlencode
from shade import _utils
from shade import meta
from shade.openstackcloud import OpenStackCloud
# Patch the os_server module in ansible.modules.cloud.openstack
def patch_list_flavors(self, get_extra=None, filters=None):
if get_extra is None:
get_extra = self._extra_config['get_flavor_extra_specs']
flavors = self._normalize_flavors(
self._compute_client.get(
'/flavors/detail', params=dict(is_public='None'),
error_message="Error fetching flavor list"))
filters_values = filters.values() if filters else []
for flavor in flavors:
if flavor.id not in filters_values and flavor.name not in filters_values:
continue
if not flavor.extra_specs and get_extra:
endpoint = "/flavors/{id}/os-extra_specs".format(
id=flavor.id)
try:
flavor.extra_specs = self._compute_client.get(
endpoint,
error_message="Error fetching flavor extra specs")
except shade.exc.OpenStackCloudHTTPError as e:
flavor.extra_specs = {}
self.log.debug(
'Fetching extra specs for flavor failed:'
' %(msg)s', {'msg': str(e)})
return flavors
def patch_search_flavors(self, name_or_id=None, filters=None, get_extra=True):
flavors = self.list_flavors(get_extra=get_extra, filters={'name_or_id': name_or_id})
return _utils._filter_list(flavors, name_or_id, filters)
def _no_pending_images(images):
"""If there are any images not in a steady state, don't cache"""
for image in images:
if image.status not in ('active', 'deleted', 'killed'):
return False
return True
@_utils.cache_on_arguments(should_cache_fn=_no_pending_images)
def patch_list_images(self, filter_deleted=True, filters=None):
images = []
image_list = []
try:
if self.cloud_config.get_api_version('image') == '2':
endpoint = '/images'
else:
endpoint = '/images/detail'
params = {}
try:
uuid.UUID(filters['name_or_id'])
params['id'] = filters['name_or_id']
except ValueError:
params['name'] = filters['name_or_id']
if params:
response = self._image_client.get(endpoint + "?" + urlencode(params))
if len(response['images']) == 0 and 'id' in params:
params['name'] = params.pop('id')
response = self._image_client.get(endpoint + "?" + urlencode(params))
else:
response = self._image_client.get(endpoint)
except keystoneauth1.exceptions.catalog.EndpointNotFound:
response = self._compute_client.get('/images/detail')
while 'next' in response:
image_list.extend(meta.obj_list_to_munch(response['images']))
endpoint = response['next']
response = self._raw_image_client.get(endpoint)
if 'images' in response:
image_list.extend(meta.obj_list_to_munch(response['images']))
else:
image_list.extend(response)
for image in image_list:
if not filter_deleted:
images.append(image)
elif image.status.lower() != 'deleted':
images.append(image)
return self._normalize_images(images)
def patch_search_images(self, name_or_id=None, filters=None):
images = self.list_images(filters={'name_or_id': name_or_id})
return _utils._filter_list(images, name_or_id, filters)
def _no_pending_volumes(volumes):
for volume in volumes:
if volume['status'] not in ('available', 'error', 'in-use'):
return False
return True
def patch_search_volumes(self, name_or_id=None, filters=None):
volumes = self.list_volumes(filters={'name_or_id': name_or_id})
return _utils._filter_list(
volumes, name_or_id, filters)
@_utils.cache_on_arguments(should_cache_fn=_no_pending_volumes)
def patch_list_volumes(self, cache=True, filters=None):
def _list(data):
volumes.extend(data.get('volumes', []))
endpoint = None
for l in data.get('volumes_links', []):
if 'rel' in l and 'next' == l['rel']:
endpoint = l['href']
break
if endpoint:
try:
_list(self._volume_client.get(endpoint))
except shade.exc.OpenStackCloudURINotFound:
self.log.debug(
"While listing volumes, could not find next link"
" {link}.".format(link=data))
raise
if not cache:
warnings.warn('cache argument to list_volumes is deprecated. Use '
'invalidate instead.')
attempts = 5
for _ in range(attempts):
volumes = []
params = {}
if not filters:
data = self._volume_client.get('/volumes/detail')
else:
try:
uuid.UUID(filters['name_or_id'])
params['id'] = filters['name_or_id']
except ValueError:
params['name'] = filters['name_or_id']
if params:
data = self._volume_client.get('/volumes/detail', params=params)
if len(data.get('volumes', [])) == 0 and 'id' in params:
params['name'] = params.pop('id')
data = self._volume_client.get('/volumes/detail', params=params)
else:
data = self._volume_client.get('/volumes/detail')
if 'volumes_links' not in data:
volumes.extend(data.get('volumes', []))
break
try:
_list(data)
break
except shade.exc.OpenStackCloudURINotFound:
pass
else:
self.log.debug(
"List volumes failed to retrieve all volumes after"
" {attempts} attempts. Returning what we found.".format(
attempts=attempts))
return self._normalize_volumes(
meta.get_and_munchify(key=None, data=volumes))
def monkey_patch_os_server():
setattr(OpenStackCloud, 'list_flavors', patch_list_flavors)
setattr(OpenStackCloud, 'search_flavors', patch_search_flavors)
setattr(OpenStackCloud, 'list_images', patch_list_images)
setattr(OpenStackCloud, 'search_images', patch_search_images)
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
def monkey_patch_os_volume():
setattr(OpenStackCloud, 'list_images', patch_list_images)
setattr(OpenStackCloud, 'search_images', patch_search_images)
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
def monkey_patch_os_server_volume():
setattr(OpenStackCloud, 'list_volumes', patch_list_volumes)
setattr(OpenStackCloud, 'search_volumes', patch_search_volumes)
</code></pre></div> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">I simply copy pasted the code from the following example in a blank app.<br>
<a href="https://github.com/flutter/website/tree/master/_includes/code/internationalization/minimal">https://github.com/flutter/website/tree/master/_includes/code/internationalization/minimal</a></p>
<p dir="auto">It should display a Hello World message in the Local of the IOS phone.</p>
<p dir="auto">I changed the language to spanish and i still get the message in English.</p>
<p dir="auto">I have added the fr local and changed to FR samething.</p>
<p dir="auto">I tried to to get the local using:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Locale myLocale = Localizations.localeOf(context);"><pre class="notranslate"><span class="pl-c1">Locale</span> myLocale <span class="pl-k">=</span> <span class="pl-c1">Localizations</span>.<span class="pl-en">localeOf</span>(context);</pre></div>
<p dir="auto">I'm always getting en.</p>
<h2 dir="auto">Logs</h2>
<p dir="auto"><a href="https://github.com/flutter/flutter/files/2041541/log.log">log.log</a></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Analyzing sweetnest_app...
info • Unused import: 'package:redux/redux.dart' • lib/main.dart:6:8
info • Unused import: 'package:flutter_redux/flutter_redux.dart' • lib/main.dart:7:8
info • Don't import implementation files from another package • lib/main.dart:9:8
info • Unused import: 'package:sweetnest/src/app_state.dart' • lib/main.dart:9:8
info • Don't import implementation files from another package • lib/main.dart:10:8
info • Unused import: 'package:sweetnest/src/reducers.dart' • lib/main.dart:10:8
info • Unused import: 'package:sweetnest_app/sweetnest_colors.dart' • lib/main.dart:11:8
info • Unused import: 'package:sweetnest_app/sweetnest_localization.dart' • lib/main.dart:12:8
8 issues found. (ran in 1.6s)"><pre class="notranslate">Analyzing sweetnest_app...
info • Unused import: <span class="pl-s"><span class="pl-pds">'</span>package:redux/redux.dart<span class="pl-pds">'</span></span> • lib/main.dart:6:8
info • Unused import: <span class="pl-s"><span class="pl-pds">'</span>package:flutter_redux/flutter_redux.dart<span class="pl-pds">'</span></span> • lib/main.dart:7:8
info • Don<span class="pl-s"><span class="pl-pds">'</span>t import implementation files from another package • lib/main.dart:9:8</span>
<span class="pl-s"> info • Unused import: <span class="pl-pds">'</span></span>package:sweetnest/src/app_state.dart<span class="pl-s"><span class="pl-pds">'</span> • lib/main.dart:9:8</span>
<span class="pl-s"> info • Don<span class="pl-pds">'</span></span>t import implementation files from another package • lib/main.dart:10:8
info • Unused import: <span class="pl-s"><span class="pl-pds">'</span>package:sweetnest/src/reducers.dart<span class="pl-pds">'</span></span> • lib/main.dart:10:8
info • Unused import: <span class="pl-s"><span class="pl-pds">'</span>package:sweetnest_app/sweetnest_colors.dart<span class="pl-pds">'</span></span> • lib/main.dart:11:8
info • Unused import: <span class="pl-s"><span class="pl-pds">'</span>package:sweetnest_app/sweetnest_localization.dart<span class="pl-pds">'</span></span> • lib/main.dart:12:8
8 issues found. (ran <span class="pl-k">in</span> 1.6s)</pre></div>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-BE)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 9.3.1)
[✓] Android Studio (version 3.1)
[✓] IntelliJ IDEA Ultimate Edition (version 2018.1.4)
[✓] VS Code (version 1.23.1)
[✓] Connected devices (1 available)
• No issues found!"><pre class="notranslate">Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-BE)
[✓] Android toolchain - develop <span class="pl-k">for</span> Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop <span class="pl-k">for</span> iOS devices (Xcode 9.3.1)
[✓] Android Studio (version 3.1)
[✓] IntelliJ IDEA Ultimate Edition (version 2018.1.4)
[✓] VS Code (version 1.23.1)
[✓] Connected devices (1 available)
• No issues found<span class="pl-k">!</span></pre></div> | <h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">I have two languages set up on iOS and Android:</p>
<ul dir="auto">
<li>German</li>
<li>English</li>
</ul>
<p dir="auto">German is the preferred language of the system, meaning the OS and most apps appear in German.</p>
<p dir="auto">I created an app that has translations for both English and German:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" return new MaterialApp(
localizationsDelegates: <LocalizationsDelegate<dynamic>>[
new _MyLocalizationsDelegate(),
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
supportedLocales: [
const Locale('de', 'DE'), // German
const Locale('en', 'US'), // English
],
title: "MyApp",
home: new Home(),
);"><pre class="notranslate"> <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">MaterialApp</span>(
localizationsDelegates<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">LocalizationsDelegate</span><<span class="pl-c1">dynamic</span>><span class="pl-k">></span>[
<span class="pl-k">new</span> <span class="pl-c1">_MyLocalizationsDelegate</span>(),
<span class="pl-c1">GlobalMaterialLocalizations</span>.delegate,
<span class="pl-c1">GlobalWidgetsLocalizations</span>.delegate,
],
supportedLocales<span class="pl-k">:</span> [
<span class="pl-k">const</span> <span class="pl-c1">Locale</span>(<span class="pl-s">'de'</span>, <span class="pl-s">'DE'</span>), <span class="pl-c">// German</span>
<span class="pl-k">const</span> <span class="pl-c1">Locale</span>(<span class="pl-s">'en'</span>, <span class="pl-s">'US'</span>), <span class="pl-c">// English</span>
],
title<span class="pl-k">:</span> <span class="pl-s">"MyApp"</span>,
home<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Home</span>(),
);</pre></div>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class _MyLocalizationsDelegate extends LocalizationsDelegate<MyStrings> {
@override
Future<MyStrings> load(Locale locale) => MyStrings.load(locale);
@override
bool shouldReload(_MyLocalizationsDelegate old) => false;
@override
bool isSupported(Locale locale) =>
locale.languageCode == 'en' ||
locale.languageCode == 'de';
}"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-c1">_MyLocalizationsDelegate</span> <span class="pl-k">extends</span> <span class="pl-c1">LocalizationsDelegate</span><<span class="pl-c1">MyStrings</span>> {
<span class="pl-k">@override</span>
<span class="pl-c1">Future</span><<span class="pl-c1">MyStrings</span>> <span class="pl-en">load</span>(<span class="pl-c1">Locale</span> locale) <span class="pl-k">=></span> <span class="pl-c1">MyStrings</span>.<span class="pl-en">load</span>(locale);
<span class="pl-k">@override</span>
<span class="pl-c1">bool</span> <span class="pl-en">shouldReload</span>(<span class="pl-c1">_MyLocalizationsDelegate</span> old) <span class="pl-k">=></span> <span class="pl-c1">false</span>;
<span class="pl-k">@override</span>
<span class="pl-c1">bool</span> <span class="pl-en">isSupported</span>(<span class="pl-c1">Locale</span> locale) <span class="pl-k">=></span>
locale.languageCode <span class="pl-k">==</span> <span class="pl-s">'en'</span> <span class="pl-k">||</span>
locale.languageCode <span class="pl-k">==</span> <span class="pl-s">'de'</span>;
}</pre></div>
<p dir="auto">On Android, this app appears in German. On iOS, it appears in English.<br>
The only way to force the app to appear in German is to remove English as a secondary language of the system.</p>
<p dir="auto">Is this a bug? Am I missing something?</p>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Mac OS X 10.12.6 16G1036, locale en-US, channel alpha-chq)
• Flutter at /Users/philipp/code/flutter
• Framework revision 0bd83f8c34 (12 days ago), 2018-01-04 18:01:44 -0800
• Engine revision edaecdc8b8
• Tools Dart version 1.25.0-dev.11.0
• Engine Dart version 2.0.0-edge.d8ae797298c3a6cf8dc9f4558707bd2672224d3e
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/philipp/Library/Android/sdk
• Android NDK at /Users/philipp/Library/Android/sdk/ndk-bundle
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[-] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
✗ Verify that all connected devices have been paired with this computer in Xcode.
If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
To update, run:
brew uninstall --ignore-dependencies libimobiledevice
brew install --HEAD libimobiledevice
brew install ideviceinstaller
• ios-deploy 1.9.2
• CocoaPods version 1.4.0.beta.2
[✓] Android Studio
• Android Studio at /Applications/Android Studio 3.1 Preview.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1012-b01)
[✓] Android Studio (version 2.3)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] IntelliJ IDEA Ultimate Edition (version 2017.2.5)
• Flutter plugin version 18.4
• Dart plugin version 172.4343.25"><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Mac OS X 10.12.6 16G1036, locale en-US, channel alpha-chq)
• Flutter at /Users/philipp/code/flutter
• Framework revision 0bd83f8c34 (12 days ago), 2018-01-04 18:01:44 -0800
• Engine revision edaecdc8b8
• Tools Dart version 1.25.0-dev.11.0
• Engine Dart version 2.0.0-edge.d8ae797298c3a6cf8dc9f4558707bd2672224d3e
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/philipp/Library/Android/sdk
• Android NDK at /Users/philipp/Library/Android/sdk/ndk-bundle
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[-] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
✗ Verify that all connected devices have been paired with this computer in Xcode.
If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
To update, run:
brew uninstall --ignore-dependencies libimobiledevice
brew install --HEAD libimobiledevice
brew install ideviceinstaller
• ios-deploy 1.9.2
• CocoaPods version 1.4.0.beta.2
[✓] Android Studio
• Android Studio at /Applications/Android Studio 3.1 Preview.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1012-b01)
[✓] Android Studio (version 2.3)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] IntelliJ IDEA Ultimate Edition (version 2017.2.5)
• Flutter plugin version 18.4
• Dart plugin version 172.4343.25
</code></pre></div> | 1 |
<p dir="auto">Im working on simple image classifier in Java. I`m using OpenCv 3.4.3 and JDK 1.8_192 and i encountered problem with JNI.</p>
<p dir="auto">When i execute this code</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public class Main {
private static List<String> getOutputNames(Net net) {
List<String> names = new ArrayList<>();
List<Integer> outLayers = net.getUnconnectedOutLayers().toList();
List<String> layersNames = net.getLayerNames();
outLayers.forEach((item) -> names.add(layersNames.get(item - 1)));
return names;
}
public static void main(String[] args) {
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
String modelWeights = "yolov3.weights";
String modelConfiguration = "yolov3.cfg";
Net net = Dnn.readNetFromDarknet(modelConfiguration, modelWeights);
Imgcodecs imageCodecs = new Imgcodecs();
Mat image = imageCodecs.imread("test.jpg");
Mat blob = Dnn.blobFromImage(image, 1.0, new Size(416, 416), new Scalar(0), false, false);
net.setInput(blob);
List<Mat> result = new ArrayList<>();
List<String> outBlobNames = getOutputNames(net);
net.forward(result, outBlobNames);
}
}"><pre class="notranslate"><code class="notranslate">public class Main {
private static List<String> getOutputNames(Net net) {
List<String> names = new ArrayList<>();
List<Integer> outLayers = net.getUnconnectedOutLayers().toList();
List<String> layersNames = net.getLayerNames();
outLayers.forEach((item) -> names.add(layersNames.get(item - 1)));
return names;
}
public static void main(String[] args) {
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
String modelWeights = "yolov3.weights";
String modelConfiguration = "yolov3.cfg";
Net net = Dnn.readNetFromDarknet(modelConfiguration, modelWeights);
Imgcodecs imageCodecs = new Imgcodecs();
Mat image = imageCodecs.imread("test.jpg");
Mat blob = Dnn.blobFromImage(image, 1.0, new Size(416, 416), new Scalar(0), false, false);
net.setInput(blob);
List<Mat> result = new ArrayList<>();
List<String> outBlobNames = getOutputNames(net);
net.forward(result, outBlobNames);
}
}
</code></pre></div>
<p dir="auto">I get following error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007fe9cf215716, pid=12403, tid=0x00007fe9d075c700
#
# JRE version: Java(TM) SE Runtime Environment (8.0_192-b12) (build 1.8.0_192-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.192-b12 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# V [libjvm.so+0x6ce716] jni_CallObjectMethodV+0x76
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/mateusz/detector/hs_err_pid12403.log
Compiled method (c1) 296 18 1 java.util.ArrayList::size (5 bytes)
total in heap [0x00007fe9b910ec50,0x00007fe9b910eee0] = 656
relocation [0x00007fe9b910ed78,0x00007fe9b910eda0] = 40
main code [0x00007fe9b910eda0,0x00007fe9b910ee20] = 128
stub code [0x00007fe9b910ee20,0x00007fe9b910eeb0] = 144
scopes data [0x00007fe9b910eeb0,0x00007fe9b910eeb8] = 8
scopes pcs [0x00007fe9b910eeb8,0x00007fe9b910eed8] = 32
dependencies [0x00007fe9b910eed8,0x00007fe9b910eee0] = 8
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#"><pre class="notranslate"><code class="notranslate">#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007fe9cf215716, pid=12403, tid=0x00007fe9d075c700
#
# JRE version: Java(TM) SE Runtime Environment (8.0_192-b12) (build 1.8.0_192-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.192-b12 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# V [libjvm.so+0x6ce716] jni_CallObjectMethodV+0x76
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/mateusz/detector/hs_err_pid12403.log
Compiled method (c1) 296 18 1 java.util.ArrayList::size (5 bytes)
total in heap [0x00007fe9b910ec50,0x00007fe9b910eee0] = 656
relocation [0x00007fe9b910ed78,0x00007fe9b910eda0] = 40
main code [0x00007fe9b910eda0,0x00007fe9b910ee20] = 128
stub code [0x00007fe9b910ee20,0x00007fe9b910eeb0] = 144
scopes data [0x00007fe9b910eeb0,0x00007fe9b910eeb8] = 8
scopes pcs [0x00007fe9b910eeb8,0x00007fe9b910eed8] = 32
dependencies [0x00007fe9b910eed8,0x00007fe9b910eee0] = 8
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
</code></pre></div>
<p dir="auto">Im using <a href="https://pjreddie.com/media/files/yolov3.weights" rel="nofollow">yolov3.weights</a> and <a href="https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg">yolov3.cfg</a>.</p>
<p dir="auto">Error occurs only when last line of code is executed.</p>
<p dir="auto">EDIT:<br>
It is written under Ubuntu 18.04, problem also occurs on 16.04, but everything works fine on Windows 10.</p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji></li>
<li>Operating System / Platform => <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 => ❔</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<h5 dir="auto">Steps to reproduce</h5> | 0 |
<p dir="auto">hi,<br>
please add RTL support to next release of bootstrap,<br>
very thanx.</p> | <p dir="auto">Would be great to have support for right-to-left languages.</p> | 1 |
<p dir="auto">In the latest version of Flutter the behaviour of button presses is wrong. Sometimes taps are missed because there is a move threshold - pressing, moving then releasing your finger on a button does not result in a click.</p>
<p dir="auto">That must be deliberate, and I guess someone thought it was the correct behaviour but it's not. The threshold is only a couple of mm too, so it's quite common for taps to be missed.</p>
<p dir="auto">Native Android apps have a better behaviour - they only cancel the click if your finger is moved off the hit area for the button. If you keep your finger on the button it will send a click even no matter how far you move it. This is much nicer to use.</p>
<p dir="auto">I've made a video showing the difference (not sure why the mouse cursor is offset - ignore that).</p>
<p dir="auto"><a href="https://github.com/flutter/flutter/files/1017276/flutter_button_behaviour.zip">flutter_button_behaviour.zip</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (on Microsoft Windows [Version 10.0.15063], channel alpha)
• Framework revision dc4ca8db83 (10 days ago), 2017-05-11 15:33:29 -0700
• Engine revision f99d3ef108
• Tools Dart version 1.23.0-dev.11.11"><pre class="notranslate"><code class="notranslate">[√] Flutter (on Microsoft Windows [Version 10.0.15063], channel alpha)
• Framework revision dc4ca8db83 (10 days ago), 2017-05-11 15:33:29 -0700
• Engine revision f99d3ef108
• Tools Dart version 1.23.0-dev.11.11
</code></pre></div> | <p dir="auto">You should be able to slop around a big button without rejecting the tap recognizer.</p> | 1 |
<p dir="auto">Hi</p>
<p dir="auto">this is a request for improvement :</p>
<p dir="auto">sometimes within the grid, you want the order of your markup to not necessarily be the same as the order items are flowed into the grid.<br>
It would be a nice improvement to have source ordering classes : by using these source ordering classes, you can shift columns around on desktops and tablets. On phones the grid will still be linearized into the order of the markup.</p>
<p dir="auto">Thanks in advance</p> | <p dir="auto">It would be nice if we could use negative offsets to allow presentation order to be independent from source order. For example, to have the first sidebar to come after the content in the source, but be presented still to the left of the content.</p>
<p dir="auto">For example, we could use something like in mixins.less:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".inset(@columns: 1) {
margin-left: 0 - ((@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1)));
}"><pre class="notranslate"><code class="notranslate">.inset(@columns: 1) {
margin-left: 0 - ((@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1)));
}
</code></pre></div>
<p dir="auto">Then in scaffolding.less</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Inset column options
.inset1 { .inset(1); }
.inset2 { .inset(2); }
.inset3 { .inset(3); }
.inset4 { .inset(4); }
.inset5 { .inset(5); }
.inset6 { .inset(6); }
.inset7 { .inset(7); }
.inset8 { .inset(8); }
.inset9 { .inset(9); }
.inset10 { .inset(10); }
.inset11 { .inset(11); }
.inset12 { .inset(12); }"><pre class="notranslate"><code class="notranslate">// Inset column options
.inset1 { .inset(1); }
.inset2 { .inset(2); }
.inset3 { .inset(3); }
.inset4 { .inset(4); }
.inset5 { .inset(5); }
.inset6 { .inset(6); }
.inset7 { .inset(7); }
.inset8 { .inset(8); }
.inset9 { .inset(9); }
.inset10 { .inset(10); }
.inset11 { .inset(11); }
.inset12 { .inset(12); }
</code></pre></div>
<p dir="auto">Thoughts on adding something like this? Is this already possible, and I just missed it?</p> | 1 |
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const msg = prompt();
console.log(msg);"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-en">prompt</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">msg</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Then enter <code class="notranslate">你好</code>, it outputs <code class="notranslate">�</code>.<br>
It looks like we should reconsider the implementation of <code class="notranslate">readline</code></p>
<p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/denoland/deno/blob/d40b0711a786d04b5e6321ae9bbf73c11220e865/cli/rt/41_prompt.js#L48-L73">deno/cli/rt/41_prompt.js</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 48 to 73
in
<a data-pjax="true" class="commit-tease-sha" href="/denoland/deno/commit/d40b0711a786d04b5e6321ae9bbf73c11220e865">d40b071</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="L48" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="48"></td>
<td id="LC48" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">function</span> <span class="pl-en">readLineFromStdinSync</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L49" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="49"></td>
<td id="LC49" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Uint8Array</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L50" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="50"></td>
<td id="LC50" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">buf</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L51" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="51"></td>
<td id="LC51" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> </td>
</tr>
<tr class="border-0">
<td id="L52" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="52"></td>
<td id="LC52" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L53" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="53"></td>
<td id="LC53" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-s1">stdin</span><span class="pl-kos">.</span><span class="pl-en">readSync</span><span class="pl-kos">(</span><span class="pl-s1">c</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L54" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="54"></td>
<td id="LC54" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">n</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span> <span class="pl-c1">||</span> <span class="pl-s1">n</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L55" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="55"></td>
<td id="LC55" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">break</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L56" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="56"></td>
<td id="LC56" 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="L57" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="57"></td>
<td id="LC57" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">c</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">===</span> <span class="pl-c1">CR</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L58" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="58"></td>
<td id="LC58" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-s1">stdin</span><span class="pl-kos">.</span><span class="pl-en">readSync</span><span class="pl-kos">(</span><span class="pl-s1">c</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L59" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="59"></td>
<td id="LC59" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">c</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">===</span> <span class="pl-c1">LF</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L60" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="60"></td>
<td id="LC60" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">break</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L61" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="61"></td>
<td id="LC61" 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="L62" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="62"></td>
<td id="LC62" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">buf</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-c1">CR</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L63" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="63"></td>
<td id="LC63" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">n</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span> <span class="pl-c1">||</span> <span class="pl-s1">n</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L64" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="64"></td>
<td id="LC64" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">break</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L65" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="65"></td>
<td id="LC65" 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="L66" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="66"></td>
<td id="LC66" 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="L67" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="67"></td>
<td id="LC67" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">c</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">===</span> <span class="pl-c1">LF</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
<tr class="border-0">
<td id="L68" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="68"></td>
<td id="LC68" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">break</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L69" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="69"></td>
<td id="LC69" 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="L70" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="70"></td>
<td id="LC70" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">buf</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">c</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-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L71" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="71"></td>
<td id="LC71" 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="L72" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="72"></td>
<td id="LC72" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">return</span> <span class="pl-s1">decoder</span><span class="pl-kos">.</span><span class="pl-en">decode</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-v">Uint8Array</span><span class="pl-kos">(</span><span class="pl-s1">buf</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L73" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="73"></td>
<td id="LC73" 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">While <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="731915740" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/8179" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/8179/hovercard" href="https://github.com/denoland/deno/issues/8179">#8179</a> got partially fixed by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="733254992" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/8199" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/8199/hovercard" href="https://github.com/denoland/deno/pull/8199">#8199</a> (nice one btw, thanks for everyone involved!!), the prompt method still has some issues regarding input (related to stdin). For example, the code below doesn't perform as expected when non-ascii characters are used.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const a = prompt('Insert your character');
console.log(`a===a => ${a === 'a'}`); // When inserting the character 'a', returns true, as expected!
console.log(`ã===ã => ${a === 'ã'}`); // When inserting the character 'ã', returns false, not what we expected."><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-en">prompt</span><span class="pl-kos">(</span><span class="pl-s">'Insert your character'</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">`a===a => <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">a</span> <span class="pl-c1">===</span> <span class="pl-s">'a'</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// When inserting the character 'a', returns true, as expected!</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">`ã===ã => <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">a</span> <span class="pl-c1">===</span> <span class="pl-s">'ã'</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// When inserting the character 'ã', returns false, not what we expected.</span></pre></div>
<p dir="auto">Opened a new issue because the other one got closed before this got adressed.</p> | 1 |
<p dir="auto">Trying to upload an image from React Native to a server with Axios. I've attached a screenshot of both the code that I'm using and the Postman form-data view so you can see what the server expects to receive (uploading via postman works perfectly so server is all good). Every time I try to upload an image I get either a status code 400 (promise rejection) error or a network error.</p>
<p dir="auto">Here is what the image prop contains - it is directly coming from react-native-image-crop-picker :<br>
{"cropRect": {"height": 399, "width": 221, "x": 39, "y": 0}, "height": 1949, "mime": "image/jpeg", "modificationDate": "1588072959000", "path": "file:///storage/emulated/0/Pictures/bf28f71b-86e9-485d-ae27-d2edcd07d78d.jpg", "size": 495417, "width": 1080}</p>
<p dir="auto">Any help would be amazing! I've been stuck on this for days now and I haven't found an existing support thread with this issue, apologies though if I have managed to duplicate a query.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45561476/80496189-c00a7d00-8960-11ea-8943-a9822b0678dc.png"><img src="https://user-images.githubusercontent.com/45561476/80496189-c00a7d00-8960-11ea-8943-a9822b0678dc.png" alt="1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45561476/80496190-c13baa00-8960-11ea-8008-c53134cbd149.png"><img src="https://user-images.githubusercontent.com/45561476/80496190-c13baa00-8960-11ea-8008-c53134cbd149.png" alt="2" style="max-width: 100%;"></a></p> | <h4 dir="auto">Describe the issue</h4>
<p dir="auto">So I'm facing the following problem, I would like to recall the api called which failed because the JWT token expired (so without throwing any error if the call with valide token work) and update the axios instance <code class="notranslate">axios.defaults.headers.common["Authorization"] = newToken</code></p>
<p dir="auto">So currently it's working but not as expected, instead of recall once it's twice... very annoying...</p>
<p dir="auto">Screen of the network browser's console :<br>
(colors corresponding to the same api call)</p>
<p dir="auto"><a href="https://i.stack.imgur.com/rRtbm.png" rel="nofollow"><img src="https://camo.githubusercontent.com/0026481e7350f39e785fbc09b397bbba75c1c2302ab842dc6577c76a70fc98fb/68747470733a2f2f692e737461636b2e696d6775722e636f6d2f725274626d2e706e67" alt="enter image description here" data-canonical-src="https://i.stack.imgur.com/rRtbm.png" style="max-width: 100%;"></a></p>
<p dir="auto">as you can see everyone is called twice expect the first one which causing the refresh token</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
let client = axios;
axios.defaults.baseURL = config.backendUrl;
axios.defaults.headers.post["Content-Type"] = "application/json";
axios.interceptors.request.use(
function (config) {
const token = store.getState().User.access_token;
if (token) config.headers.Authorization = `Bearer ${token}`;
return config;
},
function (error) {
return Promise.reject(error);
}
);
axios.interceptors.response.use(
(response) => response,
(error) => {
// reject promise if network error
if (!error.response) {
store.dispatch(
//@ts-ignore
setError(
"Network connection error ! \n check your internet and try to reload"
)
);
return Promise.reject(error);
}
// Reject promise if usual error
if (error.response.status !== 401) {
return Promise.reject(error);
}
//Logout user if token refresh didn't work or user is disabled
if (error.config.url === "/auth/refresh/") {
console.log("hello refresh failed");
store.dispatch(
updateTokens({
access: "",
refresh: "",
})
);
store.dispatch(isLogout());
return new Promise((resolve, reject) => {
reject(error);
});
}
if (error.response.status === 401) {
return client
.post("/auth/refresh/", {
refresh: store.getState().User.refresh_token,
})
.then((res) => {
const newToken = res.data.access;
store.dispatch(
updateTokens({
access: res.data.access,
refresh: res.data.refresh,
})
);
console.log("error.config", error.config);
// New request with new token
const config = error.config;
config.headers["Authorization"] = `Bearer ${newToken}`;
return new Promise((resolve, reject) => {
axios
.request(config)
.then((response) => {
resolve(response);
})
.catch((error) => {
reject(error);
});
});
})
.catch((error) => {
store.dispatch(
updateTokens({
access: "",
refresh: "",
})
);
store.dispatch(isLogout());
Promise.reject(error);
});
}
}
);"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">client</span> <span class="pl-c1">=</span> <span class="pl-s1">axios</span><span class="pl-kos">;</span>
<span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-c1">defaults</span><span class="pl-kos">.</span><span class="pl-c1">baseURL</span> <span class="pl-c1">=</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">backendUrl</span><span class="pl-kos">;</span>
<span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-c1">defaults</span><span class="pl-kos">.</span><span class="pl-c1">headers</span><span class="pl-kos">.</span><span class="pl-c1">post</span><span class="pl-kos">[</span><span class="pl-s">"Content-Type"</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s">"application/json"</span><span class="pl-kos">;</span>
<span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">request</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">token</span> <span class="pl-c1">=</span> <span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">getState</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">User</span><span class="pl-kos">.</span><span class="pl-c1">access_token</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">token</span><span class="pl-kos">)</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">headers</span><span class="pl-kos">.</span><span class="pl-c1">Authorization</span> <span class="pl-c1">=</span> <span class="pl-s">`Bearer <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">token</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">config</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-k">function</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-k">return</span> <span class="pl-v">Promise</span><span class="pl-kos">.</span><span class="pl-en">reject</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-s1">axios</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">response</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span>
<span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-s1">response</span><span class="pl-kos">,</span>
<span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// reject promise if network error</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">response</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span>
<span class="pl-c">//<span class="pl-k">@ts</span>-ignore</span>
<span class="pl-en">setError</span><span class="pl-kos">(</span>
<span class="pl-s">"Network connection error ! \n check your internet and try to reload"</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-v">Promise</span><span class="pl-kos">.</span><span class="pl-en">reject</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-c">// Reject promise if usual error</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">response</span><span class="pl-kos">.</span><span class="pl-c1">status</span> <span class="pl-c1">!==</span> <span class="pl-c1">401</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-v">Promise</span><span class="pl-kos">.</span><span class="pl-en">reject</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-c">//Logout user if token refresh didn't work or user is disabled</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-kos">.</span><span class="pl-c1">url</span> <span class="pl-c1">===</span> <span class="pl-s">"/auth/refresh/"</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">"hello refresh failed"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span>
<span class="pl-en">updateTokens</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">access</span>: <span class="pl-s">""</span><span class="pl-kos">,</span>
<span class="pl-c1">refresh</span>: <span class="pl-s">""</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">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span><span class="pl-en">isLogout</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-k">new</span> <span class="pl-v">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-s1">reject</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">reject</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>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">response</span><span class="pl-kos">.</span><span class="pl-c1">status</span> <span class="pl-c1">===</span> <span class="pl-c1">401</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">client</span>
<span class="pl-kos">.</span><span class="pl-en">post</span><span class="pl-kos">(</span><span class="pl-s">"/auth/refresh/"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">refresh</span>: <span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">getState</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">User</span><span class="pl-kos">.</span><span class="pl-c1">refresh_token</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-s1">res</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">newToken</span> <span class="pl-c1">=</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">data</span><span class="pl-kos">.</span><span class="pl-c1">access</span><span class="pl-kos">;</span>
<span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span>
<span class="pl-en">updateTokens</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">access</span>: <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">data</span><span class="pl-kos">.</span><span class="pl-c1">access</span><span class="pl-kos">,</span>
<span class="pl-c1">refresh</span>: <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">data</span><span class="pl-kos">.</span><span class="pl-c1">refresh</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-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"error.config"</span><span class="pl-kos">,</span> <span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// New request with new token</span>
<span class="pl-k">const</span> <span class="pl-s1">config</span> <span class="pl-c1">=</span> <span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-kos">;</span>
<span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">headers</span><span class="pl-kos">[</span><span class="pl-s">"Authorization"</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s">`Bearer <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">newToken</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-v">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-s1">reject</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">axios</span>
<span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">(</span><span class="pl-s1">config</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-s1">response</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">resolve</span><span class="pl-kos">(</span><span class="pl-s1">response</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">catch</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">reject</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><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">catch</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span>
<span class="pl-en">updateTokens</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">access</span>: <span class="pl-s">""</span><span class="pl-kos">,</span>
<span class="pl-c1">refresh</span>: <span class="pl-s">""</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">store</span><span class="pl-kos">.</span><span class="pl-en">dispatch</span><span class="pl-kos">(</span><span class="pl-en">isLogout</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">Promise</span><span class="pl-kos">.</span><span class="pl-en">reject</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>
<span class="pl-kos">}</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I understand it like, when I get 401 I retry the api call with the new token but when I update the token inside the redux store with</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="store.dispatch(
updateTokens({
access: res.data.access,
refresh: res.data.refresh,
})
);"><pre class="notranslate"><code class="notranslate">store.dispatch(
updateTokens({
access: res.data.access,
refresh: res.data.refresh,
})
);
</code></pre></div>
<p dir="auto">it's updating the axios instance and recall second time but with the validate token.</p>
<p dir="auto">if I'm right I would like to know I could I fix that, thx everyone.</p>
<h4 dir="auto">Expected behavior, if applicable</h4>
<p dir="auto">I expected the same result but without the duplicate calls (like only one call of each)</p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>axios : ^0.21.0</li>
<li>react : ^17.0.1</li>
</ul> | 0 |
<h3 dir="auto">Problem</h3>
<p dir="auto">I'm always frustrated when I want to find the font "Arial Black", because the family name of this font is "Arial".<br>
I would like it if we could search a font by it's name.</p>
<p dir="auto">Here is an example how I search the font "Arial Black":</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib.font_manager as fm
print(fm.findfont("Arial Black"))"><pre class="notranslate"><code class="notranslate">import matplotlib.font_manager as fm
print(fm.findfont("Arial Black"))
</code></pre></div>
<p dir="auto">Here is the output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\jerem\Desktop>py font.py
findfont: Font family ['Arial Black'] not found. Falling back to DejaVu Sans.
C:\Users\jerem\AppData\Local\Programs\Python\Python310\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf"><pre class="notranslate"><code class="notranslate">C:\Users\jerem\Desktop>py font.py
findfont: Font family ['Arial Black'] not found. Falling back to DejaVu Sans.
C:\Users\jerem\AppData\Local\Programs\Python\Python310\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf
</code></pre></div>
<p dir="auto">When I say name of the font, I am talking about this name in yellow:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/34408507/162241258-8efe6bae-bd13-40f2-9673-a2ff36bba9d7.png"><img src="https://user-images.githubusercontent.com/34408507/162241258-8efe6bae-bd13-40f2-9673-a2ff36bba9d7.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Proposed solution</h3>
<p dir="auto">I proposed to add a field "name" to matplotlib.font_manager.FontProperties class: <a href="https://github.com/matplotlib/matplotlib/blob/v3.5.1/lib/matplotlib/font_manager.py#L596-L947">https://github.com/matplotlib/matplotlib/blob/v3.5.1/lib/matplotlib/font_manager.py#L596-L947</a></p> | <p dir="auto">The following Ubuntu fonts are installed on my system:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/home/edwin/.fonts/Ubuntu-LI.ttf: Ubuntu,Ubuntu Light:style=Light Italic,Italic
/home/edwin/.fonts/Ubuntu-L.ttf: Ubuntu,Ubuntu Light:style=Light,Regular
/home/edwin/.fonts/Ubuntu-M.ttf: Ubuntu,Ubuntu Light:style=Medium,Bold
/home/edwin/.fonts/Ubuntu-BI.ttf: Ubuntu:style=Bold Italic
/home/edwin/.fonts/Ubuntu-RI.ttf: Ubuntu:style=Italic
/home/edwin/.fonts/Ubuntu-R.ttf: Ubuntu:style=Regular
/home/edwin/.fonts/Ubuntu-MI.ttf: Ubuntu,Ubuntu Light:style=Medium Italic,Bold Italic
/home/edwin/.fonts/Ubuntu-B.ttf: Ubuntu:style=Bold"><pre class="notranslate"><code class="notranslate">/home/edwin/.fonts/Ubuntu-LI.ttf: Ubuntu,Ubuntu Light:style=Light Italic,Italic
/home/edwin/.fonts/Ubuntu-L.ttf: Ubuntu,Ubuntu Light:style=Light,Regular
/home/edwin/.fonts/Ubuntu-M.ttf: Ubuntu,Ubuntu Light:style=Medium,Bold
/home/edwin/.fonts/Ubuntu-BI.ttf: Ubuntu:style=Bold Italic
/home/edwin/.fonts/Ubuntu-RI.ttf: Ubuntu:style=Italic
/home/edwin/.fonts/Ubuntu-R.ttf: Ubuntu:style=Regular
/home/edwin/.fonts/Ubuntu-MI.ttf: Ubuntu,Ubuntu Light:style=Medium Italic,Bold Italic
/home/edwin/.fonts/Ubuntu-B.ttf: Ubuntu:style=Bold
</code></pre></div>
<p dir="auto">Ubuntu Light is shown with two family names: Ubuntu and Ubuntu Light. In XeTeX I can select the font directly by naming Ubuntu Light, but I cannot do the same in matplotlib:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="matplotlib.rcParams['font.family'] = 'Ubuntu Light'"><pre class="notranslate"><code class="notranslate">matplotlib.rcParams['font.family'] = 'Ubuntu Light'
</code></pre></div>
<p dir="auto">Instead, I must use a more obscure (albeit more technically correct) method:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="matplotlib.rcParams['font.family'] = 'Ubuntu'
matplotlib.rcParams['font.weight'] = 200"><pre class="notranslate"><code class="notranslate">matplotlib.rcParams['font.family'] = 'Ubuntu'
matplotlib.rcParams['font.weight'] = 200
</code></pre></div>
<p dir="auto">It would be convenient if Ubuntu Light could be addressed directly by its 'common' name.</p> | 1 |
<p dir="auto">It can be super helpful to piggyback on ElasticSearch's node stats endpoint to report various stats on all nodes on the cluster, however non-data nodes (data=false or client=true) do not seem to have this enabled, and node stats return mostly empty for them.</p> | <p dir="auto">Using 0.90</p>
<p dir="auto">If a data node hasn't been searched on, the getOs().getMem() in the NodesStatsResponse for that node will be null. It appears as if an actual search request has to be issued against a node for that to be populated.</p> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">I have just upgraded from 2.0 to 2.1.7 and now I am getting an issue with the form builder. I have a FormType class and have stripped the buildForm function back to just trying to generate a date field:</p>
<p dir="auto">$builder->add('fromDate', 'date');</p>
<p dir="auto">The 'form_widget' call set in the template and outputting the following:</p>
( ! ) Fatal error: Maximum function nesting level of '100' reached, aborting! in /home/duncan/workspace/sap-ecom-mobile/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Debug/StopwatchEvent.php on line 176
Call Stack
TimeMemoryFunctionLocation
10.0005242088{main}( )../app_dev.php:0
20.02563410224Symfony\Component\HttpKernel\Kernel->handle( )../app_dev.php:25
30.04645493232Symfony\Bundle\FrameworkBundle\HttpKernel->handle( )../bootstrap.php.cache:617
40.04645494984Symfony\Component\HttpKernel\HttpKernel->handle( )../bootstrap.php.cache:1566
50.04645495048Symfony\Component\HttpKernel\HttpKernel->handleRaw( )../bootstrap.php.cache:1390
60.06657453840call_user_func_array
( )../bootstrap.php.cache:1426
70.06657454360Sap\ProductBundle\Controller\ProductController->eventsAction( )../bootstrap.php.cache:1426
80.06657455064Symfony\Bundle\FrameworkBundle\Controller\Controller->forward( )../ProductController.php:30
90.06657455264Symfony\Bundle\FrameworkBundle\HttpKernel->forward( )../Controller.php:59
100.06657458248Symfony\Bundle\FrameworkBundle\HttpKernel->handle( )../bootstrap.php.cache:1584
110.06667461168Symfony\Component\HttpKernel\HttpKernel->handle( )../bootstrap.php.cache:1566
120.06667461168Symfony\Component\HttpKernel\HttpKernel->handleRaw( )../bootstrap.php.cache:1390
130.07097585920call_user_func_array
( )../bootstrap.php.cache:1426
140.07097586344Sap\ProductBundle\Controller\CourseController->eventsAction( )../bootstrap.php.cache:1426
150.522317254144Symfony\Bundle\FrameworkBundle\Controller\Controller->render( )../CourseController.php:51
160.531618356448Symfony\Bundle\TwigBundle\TwigEngine->renderResponse( )../Controller.php:99
170.531818359728Symfony\Bundle\TwigBundle\Debug\TimedTwigEngine->render( )../TwigEngine.php:107
180.531818360696Symfony\Bundle\TwigBundle\TwigEngine->render( )../TimedTwigEngine.php:52
190.531818360856Symfony\Bridge\Twig\TwigEngine->render( )../TwigEngine.php:78
200.533318567144Twig_Template->render( )../TwigEngine.php:53
210.533318583848Twig_Template->display( )../classes.php:9296
220.533618603112Twig_Template->displayWithErrorHandling( )../classes.php:9286
230.533618603288__TwigTemplate_12c4067714418b81a6ddf3e2501af700->doDisplay( )../classes.php:9308
240.533618604064Twig_Template->display( )../067714418b81a6ddf3e2501af700.php:28
250.533618604128Twig_Template->displayWithErrorHandling( )../classes.php:9286
260.533618604304__TwigTemplate_1aec4047416fb8017e6f74876684a414->doDisplay( )../classes.php:9308
270.918422987184Twig_Template->displayBlock( )../4047416fb8017e6f74876684a414.php:113
280.918422987896call_user_func
( )../classes.php:9189
290.918422987928__TwigTemplate_12c4067714418b81a6ddf3e2501af700->block_content( )../classes.php:9189
300.933723133768Symfony\Bundle\TwigBundle\Extension\ActionsExtension->renderAction( )../067714418b81a6ddf3e2501af700.php:189
310.933723133768Symfony\Bundle\FrameworkBundle\Templating\Helper\ActionsHelper->render( )../ActionsExtension.php:47
320.933723134072Symfony\Bundle\FrameworkBundle\HttpKernel->render( )../ActionsHelper.php:49
330.933823141440Symfony\Bundle\FrameworkBundle\HttpKernel->handle( )../bootstrap.php.cache:1667
340.933823143672Symfony\Component\HttpKernel\HttpKernel->handle( )../bootstrap.php.cache:1566
350.933823143672Symfony\Component\HttpKernel\HttpKernel->handleRaw( )../bootstrap.php.cache:1390
360.939323259704call_user_func_array
( )../bootstrap.php.cache:1426
370.939323260040Sap\TrainingPlannerBundle\Controller\PrebookingController->indexAction( )../bootstrap.php.cache:1426
380.969126088368Symfony\Bundle\FrameworkBundle\Controller\Controller->render( )../PrebookingController.php:46
390.969126088480Symfony\Bundle\TwigBundle\TwigEngine->renderResponse( )../Controller.php:99
400.969226090600Symfony\Bundle\TwigBundle\Debug\TimedTwigEngine->render( )../TwigEngine.php:107
410.969226091488Symfony\Bundle\TwigBundle\TwigEngine->render( )../TimedTwigEngine.php:52
420.969226091488Symfony\Bridge\Twig\TwigEngine->render( )../TwigEngine.php:78
430.969826160320Twig_Template->render( )../TwigEngine.php:53
440.969826177024Twig_Template->display( )../classes.php:9296
450.969826177720Twig_Template->displayWithErrorHandling( )../classes.php:9286
460.969826177896__TwigTemplate_97b50389d17f06978fb7d362c36a5baa->doDisplay( )../classes.php:9308
470.976826706456Symfony\Component\Form\FormRenderer->searchAndRenderBlock( )../0389d17f06978fb7d362c36a5baa.php:32
480.976826711480Symfony\Bridge\Twig\Form\TwigRendererEngine->renderBlock( )../FormRenderer.php:255
490.976826730920Twig_Template->displayBlock( )../TwigRendererEngine.php:58
500.976826736504call_user_func
( )../classes.php:9189
510.976826736536__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_form_widget( )../classes.php:9189
520.976826753296Twig_Template->displayBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:273
530.976926758792call_user_func
( )../classes.php:9189
540.976926758824__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_form_widget_compound( )../classes.php:9189
550.977126784128Twig_Template->displayBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:330
560.977126789496call_user_func
( )../classes.php:9189
570.977126789528__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_form_rows( )../classes.php:9189
580.977126813344Symfony\Component\Form\FormRenderer->searchAndRenderBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:1036
590.977226824856Symfony\Bridge\Twig\Form\TwigRendererEngine->renderBlock( )../FormRenderer.php:255
600.977226844496Twig_Template->displayBlock( )../TwigRendererEngine.php:58
610.977226850528call_user_func
( )../classes.php:9189
620.977226850560__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_field_row( )../classes.php:9189
630.977226850672Twig_Template->displayBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:1154
640.977226856600call_user_func
( )../classes.php:9189
650.977226856632__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_form_row( )../classes.php:9189
660.981326894288Symfony\Component\Form\FormRenderer->searchAndRenderBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:934
670.981326901896Symfony\Bridge\Twig\Form\TwigRendererEngine->renderBlock( )../FormRenderer.php:255
680.981326921536Twig_Template->displayBlock( )../TwigRendererEngine.php:58
690.981326928136call_user_func
( )../classes.php:9189
700.981326928168__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_date_widget( )../classes.php:9189
710.981426945264Symfony\Component\Form\FormRenderer->searchAndRenderBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:661
720.981526957960Symfony\Bridge\Twig\Form\TwigRendererEngine->renderBlock( )../FormRenderer.php:255
730.981526978128Twig_Template->displayBlock( )../TwigRendererEngine.php:58
740.981526984856call_user_func
( )../classes.php:9189
750.981526984888__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_choice_widget( )../classes.php:9189
760.981527001648Twig_Template->displayBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:394
770.981527008272call_user_func
( )../classes.php:9189
780.981527008304__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_choice_widget_collapsed( )../classes.php:9189
790.981627029920Twig_Template->displayBlock( )../79c6a3f6d43c85980cb7d0f5b526.php:482
800.981627036432call_user_func
( )../classes.php:9189
810.981627036464__TwigTemplate_566979c6a3f6d43c85980cb7d0f5b526->block_choice_widget_options( )../classes.php:9189
820.981727064672SapLibrary\Bundle\TranslationBundle\Twig\TranslationExtension->transFilterWithNoSpan( )../79c6a3f6d43c85980cb7d0f5b526.php:537
830.981727064720SapLibrary\Bundle\TranslationBundle\Twig\TranslationExtension->transFilter( )../TranslationExtension.php:60
840.981727064720SapLibrary\Bundle\TranslationBundle\Service\TranslationService->translate( )../TranslationExtension.php:55
850.981727064720SapLibrary\Bundle\TranslationBundle\Service\TranslationService->translateContent( )../TranslationService.php:128
860.981727065432SapLibrary\Bundle\TranslationBundle\Service\TranslationService->loadTranslationItem( )../TranslationService.php:172
870.982127065432SapLibrary\Bundle\TranslationBundle\Repository\ItemRepository->findItem( )../TranslationService.php:239
880.982227068160Doctrine\ORM\AbstractQuery->getResult( )../ItemRepository.php:27
890.982227068256Doctrine\ORM\AbstractQuery->execute( )../AbstractQuery.php:538
900.982227068608Doctrine\ORM\Query->_doExecute( )../AbstractQuery.php:737
910.982327069704Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute( )../Query.php:264
920.982327069704Doctrine\DBAL\Connection->executeQuery( )../SingleSelectExecutor.php:46
930.982327069704Doctrine\DBAL\Logging\LoggerChain->startQuery( )../Connection.php:631
940.982327069704Symfony\Bridge\Doctrine\Logger\DbalLogger->startQuery( )../LoggerChain.php:50
950.982327069800Symfony\Component\HttpKernel\Debug\Stopwatch->start( )../DbalLogger.php:46
960.982327069848Symfony\Component\HttpKernel\Debug\Section->startEvent( )../Stopwatch.php:80
970.982327069848Symfony\Component\HttpKernel\Debug\StopwatchEvent->start( )../Stopwatch.php:207
980.982327069848Symfony\Component\HttpKernel\Debug\StopwatchEvent->getNow( )../StopwatchEvent.php:69
990.982327069896Symfony\Component\HttpKernel\Debug\StopwatchEvent->formatTime( )../StopwatchEvent.php:162
<p dir="auto">Please let me know if I am doing anything wrong or if this is a bug in the 2.1 version, and if so when an update would be possible.</p>
<p dir="auto">Many Thanks,</p>
<p dir="auto">Duncan</p> | <p dir="auto">Many applications are generating memory size and function nesting errors after upgrading to Symfony 2.1.7</p>
<p dir="auto">For example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Fatal error: Maximum function nesting level of '100' reached, aborting!
in /src/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 696
Call Stack:
1. Symfony\Component\DependencyInjection\Dumper\PhpDumper->hasReference() /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:962
...
99. Symfony\Component\DependencyInjection\Dumper\PhpDumper->hasReference() /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:971"><pre class="notranslate"><code class="notranslate">Fatal error: Maximum function nesting level of '100' reached, aborting!
in /src/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 696
Call Stack:
1. Symfony\Component\DependencyInjection\Dumper\PhpDumper->hasReference() /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:962
...
99. Symfony\Component\DependencyInjection\Dumper\PhpDumper->hasReference() /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:971
</code></pre></div>
<p dir="auto">The above error is generated by xdebug. But even increasing <code class="notranslate">xdebug.max_nesting_level</code> to 10000 (!) doesn't work, it keeps on showing <code class="notranslate">PhpDumper->hasReference()</code> messages.</p>
<p dir="auto">Ok, so let's remove xdebug (which would not a solution because phpunit has a dependency on xdebug) and see what happens next: the function nesting errors are gone but now we get memory size errors.</p>
<p dir="auto">For example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 32 bytes)
in /src/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 680"><pre class="notranslate"><code class="notranslate">Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 32 bytes)
in /src/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 680
</code></pre></div>
<p dir="auto">And after reloading the page:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 72 bytes)
in /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php on line 972"><pre class="notranslate"><code class="notranslate">Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 72 bytes)
in /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php on line 972
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 130968 bytes)
in /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php on line 962"><pre class="notranslate"><code class="notranslate">Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 130968 bytes)
in /src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php on line 962
</code></pre></div>
<p dir="auto">Even after increasing the memory limit to 10 GB (!) those errors just keep on coming. Seems like an infinite loop.</p>
<p dir="auto">We never experienced those errors before and switching back to Symfony 2.1.6 makes everything working again. What has changed in 2.1.7 that causes this strange behavior?</p>
<p dir="auto">PHP 5.4.11 + XCache</p> | 1 |
<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"> 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://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"> 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"> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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 & 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>
<p dir="auto">Has recently been used celery for multi-process concurrent tasks, met a very difficult problem, I tried to solve, but to collect a variety of methods, failed to solve my problem.<br>
Problem: Celery multitasking program, the task using inherited classes encapsulate Celery. Task type of task to complete my task, task, of course, include my success and failure of rewriting method.My program is not important, of course, just a program will appear, <strong>kombu. Exceptions. OperationalError</strong> mistake, <strong>Cannot route message for exchange 'reply.celery.pidbox': Table emply or key no longer exists</strong>, I'll find related to explain the key as redis reply. Celery. Pidbox ousted, lead to the routing problem, which I doubt is redis configuration problem, I tried to existing have been fighting for using redis cluster, will quote us pidbox ousted, same problem.Then I was celery there may be some problems, please the great god still hope to give directions, thank you very much</p>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:<br>
python 3.6.5<br>
celery 4.3.0<br>
redis 3.2.1 (Using the cluster)<br>
kombu 4.6.2 (4.6.4 4.6.5 Try to release)</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="kombu.exceptions.OperationalError:
Cannot route message for exchange 'reply.celery.pidbox': Table emply or key no longer exists
RuntimeError: pubsub connection not set: did you forget to call subscribe() or psubscribe()?"><pre class="notranslate"><code class="notranslate">kombu.exceptions.OperationalError:
Cannot route message for exchange 'reply.celery.pidbox': Table emply or key no longer exists
RuntimeError: pubsub connection not set: did you forget to call subscribe() or psubscribe()?
</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>: 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>
<h1 dir="auto">Actual Behavior</h1> | <h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22Issue+Type%3A+Feature+Request%22+">issues list</a><br>
for similar or identical feature requests.</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?utf8=%E2%9C%93&q=is%3Apr+label%3A%22PR+Type%3A+Feature%22+">pull requests list</a><br>
for existing proposed implementations of this feature.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the if the same feature was already implemented in the<br>
master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h1 dir="auto">Brief Summary</h1>
<h1 dir="auto">Design</h1>
<h2 dir="auto">Architectural Considerations</h2>
<p dir="auto">None</p>
<h2 dir="auto">Proposed Behavior</h2>
<h2 dir="auto">Proposed UI/UX</h2>
<h2 dir="auto">Diagrams</h2>
<p dir="auto">N/A</p>
<h2 dir="auto">Alternatives</h2>
<p dir="auto">None</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.2</li>
<li>Operating System version: macOS 10.12.6</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps?</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
ZookeeperDynamicConfiguration(URL url, ZookeeperTransporter zookeeperTransporter) {
this.url = url;
rootPath = "/" + url.getParameter(CONFIG_NAMESPACE_KEY, DEFAULT_GROUP) + "/config";
initializedLatch = new CountDownLatch(1);
this.cacheListener = new CacheListener(rootPath, initializedLatch);
this.executor = Executors.newFixedThreadPool(1, new NamedThreadFactory(this.getClass().getSimpleName(), true));
zkClient = zookeeperTransporter.connect(url);
zkClient.addDataListener(rootPath, cacheListener, executor);
try {
// Wait for connection
this.initializedLatch.await();
} catch (InterruptedException e) {
logger.warn("Failed to build local cache for config center (zookeeper)." + url);
}
}"><pre class="notranslate"> <span class="pl-en">ZookeeperDynamicConfiguration</span>(<span class="pl-smi">URL</span> <span class="pl-s1">url</span>, <span class="pl-smi">ZookeeperTransporter</span> <span class="pl-s1">zookeeperTransporter</span>) {
<span class="pl-smi">this</span>.<span class="pl-s1">url</span> = <span class="pl-s1">url</span>;
<span class="pl-s1">rootPath</span> = <span class="pl-s">"/"</span> + <span class="pl-s1">url</span>.<span class="pl-en">getParameter</span>(<span class="pl-c1">CONFIG_NAMESPACE_KEY</span>, <span class="pl-c1">DEFAULT_GROUP</span>) + <span class="pl-s">"/config"</span>;
<span class="pl-s1">initializedLatch</span> = <span class="pl-k">new</span> <span class="pl-smi">CountDownLatch</span>(<span class="pl-c1">1</span>);
<span class="pl-smi">this</span>.<span class="pl-s1">cacheListener</span> = <span class="pl-k">new</span> <span class="pl-smi">CacheListener</span>(<span class="pl-s1">rootPath</span>, <span class="pl-s1">initializedLatch</span>);
<span class="pl-smi">this</span>.<span class="pl-s1">executor</span> = <span class="pl-smi">Executors</span>.<span class="pl-en">newFixedThreadPool</span>(<span class="pl-c1">1</span>, <span class="pl-k">new</span> <span class="pl-smi">NamedThreadFactory</span>(<span class="pl-smi">this</span>.<span class="pl-en">getClass</span>().<span class="pl-en">getSimpleName</span>(), <span class="pl-c1">true</span>));
<span class="pl-s1">zkClient</span> = <span class="pl-s1">zookeeperTransporter</span>.<span class="pl-en">connect</span>(<span class="pl-s1">url</span>);
<span class="pl-s1">zkClient</span>.<span class="pl-en">addDataListener</span>(<span class="pl-s1">rootPath</span>, <span class="pl-s1">cacheListener</span>, <span class="pl-s1">executor</span>);
<span class="pl-k">try</span> {
<span class="pl-c">// Wait for connection</span>
<span class="pl-smi">this</span>.<span class="pl-s1">initializedLatch</span>.<span class="pl-en">await</span>();
} <span class="pl-k">catch</span> (<span class="pl-smi">InterruptedException</span> <span class="pl-s1">e</span>) {
<span class="pl-s1">logger</span>.<span class="pl-en">warn</span>(<span class="pl-s">"Failed to build local cache for config center (zookeeper)."</span> + <span class="pl-s1">url</span>);
}
}</pre></div>
<p dir="auto"><code class="notranslate"> zkClient = zookeeperTransporter.connect(url);</code>会通过URL中的client参数来正确选择自适应扩展来初始化zk客户端。但在初始化配置中心的时候,URL是由ConfigCenterConfig得到的,此时URL中无client的信息,所以这个地方创建zk还是用的默认的zkClient。希望和注册中心时候一样获取自己扩展的zkClient</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: xxx</li>
<li>Operating System version: xxx</li>
<li>Java version: xxx</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>xxx</li>
<li>xxx</li>
<li>xxx</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps?</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<ul dir="auto">
<li>docker_image</li>
</ul>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0
config file =
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.3.0
config file =
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">None</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Pulling a docker image without force=yes always returns <code class="notranslate">unchanged</code> even if the image have newest version on DockerHub.<br>
But if I use <code class="notranslate">force=yes</code> workaround - it always returns <code class="notranslate">changed</code>, even if I already have latest image version.<br>
So, I think it must be another flag, something like <code class="notranslate">pull=always</code> or same, to always pull latest image, but stay unchanged, if nothing to do.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">The following task always return changed even when the image is in its latest version.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" tasks:
- name: Download busybox image
docker_image: name=busybox state=present force=yes"><pre class="notranslate"> <span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">Download busybox image</span>
<span class="pl-ent">docker_image</span>: <span class="pl-s">name=busybox state=present force=yes</span></pre></div>
<p dir="auto">But running docker pull from shell you could tell if the image was updated or not</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# docker pull busybox
Using default tag: latest
latest: Pulling from library/busybox
56bec22e3559: Pull complete
Digest: sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912
Status: Downloaded newer image for busybox:latest
# docker pull busybox
Using default tag: latest
latest: Pulling from library/busybox
Digest: sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912
Status: Image is up to date for busybox:latest"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> docker pull busybox</span>
Using default tag: latest
latest: Pulling from library/busybox
56bec22e3559: Pull <span class="pl-c1">complete</span>
Digest: sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912
Status: Downloaded newer image <span class="pl-k">for</span> busybox:latest
<span class="pl-c"><span class="pl-c">#</span> docker pull busybox</span>
Using default tag: latest
latest: Pulling from library/busybox
Digest: sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912
Status: Image is up to date <span class="pl-k">for</span> busybox:latest</pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">It should return unchanged if the image was not updated.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [Download Download busybox image] *********************************
Thursday 03 November 2016 11:03:34 -0500 (0:00:00.567) 0:00:00.580 *****
changed: [example.com] => {"actions": ["Pulled image busybox:latest"], "changed": true, "image": {"Architecture": "amd64", "Author": "", "Comment": "", "Config": {"AttachStderr": false, "AttachStdin": false, "AttachStdout": false, "Cmd": ["sh"], "Domainname": "", "Entrypoint": null, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"], "Hostname": "4a74292706a0", "Image": "sha256:1679bae2167496818312013654f5c66a16e185d0a0f6b762b53c8558014457c6", "Labels": {}, "OnBuild": null, "OpenStdin": false, "StdinOnce": false, "Tty": false, "User": "", "Volumes": null, "WorkingDir": ""}, "Container": "8bb318a3b4672c53a1747991c95fff3306eea13ec308740ebe0c81b56ece530f", "ContainerConfig": {"AttachStderr": false, "AttachStdin": false, "AttachStdout": false, "Cmd": ["/bin/sh", "-c", "#(nop) ", "CMD [\"sh\"]"], "Domainname": "", "Entrypoint": null, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"], "Hostname": "4a74292706a0", "Image": "sha256:1679bae2167496818312013654f5c66a16e185d0a0f6b762b53c8558014457c6", "Labels": {}, "OnBuild": null, "OpenStdin": false, "StdinOnce": false, "Tty": false, "User": "", "Volumes": null, "WorkingDir": ""}, "Created": "2016-10-07T21:03:58.469866982Z", "DockerVersion": "1.12.1", "GraphDriver": {"Data": null, "Name": "aufs"}, "Id": "sha256:e02e811dd08fd49e7f6032625495118e63f597eb150403d02e3238af1df240ba", "Os": "linux", "Parent": "", "RepoDigests": ["busybox@sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912"], "RepoTags": ["busybox:latest"], "RootFS": {"Layers": ["sha256:e88b3f82283bc59d5e0df427c824e9f95557e661fcb0ea15fb0fb6f97760f9d9"], "Type": "layers"}, "Size": 1093484, "VirtualSize": 1093484}}"><pre lang="log" class="notranslate"><code class="notranslate">TASK [Download Download busybox image] *********************************
Thursday 03 November 2016 11:03:34 -0500 (0:00:00.567) 0:00:00.580 *****
changed: [example.com] => {"actions": ["Pulled image busybox:latest"], "changed": true, "image": {"Architecture": "amd64", "Author": "", "Comment": "", "Config": {"AttachStderr": false, "AttachStdin": false, "AttachStdout": false, "Cmd": ["sh"], "Domainname": "", "Entrypoint": null, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"], "Hostname": "4a74292706a0", "Image": "sha256:1679bae2167496818312013654f5c66a16e185d0a0f6b762b53c8558014457c6", "Labels": {}, "OnBuild": null, "OpenStdin": false, "StdinOnce": false, "Tty": false, "User": "", "Volumes": null, "WorkingDir": ""}, "Container": "8bb318a3b4672c53a1747991c95fff3306eea13ec308740ebe0c81b56ece530f", "ContainerConfig": {"AttachStderr": false, "AttachStdin": false, "AttachStdout": false, "Cmd": ["/bin/sh", "-c", "#(nop) ", "CMD [\"sh\"]"], "Domainname": "", "Entrypoint": null, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"], "Hostname": "4a74292706a0", "Image": "sha256:1679bae2167496818312013654f5c66a16e185d0a0f6b762b53c8558014457c6", "Labels": {}, "OnBuild": null, "OpenStdin": false, "StdinOnce": false, "Tty": false, "User": "", "Volumes": null, "WorkingDir": ""}, "Created": "2016-10-07T21:03:58.469866982Z", "DockerVersion": "1.12.1", "GraphDriver": {"Data": null, "Name": "aufs"}, "Id": "sha256:e02e811dd08fd49e7f6032625495118e63f597eb150403d02e3238af1df240ba", "Os": "linux", "Parent": "", "RepoDigests": ["busybox@sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912"], "RepoTags": ["busybox:latest"], "RootFS": {"Layers": ["sha256:e88b3f82283bc59d5e0df427c824e9f95557e661fcb0ea15fb0fb6f97760f9d9"], "Type": "layers"}, "Size": 1093484, "VirtualSize": 1093484}}
</code></pre></div>
<h3 dir="auto">Related issues</h3>
<p dir="auto">It is maybe duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="187213459" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/5489" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/5489/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/5489">ansible/ansible-modules-core#5489</a> , but is seems, that repo is locked, so I want to remind about it.</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">shell module and check mode</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[root@localhost ~]# ansible --version
ansible 1.9.4"><pre class="notranslate"><code class="notranslate">[root@localhost ~]# ansible --version
ansible 1.9.4
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">Tested with default ansible.cfg.</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">CentOS release 6.7 (Final) up-to-date.</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Looks like we get two task statuses when running the <code class="notranslate">shell</code> module with <code class="notranslate">--check</code>.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<ul dir="auto">
<li>Use the following inventory file:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[local]
127.0.0.1 ansible_connection=local ansible_python_interpreter='/usr/bin/env python'"><pre class="notranslate"><code class="notranslate">[local]
127.0.0.1 ansible_connection=local ansible_python_interpreter='/usr/bin/env python'
</code></pre></div>
<ul dir="auto">
<li>On the following playbook:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[root@localhost ~]# cat check.yml
---
- hosts: all
tasks:
- name: 'Fail if not run with --check'
shell: 'exit 1'"><pre class="notranslate"><code class="notranslate">[root@localhost ~]# cat check.yml
---
- hosts: all
tasks:
- name: 'Fail if not run with --check'
shell: 'exit 1'
</code></pre></div>
<ul dir="auto">
<li>Invoke with the following and get...:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[root@localhost ~]# ansible-playbook -i inventory check.yml --check
PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [Fail if not run with --check] ******************************************
skipping: [127.0.0.1]
ok: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=1 changed=0 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">[root@localhost ~]# ansible-playbook -i inventory check.yml --check
PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [Fail if not run with --check] ******************************************
skipping: [127.0.0.1]
ok: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=1 changed=0 unreachable=0 failed=0
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">For our task to be "skipped" (this is what happens under ans-v2 at least).</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">Task reported as both 'ok' and 'skipped.'</p> | 0 |
<p dir="auto">The duplicated code in <code class="notranslate">FormHelper</code> (FrameworkBundle) and <code class="notranslate">FormExtension</code> (Twig bridge) should be extracted into a common base class <code class="notranslate">Symfony\Component\Form\AbstractRenderer</code>. It's interface should be extracted into a new <code class="notranslate">Symfony\Component\Form\FormRendererInterface</code> (containing the render*() methods of FormExtension).</p>
<p dir="auto">The engine specific code should be placed in <code class="notranslate">TwigRenderer</code> (Twig bridge) and <code class="notranslate">TemplatingRenderer</code> (FrameworkBundle). <code class="notranslate">FormHelper</code> and <code class="notranslate">FormExtension</code> can then simply create such a renderer object and forward any method calls to the renderer.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fabpot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fabpot">@fabpot</a>: Is the Templating component already able to load templates from components? If yes, we should definitely move <code class="notranslate">FormHelper</code>, <code class="notranslate">TemplatingRenderer</code> and the PHP templates to the Form (or Templating) component to make it self-contained (and usable without FrameworkBundle).</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vicb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vicb">@vicb</a>: Can you do this?</p> | <p dir="auto"><code class="notranslate">bind</code>ing partial parameters effectively clears all existing values from the model and only persists the new parameters that are passed in. See example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Author.php
class Author
{
public $name;
public $email = 'bar';
}
// AuthorType
...
$builder->add('name', 'text')->author('text');
..."><pre class="notranslate"><code class="notranslate">// Author.php
class Author
{
public $name;
public $email = 'bar';
}
// AuthorType
...
$builder->add('name', 'text')->author('text');
...
</code></pre></div>
<p dir="auto">Passing <code class="notranslate">$form->bind(array('name' => 'foo'))</code> wipes out the existing <code class="notranslate">email</code> value.</p> | 0 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-make-instances-of-objects-with-a-constructor-function?solution=var%20Car%20%3D%20function%28%29%20%7B%0A%20%20this.wheels%20%3D%204%3B%0A%20%20this.engines%20%3D%201%3B%0A%20%20this.seats%20%3D%201%3B%0A%7D%3B%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0A%0Avar%20myCar%20%3D%20new%20Car%28%29%3B%0AmyCar.nickname%20%3D%20%22whatever%22%3B" rel="nofollow">Waypoint: Make Instances of Objects with a Constructor Function</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">The description text on the left-side of the page has an error in it. I'll mention the text here:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Now, once the myCar instance is created it can be used like any other object and can have its properties accessed and modified the same way you would usually. For example:
var myCar.turboType = "twin"; // This line has an extra keyword "var", which causes an error.
Our myCar variable now has a property turboType with a value of "twin"."><pre class="notranslate"><code class="notranslate">Now, once the myCar instance is created it can be used like any other object and can have its properties accessed and modified the same way you would usually. For example:
var myCar.turboType = "twin"; // This line has an extra keyword "var", which causes an error.
Our myCar variable now has a property turboType with a value of "twin".
</code></pre></div> | <p dir="auto">Hi,</p>
<h2 dir="auto">I think the sample given in the explanation is wrong.</h2>
<p dir="auto">Now, once the myCar instance is created it can be used like any other object and can have its properties accessed and modified the same way you would usually. For example:</p>
<p dir="auto">var myCar.turboType = "twin"; <strong>we don't need var</strong><br>
<strong>it should be</strong><br>
<strong>myCar.turboType = "twin";</strong></p>
<h2 dir="auto">Our myCar variable now has a property turboType with a value of "twin".</h2> | 1 |
<p dir="auto"><strong>Description</strong><br>
Currently airflow doesn't provide a way to submit a DAG (an experimental api exists but not part of airflow deployment).<br>
Similarly it provides a way to delete dag but doesn't cleanup the file.</p>
<p dir="auto"><strong>Use case / motivation</strong><br>
We have a requirement where I want to generate a DAG programatically and then submit to airflow.Similarly based upon user request would like to cleanup the same.<br>
But as there are no standard way, this can depend on how you airflow cluster is provisioned.If this can be standardised .</p> | <h3 dir="auto">Body</h3>
<p dir="auto">I have a kind request for all the contributors to the latest provider packages release.<br>
Could you help us to test the RC versions of the providers and let us know in the comment,<br>
if the issue is addressed there.</p>
<h2 dir="auto">Providers that need testing</h2>
<p dir="auto">Those are providers that require testing as there were some substantial changes introduced:</p>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-amazon/2.4.0rc1" rel="nofollow">amazon: 2.4.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18755" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18755/hovercard">MySQLToS3Operator add support for parquet format (#18755)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guotongfei/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guotongfei">@guotongfei</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18447" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18447/hovercard">Add RedshiftSQLHook, RedshiftSQLOperator (#18447)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Brooke-white/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Brooke-white">@Brooke-white</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18844" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18844/hovercard">Remove extra postgres dependency from AWS Provider (#18844)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mariotaddeucci/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mariotaddeucci">@mariotaddeucci</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18671" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18671/hovercard">Remove duplicated code on S3ToRedshiftOperator (#18671)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mariotaddeucci/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mariotaddeucci">@mariotaddeucci</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18042" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18042/hovercard">Fixing ses email backend (#18042)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ignaski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ignaski">@ignaski</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19099" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19099/hovercard">Fixup string concatenations (#19099)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/blag/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blag">@blag</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18807" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18807/hovercard">Update S3PrefixSensor to support checking multiple prefixes within a bucket (#18807)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/anaynayak/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/anaynayak">@anaynayak</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19048" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19048/hovercard">Move validation of templated input params to run after the context init (#19048)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eskarimov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eskarimov">@eskarimov</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-hive/2.0.3rc1" rel="nofollow">apache.hive: 2.0.3rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18854" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18854/hovercard">fix get_connections deprecation warn in hivemetastore hook (#18854)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Aakcht/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Aakcht">@Aakcht</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-cncf-kubernetes/2.1.0rc1" rel="nofollow">cncf.kubernetes: 2.1.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18928" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18928/hovercard">Add more type hints to PodLauncher (#18928)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jameslamb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jameslamb">@jameslamb</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/17953" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/17953/hovercard">add more information to PodLauncher timeout error (#17953)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jameslamb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jameslamb">@jameslamb</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-docker/2.3.0rc1" rel="nofollow">docker: 2.3.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18990" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18990/hovercard">Add support of placement in the DockerSwarmOperator (#18990)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/enima2684/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/enima2684">@enima2684</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19099" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19099/hovercard">Fixup string concatenations (#19099)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/blag/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blag">@blag</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18872" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18872/hovercard">Remove the docker timeout workaround (#18872)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/RyanSiu1995/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/RyanSiu1995">@RyanSiu1995</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18739" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18739/hovercard">Move docker decorator example dag to docker provider (#18739)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-elasticsearch/2.1.0rc1" rel="nofollow">elasticsearch: 2.1.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/17552" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/17552/hovercard">AIP 39: Documentation (#17552)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/17944" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/17944/hovercard">Adds example showing the ES_hook (#17944)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/frankcash/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/frankcash">@frankcash</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-facebook/2.1.0rc1" rel="nofollow">facebook: 2.1.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18883" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18883/hovercard">Align the default version with Facebook business SDK (#18883)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/RyanSiu1995/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/RyanSiu1995">@RyanSiu1995</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-google/6.1.0rc1" rel="nofollow">google: 6.1.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19163" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19163/hovercard">Add value to "namespaceId" of query (#19163)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/deedmitrij/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/deedmitrij">@deedmitrij</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18964" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18964/hovercard">Add pre-commit hook for common misspelling check in files (#18964)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18927" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18927/hovercard">Support query timeout as an argument in CassandraToGCSOperator (#18927)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/xuan616/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/xuan616">@xuan616</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18676" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18676/hovercard">Update BigQueryCreateExternalTableOperator doc and parameters (#18676)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tnyz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tnyz">@tnyz</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19052" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19052/hovercard">Replacing non-attribute template_fields for BigQueryToMsSqlOperator (#19052)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josh-fell/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josh-fell">@josh-fell</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18879" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18879/hovercard">Upgrade the dataproc package to 3.0.0 and migrate from v1beta2 to v1 api (#18879)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lwyszomi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lwyszomi">@lwyszomi</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18992" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18992/hovercard">Use google cloud credentials when executing beam commands in subprocesses (#18992)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SamWheating/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SamWheating">@SamWheating</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18996" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18996/hovercard">Replace default api_version of FacebookAdsReportToGcsOperator (#18996)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eladkal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eladkal">@eladkal</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18699" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18699/hovercard">Dataflow Operators - use project and location from job in on_kill method. (#18699)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lwyszomi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lwyszomi">@lwyszomi</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19229" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19229/hovercard">Fix hard-coded /tmp directory in CloudSQL Hook (#19229)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potiuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potiuk">@potiuk</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18981" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18981/hovercard">Fix bug in Dataflow hook when no jobs are returned (#18981)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/keze/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/keze">@keze</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18995" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18995/hovercard">Fix BigQueryToMsSqlOperator documentation (#18995)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potatochip/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potatochip">@potatochip</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19048" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19048/hovercard">Move validation of templated input params to run after the context init (#19048)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eskarimov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eskarimov">@eskarimov</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18790" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18790/hovercard">Google provider catch invalid secret name (#18790)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/raphaelauv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/raphaelauv">@raphaelauv</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-jenkins/2.0.3rc1" rel="nofollow">jenkins: 2.0.3rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19064" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19064/hovercard">Remove distutils usages for Python 3.10 (#19064)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-microsoft-azure/3.3.0rc1" rel="nofollow">microsoft.azure: 3.3.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18695" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18695/hovercard">update azure cosmos to latest version (#18695)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eladkal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eladkal">@eladkal</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19234" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19234/hovercard">Added sas_token var to BlobServiceClient return. Updated tests (#19234)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ReadytoRocc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ReadytoRocc">@ReadytoRocc</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18964" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18964/hovercard">Add pre-commit hook for common misspelling check in files (#18964)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18736" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18736/hovercard">Fix changelog for Azure Provider (#18736)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potiuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potiuk">@potiuk</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18659" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18659/hovercard">Expanding docs on client auth for AzureKeyVaultBackend (#18659)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexbegg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexbegg">@alexbegg</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19062" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19062/hovercard">Static start_date and default arg cleanup for Microsoft providers example DAGs (#19062)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josh-fell/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josh-fell">@josh-fell</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-mongo/2.2.0rc1" rel="nofollow">mongo: 2.2.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19276" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19276/hovercard">#19223 add mongo_db param to MongoSensor (#19276)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bhavaniravi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bhavaniravi">@bhavaniravi</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-pagerduty/2.1.0rc1" rel="nofollow">pagerduty: 2.1.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18763" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18763/hovercard">Add standard hook fields to pagerdutyHook to make hook show up in UI (#18763)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GuidoTournois/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GuidoTournois">@GuidoTournois</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18784" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18784/hovercard">Make a separate hook for interacting with the Pagerduty Events API (#18784)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GuidoTournois/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GuidoTournois">@GuidoTournois</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-salesforce/3.3.0rc1" rel="nofollow">salesforce: 3.3.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18819" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18819/hovercard">Add SalesforceApexRestOperator (#18819)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mariotaddeucci/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mariotaddeucci">@mariotaddeucci</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-samba/3.0.1rc1" rel="nofollow">samba: 3.0.1rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18847" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18847/hovercard">Handle leading slash in samba path (#18847)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fredthomsen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fredthomsen">@fredthomsen</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/18752" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18752/hovercard">Open src and dst in binary for samba copy (#18752)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fredthomsen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fredthomsen">@fredthomsen</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-sftp/2.2.0rc1" rel="nofollow">sftp: 2.2.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18988" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18988/hovercard">SFTP hook to prefer the SSH paramiko key over the key file path (#18988)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/30blay/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/30blay">@30blay</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-snowflake/2.3.0rc1" rel="nofollow">snowflake: 2.3.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19041" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19041/hovercard">Add test_connection method for Snowflake Hook (#19041)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/msumit/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/msumit">@msumit</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18650" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18650/hovercard">Add region to Snowflake URI. (#18650)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dimberman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dimberman">@dimberman</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-ssh/2.3.0rc1" rel="nofollow">ssh: 2.3.0rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/17378" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/17378/hovercard">Refactor SSHOperator so a subclass can run many commands (#10874) (#17378)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/baolsen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/baolsen">@baolsen</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18684" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18684/hovercard">update sshtunnel version (#18684)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eladkal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eladkal">@eladkal</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/19323" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19323/hovercard">Correctly handle get_pty attribute if command passed as XComArg or template (#19323)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josh-fell/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josh-fell">@josh-fell</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-tableau/2.1.2rc1" rel="nofollow">tableau: 2.1.2rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/19064" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19064/hovercard">Remove distutils usages for Python 3.10 (#19064)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a></li>
</ul>
<h3 dir="auto">Provider <a href="https://pypi.org/project/apache-airflow-providers-trino/2.0.2rc1" rel="nofollow">trino: 2.0.2rc1</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/18791" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/18791/hovercard">Properly handle verify parameter in TrinoHook (#18791)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/danarwix/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/danarwix">@danarwix</a></li>
</ul>
<h2 dir="auto">Providers that do not need testing</h2>
<p dir="auto">Those are providers that were either doc-only or had changes that do not require testing.</p>
<ul dir="auto">
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-airbyte/2.1.1rc1" rel="nofollow">airbyte: 2.1.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-alibaba/1.0.0rc1" rel="nofollow">alibaba: 1.0.0rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-drill/1.0.1rc1" rel="nofollow">apache.drill: 1.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-druid/2.0.2rc1" rel="nofollow">apache.druid: 2.0.2rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-kylin/2.0.1rc1" rel="nofollow">apache.kylin: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-pig/2.0.1rc1" rel="nofollow">apache.pig: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-pinot/2.0.1rc1" rel="nofollow">apache.pinot: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-spark/2.0.1rc1" rel="nofollow">apache.spark: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-apache-sqoop/2.0.2rc1" rel="nofollow">apache.sqoop: 2.0.2rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-celery/2.1.0rc1" rel="nofollow">celery: 2.1.0rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-cloudant/2.0.1rc1" rel="nofollow">cloudant: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-datadog/2.0.1rc1" rel="nofollow">datadog: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-dingding/2.0.1rc1" rel="nofollow">dingding: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-discord/2.0.1rc1" rel="nofollow">discord: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-ftp/2.0.1rc1" rel="nofollow">ftp: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-grpc/2.0.1rc1" rel="nofollow">grpc: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-http/2.0.1rc1" rel="nofollow">http: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-imap/2.0.1rc1" rel="nofollow">imap: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-influxdb/1.0.0rc1" rel="nofollow">influxdb: 1.0.0rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-jira/2.0.1rc1" rel="nofollow">jira: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-microsoft-mssql/2.0.1rc1" rel="nofollow">microsoft.mssql: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-microsoft-winrm/2.0.1rc1" rel="nofollow">microsoft.winrm: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-mysql/2.1.1rc1" rel="nofollow">mysql: 2.1.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-odbc/2.0.1rc1" rel="nofollow">odbc: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-opsgenie/2.0.1rc1" rel="nofollow">opsgenie: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-oracle/2.0.1rc1" rel="nofollow">oracle: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-plexus/2.0.1rc1" rel="nofollow">plexus: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-presto/2.0.1rc1" rel="nofollow">presto: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-qubole/2.0.1rc1" rel="nofollow">qubole: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-redis/2.0.1rc1" rel="nofollow">redis: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-segment/2.0.1rc1" rel="nofollow">segment: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-sendgrid/2.0.1rc1" rel="nofollow">sendgrid: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-singularity/2.0.1rc1" rel="nofollow">singularity: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-telegram/2.0.1rc1" rel="nofollow">telegram: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-vertica/2.0.1rc1" rel="nofollow">vertica: 2.0.1rc1</a></li>
<li>Provider <a href="https://pypi.org/project/apache-airflow-providers-zendesk/2.0.1rc1" rel="nofollow">zendesk: 2.0.1rc1</a></li>
</ul>
<p dir="auto">Thanks to all who contributed to those provider's release</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sreenath-kamath/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sreenath-kamath">@sreenath-kamath</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jarfgit/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jarfgit">@jarfgit</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/frankcash/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/frankcash">@frankcash</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/deedmitrij/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/deedmitrij">@deedmitrij</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/enima2684/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/enima2684">@enima2684</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/peter-volkov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/peter-volkov">@peter-volkov</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mariotaddeucci/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mariotaddeucci">@mariotaddeucci</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potatochip/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potatochip">@potatochip</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malthe/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malthe">@malthe</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/msumit/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/msumit">@msumit</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dimberman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dimberman">@dimberman</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jameslamb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jameslamb">@jameslamb</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Brooke-white/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Brooke-white">@Brooke-white</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GuidoTournois/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GuidoTournois">@GuidoTournois</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/minu7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/minu7">@minu7</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shadrus/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shadrus">@shadrus</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ignaski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ignaski">@ignaski</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eladkal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eladkal">@eladkal</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eskarimov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eskarimov">@eskarimov</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/JavierLopezT/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/JavierLopezT">@JavierLopezT</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/keze/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/keze">@keze</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josh-fell/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josh-fell">@josh-fell</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/raphaelauv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/raphaelauv">@raphaelauv</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/blag/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blag">@blag</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Aakcht/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Aakcht">@Aakcht</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guotongfei/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guotongfei">@guotongfei</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SamWheating/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SamWheating">@SamWheating</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/danarwix/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/danarwix">@danarwix</a><br>
<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/subkanthi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/subkanthi">@subkanthi</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexbegg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexbegg">@alexbegg</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bhavaniravi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bhavaniravi">@bhavaniravi</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tnyz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tnyz">@tnyz</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Goodkat/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Goodkat">@Goodkat</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fredthomsen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fredthomsen">@fredthomsen</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SayTen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SayTen">@SayTen</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kaxil/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kaxil">@kaxil</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lwyszomi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lwyszomi">@lwyszomi</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ReadytoRocc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ReadytoRocc">@ReadytoRocc</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/baolsen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/baolsen">@baolsen</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/30blay/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/30blay">@30blay</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nathadfield/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nathadfield">@nathadfield</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/xuan616/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/xuan616">@xuan616</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/RyanSiu1995/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/RyanSiu1995">@RyanSiu1995</a></p>
<h3 dir="auto">Committer</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I acknowledge that I am a maintainer/committer of the Apache Airflow project.</li>
</ul> | 0 |
<p dir="auto">When i open a file with atom editor and try to insert the "@" symbol the editor does a horizontal text alignment instead of inserting the "@" symbol</p> | <blockquote>
<p dir="auto">Atom doesn't handle keyboards with Right Alt (i.e. AltGr). This is a very basic mistake. I have a Hungarian keyboard layout, I can only write specific keys like "|" (pipe) by pressing Right Alt (AltGr) and then W, which Atom doesn't recognize and treat like Alt-W or something?<br>
The point is there are some layouts like greek, hungarian, czech with special keys, which an EDITOR should handle the right way!!<br>
E.g. I can't write CTRL-", because it writes the number "2" instead. I think this key might be interpreted like CTRL-ALT sequence, but not sure either.<br>
Anyway, without it, it's just not an editor.<br>
Like Windows Media player; you can't pause a movie with it hitting space bar...</p>
</blockquote>
<p dir="auto">From: support/9f98abca9f4a11e3955c6445541b1a76</p> | 1 |
<p dir="auto">by <strong>daz.fuller</strong>:</p>
<pre class="notranslate">When running on a Windows environment (Win7 64bit) the following error is reported:
2013/06/13 08:22:07 unexpected header line: "21 May 2013\r"
This appears to be a problem in parse.go in the readLine function where it is only
expecting "\n" (this appears the case in a couple of other methods as well).
I've added a constant at the top of the file on my environment to set the end-of-line
characters and it appears to be working fine with that change.
Suggest that the method is modified to handle different end-of-line characters.
Alternatively, a request could be raised against the standard libraries to look at a EOL
constant being added to the "os" package?</pre> | <pre class="notranslate">The spec is unclear about what constitutes a "mention" of a variable for the
purpose of determining initialization order. There are conflicting interpretations and
implementations.
See also <a href="https://golang.org/issue/6703" rel="nofollow">issue #6703</a> (and related: 7137).</pre> | 0 |
<p dir="auto">On my Nexus 5. Open the gallery, and then go into the app two levels deep. Then, hit the Android back button enough times to get back to the OS's main launch screen. Then, bring up the app switcher and select the Gallery app from the list of backgrounded apps. Tap the gallery app.</p>
<p dir="auto">Expected: quick resume of the gallery app</p>
<p dir="auto">Actual: black screen for a few seconds. Almost feels like a resume is slower than a cold start.</p> | <p dir="auto">[I'm sure I've typed this issue in already but I'm unable to find it. Perhaps I failed to press the submit button last time.]</p>
<p dir="auto">This problem is intermittent and its symptoms are somewhat unpredictable. Sorry.</p>
<p dir="auto">If you back out of the Gallery app, wait a moment (I guess to make it more likely that it has been swapped out) and then tap on the paused app, sometimes nothing happens. Although the app's paused title bar changes from the gallery's color to gray (see below).</p>
<p dir="auto">Sometimes the app can be resumed after a second tap on the paused app. In this case the app restarts, but its state is lost. Sometimes the screen just goes dark and stays that way. The phone may appear to be hung although usually hammering on the system buttons will eventually bring it around.</p>
<p dir="auto">The problem occur in <code class="notranslate">--checked</code> and <code class="notranslate">--no-checked</code> modes.</p>
<ul dir="auto">
<li>before attempting to resume the app</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1377460/14437340/9e9ba0d6-ffd5-11e5-91df-b7d60604d242.png"><img src="https://cloud.githubusercontent.com/assets/1377460/14437340/9e9ba0d6-ffd5-11e5-91df-b7d60604d242.png" alt="screenshot" style="max-width: 100%;"></a></p>
<ul dir="auto">
<li>afterwards the app hasn't resumed, but the title color has changed:</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1377460/14437113/98e29ab0-ffd4-11e5-80aa-8aa1aef41682.png"><img src="https://cloud.githubusercontent.com/assets/1377460/14437113/98e29ab0-ffd4-11e5-80aa-8aa1aef41682.png" alt="screenshot" style="max-width: 100%;"></a></p> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto">In tag 2.0.1 the NavigationToolbar2QT includes an unchecked call to a Qt5 feature:</p>
<p dir="auto"><code class="notranslate">pm.setDevicePixelRatio(self.canvas._dpi_ratio)</code></p>
<p dir="auto"><a href="https://github.com/matplotlib/matplotlib/blob/v2.0.1/lib/matplotlib/backends/backend_qt5.py#L587-L592">https://github.com/matplotlib/matplotlib/blob/v2.0.1/lib/matplotlib/backends/backend_qt5.py#L587-L592</a></p>
<p dir="auto">This is strange, b/c it's not there in tag 2.0.0 <em>and</em> it's not there in master!</p>
<p dir="auto">I can reproduce this with a simple <code class="notranslate">plt.plot(np.random.randn(10))</code>.</p>
<p dir="auto"><code class="notranslate">AttributeError: 'PySide.QtGui.QPixmap' object has no attribute 'setDevicePixelRatio'</code></p>
<p dir="auto">Issue goes away when I revert to 2.0.0</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong><br>
Running arbitrary tests with matplotlib-2.0.1 results in<br>
AttributeError: 'QPixmap' object has no attribute 'setDevicePixelRatio'</p>
<p dir="auto">matplotlib-2.0.0 works fine</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Arbitrary test, f.i.
python histogram_demo_cumulative.py
**Actual outcome**
<!--The output produced by the above code, which may be a screenshot, console output, etc.-->
"><pre class="notranslate"><span class="pl-v">Arbitrary</span> <span class="pl-s1">test</span>, <span class="pl-s1">f</span>.<span class="pl-s1">i</span>.
<span class="pl-s1">python</span> <span class="pl-s1">histogram_demo_cumulative</span>.<span class="pl-s1">py</span>
<span class="pl-c1">**</span><span class="pl-v">Actual</span> <span class="pl-s1">outcome</span><span class="pl-c1">**</span>
<span class="pl-c1"><</span>!<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-v">The</span> <span class="pl-s1">output</span> <span class="pl-s1">produced</span> <span class="pl-s1">by</span> <span class="pl-s1">the</span> <span class="pl-s1">above</span> <span class="pl-s1">code</span>, <span class="pl-s1">which</span> <span class="pl-s1">may</span> <span class="pl-s1">be</span> <span class="pl-s1">a</span> <span class="pl-s1">screenshot</span>, <span class="pl-s1">console</span> <span class="pl-s1">output</span>, <span class="pl-s1">etc</span>.<span class="pl-c1">-</span><span class="pl-c1">-></span></pre></div>
<h1 dir="auto">If applicable, paste the console output here</h1>
<p dir="auto">`Traceback (most recent call last):<br>
File "histogram_demo_cumulative.py", line 16, in <br>
histtype='step', cumulative=True)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/pyplot.py", line 3066, in hist<br>
ax = gca()<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/pyplot.py", line 950, in gca<br>
return gcf().gca(**kwargs)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/pyplot.py", line 586, in gcf<br>
return figure()<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/pyplot.py", line 535, in figure<br>
**kwargs)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt4agg.py", line 46, in new_figure_manager<br>
return new_figure_manager_given_figure(num, thisFig)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt4agg.py", line 54, in new_figure_manager_given_figure<br>
return FigureManagerQT(canvas, num)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt5.py", line 488, in <strong>init</strong><br>
self.toolbar = self._get_toolbar(self.canvas, self.window)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt5.py", line 539, in _get_toolbar<br>
toolbar = NavigationToolbar2QT(canvas, parent, False)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt5.py", line 585, in <strong>init</strong><br>
NavigationToolbar2.<strong>init</strong>(self, canvas)<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backend_bases.py", line 2760, in <strong>init</strong><br>
self._init_toolbar()<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt5.py", line 601, in _init_toolbar<br>
a = self.addAction(self._icon(image_file + '.png'),<br>
File "/usr/local/lib/python2.7/site-packages/matplotlib-2.0.1-py2.7-linux-x86_64.egg/matplotlib/backends/backend_qt5.py", line 591, in _icon<br>
pm.setDevicePixelRatio(self.canvas._dpi_ratio)<br>
AttributeError: 'QPixmap' object has no attribute 'setDevicePixelRatio'</p>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating System: Linux</li>
<li>Matplotlib Version: 2.0.1</li>
<li>Python Version: 2.7.13</li>
<li>Jupyter Version (if applicable):</li>
<li>Other Libraries:</li>
</ul>
<p dir="auto">Installed from source</p> | 1 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.32.3]</li>
<li>Operating System: [macOS 13.3.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-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
baseURL: 'https://example.com/path', // 👈
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'], },
},
});"><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">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">baseURL</span>: <span class="pl-s">'https://example.com/path'</span><span class="pl-kos">,</span> <span class="pl-c">// 👈</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-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-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="it('should check the box using setChecked', async ({ page, baseURL }) => {
console.log(baseURL); // 👈 you'll see correct URL here
await page.goto('test');
await expect(page.url()).toBe('https://example.com/path/test'); // 👈 "path" part will be lost here
});"><pre class="notranslate"><span class="pl-en">it</span><span class="pl-kos">(</span><span class="pl-s">'should check the box using setChecked'</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> baseURL <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">baseURL</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// 👈 you'll see correct URL here</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">'test'</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">page</span><span class="pl-kos">.</span><span class="pl-en">url</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">toBe</span><span class="pl-kos">(</span><span class="pl-s">'https://example.com/path/test'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// 👈 "path" part will be lost here</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>[Run the test]</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">The path should remain; otherwise, it's impossible to test sites deployed to some "prefix folder" without hardcoding that prefix.</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">The "path" part is removed when the URL is created for navigation, like <code class="notranslate">page.goto()</code>.</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.32.1]</li>
<li>Operating System: [Windows 10]</li>
<li>Browser: [All, Chromium, Firefox, WebKit]</li>
<li>Other info:</li>
</ul>
<p dir="auto">I am running a NodeJs application inside a Docker container and within the application I launch a spawn process through an endpoint which can run all my playwright tests whenever I want in this way:</p>
<p dir="auto"><code class="notranslate">const pw_test = spawn('npx', ['playwright', 'test', `--config=tests_config_${date}.json`], { env: process.env , shell: true, detached: detach_child_process });</code></p>
<p dir="auto">The Docker image is built through a Jenkins Job and the Cointainer is launched/updated with Portainer.</p>
<p dir="auto">Everything went well for months but as the number of test grew, I thought to a way to speed up my test run. I solved by launching a Persistent Context which I can configure without any problems anymore (see this <a href="https://github.com/microsoft/playwright/issues/21750" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/21750/hovercard">issue</a> to have an idea of what I am talking about).</p>
<p dir="auto">What I am experiencing right now is that when I launch my Docker Container in my local machine the tests run and the browser Context close within seconds (or, really, few minutes..) without any problem. Instead, launching tests inside the Container in remote lead the test run to be reeeally slow in execution and the Browser Context takes too long to close. I even get these kind of messages in my reports:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45291289/229560763-ec9b65b6-7537-4aff-97c5-6018b8d5beb9.png"><img src="https://user-images.githubusercontent.com/45291289/229560763-ec9b65b6-7537-4aff-97c5-6018b8d5beb9.png" alt="Immagine 2023-04-03 174528" style="max-width: 100%;"></a></p>
<p dir="auto">As you can see, I needed to increase the test timeout to 5 minutes but even with this "workaround" the problem still persists..<br>
I also want to add that I checked that during the Chromium instance running there weren't any plug-ins active.</p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>[Navigate to the URL where my remote Node Application is running]</li>
<li>[Run the test through spawn process]</li>
<li>[Wait for the test to finish]</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">The test finish (can fail, success, break) within seconds or 1/2 minutes max (depending on how the test is big)</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">The test remains stuck and the browser Context is too slow when closing, running out of time. Consequently, videos are not even recorded (but this is normal, is just to give another proof that the context is not normally close).</p>
<p dir="auto">Unfortunately I cannot provide any repro for this problem since there are different parts of program that are taking parts here..hope that you guys have any idea of how I can solve this problem..thank you!</p> | 0 |
<pre class="notranslate">What steps will reproduce the problem?
Compiling exp/locale/collate consumes more than 200mb on 32bit platforms like arm (more
than 300 mb on amd64). The is most likely caused by the 50k line tables.go, and its ~
300k values.
Can anything be done to reduce the amount of memory consumed when compiling this package?</pre> | <p dir="auto">by <strong>huangmipi</strong>:</p>
<pre class="notranslate">After added go-sqlite3 library,
Can build program, but cant debug,
enter GDB, print value of every variable is wrong.
Envir:
go:1.1,
GDB:7.6,
os:ubuntu 11.4</pre> | 0 |
<p dir="auto">Impossible to import numpy</p>
<h3 dir="auto">Reproducing code example:</h3>
<p dir="auto">import numpy</p>
<h3 dir="auto">Error message:</h3>
<p dir="auto">Traceback (most recent call last):<br>
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/core/<strong>init</strong>.py", line 17, in <br>
from . import multiarray<br>
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/core/multiarray.py", line 14, in <br>
from . import overrides<br>
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/core/overrides.py", line 7, in <br>
from numpy.core._multiarray_umath import (<br>
ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory</p>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "", line 1, in <br>
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/<strong>init</strong>.py", line 142, in <br>
from . import core<br>
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/core/<strong>init</strong>.py", line 47, in <br>
raise ImportError(msg)<br>
ImportError:</p>
<p dir="auto">IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!</p>
<p dir="auto">Importing the numpy c-extensions failed.</p>
<ul dir="auto">
<li>
<p dir="auto">Try uninstalling and reinstalling numpy.</p>
</li>
<li>
<p dir="auto">If you have already done that, then:</p>
<ol dir="auto">
<li>Check that you expected to use Python3.7 from "/home/pi/.pyenv/versions/3.7.4/bin/python",<br>
and that you have no directories in your PATH or PYTHONPATH that can<br>
interfere with the Python and numpy version "1.17.2" you're trying to use.</li>
<li>If (1) looks fine, you can open a new issue at<br>
<a href="https://github.com/numpy/numpy/issues">https://github.com/numpy/numpy/issues</a>. Please include details on:
<ul dir="auto">
<li>how you installed Python</li>
<li>how you installed numpy</li>
<li>your operating system</li>
<li>whether or not you have multiple versions of Python installed</li>
<li>if you built from source, your compiler versions and ideally a build log</li>
</ul>
</li>
</ol>
</li>
<li>
<p dir="auto">If you're working with a numpy git repository, try <code class="notranslate">git clean -xdf</code><br>
(removes all files not under version control) and rebuild numpy.</p>
</li>
</ul>
<p dir="auto">Note: this error has many possible causes, so please don't comment on<br>
an existing issue about this - open a new one instead.</p>
<p dir="auto">Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory</p>
<h3 dir="auto">Numpy/Python version information:</h3>
<p dir="auto">Python 3.7.4<br>
numpy-1.17.2</p>
<h3 dir="auto">Additional details</h3>
<p dir="auto">Python was installed through pyenv<br>
numpy was installed through pip<br>
Raspbian GNU/Linux 9 (stretch)<br>
The only other version of Python installed is 2.7.13</p> | <p dir="auto">When i try to run a python script that uses numpy, i receive the following error:<br>
ImportError: Unable to import required dependencies.<br>
...<br>
Original error was: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27' not found (required by /usr/local/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-arm-linux-gnueabihf.so)"</p>
<h3 dir="auto">Reproducing code example:</h3>
<p dir="auto">Can be reproduced simply with this:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span></pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto">_Traceback (most recent call last):<br>
File "<pyshell#0>", line 1, in <br>
import numpy<br>
File "/usr/local/lib/python3.7/site-packages/numpy/<strong>init</strong>.py", line 142, in <br>
from . import core<br>
File "/usr/local/lib/python3.7/site-packages/numpy/core/<strong>init</strong>.py", line 47, in <br>
raise ImportError(msg)<br>
ImportError:</p>
<p dir="auto">IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!</p>
<p dir="auto">Importing the numpy c-extensions failed.</p>
<ul dir="auto">
<li>
<p dir="auto">Try uninstalling and reinstalling numpy.</p>
</li>
<li>
<p dir="auto">If you have already done that, then:</p>
<ol dir="auto">
<li>Check that you expected to use Python3.7 from "/usr/local/bin/python3.7",<br>
and that you have no directories in your PATH or PYTHONPATH that can<br>
interfere with the Python and numpy version "1.17.2" you're trying to use.</li>
<li>If (1) looks fine, you can open a new issue at<br>
<a href="https://github.com/numpy/numpy/issues">https://github.com/numpy/numpy/issues</a>. Please include details on:
<ul dir="auto">
<li>how you installed Python</li>
<li>how you installed numpy</li>
<li>your operating system</li>
<li>whether or not you have multiple versions of Python installed</li>
<li>if you built from source, your compiler versions and ideally a build log</li>
</ul>
</li>
</ol>
</li>
<li>
<p dir="auto">If you're working with a numpy git repository, try <code class="notranslate">git clean -xdf</code><br>
(removes all files not under version control) and rebuild numpy.</p>
</li>
</ul>
<p dir="auto">Note: this error has many possible causes, so please don't comment on<br>
an existing issue about this - open a new one instead.</p>
<p dir="auto">Original error was: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27' not found (required by /usr/local/lib/python3.7/site-packages/numpy/core/<em>multiarray_umath.cpython-37m-arm-linux-gnueabihf.so)</em></p>
<h3 dir="auto">Numpy/Python version information:</h3>
<p dir="auto">Unable to run the recommended command, but here is what I know about the version info:<br>
Python is 3.7 (if I import numpy on 3.5 or 2.7 it works)<br>
numpy is 1.17.2</p>
<h3 dir="auto">Additional Info</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" - how you installed Python: I'm sorry I don't remember how or know how to find out.
- how you installed numpy: tried several ways, the most recent being `sudo pip3.7 install numpy`
- your operating system: Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux
- whether or not you have multiple versions of Python installed: 2.7, 3.5, 3.7 Possibly others, I'm not sure how to tell.
- if you built from source, your compiler versions and ideally a build log: Not sure where to grab this."><pre class="notranslate"><code class="notranslate"> - how you installed Python: I'm sorry I don't remember how or know how to find out.
- how you installed numpy: tried several ways, the most recent being `sudo pip3.7 install numpy`
- your operating system: Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux
- whether or not you have multiple versions of Python installed: 2.7, 3.5, 3.7 Possibly others, I'm not sure how to tell.
- if you built from source, your compiler versions and ideally a build log: Not sure where to grab this.
</code></pre></div>
<p dir="auto">I should note that I first received this error and got "libf77blas.so.3...no such file" for the "Original error" section. I made it past that by installing some dependencies from here: <a href="https://stackoverflow.com/questions/53347759/importerror-libcblas-so-3-cannot-open-shared-object-file-no-such-file-or-dire" rel="nofollow">https://stackoverflow.com/questions/53347759/importerror-libcblas-so-3-cannot-open-shared-object-file-no-such-file-or-dire</a></p>
<p dir="auto">I apologize for the lack of details. I'm new to Linux and relatively new to Python, but I'll happily gather anything else that's needed if you can point me in the right direction.</p> | 1 |
<h3 dir="auto">Describe your issue.</h3>
<p dir="auto">This comes from failures seen in SymPy CI:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1320660371" data-permission-text="Title is private" data-url="https://github.com/sympy/sympy/issues/23847" data-hovercard-type="pull_request" data-hovercard-url="/sympy/sympy/pull/23847/hovercard" href="https://github.com/sympy/sympy/pull/23847">sympy/sympy#23847</a></p>
<p dir="auto">The release of Cython 0.29.31 means that building SciPy from source with pip fails both with the latest release SciPy 1.8.1 and also the main branch.</p>
<p dir="auto">It looks like pyproject.toml on the 1.8.x branch needs to have a better upper bound for the Cython version since it only requires <code class="notranslate"><3.0</code> which does not prevent new releases in Cython's <code class="notranslate">0.29.x</code> series from breaking the build:<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/scipy/scipy/blob/b76137f0d4fd82bd74b2e51af33af3ece44e45bc/pyproject.toml#L1-L14">scipy/pyproject.toml</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 1 to 14
in
<a data-pjax="true" class="commit-tease-sha" href="/scipy/scipy/commit/b76137f0d4fd82bd74b2e51af33af3ece44e45bc">b76137f</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="L1" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="1"></td>
<td id="LC1" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> Note that in maintenance branches, all build dependencies should</span> </td>
</tr>
<tr class="border-0">
<td id="L2" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="2"></td>
<td id="LC2" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> have an upper bound equal to the most recent already-released version</span> </td>
</tr>
<tr class="border-0">
<td id="L3" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="3"></td>
<td id="LC3" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> of the dependency. This to prevent that a future backwards-incompatible</span> </td>
</tr>
<tr class="border-0">
<td id="L4" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="4"></td>
<td id="LC4" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> release will break the source build of a SciPy release.</span> </td>
</tr>
<tr class="border-0">
<td id="L5" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="5"></td>
<td id="LC5" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> Do accept micro (bug-fix) releases. So for example, if pybind11 2.4.3 is</span> </td>
</tr>
<tr class="border-0">
<td id="L6" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="6"></td>
<td id="LC6" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> the most recent version on PyPI:</span> </td>
</tr>
<tr class="border-0">
<td id="L7" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="7"></td>
<td id="LC7" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span></span> </td>
</tr>
<tr class="border-0">
<td id="L8" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="8"></td>
<td id="LC8" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> "pybind11>=2.4.3,<2.5.0",</span> </td>
</tr>
<tr class="border-0">
<td id="L9" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="9"></td>
<td id="LC9" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> </td>
</tr>
<tr class="border-0">
<td id="L10" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="10"></td>
<td id="LC10" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> [<span class="pl-en">build-system</span>] </td>
</tr>
<tr class="border-0">
<td id="L11" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="11"></td>
<td id="LC11" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-smi">requires</span> = [ </td>
</tr>
<tr class="border-0">
<td id="L12" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="12"></td>
<td id="LC12" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>wheel<0.38.0<span class="pl-pds">"</span></span>, </td>
</tr>
<tr class="border-0">
<td id="L13" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="13"></td>
<td id="LC13" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>setuptools<60.0.0<span class="pl-pds">"</span></span>, </td>
</tr>
<tr class="border-0">
<td id="L14" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="14"></td>
<td id="LC14" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>Cython>=0.29.18,<3.0<span class="pl-pds">"</span></span>, </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<h3 dir="auto">Reproducing Code Example</h3>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ pip install -U pip setuptools wheel cython numpy
Collecting pip
Downloading pip-22.2.1-py3-none-any.whl (2.0 MB)
|████████████████████████████████| 2.0 MB 4.8 MB/s
Collecting setuptools
Downloading setuptools-63.2.0-py3-none-any.whl (1.2 MB)
|████████████████████████████████| 1.2 MB 28.2 MB/s
Collecting wheel
Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB)
Collecting cython
Downloading Cython-0.29.31-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.9 MB)
|████████████████████████████████| 1.9 MB 2.8 MB/s
Collecting numpy
Using cached numpy-1.23.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB)
Installing collected packages: pip, setuptools, wheel, cython, numpy
Attempting uninstall: pip
Found existing installation: pip 20.2.3
Uninstalling pip-20.2.3:
Successfully uninstalled pip-20.2.3
Attempting uninstall: setuptools
Found existing installation: setuptools 49.2.1
Uninstalling setuptools-49.2.1:
Successfully uninstalled setuptools-49.2.1
Successfully installed cython-0.29.31 numpy-1.23.1 pip-22.2.1 setuptools-63.2.0 wheel-0.37.1
$ pip install --no-binary scipy scipy
Collecting scipy
Downloading scipy-1.8.1.tar.gz (38.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.2/38.2 MB 8.0 MB/s eta 0:00:00
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... error
error: subprocess-exited-with-error"><pre class="notranslate">$ <span class="pl-s1">pip install -U pip setuptools wheel cython numpy</span>
<span class="pl-c1">Collecting pip</span>
<span class="pl-c1"> Downloading pip-22.2.1-py3-none-any.whl (2.0 MB)</span>
<span class="pl-c1"> |████████████████████████████████| 2.0 MB 4.8 MB/s </span>
<span class="pl-c1">Collecting setuptools</span>
<span class="pl-c1"> Downloading setuptools-63.2.0-py3-none-any.whl (1.2 MB)</span>
<span class="pl-c1"> |████████████████████████████████| 1.2 MB 28.2 MB/s </span>
<span class="pl-c1">Collecting wheel</span>
<span class="pl-c1"> Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB)</span>
<span class="pl-c1">Collecting cython</span>
<span class="pl-c1"> Downloading Cython-0.29.31-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.9 MB)</span>
<span class="pl-c1"> |████████████████████████████████| 1.9 MB 2.8 MB/s </span>
<span class="pl-c1">Collecting numpy</span>
<span class="pl-c1"> Using cached numpy-1.23.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB)</span>
<span class="pl-c1">Installing collected packages: pip, setuptools, wheel, cython, numpy</span>
<span class="pl-c1"> Attempting uninstall: pip</span>
<span class="pl-c1"> Found existing installation: pip 20.2.3</span>
<span class="pl-c1"> Uninstalling pip-20.2.3:</span>
<span class="pl-c1"> Successfully uninstalled pip-20.2.3</span>
<span class="pl-c1"> Attempting uninstall: setuptools</span>
<span class="pl-c1"> Found existing installation: setuptools 49.2.1</span>
<span class="pl-c1"> Uninstalling setuptools-49.2.1:</span>
<span class="pl-c1"> Successfully uninstalled setuptools-49.2.1</span>
<span class="pl-c1">Successfully installed cython-0.29.31 numpy-1.23.1 pip-22.2.1 setuptools-63.2.0 wheel-0.37.1</span>
$ <span class="pl-s1">pip install --no-binary scipy scipy</span>
<span class="pl-c1">Collecting scipy</span>
<span class="pl-c1"> Downloading scipy-1.8.1.tar.gz (38.2 MB)</span>
<span class="pl-c1"> ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.2/38.2 MB 8.0 MB/s eta 0:00:00</span>
<span class="pl-c1"> Installing build dependencies ... done</span>
<span class="pl-c1"> Getting requirements to build wheel ... done</span>
<span class="pl-c1"> Preparing metadata (pyproject.toml) ... error</span>
<span class="pl-c1"> error: subprocess-exited-with-error</span></pre></div>
<h3 dir="auto">Error message</h3>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ pip install --no-binary scipy scipy
Collecting scipy
Downloading scipy-1.8.1.tar.gz (38.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.2/38.2 MB 8.0 MB/s eta 0:00:00
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... error
error: subprocess-exited-with-error
× Preparing metadata (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [102 lines of output]
Running scipy/special/_generate_pyx.py
Running scipy/stats/_generate_pyx.py
Running scipy/linalg/_generate_pyx.py
Processing scipy/special/_ufuncs.pyx
Processing scipy/special/_test_round.pyx
Processing scipy/special/_ufuncs_cxx.pyx
Processing scipy/special/_ellip_harm_2.pyx
Processing scipy/special/cython_special.pyx
Processing scipy/special/_comb.pyx
Processing scipy/spatial/_voronoi.pyx
Processing scipy/spatial/_hausdorff.pyx
Processing scipy/spatial/_qhull.pyx
Processing scipy/spatial/_ckdtree.pyx
Processing scipy/spatial/transform/_rotation.pyx
Processing scipy/interpolate/_ppoly.pyx
Processing scipy/interpolate/_bspl.pyx
Processing scipy/interpolate/interpnd.pyx
Processing scipy/cluster/_vq.pyx
Processing scipy/cluster/_hierarchy.pyx
Processing scipy/cluster/_optimal_leaf_ordering.pyx
Processing scipy/_lib/messagestream.pyx
Processing scipy/_lib/_test_deprecation_call.pyx
Processing scipy/_lib/_test_deprecation_def.pyx
Processing scipy/_lib/_ccallback_c.pyx
Processing scipy/signal/_upfirdn_apply.pyx
Processing scipy/signal/_max_len_seq_inner.pyx
Processing scipy/signal/_sosfilt.pyx
Processing scipy/signal/_spectral.pyx
Processing scipy/signal/_peak_finding_utils.pyx
Processing scipy/io/matlab/_streams.pyx
Processing scipy/io/matlab/_mio5_utils.pyx
Processing scipy/io/matlab/_mio_utils.pyx
Processing scipy/stats/_stats.pyx
Processing scipy/stats/_qmc_cy.pyx
Processing scipy/stats/_biasedurn.pyx
Processing scipy/stats/_sobol.pyx
Processing scipy/stats/_boost/src/nbinom_ufunc.pyx
Processing scipy/stats/_boost/src/beta_ufunc.pyx
Error compiling Cython file:
------------------------------------------------------------
...
return np.array(result, dtype=np.int64)
@cython.wraparound(False)
@cython.boundscheck(False)
def _weightedrankedtau(ordered[:] x, ordered[:] y, intp_t[:] rank, weigher, bool additive):
^
------------------------------------------------------------
_stats.pyx:173:0: Referring to a memoryview typed argument directly in a nested closure function is not supported in Cython 0.x. Either upgrade to Cython 3, or assign the argument to a local variable and use that in the nested function.
Processing scipy/stats/_boost/src/binom_ufunc.pyx
Traceback (most recent call last):
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 317, in <module>
main()
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 313, in main
find_process_files(root_dir)
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 302, in find_process_files
for result in pool.imap_unordered(lambda args: process(*args), jobs):
File "/usr/lib/python3.8/multiprocessing/pool.py", line 868, in next
raise value
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 302, in <lambda>
for result in pool.imap_unordered(lambda args: process(*args), jobs):
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 236, in process
processor_function(fromfile, tofile, cwd=path)
File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 102, in process_pyx
raise Exception('Cython failed')
Exception: Cython failed
setup.py:486: UserWarning: Unrecognized setuptools command ('dist_info --egg-base /tmp/pip-modern-metadata-tcs7khbn'), proceeding with generating Cython sources and expanding templates
warnings.warn("Unrecognized setuptools command ('{}'), proceeding with "
Running from SciPy source directory.
Cythonizing sources
Traceback (most recent call last):
File "setup.py", line 350, in generate_cython
import pip
ModuleNotFoundError: No module named 'pip'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
main()
File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 164, in prepare_metadata_for_build_wheel
return hook(metadata_directory, config_settings)
File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 174, in prepare_metadata_for_build_wheel
self.run_setup()
File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 267, in run_setup
super(_BuildMetaLegacyBackend,
File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 158, in run_setup
exec(compile(code, __file__, 'exec'), locals())
File "setup.py", line 628, in <module>
setup_package()
File "setup.py", line 612, in setup_package
generate_cython()
File "setup.py", line 352, in generate_cython
raise RuntimeError("Running cythonize failed!")
RuntimeError: Running cythonize failed!
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details."><pre class="notranslate">$ <span class="pl-s1">pip install --no-binary scipy scipy</span>
<span class="pl-c1">Collecting scipy</span>
<span class="pl-c1"> Downloading scipy-1.8.1.tar.gz (38.2 MB)</span>
<span class="pl-c1"> ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.2/38.2 MB 8.0 MB/s eta 0:00:00</span>
<span class="pl-c1"> Installing build dependencies ... done</span>
<span class="pl-c1"> Getting requirements to build wheel ... done</span>
<span class="pl-c1"> Preparing metadata (pyproject.toml) ... error</span>
<span class="pl-c1"> error: subprocess-exited-with-error</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> × Preparing metadata (pyproject.toml) did not run successfully.</span>
<span class="pl-c1"> │ exit code: 1</span>
<span class="pl-c1"> ╰─> [102 lines of output]</span>
<span class="pl-c1"> Running scipy/special/_generate_pyx.py</span>
<span class="pl-c1"> Running scipy/stats/_generate_pyx.py</span>
<span class="pl-c1"> Running scipy/linalg/_generate_pyx.py</span>
<span class="pl-c1"> Processing scipy/special/_ufuncs.pyx</span>
<span class="pl-c1"> Processing scipy/special/_test_round.pyx</span>
<span class="pl-c1"> Processing scipy/special/_ufuncs_cxx.pyx</span>
<span class="pl-c1"> Processing scipy/special/_ellip_harm_2.pyx</span>
<span class="pl-c1"> Processing scipy/special/cython_special.pyx</span>
<span class="pl-c1"> Processing scipy/special/_comb.pyx</span>
<span class="pl-c1"> Processing scipy/spatial/_voronoi.pyx</span>
<span class="pl-c1"> Processing scipy/spatial/_hausdorff.pyx</span>
<span class="pl-c1"> Processing scipy/spatial/_qhull.pyx</span>
<span class="pl-c1"> Processing scipy/spatial/_ckdtree.pyx</span>
<span class="pl-c1"> Processing scipy/spatial/transform/_rotation.pyx</span>
<span class="pl-c1"> Processing scipy/interpolate/_ppoly.pyx</span>
<span class="pl-c1"> Processing scipy/interpolate/_bspl.pyx</span>
<span class="pl-c1"> Processing scipy/interpolate/interpnd.pyx</span>
<span class="pl-c1"> Processing scipy/cluster/_vq.pyx</span>
<span class="pl-c1"> Processing scipy/cluster/_hierarchy.pyx</span>
<span class="pl-c1"> Processing scipy/cluster/_optimal_leaf_ordering.pyx</span>
<span class="pl-c1"> Processing scipy/_lib/messagestream.pyx</span>
<span class="pl-c1"> Processing scipy/_lib/_test_deprecation_call.pyx</span>
<span class="pl-c1"> Processing scipy/_lib/_test_deprecation_def.pyx</span>
<span class="pl-c1"> Processing scipy/_lib/_ccallback_c.pyx</span>
<span class="pl-c1"> Processing scipy/signal/_upfirdn_apply.pyx</span>
<span class="pl-c1"> Processing scipy/signal/_max_len_seq_inner.pyx</span>
<span class="pl-c1"> Processing scipy/signal/_sosfilt.pyx</span>
<span class="pl-c1"> Processing scipy/signal/_spectral.pyx</span>
<span class="pl-c1"> Processing scipy/signal/_peak_finding_utils.pyx</span>
<span class="pl-c1"> Processing scipy/io/matlab/_streams.pyx</span>
<span class="pl-c1"> Processing scipy/io/matlab/_mio5_utils.pyx</span>
<span class="pl-c1"> Processing scipy/io/matlab/_mio_utils.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_stats.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_qmc_cy.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_biasedurn.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_sobol.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_boost/src/nbinom_ufunc.pyx</span>
<span class="pl-c1"> Processing scipy/stats/_boost/src/beta_ufunc.pyx</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> Error compiling Cython file:</span>
<span class="pl-c1"> ------------------------------------------------------------</span>
<span class="pl-c1"> ...</span>
<span class="pl-c1"> return np.array(result, dtype=np.int64)</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> </span>
<span class="pl-c1"> @cython.wraparound(False)</span>
<span class="pl-c1"> @cython.boundscheck(False)</span>
<span class="pl-c1"> def _weightedrankedtau(ordered[:] x, ordered[:] y, intp_t[:] rank, weigher, bool additive):</span>
<span class="pl-c1"> ^</span>
<span class="pl-c1"> ------------------------------------------------------------</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> _stats.pyx:173:0: Referring to a memoryview typed argument directly in a nested closure function is not supported in Cython 0.x. Either upgrade to Cython 3, or assign the argument to a local variable and use that in the nested function.</span>
<span class="pl-c1"> Processing scipy/stats/_boost/src/binom_ufunc.pyx</span>
<span class="pl-c1"> Traceback (most recent call last):</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 317, in <module></span>
<span class="pl-c1"> main()</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 313, in main</span>
<span class="pl-c1"> find_process_files(root_dir)</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 302, in find_process_files</span>
<span class="pl-c1"> for result in pool.imap_unordered(lambda args: process(*args), jobs):</span>
<span class="pl-c1"> File "/usr/lib/python3.8/multiprocessing/pool.py", line 868, in next</span>
<span class="pl-c1"> raise value</span>
<span class="pl-c1"> File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker</span>
<span class="pl-c1"> result = (True, func(*args, **kwds))</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 302, in <lambda></span>
<span class="pl-c1"> for result in pool.imap_unordered(lambda args: process(*args), jobs):</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 236, in process</span>
<span class="pl-c1"> processor_function(fromfile, tofile, cwd=path)</span>
<span class="pl-c1"> File "/tmp/pip-install-wnazhy0r/scipy_3ee8a876e4f54aa7bfa3d9fdba592754/tools/cythonize.py", line 102, in process_pyx</span>
<span class="pl-c1"> raise Exception('Cython failed')</span>
<span class="pl-c1"> Exception: Cython failed</span>
<span class="pl-c1"> setup.py:486: UserWarning: Unrecognized setuptools command ('dist_info --egg-base /tmp/pip-modern-metadata-tcs7khbn'), proceeding with generating Cython sources and expanding templates</span>
<span class="pl-c1"> warnings.warn("Unrecognized setuptools command ('{}'), proceeding with "</span>
<span class="pl-c1"> Running from SciPy source directory.</span>
<span class="pl-c1"> Cythonizing sources</span>
<span class="pl-c1"> Traceback (most recent call last):</span>
<span class="pl-c1"> File "setup.py", line 350, in generate_cython</span>
<span class="pl-c1"> import pip</span>
<span class="pl-c1"> ModuleNotFoundError: No module named 'pip'</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> During handling of the above exception, another exception occurred:</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> Traceback (most recent call last):</span>
<span class="pl-c1"> File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module></span>
<span class="pl-c1"> main()</span>
<span class="pl-c1"> File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main</span>
<span class="pl-c1"> json_out['return_val'] = hook(**hook_input['kwargs'])</span>
<span class="pl-c1"> File "/home/oscar/current/sympy/sympy.git/tmpvenv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 164, in prepare_metadata_for_build_wheel</span>
<span class="pl-c1"> return hook(metadata_directory, config_settings)</span>
<span class="pl-c1"> File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 174, in prepare_metadata_for_build_wheel</span>
<span class="pl-c1"> self.run_setup()</span>
<span class="pl-c1"> File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 267, in run_setup</span>
<span class="pl-c1"> super(_BuildMetaLegacyBackend,</span>
<span class="pl-c1"> File "/tmp/pip-build-env-nvuzm8iv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 158, in run_setup</span>
<span class="pl-c1"> exec(compile(code, __file__, 'exec'), locals())</span>
<span class="pl-c1"> File "setup.py", line 628, in <module></span>
<span class="pl-c1"> setup_package()</span>
<span class="pl-c1"> File "setup.py", line 612, in setup_package</span>
<span class="pl-c1"> generate_cython()</span>
<span class="pl-c1"> File "setup.py", line 352, in generate_cython</span>
<span class="pl-c1"> raise RuntimeError("Running cythonize failed!")</span>
<span class="pl-c1"> RuntimeError: Running cythonize failed!</span>
<span class="pl-c1"> [end of output]</span>
<span class="pl-c1"> </span>
<span class="pl-c1"> note: This error originates from a subprocess, and is likely not a problem with pip.</span>
<span class="pl-c1">error: metadata-generation-failed</span>
<span class="pl-c1">× Encountered error while generating package metadata.</span>
<span class="pl-c1">╰─> See above for output.</span>
<span class="pl-c1">note: This is an issue with the package mentioned above, not pip.</span>
<span class="pl-c1">hint: See above for details.</span></pre></div>
<h3 dir="auto">SciPy/NumPy/Python version information</h3>
<p dir="auto">SciPy 1.8.1 and current main, numpy 1.23.1, Any version of Python or PyPy (I think), Cython 0.29.31</p> | <p dir="auto">Cython 0.29.31 was release a few hours ago and it corresponds to our CI going red.</p>
<p dir="auto"><a href="https://github.com/cython/cython/releases/tag/0.29.31">https://github.com/cython/cython/releases/tag/0.29.31</a></p>
<p dir="auto">See for instance: <a href="https://github.com/scipy/scipy/runs/7551272609?check_suite_focus=true">https://github.com/scipy/scipy/runs/7551272609?check_suite_focus=true</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error compiling Cython file:
1453
------------------------------------------------------------
1454
...
1455
return np.array(result, dtype=np.int64)
1456
1457
1458
@cython.wraparound(False)
1459
@cython.boundscheck(False)
1460
def _weightedrankedtau(ordered[:] x, ordered[:] y, intp_t[:] rank, weigher, bool additive):
1461
^
1462
------------------------------------------------------------
1463
1464
_stats.pyx:173:0: Referring to a memoryview typed argument directly in a nested closure function is not supported in Cython 0.x. Either upgrade to Cython 3, or assign the argument to a local variable and use that in the nested function."><pre class="notranslate"><code class="notranslate">Error compiling Cython file:
1453
------------------------------------------------------------
1454
...
1455
return np.array(result, dtype=np.int64)
1456
1457
1458
@cython.wraparound(False)
1459
@cython.boundscheck(False)
1460
def _weightedrankedtau(ordered[:] x, ordered[:] y, intp_t[:] rank, weigher, bool additive):
1461
^
1462
------------------------------------------------------------
1463
1464
_stats.pyx:173:0: Referring to a memoryview typed argument directly in a nested closure function is not supported in Cython 0.x. Either upgrade to Cython 3, or assign the argument to a local variable and use that in the nested function.
</code></pre></div> | 1 |
<p dir="auto">On my application we were trying to analyze floating data.<br>
we tried to use histogram on a float field and we discovered that the "interval" field accepts only integer.<br>
but sometimes we need to analyze floating number with more precision that the integer number cannot give us. For an example if you want to find the most frequently used radio frequency, just on FM range there is a more then 10 stations between 99 to 100 if you multiply it by 10.</p>
<p dir="auto">I can resolve this problem by pre-indexing all my field with fixed factor, but its opposes a problem what if my client will want to change the factor dynamically?</p>
<p dir="auto">And that why I came to the conclusion that we have to have a factor field (like in date histogram) or maybe to enable the interval to be float number (both can be great)</p>
<p dir="auto">thank you very much,<br>
regards Raz Abadi</p> | <p dir="auto">Fork of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="20297343" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/3810" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/3810/hovercard" href="https://github.com/elastic/elasticsearch/issues/3810">#3810</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="20215776" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/3799" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/3799/hovercard" href="https://github.com/elastic/elasticsearch/issues/3799">#3799</a>. Decimal intervals would be useful for certain data types such as currencies, temperatures, lengths ...</p> | 1 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.0 (latest released)</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Debian GNU/Linux 10 (buster)</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-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sqlite==2.0.1"><pre class="notranslate"><code class="notranslate">apache-airflow-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sqlite==2.0.1
</code></pre></div>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Docker-Compose</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">docker-compose file:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="version: "2"
services:
airflow-webserver:
build: .
image: airflow
command: airflow webserver
ports:
- "8080:8080"
airflow-scheduler:
image: airflow
command: airflow scheduler
airflow-flower:
image: airflow
command: airflow celery flower
ports:
- "5555:5555"
depends_on:
- airflow-celery
- airflow-webserver
- airflow-scheduler
- airflow-worker
- airflow-broker
airflow-worker:
image: airflow
command: airflow celery worker
airflow-celery:
image: mysql:8.0.19
environment:
MYSQL_PASSWORD: ...
MYSQL_USER: ...
MYSQL_DATABASE: airflow
MYSQL_HOST: airflow-celery
airflow-broker:
image: redis:5.0.7-alpine
volumes:
dbdata:"><pre class="notranslate"><code class="notranslate">version: "2"
services:
airflow-webserver:
build: .
image: airflow
command: airflow webserver
ports:
- "8080:8080"
airflow-scheduler:
image: airflow
command: airflow scheduler
airflow-flower:
image: airflow
command: airflow celery flower
ports:
- "5555:5555"
depends_on:
- airflow-celery
- airflow-webserver
- airflow-scheduler
- airflow-worker
- airflow-broker
airflow-worker:
image: airflow
command: airflow celery worker
airflow-celery:
image: mysql:8.0.19
environment:
MYSQL_PASSWORD: ...
MYSQL_USER: ...
MYSQL_DATABASE: airflow
MYSQL_HOST: airflow-celery
airflow-broker:
image: redis:5.0.7-alpine
volumes:
dbdata:
</code></pre></div>
<p dir="auto">Dockerfile:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM python:3.8
COPY requirements.txt .
RUN pip install -U pip
RUN pip install -r requirements.txt"><pre class="notranslate"><code class="notranslate">FROM python:3.8
COPY requirements.txt .
RUN pip install -U pip
RUN pip install -r requirements.txt
</code></pre></div>
<p dir="auto">requirements.txt:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apache-airflow[celery,postgres,slack,docker,redis,mysql,http]==2.2.0
kombu==4.6.10
python-dotenv
psycopg2-binary
..."><pre class="notranslate"><code class="notranslate">apache-airflow[celery,postgres,slack,docker,redis,mysql,http]==2.2.0
kombu==4.6.10
python-dotenv
psycopg2-binary
...
</code></pre></div>
<h3 dir="auto">What happened</h3>
<p dir="auto">After updating <code class="notranslate">requirements.txt</code> file to use Airflow <code class="notranslate">2.2.0</code> instead of <code class="notranslate">2.1.4</code>, I ran:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/airflow $ docker-compose build --no-cache
~/airflow $ docker-compose up -d --force
~/airflow $ docker exec -it airflow_airflow-webserver_1 airflow db upgrade"><pre class="notranslate"><code class="notranslate">~/airflow $ docker-compose build --no-cache
~/airflow $ docker-compose up -d --force
~/airflow $ docker exec -it airflow_airflow-webserver_1 airflow db upgrade
</code></pre></div>
<p dir="auto">Which throws this exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="DB: mysql://airflow:***@airflow-celery/airflow
[2021-10-13 12:22:57,699] {db.py:823} INFO - Creating tables
INFO [alembic.runtime.migration] Context impl MySQLImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 142555e44c17 -> 7b2661a43ba3, TaskInstance keyed to DagRun
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
MySQLdb._exceptions.OperationalError: (1091, "Can't DROP 'dag_id'; check that column/key exists")
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/bin/airflow", line 8, in <module>
sys.exit(main())
File "/usr/local/lib/python3.8/site-packages/airflow/__main__.py", line 40, in main
args.func(args)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/cli_parser.py", line 48, in command
return func(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/cli.py", line 92, in wrapper
return f(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/commands/db_command.py", line 48, in upgradedb
db.upgradedb()
File "/usr/local/lib/python3.8/site-packages/airflow/utils/session.py", line 70, in wrapper
return func(*args, session=session, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/db.py", line 824, in upgradedb
command.upgrade(config, 'heads')
File "/usr/local/lib/python3.8/site-packages/alembic/command.py", line 320, in upgrade
script.run_env()
File "/usr/local/lib/python3.8/site-packages/alembic/script/base.py", line 563, in run_env
util.load_python_file(self.dir, "env.py")
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 92, in load_python_file
module = load_module_py(module_id, path)
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 108, in load_module_py
spec.loader.exec_module(module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 107, in <module>
run_migrations_online()
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 101, in run_migrations_online
context.run_migrations()
File "<string>", line 8, in run_migrations
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/environment.py", line 851, in run_migrations
self.get_context().run_migrations(**kw)
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/migration.py", line 620, in run_migrations
step.migration_fn(**kw)
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/versions/7b2661a43ba3_taskinstance_keyed_to_dagrun.py", line 140, in upgrade
batch_op.create_unique_constraint('dag_run_dag_id_run_id_key', ['dag_id', 'run_id'])
File "/usr/local/lib/python3.8/contextlib.py", line 120, in __exit__
next(self.gen)
File "/usr/local/lib/python3.8/site-packages/alembic/operations/base.py", line 374, in batch_alter_table
impl.flush()
File "/usr/local/lib/python3.8/site-packages/alembic/operations/batch.py", line 107, in flush
fn(*arg, **kw)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/mysql.py", line 150, in drop_constraint
super(MySQLImpl, self).drop_constraint(const)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 340, in drop_constraint
self._exec(schema.DropConstraint(const))
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 197, in _exec
return conn.execute(construct, multiparams)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1011, in execute
return meth(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1068, in _execute_ddl
ret = self._execute_context(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1316, in _execute_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1510, in _handle_dbapi_exception
util.raise_(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_
raise exception
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1091, "Can't DROP 'dag_id'; check that column/key exists")
[SQL: ALTER TABLE dag_run DROP INDEX dag_id]
(Background on this error at: http://sqlalche.me/e/13/e3q8)"><pre class="notranslate"><code class="notranslate">DB: mysql://airflow:***@airflow-celery/airflow
[2021-10-13 12:22:57,699] {db.py:823} INFO - Creating tables
INFO [alembic.runtime.migration] Context impl MySQLImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 142555e44c17 -> 7b2661a43ba3, TaskInstance keyed to DagRun
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
MySQLdb._exceptions.OperationalError: (1091, "Can't DROP 'dag_id'; check that column/key exists")
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/bin/airflow", line 8, in <module>
sys.exit(main())
File "/usr/local/lib/python3.8/site-packages/airflow/__main__.py", line 40, in main
args.func(args)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/cli_parser.py", line 48, in command
return func(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/cli.py", line 92, in wrapper
return f(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/commands/db_command.py", line 48, in upgradedb
db.upgradedb()
File "/usr/local/lib/python3.8/site-packages/airflow/utils/session.py", line 70, in wrapper
return func(*args, session=session, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/db.py", line 824, in upgradedb
command.upgrade(config, 'heads')
File "/usr/local/lib/python3.8/site-packages/alembic/command.py", line 320, in upgrade
script.run_env()
File "/usr/local/lib/python3.8/site-packages/alembic/script/base.py", line 563, in run_env
util.load_python_file(self.dir, "env.py")
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 92, in load_python_file
module = load_module_py(module_id, path)
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 108, in load_module_py
spec.loader.exec_module(module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 107, in <module>
run_migrations_online()
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 101, in run_migrations_online
context.run_migrations()
File "<string>", line 8, in run_migrations
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/environment.py", line 851, in run_migrations
self.get_context().run_migrations(**kw)
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/migration.py", line 620, in run_migrations
step.migration_fn(**kw)
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/versions/7b2661a43ba3_taskinstance_keyed_to_dagrun.py", line 140, in upgrade
batch_op.create_unique_constraint('dag_run_dag_id_run_id_key', ['dag_id', 'run_id'])
File "/usr/local/lib/python3.8/contextlib.py", line 120, in __exit__
next(self.gen)
File "/usr/local/lib/python3.8/site-packages/alembic/operations/base.py", line 374, in batch_alter_table
impl.flush()
File "/usr/local/lib/python3.8/site-packages/alembic/operations/batch.py", line 107, in flush
fn(*arg, **kw)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/mysql.py", line 150, in drop_constraint
super(MySQLImpl, self).drop_constraint(const)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 340, in drop_constraint
self._exec(schema.DropConstraint(const))
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 197, in _exec
return conn.execute(construct, multiparams)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1011, in execute
return meth(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1068, in _execute_ddl
ret = self._execute_context(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1316, in _execute_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1510, in _handle_dbapi_exception
util.raise_(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_
raise exception
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1091, "Can't DROP 'dag_id'; check that column/key exists")
[SQL: ALTER TABLE dag_run DROP INDEX dag_id]
(Background on this error at: http://sqlalche.me/e/13/e3q8)
</code></pre></div>
<p dir="auto">Trying to drop the index manually, gives the same output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/airflow $ docker exec -it airflow_airflow-celery_1 mysql
mysql> use airflow;
mysql> ALTER TABLE airflow.dag_run DROP INDEX dag_id;
ERROR 1091 (42000): Can't DROP 'dag_id'; check that column/key exists"><pre class="notranslate"><code class="notranslate">~/airflow $ docker exec -it airflow_airflow-celery_1 mysql
mysql> use airflow;
mysql> ALTER TABLE airflow.dag_run DROP INDEX dag_id;
ERROR 1091 (42000): Can't DROP 'dag_id'; check that column/key exists
</code></pre></div>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><code class="notranslate">airflow db upgrade</code> to not fail</p>
<h3 dir="auto">How to reproduce</h3>
<ul dir="auto">
<li>Copy the provided <code class="notranslate">docker-compose.yml</code> file content in conjunction with <code class="notranslate">Dockerfile</code> & <code class="notranslate">requirements.txt</code> with Airflow <code class="notranslate">2.1.4</code></li>
<li>Init db</li>
<li>build docker containers</li>
<li>all services should to be up & running</li>
<li>now update <code class="notranslate">requirements.txt</code> to use <code class="notranslate">2.2.0</code></li>
<li>build docker containers again</li>
<li>Run <code class="notranslate">airflow db upgrade</code> command</li>
<li>You would see error in stdout as well as <code class="notranslate">worker</code> service fails to run</li>
</ul>
<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"> 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.2.0 (latest released)</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Debian GNU/Linux 10 (buster)</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-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sqlite==2.0.1"><pre class="notranslate"><code class="notranslate">apache-airflow-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sqlite==2.0.1
</code></pre></div>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Docker-Compose</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">docker-compose file:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="version: "2"
services:
airflow-webserver:
build: .
image: airflow
command: airflow webserver
ports:
- "8080:8080"
airflow-scheduler:
image: airflow
command: airflow scheduler
airflow-flower:
image: airflow
command: airflow celery flower
ports:
- "5555:5555"
depends_on:
- airflow-celery
- airflow-webserver
- airflow-scheduler
- airflow-worker
- airflow-broker
airflow-worker:
image: airflow
command: airflow celery worker
airflow-celery:
image: mysql:8.0.19
environment:
MYSQL_PASSWORD: ...
MYSQL_USER: ...
MYSQL_DATABASE: airflow
MYSQL_HOST: airflow-celery
airflow-broker:
image: redis:5.0.7-alpine
volumes:
dbdata:"><pre class="notranslate"><code class="notranslate">version: "2"
services:
airflow-webserver:
build: .
image: airflow
command: airflow webserver
ports:
- "8080:8080"
airflow-scheduler:
image: airflow
command: airflow scheduler
airflow-flower:
image: airflow
command: airflow celery flower
ports:
- "5555:5555"
depends_on:
- airflow-celery
- airflow-webserver
- airflow-scheduler
- airflow-worker
- airflow-broker
airflow-worker:
image: airflow
command: airflow celery worker
airflow-celery:
image: mysql:8.0.19
environment:
MYSQL_PASSWORD: ...
MYSQL_USER: ...
MYSQL_DATABASE: airflow
MYSQL_HOST: airflow-celery
airflow-broker:
image: redis:5.0.7-alpine
volumes:
dbdata:
</code></pre></div>
<p dir="auto">Dockerfile:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM python:3.8
COPY requirements.txt .
RUN pip install -U pip
RUN pip install -r requirements.txt"><pre class="notranslate"><code class="notranslate">FROM python:3.8
COPY requirements.txt .
RUN pip install -U pip
RUN pip install -r requirements.txt
</code></pre></div>
<p dir="auto">requirements.txt:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apache-airflow[celery,postgres,slack,docker,redis,mysql,http]==2.2.0
kombu==4.6.10
python-dotenv
psycopg2-binary
..."><pre class="notranslate"><code class="notranslate">apache-airflow[celery,postgres,slack,docker,redis,mysql,http]==2.2.0
kombu==4.6.10
python-dotenv
psycopg2-binary
...
</code></pre></div>
<h3 dir="auto">What happened</h3>
<p dir="auto">After updating <code class="notranslate">requirements.txt</code> file to use Airflow <code class="notranslate">2.2.0</code> instead of <code class="notranslate">2.1.4</code>, I ran:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/airflow $ docker-compose build --no-cache
~/airflow $ docker-compose up -d --force
~/airflow $ docker exec -it airflow_airflow-webserver_1 airflow db upgrade"><pre class="notranslate"><code class="notranslate">~/airflow $ docker-compose build --no-cache
~/airflow $ docker-compose up -d --force
~/airflow $ docker exec -it airflow_airflow-webserver_1 airflow db upgrade
</code></pre></div>
<p dir="auto">Which throws this exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="DB: mysql://airflow:***@airflow-celery/airflow
[2021-10-13 12:22:57,699] {db.py:823} INFO - Creating tables
INFO [alembic.runtime.migration] Context impl MySQLImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 142555e44c17 -> 7b2661a43ba3, TaskInstance keyed to DagRun
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
MySQLdb._exceptions.OperationalError: (1091, "Can't DROP 'dag_id'; check that column/key exists")
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/bin/airflow", line 8, in <module>
sys.exit(main())
File "/usr/local/lib/python3.8/site-packages/airflow/__main__.py", line 40, in main
args.func(args)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/cli_parser.py", line 48, in command
return func(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/cli.py", line 92, in wrapper
return f(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/commands/db_command.py", line 48, in upgradedb
db.upgradedb()
File "/usr/local/lib/python3.8/site-packages/airflow/utils/session.py", line 70, in wrapper
return func(*args, session=session, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/db.py", line 824, in upgradedb
command.upgrade(config, 'heads')
File "/usr/local/lib/python3.8/site-packages/alembic/command.py", line 320, in upgrade
script.run_env()
File "/usr/local/lib/python3.8/site-packages/alembic/script/base.py", line 563, in run_env
util.load_python_file(self.dir, "env.py")
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 92, in load_python_file
module = load_module_py(module_id, path)
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 108, in load_module_py
spec.loader.exec_module(module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 107, in <module>
run_migrations_online()
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 101, in run_migrations_online
context.run_migrations()
File "<string>", line 8, in run_migrations
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/environment.py", line 851, in run_migrations
self.get_context().run_migrations(**kw)
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/migration.py", line 620, in run_migrations
step.migration_fn(**kw)
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/versions/7b2661a43ba3_taskinstance_keyed_to_dagrun.py", line 140, in upgrade
batch_op.create_unique_constraint('dag_run_dag_id_run_id_key', ['dag_id', 'run_id'])
File "/usr/local/lib/python3.8/contextlib.py", line 120, in __exit__
next(self.gen)
File "/usr/local/lib/python3.8/site-packages/alembic/operations/base.py", line 374, in batch_alter_table
impl.flush()
File "/usr/local/lib/python3.8/site-packages/alembic/operations/batch.py", line 107, in flush
fn(*arg, **kw)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/mysql.py", line 150, in drop_constraint
super(MySQLImpl, self).drop_constraint(const)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 340, in drop_constraint
self._exec(schema.DropConstraint(const))
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 197, in _exec
return conn.execute(construct, multiparams)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1011, in execute
return meth(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1068, in _execute_ddl
ret = self._execute_context(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1316, in _execute_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1510, in _handle_dbapi_exception
util.raise_(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_
raise exception
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1091, "Can't DROP 'dag_id'; check that column/key exists")
[SQL: ALTER TABLE dag_run DROP INDEX dag_id]
(Background on this error at: http://sqlalche.me/e/13/e3q8)"><pre class="notranslate"><code class="notranslate">DB: mysql://airflow:***@airflow-celery/airflow
[2021-10-13 12:22:57,699] {db.py:823} INFO - Creating tables
INFO [alembic.runtime.migration] Context impl MySQLImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 142555e44c17 -> 7b2661a43ba3, TaskInstance keyed to DagRun
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
MySQLdb._exceptions.OperationalError: (1091, "Can't DROP 'dag_id'; check that column/key exists")
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/bin/airflow", line 8, in <module>
sys.exit(main())
File "/usr/local/lib/python3.8/site-packages/airflow/__main__.py", line 40, in main
args.func(args)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/cli_parser.py", line 48, in command
return func(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/cli.py", line 92, in wrapper
return f(*args, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/cli/commands/db_command.py", line 48, in upgradedb
db.upgradedb()
File "/usr/local/lib/python3.8/site-packages/airflow/utils/session.py", line 70, in wrapper
return func(*args, session=session, **kwargs)
File "/usr/local/lib/python3.8/site-packages/airflow/utils/db.py", line 824, in upgradedb
command.upgrade(config, 'heads')
File "/usr/local/lib/python3.8/site-packages/alembic/command.py", line 320, in upgrade
script.run_env()
File "/usr/local/lib/python3.8/site-packages/alembic/script/base.py", line 563, in run_env
util.load_python_file(self.dir, "env.py")
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 92, in load_python_file
module = load_module_py(module_id, path)
File "/usr/local/lib/python3.8/site-packages/alembic/util/pyfiles.py", line 108, in load_module_py
spec.loader.exec_module(module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 107, in <module>
run_migrations_online()
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/env.py", line 101, in run_migrations_online
context.run_migrations()
File "<string>", line 8, in run_migrations
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/environment.py", line 851, in run_migrations
self.get_context().run_migrations(**kw)
File "/usr/local/lib/python3.8/site-packages/alembic/runtime/migration.py", line 620, in run_migrations
step.migration_fn(**kw)
File "/usr/local/lib/python3.8/site-packages/airflow/migrations/versions/7b2661a43ba3_taskinstance_keyed_to_dagrun.py", line 140, in upgrade
batch_op.create_unique_constraint('dag_run_dag_id_run_id_key', ['dag_id', 'run_id'])
File "/usr/local/lib/python3.8/contextlib.py", line 120, in __exit__
next(self.gen)
File "/usr/local/lib/python3.8/site-packages/alembic/operations/base.py", line 374, in batch_alter_table
impl.flush()
File "/usr/local/lib/python3.8/site-packages/alembic/operations/batch.py", line 107, in flush
fn(*arg, **kw)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/mysql.py", line 150, in drop_constraint
super(MySQLImpl, self).drop_constraint(const)
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 340, in drop_constraint
self._exec(schema.DropConstraint(const))
File "/usr/local/lib/python3.8/site-packages/alembic/ddl/impl.py", line 197, in _exec
return conn.execute(construct, multiparams)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1011, in execute
return meth(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1068, in _execute_ddl
ret = self._execute_context(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1316, in _execute_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1510, in _handle_dbapi_exception
util.raise_(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_
raise exception
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context
self.dialect.do_execute(
File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 608, in do_execute
cursor.execute(statement, parameters)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/usr/local/lib/python3.8/site-packages/MySQLdb/connections.py", line 259, in query
_mysql.connection.query(self, query)
sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1091, "Can't DROP 'dag_id'; check that column/key exists")
[SQL: ALTER TABLE dag_run DROP INDEX dag_id]
(Background on this error at: http://sqlalche.me/e/13/e3q8)
</code></pre></div>
<p dir="auto">Trying to drop the index manually, gives the same output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/airflow $ docker exec -it airflow_airflow-celery_1 mysql
mysql> use airflow;
mysql> ALTER TABLE airflow.dag_run DROP INDEX dag_id;
ERROR 1091 (42000): Can't DROP 'dag_id'; check that column/key exists"><pre class="notranslate"><code class="notranslate">~/airflow $ docker exec -it airflow_airflow-celery_1 mysql
mysql> use airflow;
mysql> ALTER TABLE airflow.dag_run DROP INDEX dag_id;
ERROR 1091 (42000): Can't DROP 'dag_id'; check that column/key exists
</code></pre></div>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><code class="notranslate">airflow db upgrade</code> to not fail</p>
<h3 dir="auto">How to reproduce</h3>
<ul dir="auto">
<li>Copy the provided <code class="notranslate">docker-compose.yml</code> file content in conjunction with <code class="notranslate">Dockerfile</code> & <code class="notranslate">requirements.txt</code> with Airflow <code class="notranslate">2.1.4</code></li>
<li>Init db</li>
<li>build docker containers</li>
<li>all services should to be up & running</li>
<li>now update <code class="notranslate">requirements.txt</code> to use <code class="notranslate">2.2.0</code></li>
<li>build docker containers again</li>
<li>Run <code class="notranslate">airflow db upgrade</code> command</li>
<li>You would see error in stdout as well as <code class="notranslate">worker</code> service fails to run</li>
</ul>
<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"> 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 |
<p dir="auto">Deno provides a lot of useful objects in the runtime. It is also great to see a project that is solving many of the security problems of running JavaScript.</p>
<p dir="auto">I'd like to lock things down even further so that I can use Deno for hermetic config generation.</p>
<p dir="auto">Are there plans to offer something like the vm module available in node or some other way to provide a smaller environment (i.e. no Deno.pid etc etc)?</p> | <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const blob_src = new Blob(['console.log("Worker from BLOB")'])
new Worker(URL.createObjectURL(blob_src), {type:'module'})"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">blob_src</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Blob</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'console.log("Worker from BLOB")'</span><span class="pl-kos">]</span><span class="pl-kos">)</span>
<span class="pl-k">new</span> <span class="pl-v">Worker</span><span class="pl-kos">(</span><span class="pl-c1">URL</span><span class="pl-kos">.</span><span class="pl-en">createObjectURL</span><span class="pl-kos">(</span><span class="pl-s1">blob_src</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">type</span>:<span class="pl-s">'module'</span><span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">On <code class="notranslate">deno 1.0.1 v8 8.4.300 typescript 3.9.2</code> results in the following unsupported scheme error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Uncaught Error: Unsupported scheme "blob" for module "blob:http://deno-opaque-origin/953cec0c-2344-4c5b-89ee-c9e7b4de975e". Supported schemes: [
"http",
"https",
"file",
]
"><pre class="notranslate"><code class="notranslate">error: Uncaught Error: Unsupported scheme "blob" for module "blob:http://deno-opaque-origin/953cec0c-2344-4c5b-89ee-c9e7b4de975e". Supported schemes: [
"http",
"https",
"file",
]
</code></pre></div>
<p dir="auto">Workers from Blob URLs is expected to work from what I see in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="476616326" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/2726" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/2726/hovercard" href="https://github.com/denoland/deno/issues/2726">#2726</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="477022205" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/2729" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/2729/hovercard" href="https://github.com/denoland/deno/pull/2729">#2729</a>.</p>
<p dir="auto">Can the <code class="notranslate">"blob"</code> and <code class="notranslate">"data"</code> schemes be whitelisted for Deno Workers?</p> | 1 |
<p dir="auto">Boostrap 2.3.0 doesn't compile with lessphp (v0.3.8) any more. Does anyone know a quick workaround for this issue?</p> | <p dir="auto">With latest version of mixins.less lessphp (version 0.3.8) if showing error:<br>
Fatal error: Uncaught exception 'Exception' with message 'parse error: failed at <code class="notranslate">{ .span(@index); }</code> ../less/mixins.less on line 578'</p>
<p dir="auto">There are no problems with previous versions with<br>
(~".span@{index}") { .span(<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/Index/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Index">@Index</a>); }</p> | 1 |
<p dir="auto">by <strong>coocood</strong>:</p>
<pre class="notranslate">Before filing a bug, please check whether it has been fixed since the
latest release. Search the issue tracker and check that you're running the
latest version of Go:
Run "go version" and compare against
<a href="http://golang.org/doc/devel/release.html" rel="nofollow">http://golang.org/doc/devel/release.html</a> If a newer version of Go exists,
install it and retry what you did to reproduce the problem.
Thanks.
What does 'go version' print?
go version go1.3 linux/amd64
What steps reproduce the problem?
If possible, include a link to a program on play.golang.org.
<a href="http://play.golang.org/p/PVBGNsPLN1" rel="nofollow">http://play.golang.org/p/PVBGNsPLN1</a>
What happened?
returned error is nil when dial a non-exists address.
What should have happened instead?
the error should not be nil.
Please provide any additional information below.
It happens only on Go 1.3, Go 1.2 doesn't have this issue, so I compared the source
code, and found out that this was caused by a change to "connect" method in
"net/fd_unix.go" file. So I edited this method with the old version, then
recompiled Go 1.3, the issue disappeared.</pre> | <pre class="notranslate">What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. <a href="http://play.golang.org/p/PTxGY_fgvj" rel="nofollow">http://play.golang.org/p/PTxGY_fgvj</a>
2. <a href="http://play.golang.org/p/enhRdN7Byq" rel="nofollow">http://play.golang.org/p/enhRdN7Byq</a>
3.
What is the expected output?
"process took too long"
What do you see instead?
"runtime: out of memory"
Which compiler are you using (5g, 6g, 8g, gccgo)?
6g
Which operating system are you using?
linux
Which version are you using? (run 'go version')
go version go1.2rc4 linux/amd64
Please provide any additional information below.
There's a discussion thread about this problem:
<a href="https://groups.google.com/forum/#" rel="nofollow">https://groups.google.com/forum/#</a>!topic/golang-nuts/ZMNbylnu8is</pre> | 0 |
<p dir="auto">Here's the backtrace. Let me know if the code I was compiling would be helpful, I tagged the rev locally.</p>
<p dir="auto"><code class="notranslate">rustc 1.1.0-nightly (7bd71637c 2015-05-06) (built 2015-05-06)</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ RUST_BACKTRACE=1 cargo test
Compiling dumbmath v0.1.6 (file:///home/nicholasbishop/dumbmath)
error: internal compiler error: Impl DefId { krate: 2, node: 26942 } was matchable against Obligation(predicate=Binder(TraitPredicate(<f32 as core::ops::Div<_>>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:230
stack backtrace:
1: 0x7fbee3ae6f89 - sys::backtrace::write::h89d94970ae1bc478fhs
2: 0x7fbee3aeef09 - panicking::on_panic::h314cddb0409059cbkXw
3: 0x7fbee3aaf0f2 - rt::unwind::begin_unwind_inner::hd6748515f1d9c0b2uCw
4: 0x7fbee0e85fbd - rt::unwind::begin_unwind::h9184602946677297306
5: 0x7fbee0e8667b - diagnostic::Handler::bug::h6d48c8060c15a3b4a2B
6: 0x7fbee1c36304 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h10b0cc0f4e83f0c3EuT
7: 0x7fbee1c35c2f - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h17325861492725920879
8: 0x7fbee1c1c8a5 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::hca3234a85605343cUMS
9: 0x7fbee1afacc5 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::hec5ba022f7c648beiPQ
10: 0x7fbee1c09d35 - middle::traits::project::project_type::h74992cfacc671364CwP
11: 0x7fbee1c0896b - middle::traits::project::opt_normalize_projection_type::ha8866d0a50189fbcepP
12: 0x7fbee1c0599f - middle::traits::project::project_and_unify_type::h1300a4d0fa05187d87O
13: 0x7fbee1c03970 - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h107823834106425565
14: 0x7fbee1bfb888 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hec0877a5f2e11ad0HHO
15: 0x7fbee1bfb29b - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::h301bc31d4e510c07VGO
16: 0x7fbee323d048 - check::vtable::select_fcx_obligations_where_possible::h72b84a124c3a5b40I6b
17: 0x7fbee325914a - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::h74b2cbbcdf641686cPo
18: 0x7fbee32b674e - check::op::check_binop::hba99f04615a48d79oYm
19: 0x7fbee32ec9cd - check::check_expr_with_unifier::h12689752184703274217
20: 0x7fbee3312c4b - check::check_decl_local::h28a2e7870f672b04j7r
21: 0x7fbee32c23f1 - check::check_block_with_expected::h212bdec46f615ac8pds
22: 0x7fbee32a7f36 - check::check_fn::h225bdd7ece966e55lSn
23: 0x7fbee32bde27 - check::check_bare_fn::h8fed7360af87b5cbUHn
24: 0x7fbee32c980c - check::check_method_body::h225a8a268d0d1168Ujo
25: 0x7fbee32bbd85 - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
26: 0x7fbee32bc1bf - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
27: 0x7fbee3376c4a - check_crate::closure.38730
28: 0x7fbee336ff80 - check_crate::hed85a8a5c9342eb05CC
29: 0x7fbee4035c28 - driver::phase_3_run_analysis_passes::he0b331c645c77cdbtGa
30: 0x7fbee401705c - driver::compile_input::h763ead6090436e8fQba
31: 0x7fbee40cfeb1 - run_compiler::h711c4a29f8d270a365b
32: 0x7fbee40cd702 - boxed::F.FnBox<A>::call_box::h12199818508070417299
33: 0x7fbee40cccc9 - rt::unwind::try::try_fn::h5660428370877252098
34: 0x7fbee3b62898 - rust_try_inner
35: 0x7fbee3b62885 - rust_try
36: 0x7fbee40ccf64 - boxed::F.FnBox<A>::call_box::h5514408293737026672
37: 0x7fbee3aedca1 - sys::thread::Thread::new::thread_start::hfd3ca3d51ffcfe41QIv
38: 0x7fbeddb82529 - start_thread
39: 0x7fbee374022c - __clone
40: 0x0 - <unknown>
Build failed, waiting for other jobs to finish...
error: internal compiler error: Impl DefId { krate: 2, node: 26942 } was matchable against Obligation(predicate=Binder(TraitPredicate(<f32 as core::ops::Div<_>>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:230
stack backtrace:
1: 0x7f920f378f89 - sys::backtrace::write::h89d94970ae1bc478fhs
2: 0x7f920f380f09 - panicking::on_panic::h314cddb0409059cbkXw
3: 0x7f920f3410f2 - rt::unwind::begin_unwind_inner::hd6748515f1d9c0b2uCw
4: 0x7f920c717fbd - rt::unwind::begin_unwind::h9184602946677297306
5: 0x7f920c71867b - diagnostic::Handler::bug::h6d48c8060c15a3b4a2B
6: 0x7f920d4c8304 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h10b0cc0f4e83f0c3EuT
7: 0x7f920d4c7c2f - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h17325861492725920879
8: 0x7f920d4ae8a5 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::hca3234a85605343cUMS
9: 0x7f920d38ccc5 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::hec5ba022f7c648beiPQ
10: 0x7f920d49bd35 - middle::traits::project::project_type::h74992cfacc671364CwP
11: 0x7f920d49a96b - middle::traits::project::opt_normalize_projection_type::ha8866d0a50189fbcepP
12: 0x7f920d49799f - middle::traits::project::project_and_unify_type::h1300a4d0fa05187d87O
13: 0x7f920d495970 - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h107823834106425565
14: 0x7f920d48d888 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hec0877a5f2e11ad0HHO
15: 0x7f920d48d29b - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::h301bc31d4e510c07VGO
16: 0x7f920eacf048 - check::vtable::select_fcx_obligations_where_possible::h72b84a124c3a5b40I6b
17: 0x7f920eaeb14a - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::h74b2cbbcdf641686cPo
18: 0x7f920eb4874e - check::op::check_binop::hba99f04615a48d79oYm
19: 0x7f920eb7e9cd - check::check_expr_with_unifier::h12689752184703274217
20: 0x7f920eba4c4b - check::check_decl_local::h28a2e7870f672b04j7r
21: 0x7f920eb543f1 - check::check_block_with_expected::h212bdec46f615ac8pds
22: 0x7f920eb39f36 - check::check_fn::h225bdd7ece966e55lSn
23: 0x7f920eb4fe27 - check::check_bare_fn::h8fed7360af87b5cbUHn
24: 0x7f920eb5b80c - check::check_method_body::h225a8a268d0d1168Ujo
25: 0x7f920eb4dd85 - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
26: 0x7f920eb4e1bf - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
27: 0x7f920ec08c4a - check_crate::closure.38730
28: 0x7f920ec01f80 - check_crate::hed85a8a5c9342eb05CC
29: 0x7f920f8c7c28 - driver::phase_3_run_analysis_passes::he0b331c645c77cdbtGa
30: 0x7f920f8a905c - driver::compile_input::h763ead6090436e8fQba
31: 0x7f920f961eb1 - run_compiler::h711c4a29f8d270a365b
32: 0x7f920f95f702 - boxed::F.FnBox<A>::call_box::h12199818508070417299
33: 0x7f920f95ecc9 - rt::unwind::try::try_fn::h5660428370877252098
34: 0x7f920f3f4898 - rust_try_inner
35: 0x7f920f3f4885 - rust_try
36: 0x7f920f95ef64 - boxed::F.FnBox<A>::call_box::h5514408293737026672
37: 0x7f920f37fca1 - sys::thread::Thread::new::thread_start::hfd3ca3d51ffcfe41QIv
38: 0x7f9209414529 - start_thread
39: 0x7f920efd222c - __clone
40: 0x0 - <unknown>
Could not compile `dumbmath`."><pre class="notranslate"><code class="notranslate">$ RUST_BACKTRACE=1 cargo test
Compiling dumbmath v0.1.6 (file:///home/nicholasbishop/dumbmath)
error: internal compiler error: Impl DefId { krate: 2, node: 26942 } was matchable against Obligation(predicate=Binder(TraitPredicate(<f32 as core::ops::Div<_>>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:230
stack backtrace:
1: 0x7fbee3ae6f89 - sys::backtrace::write::h89d94970ae1bc478fhs
2: 0x7fbee3aeef09 - panicking::on_panic::h314cddb0409059cbkXw
3: 0x7fbee3aaf0f2 - rt::unwind::begin_unwind_inner::hd6748515f1d9c0b2uCw
4: 0x7fbee0e85fbd - rt::unwind::begin_unwind::h9184602946677297306
5: 0x7fbee0e8667b - diagnostic::Handler::bug::h6d48c8060c15a3b4a2B
6: 0x7fbee1c36304 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h10b0cc0f4e83f0c3EuT
7: 0x7fbee1c35c2f - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h17325861492725920879
8: 0x7fbee1c1c8a5 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::hca3234a85605343cUMS
9: 0x7fbee1afacc5 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::hec5ba022f7c648beiPQ
10: 0x7fbee1c09d35 - middle::traits::project::project_type::h74992cfacc671364CwP
11: 0x7fbee1c0896b - middle::traits::project::opt_normalize_projection_type::ha8866d0a50189fbcepP
12: 0x7fbee1c0599f - middle::traits::project::project_and_unify_type::h1300a4d0fa05187d87O
13: 0x7fbee1c03970 - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h107823834106425565
14: 0x7fbee1bfb888 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hec0877a5f2e11ad0HHO
15: 0x7fbee1bfb29b - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::h301bc31d4e510c07VGO
16: 0x7fbee323d048 - check::vtable::select_fcx_obligations_where_possible::h72b84a124c3a5b40I6b
17: 0x7fbee325914a - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::h74b2cbbcdf641686cPo
18: 0x7fbee32b674e - check::op::check_binop::hba99f04615a48d79oYm
19: 0x7fbee32ec9cd - check::check_expr_with_unifier::h12689752184703274217
20: 0x7fbee3312c4b - check::check_decl_local::h28a2e7870f672b04j7r
21: 0x7fbee32c23f1 - check::check_block_with_expected::h212bdec46f615ac8pds
22: 0x7fbee32a7f36 - check::check_fn::h225bdd7ece966e55lSn
23: 0x7fbee32bde27 - check::check_bare_fn::h8fed7360af87b5cbUHn
24: 0x7fbee32c980c - check::check_method_body::h225a8a268d0d1168Ujo
25: 0x7fbee32bbd85 - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
26: 0x7fbee32bc1bf - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
27: 0x7fbee3376c4a - check_crate::closure.38730
28: 0x7fbee336ff80 - check_crate::hed85a8a5c9342eb05CC
29: 0x7fbee4035c28 - driver::phase_3_run_analysis_passes::he0b331c645c77cdbtGa
30: 0x7fbee401705c - driver::compile_input::h763ead6090436e8fQba
31: 0x7fbee40cfeb1 - run_compiler::h711c4a29f8d270a365b
32: 0x7fbee40cd702 - boxed::F.FnBox<A>::call_box::h12199818508070417299
33: 0x7fbee40cccc9 - rt::unwind::try::try_fn::h5660428370877252098
34: 0x7fbee3b62898 - rust_try_inner
35: 0x7fbee3b62885 - rust_try
36: 0x7fbee40ccf64 - boxed::F.FnBox<A>::call_box::h5514408293737026672
37: 0x7fbee3aedca1 - sys::thread::Thread::new::thread_start::hfd3ca3d51ffcfe41QIv
38: 0x7fbeddb82529 - start_thread
39: 0x7fbee374022c - __clone
40: 0x0 - <unknown>
Build failed, waiting for other jobs to finish...
error: internal compiler error: Impl DefId { krate: 2, node: 26942 } was matchable against Obligation(predicate=Binder(TraitPredicate(<f32 as core::ops::Div<_>>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:230
stack backtrace:
1: 0x7f920f378f89 - sys::backtrace::write::h89d94970ae1bc478fhs
2: 0x7f920f380f09 - panicking::on_panic::h314cddb0409059cbkXw
3: 0x7f920f3410f2 - rt::unwind::begin_unwind_inner::hd6748515f1d9c0b2uCw
4: 0x7f920c717fbd - rt::unwind::begin_unwind::h9184602946677297306
5: 0x7f920c71867b - diagnostic::Handler::bug::h6d48c8060c15a3b4a2B
6: 0x7f920d4c8304 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h10b0cc0f4e83f0c3EuT
7: 0x7f920d4c7c2f - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h17325861492725920879
8: 0x7f920d4ae8a5 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::hca3234a85605343cUMS
9: 0x7f920d38ccc5 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::hec5ba022f7c648beiPQ
10: 0x7f920d49bd35 - middle::traits::project::project_type::h74992cfacc671364CwP
11: 0x7f920d49a96b - middle::traits::project::opt_normalize_projection_type::ha8866d0a50189fbcepP
12: 0x7f920d49799f - middle::traits::project::project_and_unify_type::h1300a4d0fa05187d87O
13: 0x7f920d495970 - middle::infer::InferCtxt<'a, 'tcx>::commit_if_ok::h107823834106425565
14: 0x7f920d48d888 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hec0877a5f2e11ad0HHO
15: 0x7f920d48d29b - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::h301bc31d4e510c07VGO
16: 0x7f920eacf048 - check::vtable::select_fcx_obligations_where_possible::h72b84a124c3a5b40I6b
17: 0x7f920eaeb14a - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::h74b2cbbcdf641686cPo
18: 0x7f920eb4874e - check::op::check_binop::hba99f04615a48d79oYm
19: 0x7f920eb7e9cd - check::check_expr_with_unifier::h12689752184703274217
20: 0x7f920eba4c4b - check::check_decl_local::h28a2e7870f672b04j7r
21: 0x7f920eb543f1 - check::check_block_with_expected::h212bdec46f615ac8pds
22: 0x7f920eb39f36 - check::check_fn::h225bdd7ece966e55lSn
23: 0x7f920eb4fe27 - check::check_bare_fn::h8fed7360af87b5cbUHn
24: 0x7f920eb5b80c - check::check_method_body::h225a8a268d0d1168Ujo
25: 0x7f920eb4dd85 - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
26: 0x7f920eb4e1bf - check::CheckItemBodiesVisitor<'a, 'tcx>.Visitor<'tcx>::visit_item::hb0162b7f82578cf4XEn
27: 0x7f920ec08c4a - check_crate::closure.38730
28: 0x7f920ec01f80 - check_crate::hed85a8a5c9342eb05CC
29: 0x7f920f8c7c28 - driver::phase_3_run_analysis_passes::he0b331c645c77cdbtGa
30: 0x7f920f8a905c - driver::compile_input::h763ead6090436e8fQba
31: 0x7f920f961eb1 - run_compiler::h711c4a29f8d270a365b
32: 0x7f920f95f702 - boxed::F.FnBox<A>::call_box::h12199818508070417299
33: 0x7f920f95ecc9 - rt::unwind::try::try_fn::h5660428370877252098
34: 0x7f920f3f4898 - rust_try_inner
35: 0x7f920f3f4885 - rust_try
36: 0x7f920f95ef64 - boxed::F.FnBox<A>::call_box::h5514408293737026672
37: 0x7f920f37fca1 - sys::thread::Thread::new::thread_start::hfd3ca3d51ffcfe41QIv
38: 0x7f9209414529 - start_thread
39: 0x7f920efd222c - __clone
40: 0x0 - <unknown>
Could not compile `dumbmath`.
</code></pre></div> | <p dir="auto">I got an internal compiler error when <code class="notranslate">cargo test</code>ing my code, and I was unfortunately unable to reproduce on a small sample. The code is <a href="https://github.com/honzasp/spiral/tree/bf84c70e067a19c9da20cf1c088f304dd159e8df">here on Github</a>, to reproduce the error, change the literal on <a href="https://github.com/honzasp/spiral/blob/bf84c70e067a19c9da20cf1c088f304dd159e8df/src/spiral/to_spine.rs#L642">one line in test</a> from <code class="notranslate">42.0</code> to <code class="notranslate">42</code>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc --version --verbose
rustc 1.0.0-nightly (522d09dfe 2015-02-19) (built 2015-02-21)
binary: rustc
commit-hash: 522d09dfecbeca1595f25ac58c6d0178bbd21d7d
commit-date: 2015-02-19
build-date: 2015-02-21
host: i686-unknown-linux-gnu
release: 1.0.0-nightly
$ RUST_BACKTRACE=1 cargo test --verbose
Compiling spiral v0.0.1 (file:///[...]/spiral)
Running `rustc src/main.rs --crate-name spiral --crate-type bin -g --test -C metadata=1ade813d3d860ac1 -C extra-filename=-1ade813d3d860ac1 --out-dir [...]/spiral/target --emit=dep-info,link -L dependency=[...]/spiral/target -L dependency=[...]/spiral/target/deps`
error: internal compiler error: Impl DefId { krate: 2, node: 74181 } was matchable against Obligation(predicate=Binder(TraitPredicate(core::cmp::PartialEq<_>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:189
stack backtrace:
1: 0xb7231280 - sys::backtrace::write::hb58c665617e5cee2KlC
2: 0xb725b8b0 - panicking::on_panic::hd4d4fc652390cdd8tXL
3: 0xb7195ac0 - rt::unwind::begin_unwind_inner::h6797c7a781aac698RBL
4: 0xb5656fd0 - rt::unwind::begin_unwind::h13117811778590822301
5: 0xb5657800 - diagnostic::Handler::bug::h0b9167776bd8dc1aw4E
6: 0xb61b5310 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h7f3f2e654c4ffad9kHU
7: 0xb61b4c30 - middle::infer::InferCtxt<'a, 'tcx>::try::h13523729267676866609
8: 0xb619dd90 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::ha4efb7af28b19263S8T
9: 0xb61784f0 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::h5394e35b0e7c70a6lhS
10: 0xb6174160 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hbef8233dc9336219B0P
11: 0xb6173ac0 - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::hbd71b9b88c61613cHZP
12: 0xb6cdddc0 - check::vtable::select_fcx_obligations_where_possible::hffd3ec74dffa624eVRb
13: 0xb6d1a6f0 - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::he1da80c3c9c1dda2rJo
14: 0xb6cca360 - check::structurally_resolved_type::hb6535b94e7bbe37bNPt
15: 0xb6e00220 - check::check_expr_with_unifier::h9614455191220309796
16: 0xb6dbad90 - check::check_expr_with_unifier::check_binop::hbf8de0ab08b2ba09JMq
17: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
18: 0xb6dd9240 - check::check_expr_with_unifier::h3884107362083173097
19: 0xb6dbad90 - check::check_expr_with_unifier::check_binop::hbf8de0ab08b2ba09JMq
20: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
21: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
22: 0xb6dd9240 - check::check_expr_with_unifier::h3884107362083173097
23: 0xb6dd0200 - check::check_expr_with_unifier::check_then_else::h483da0d6a4f3eab2MEq
24: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
25: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
26: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
27: 0xb6ccafe0 - check::_match::check_match::closure.29042
28: 0xb6ccac10 - check::_match::check_match::h77807f1365a779d3V1a
29: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
30: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
31: 0xb6df9ad0 - check::check_expr_with_unifier::h14838318111108599859
32: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
33: 0xb6d85a80 - check::check_fn::h9733b23b5bb31869JKn
34: 0xb6da3700 - check::check_bare_fn::hc0a904b0aabec0a4Wzn
35: 0xb6d9aa00 - check::check_item::heaa17bb09891b8a9nTn
36: 0xb6da19f0 - visit::walk_item::h334270929839752142
37: 0xb6da19f0 - visit::walk_item::h334270929839752142
38: 0xb6da19f0 - visit::walk_item::h334270929839752142
39: 0xb6e7f750 - check_crate::closure.35867
40: 0xb6e78b60 - check_crate::h74f1efb9c9ad0cecVjC
41: 0xb769c480 - driver::phase_3_run_analysis_passes::ha81485be033381d8gHa
42: 0xb7680c20 - driver::compile_input::h55e2c5089100dcc0Gba
43: 0xb7760430 - run_compiler::h7c1df0ae32ef6a57Zbc
44: 0xb775e810 - thunk::F.Invoke<A, R>::invoke::h4956589150906656218
45: 0xb775d680 - rt::unwind::try::try_fn::h3108213307196454525
46: 0xb72d5b30 - rust_try_inner
47: 0xb72d5b00 - rust_try
48: 0xb775d9b0 - thunk::F.Invoke<A, R>::invoke::h9387302087009601825
49: 0xb72474c0 - sys::thread::thread_start::hb380b1da46a95e5393G
50: 0xb2f29ea0 - start_thread
51: 0xb7049502 - clone
52: 0x0 - <unknown>
Could not compile `spiral`.
Caused by:
Process didn't exit successfully: `rustc src/main.rs --crate-name spiral --crate-type bin -g --test -C metadata=1ade813d3d860ac1 -C extra-filename=-1ade813d3d860ac1 --out-dir [...]/spiral/target --emit=dep-info,link -L dependency=[...]/spiral/target -L dependency=[...]/spiral/target/deps` (status=101)"><pre class="notranslate"><code class="notranslate">$ rustc --version --verbose
rustc 1.0.0-nightly (522d09dfe 2015-02-19) (built 2015-02-21)
binary: rustc
commit-hash: 522d09dfecbeca1595f25ac58c6d0178bbd21d7d
commit-date: 2015-02-19
build-date: 2015-02-21
host: i686-unknown-linux-gnu
release: 1.0.0-nightly
$ RUST_BACKTRACE=1 cargo test --verbose
Compiling spiral v0.0.1 (file:///[...]/spiral)
Running `rustc src/main.rs --crate-name spiral --crate-type bin -g --test -C metadata=1ade813d3d860ac1 -C extra-filename=-1ade813d3d860ac1 --out-dir [...]/spiral/target --emit=dep-info,link -L dependency=[...]/spiral/target -L dependency=[...]/spiral/target/deps`
error: internal compiler error: Impl DefId { krate: 2, node: 74181 } was matchable against Obligation(predicate=Binder(TraitPredicate(core::cmp::PartialEq<_>)),depth=1) but now is not
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:189
stack backtrace:
1: 0xb7231280 - sys::backtrace::write::hb58c665617e5cee2KlC
2: 0xb725b8b0 - panicking::on_panic::hd4d4fc652390cdd8tXL
3: 0xb7195ac0 - rt::unwind::begin_unwind_inner::h6797c7a781aac698RBL
4: 0xb5656fd0 - rt::unwind::begin_unwind::h13117811778590822301
5: 0xb5657800 - diagnostic::Handler::bug::h0b9167776bd8dc1aw4E
6: 0xb61b5310 - middle::traits::select::SelectionContext<'cx, 'tcx>::rematch_impl::h7f3f2e654c4ffad9kHU
7: 0xb61b4c30 - middle::infer::InferCtxt<'a, 'tcx>::try::h13523729267676866609
8: 0xb619dd90 - middle::traits::select::SelectionContext<'cx, 'tcx>::confirm_candidate::ha4efb7af28b19263S8T
9: 0xb61784f0 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::h5394e35b0e7c70a6lhS
10: 0xb6174160 - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hbef8233dc9336219B0P
11: 0xb6173ac0 - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::hbd71b9b88c61613cHZP
12: 0xb6cdddc0 - check::vtable::select_fcx_obligations_where_possible::hffd3ec74dffa624eVRb
13: 0xb6d1a6f0 - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::he1da80c3c9c1dda2rJo
14: 0xb6cca360 - check::structurally_resolved_type::hb6535b94e7bbe37bNPt
15: 0xb6e00220 - check::check_expr_with_unifier::h9614455191220309796
16: 0xb6dbad90 - check::check_expr_with_unifier::check_binop::hbf8de0ab08b2ba09JMq
17: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
18: 0xb6dd9240 - check::check_expr_with_unifier::h3884107362083173097
19: 0xb6dbad90 - check::check_expr_with_unifier::check_binop::hbf8de0ab08b2ba09JMq
20: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
21: 0xb6df3370 - check::check_expr_with_unifier::h6092115828992963581
22: 0xb6dd9240 - check::check_expr_with_unifier::h3884107362083173097
23: 0xb6dd0200 - check::check_expr_with_unifier::check_then_else::h483da0d6a4f3eab2MEq
24: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
25: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
26: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
27: 0xb6ccafe0 - check::_match::check_match::closure.29042
28: 0xb6ccac10 - check::_match::check_match::h77807f1365a779d3V1a
29: 0xb6decc20 - check::check_expr_with_unifier::h17365000147061483630
30: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
31: 0xb6df9ad0 - check::check_expr_with_unifier::h14838318111108599859
32: 0xb6da6d80 - check::check_block_with_expected::hf29cd5d4f1823991zys
33: 0xb6d85a80 - check::check_fn::h9733b23b5bb31869JKn
34: 0xb6da3700 - check::check_bare_fn::hc0a904b0aabec0a4Wzn
35: 0xb6d9aa00 - check::check_item::heaa17bb09891b8a9nTn
36: 0xb6da19f0 - visit::walk_item::h334270929839752142
37: 0xb6da19f0 - visit::walk_item::h334270929839752142
38: 0xb6da19f0 - visit::walk_item::h334270929839752142
39: 0xb6e7f750 - check_crate::closure.35867
40: 0xb6e78b60 - check_crate::h74f1efb9c9ad0cecVjC
41: 0xb769c480 - driver::phase_3_run_analysis_passes::ha81485be033381d8gHa
42: 0xb7680c20 - driver::compile_input::h55e2c5089100dcc0Gba
43: 0xb7760430 - run_compiler::h7c1df0ae32ef6a57Zbc
44: 0xb775e810 - thunk::F.Invoke<A, R>::invoke::h4956589150906656218
45: 0xb775d680 - rt::unwind::try::try_fn::h3108213307196454525
46: 0xb72d5b30 - rust_try_inner
47: 0xb72d5b00 - rust_try
48: 0xb775d9b0 - thunk::F.Invoke<A, R>::invoke::h9387302087009601825
49: 0xb72474c0 - sys::thread::thread_start::hb380b1da46a95e5393G
50: 0xb2f29ea0 - start_thread
51: 0xb7049502 - clone
52: 0x0 - <unknown>
Could not compile `spiral`.
Caused by:
Process didn't exit successfully: `rustc src/main.rs --crate-name spiral --crate-type bin -g --test -C metadata=1ade813d3d860ac1 -C extra-filename=-1ade813d3d860ac1 --out-dir [...]/spiral/target --emit=dep-info,link -L dependency=[...]/spiral/target -L dependency=[...]/spiral/target/deps` (status=101)
</code></pre></div>
<p dir="auto">I am sorry for such a crude report, but I could not come with a better sample, as the origin of the error is a bit unclear to me.</p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type MyDatabaseTable struct {
SomeDescription string `db:"some_description" json:"some_description"`
}"><pre class="notranslate"><code class="notranslate">type MyDatabaseTable struct {
SomeDescription string `db:"some_description" json:"some_description"`
}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type MyDatabaseTable struct {
SomeDescription string `db, json:"some_description"`
}"><pre class="notranslate"><code class="notranslate">type MyDatabaseTable struct {
SomeDescription string `db, json:"some_description"`
}
</code></pre></div>
<p dir="auto">To make it consistent with the <code class="notranslate">:=</code> and <code class="notranslate">=</code> operator when assigning variables. I think it's a common case to have for example a db and json tag that have the same value.</p>
<p dir="auto"><a href="http://play.golang.org/p/Tva1Cpulrh" rel="nofollow">http://play.golang.org/p/Tva1Cpulrh</a></p> | <p dir="auto">The builder has little to say:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="signal: segmentation fault (core dumped)
FAIL image/draw 0.367s"><pre class="notranslate"><code class="notranslate">signal: segmentation fault (core dumped)
FAIL image/draw 0.367s
</code></pre></div>
<p dir="auto">Appears to be independent of other failures, will investigate tomorrow.</p> | 0 |
<p dir="auto">matplotlib v2.0.0rc1, Python 3.5, OSX</p>
<p dir="auto">upgraded via conda over standard anaconda installation</p>
<p dir="auto"><code class="notranslate">%matplotlib notebook</code></p>
<p dir="auto">fails with an error message:</p>
<p dir="auto"><code class="notranslate">Incompatible library version: _png.cpython-35m-darwin.so requires version 43.0.0 or later, but libpng16.16.dylib provides version 39.0.0</code></p>
<p dir="auto">Resolved via: <code class="notranslate">conda upgrade libpng</code></p>
<p dir="auto">Stackoverflow suggests its an occasional issue - the last answer <a href="http://stackoverflow.com/questions/28124359/error-with-homebrew-opencv-libpng" rel="nofollow">here</a> links it to anaconda</p>
<p dir="auto">May or may not be a matplotlib installer concern</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">Matplotlib segfaults when creating a figure when used in combination with the standard multiprocessing library.</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 multiprocessing as mp
import matplotlib.pyplot as plt
def plot():
fig = plt.figure()
def main(nprocs=2):
worker = mp.Process(target=plot)
worker.start()
worker.join()
if worker.exitcode < 0:
print("Error: %s exited with error code %i." % (worker.__str__(), worker.exitcode))
if __name__ == "__main__":
main()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">multiprocessing</span> <span class="pl-k">as</span> <span class="pl-s1">mp</span>
<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">def</span> <span class="pl-en">plot</span>():
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-k">def</span> <span class="pl-en">main</span>(<span class="pl-s1">nprocs</span><span class="pl-c1">=</span><span class="pl-c1">2</span>):
<span class="pl-s1">worker</span> <span class="pl-c1">=</span> <span class="pl-s1">mp</span>.<span class="pl-v">Process</span>(<span class="pl-s1">target</span><span class="pl-c1">=</span><span class="pl-s1">plot</span>)
<span class="pl-s1">worker</span>.<span class="pl-en">start</span>()
<span class="pl-s1">worker</span>.<span class="pl-en">join</span>()
<span class="pl-k">if</span> <span class="pl-s1">worker</span>.<span class="pl-s1">exitcode</span> <span class="pl-c1"><</span> <span class="pl-c1">0</span>:
<span class="pl-en">print</span>(<span class="pl-s">"Error: %s exited with error code %i."</span> <span class="pl-c1">%</span> (<span class="pl-s1">worker</span>.<span class="pl-en">__str__</span>(), <span class="pl-s1">worker</span>.<span class="pl-s1">exitcode</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-en">main</span>()</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto">All processes exit with code -11, <code class="notranslate">SYSSEGV</code></p>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">I've figured out that creating a figure like this isn't expected to work with the GUI backend on. Putting:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib
matplotlib.use('agg')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>
<span class="pl-s1">matplotlib</span>.<span class="pl-en">use</span>(<span class="pl-s">'agg'</span>)</pre></div>
<p dir="auto">before the other imports fixes the issue. It's understandable that you can't create multiple instances of the GUI on different processes, however it seems to me an exception should be thrown rather than a segfault.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating System: macOS 10.12.5</li>
<li>Matplotlib Version: 2.0.2</li>
<li>Python Version: 2.7.13, 3.6.1</li>
<li>Other Libraries: multiprocessing</li>
</ul>
<p dir="auto">Matplotlib was installed from Conda, on the <code class="notranslate">conda-forge</code> stream.</p> | 0 |
<p dir="auto">Hello,</p>
<p dir="auto">I've stumbled onto a behavior that causes performance problems on large datasets: When creating a multiindex with second level being a DateTime64 col, and then doing a <code class="notranslate">.loc[('val1', TimeStamp('val2'),)]</code> to get at particular value, pandas coerces (via _box_func, called from <strong>iter</strong>) all values in that particular column to TimeStamp dtype. This is done only on first access, but affect performance quite heavily since the op is O(n).</p>
<p dir="auto">However, when chaining the same op (or calling it via multi-level <code class="notranslate">.xs</code>, this behavior is not exhibited. It is not a viable workaround however because doing so introduces an extra call to getitem per each level of multiindex.</p>
<p dir="auto">Is there a workaround for this or what am i doing wrong?<br>
In essence, given a df with unique multiindex, i want to get to a particular row given values for each level of the index.</p>
<p dir="auto">Repro:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df = <dataframe with: [colA:string, colB:datetime64, colC:numeric with 1,000,000 rows>
gr = df.groupby(('colA', 'colB',))
ag = gr.aggregate({'colC':'sum'})
path = ('one', pd.TimeStamp('2015-01-01 01:02:03'),)
ag.loc[path] # << first call iterates over entire dataset doing the conversion, and is slow
ag.loc[path] # << second call is very quick
ag.xs(path, levels=('colA','colB',)) # << this takes a different code path but does an extra call to getitem, making it slower."><pre class="notranslate"><code class="notranslate">df = <dataframe with: [colA:string, colB:datetime64, colC:numeric with 1,000,000 rows>
gr = df.groupby(('colA', 'colB',))
ag = gr.aggregate({'colC':'sum'})
path = ('one', pd.TimeStamp('2015-01-01 01:02:03'),)
ag.loc[path] # << first call iterates over entire dataset doing the conversion, and is slow
ag.loc[path] # << second call is very quick
ag.xs(path, levels=('colA','colB',)) # << this takes a different code path but does an extra call to getitem, making it slower.
</code></pre></div>
<p dir="auto">Other things:</p>
<ul dir="auto">
<li>padding numpy.datetime64 into the path tuple instead of timestamp doesnt help</li>
<li>specifiying axis for loc doesn't help</li>
</ul> | <p dir="auto">The <code class="notranslate">drop_duplicates()</code> function in Python 3 is broken. Take the following example snippet:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import pandas as pd
raw_data = {'x': [7,6,3,3,4,8,0],'y': [0,6,5,5,9,1,2]}
df = pd.DataFrame(raw_data, columns = ['x', 'y'])
print("Before:", df)
df = df.drop_duplicates()
print("After:", df)"><pre class="notranslate"><code class="notranslate">import pandas as pd
raw_data = {'x': [7,6,3,3,4,8,0],'y': [0,6,5,5,9,1,2]}
df = pd.DataFrame(raw_data, columns = ['x', 'y'])
print("Before:", df)
df = df.drop_duplicates()
print("After:", df)
</code></pre></div>
<p dir="auto">When run under python 2, the results are correct, but when running under python 3, pandas removes <code class="notranslate">6,6</code> from the frame, which is a completely unique row. When using this function with large CSV files, it causes thousands of lines of unique data loss.</p>
<p dir="auto">See:<br>
<a href="http://stackoverflow.com/questions/33224356/why-is-pandas-dropping-unique-rows" rel="nofollow">http://stackoverflow.com/questions/33224356/why-is-pandas-dropping-unique-rows</a></p> | 0 |
<p dir="auto">Hello,<br>
today, I was upgrading deno with <code class="notranslate">deno upgrade</code> and my antivirus (Avast) made popups. One of them said something like <em>We've protected <strong>deno.exe</strong> because it was acting suspiciously.</em> and <em>Threat blocked. We've blocked <strong>UNP244220764.TMP</strong> because we've founded that it's infected by <strong>IDP.HELU.PSD11</strong></em> (I don't have Avast in english so it can be slightly different).<br>
Can someone explain me what's going on? Is deno virus or not?<br>
Thanks</p> | <p dir="auto">I received an alert from the Avast antivirus during the upgrade of deno (from version 1.0.0 to version 1.0.1).<br>
I ran the command 'deno upgrade' from the PowerShell terminal on Windows 10 SO.</p>
<p dir="auto">The alert says that the deno.exe was infected with IDP.HELU.PSD11</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/26843533/82517183-f87e2080-9af2-11ea-8e31-38bde09235ef.png"><img src="https://user-images.githubusercontent.com/26843533/82517183-f87e2080-9af2-11ea-8e31-38bde09235ef.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">I get the following compilation error when building pytorch 1.0.0 from source:</p>
<blockquote>
<p dir="auto">pytorch/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:223:41: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]<br>
assert(id_reg_tmp < id_reg_tmp1);<br>
^</p>
</blockquote>
<p dir="auto">I worked around this issue by adding:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-overflow")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=strict-overflow")"><pre class="notranslate"><code class="notranslate">set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-overflow")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=strict-overflow")
</code></pre></div>
<p dir="auto">in third_party/ideep/mkl-dnn/CMakeLists.txt before adding the sub directories.<br>
But I wonder whether there are better ways to solve this error.</p>
<p dir="auto">System configuration:</p>
<p dir="auto">Ubuntu 18.04<br>
Cmake 3.12.4<br>
CUDA 9.2.148<br>
gcc g++ 6.4.0<br>
pytorch pulled from master, commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/6651fae827fb6becd177fadb35c1913ca74950de/hovercard" href="https://github.com/pytorch/pytorch/commit/6651fae827fb6becd177fadb35c1913ca74950de"><tt>6651fae</tt></a></p> | <p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mingfeima/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mingfeima">@mingfeima</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp: In member function ‘void mkldnn::impl::cpu::jit_avx512_core_u8s8s32x_wino_conv_dst_trans_t::generate()’:
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^"><pre class="notranslate"><code class="notranslate">/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp: In member function ‘void mkldnn::impl::cpu::jit_avx512_core_u8s8s32x_wino_conv_dst_trans_t::generate()’:
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp:222:56: error: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Werror=strict-overflow]
assert(id_reg_tmp < jcp.alpha * jcp.alpha + 14);
^
</code></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/seemethere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/seemethere">@seemethere</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/walterddr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/walterddr">@walterddr</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gujinghui/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gujinghui">@gujinghui</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/PenghuiCheng/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/PenghuiCheng">@PenghuiCheng</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/XiaobingSuper/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/XiaobingSuper">@XiaobingSuper</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jianyuh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jianyuh">@jianyuh</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/VitalyFedyunin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/VitalyFedyunin">@VitalyFedyunin</a></p> | 1 |
<p dir="auto">When hardware acceleration is enabled (OS X 10.10.1, Atom 0.165.0), rendering artifacts occur when text clips behind the vertical scrollbar in the file pane. I've included a GIF animation that demonstrates the problem. I've noticed it doesn't always occur. For example, if I have the setting page open and active, I don't get the artifacts when sliding the file pane.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/201442/5521141/df5db294-89e3-11e4-8117-159f3cbe3faa.gif"><img src="https://cloud.githubusercontent.com/assets/201442/5521141/df5db294-89e3-11e4-8117-159f3cbe3faa.gif" alt="artifacts" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Disabling hardware acceleration fixes the issue. I wonder whether this was something introduced as a result of fixing issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42963973" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3559" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/3559/hovercard" href="https://github.com/atom/atom/issues/3559">#3559</a>.</p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/132806/5415627/96ce01f4-81f6-11e4-8757-83fe153488bf.png"><img src="https://cloud.githubusercontent.com/assets/132806/5415627/96ce01f4-81f6-11e4-8757-83fe153488bf.png" alt="screen shot 2014-12-12 at 12 00 49 pm" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Components wrapped in React.memo don't have a display name in the "components" tab of React DevTools.</p>
<p dir="auto">React version: 16.13</p>
<h2 dir="auto">Steps To Reproduce</h2>
<ol dir="auto">
<li>create a component that uses React.memo</li>
<li>name the component using "displayName"</li>
<li>open DevTools</li>
<li>the component will not use the name from step 2</li>
</ol>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const Test = React.memo(({ message }) => {
return <h1>{message}</h1>;
});
Test.displayName = "Foo"; // Will be displayed as "Anonymous"
function App() {
return (
<Test message="Hi" />
);
}"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-v">Test</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">memo</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span> message <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-ent">h1</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-s1">message</span><span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">h1</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-v">Test</span><span class="pl-kos">.</span><span class="pl-c1">displayName</span> <span class="pl-c1">=</span> <span class="pl-s">"Foo"</span><span class="pl-kos">;</span> <span class="pl-c">// Will be displayed as "Anonymous"</span>
<span class="pl-k">function</span> <span class="pl-v">App</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-v">Test</span> <span class="pl-c1">message</span><span class="pl-c1">=</span><span class="pl-s">"Hi"</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h2 dir="auto">The current behavior</h2>
<p dir="auto">Memos ignore "displayName" in React DevTools</p>
<h2 dir="auto">The expected behavior</h2>
<p dir="auto">Memos show "displayName" in React DevTools</p> | <p dir="auto">If you create a component via <code class="notranslate">React.memo</code> and then explicitly provide it with a <code class="notranslate">displayName</code>, DevTools ignore this display name.</p>
<p dir="auto">React version: 16.12.0<br>
DevTools version: 4.4.0</p>
<h2 dir="auto">Steps To Reproduce</h2>
<ol dir="auto">
<li>Create a component like:</li>
</ol>
<div class="highlight highlight-source-tsx notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const FancyMemoComponent = React.memo(() => 'Check my name in DevTools')"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-smi">FancyMemoComponent</span> <span class="pl-c1">=</span> <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-en">memo</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-s">'Check my name in DevTools'</span><span class="pl-kos">)</span></pre></div>
<ol start="2" dir="auto">
<li>Provide it with a <code class="notranslate">displayName</code></li>
</ol>
<div class="highlight highlight-source-tsx notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="FancyMemoComponent.displayName = 'FancyMemoComponent'"><pre class="notranslate"><span class="pl-smi">FancyMemoComponent</span><span class="pl-kos">.</span><span class="pl-c1">displayName</span> <span class="pl-c1">=</span> <span class="pl-s">'FancyMemoComponent'</span></pre></div>
<ol start="3" dir="auto">
<li>Check its name in DevTools.</li>
</ol>
<p dir="auto">Link to code example: <a href="https://codesandbox.io/s/react-memo-display-name-vk7gv" rel="nofollow">https://codesandbox.io/s/react-memo-display-name-vk7gv</a></p>
<h2 dir="auto">The current behavior</h2>
<p dir="auto">DevTools do not display the given <code class="notranslate">displayName</code>.</p>
<h2 dir="auto">The expected behavior</h2>
<p dir="auto">DevTools should display the given <code class="notranslate">displayName</code>.</p>
<h2 dir="auto">Comments</h2>
<p dir="auto">I am aware that the name can be picked from the function inside <code class="notranslate">React.memo</code>, but I prefer using anonymous functions.</p>
<p dir="auto">I am using this workaround:</p>
<div class="highlight highlight-source-tsx notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="FancyMemoComponent.type.displayName = 'FancyMemoComponent'"><pre class="notranslate"><span class="pl-smi">FancyMemoComponent</span><span class="pl-kos">.</span><span class="pl-c1">type</span><span class="pl-kos">.</span><span class="pl-c1">displayName</span> <span class="pl-c1">=</span> <span class="pl-s">'FancyMemoComponent'</span></pre></div> | 1 |
<p dir="auto"><code class="notranslate">import matplotlib.pyplot as plt</code> is erroring for matplotlib-1.5.3 while trying to import from PyQt4.</p>
<p dir="auto">I have observed this while running on Travis-CI, linux, installing matplotlib using conda. Here is a trace-back from the python 3.4.2 failure (<a href="https://travis-ci.org/simpeg/simpeg/jobs/160737799" rel="nofollow">https://travis-ci.org/simpeg/simpeg/jobs/160737799</a>), for 2.7.9, there is an example in the travis log: <a href="https://travis-ci.org/simpeg/simpeg/jobs/160737812" rel="nofollow">https://travis-ci.org/simpeg/simpeg/jobs/160737812</a>)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/pyplot.py", line 114, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/__init__.py", line 32, in pylab_setup
globals(),locals(),[backend_name],0)
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt4agg.py", line 18, in <module>
from .backend_qt5agg import FigureCanvasQTAggBase as _FigureCanvasQTAggBase
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt5agg.py", line 16, in <module>
from .backend_qt5 import QtCore
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt5.py", line 31, in <module>
from .qt_compat import QtCore, QtGui, QtWidgets, _getSaveFileName, __version__
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/qt_compat.py", line 137, in <module>
from PyQt4 import QtCore, QtGui
ImportError: No module named 'PyQt4'"><pre class="notranslate"><code class="notranslate">import matplotlib.pyplot as plt
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/pyplot.py", line 114, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/__init__.py", line 32, in pylab_setup
globals(),locals(),[backend_name],0)
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt4agg.py", line 18, in <module>
from .backend_qt5agg import FigureCanvasQTAggBase as _FigureCanvasQTAggBase
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt5agg.py", line 16, in <module>
from .backend_qt5 import QtCore
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/backend_qt5.py", line 31, in <module>
from .qt_compat import QtCore, QtGui, QtWidgets, _getSaveFileName, __version__
File "/home/travis/miniconda/lib/python3.4/site-packages/matplotlib/backends/qt_compat.py", line 137, in <module>
from PyQt4 import QtCore, QtGui
ImportError: No module named 'PyQt4'
</code></pre></div>
<p dir="auto">The environment is</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" package | build
---------------------------|-----------------
expat-2.1.0 | 0 365 KB
icu-54.1 | 0 11.3 MB
jpeg-8d | 1 806 KB
libffi-3.2.1 | 0 36 KB
libgcc-5.2.0 | 0 1.1 MB
libgfortran-3.0.0 | 1 281 KB
libxcb-1.12 | 0 1.5 MB
mkl-11.3.3 | 0 122.1 MB
dbus-1.10.10 | 0 2.4 MB
glib-2.43.0 | 1 5.4 MB
libpng-1.6.22 | 0 214 KB
libxml2-2.9.2 | 0 4.2 MB
alabaster-0.7.9 | py34_0 11 KB
cython-0.24.1 | py34_0 6.3 MB
decorator-4.0.10 | py34_0 12 KB
docutils-0.12 | py34_2 673 KB
freetype-2.5.5 | 1 2.5 MB
gstreamer-1.8.0 | 0 2.6 MB
imagesize-0.7.1 | py34_0 3 KB
ipython_genutils-0.1.0 | py34_0 33 KB
markupsafe-0.23 | py34_2 32 KB
mpmath-0.19 | py34_1 901 KB
nose-1.3.7 | py34_1 196 KB
numpy-1.11.1 | py34_0 6.1 MB
path.py-8.2.1 | py34_0 47 KB
ptyprocess-0.5.1 | py34_0 19 KB
pygments-2.1.3 | py34_0 1.2 MB
pyparsing-2.1.4 | py34_0 72 KB
pytz-2016.6.1 | py34_0 177 KB
pyyaml-3.12 | py34_0 348 KB
setuptools-27.2.0 | py34_0 528 KB
simplegeneric-0.8.1 | py34_1 7 KB
sip-4.18 | py34_0 240 KB
six-1.10.0 | py34_0 17 KB
snowballstemmer-1.2.1 | py34_0 79 KB
sphinx_rtd_theme-0.1.9 | py34_0 628 KB
wcwidth-0.1.7 | py34_0 21 KB
wheel-0.29.0 | py34_0 82 KB
babel-2.3.4 | py34_0 4.8 MB
cycler-0.10.0 | py34_0 11 KB
fontconfig-2.11.1 | 6 405 KB
gst-plugins-base-1.8.0 | 0 3.1 MB
jinja2-2.8 | py34_1 304 KB
pexpect-4.0.1 | py34_0 66 KB
pickleshare-0.7.4 | py34_0 9 KB
pip-8.1.2 | py34_0 1.6 MB
prompt_toolkit-1.0.3 | py34_0 309 KB
python-dateutil-2.5.3 | py34_0 238 KB
scipy-0.18.0 | np111py34_0 30.7 MB
sympy-1.0 | py34_0 5.9 MB
traitlets-4.3.0 | py34_0 125 KB
ipython-5.1.0 | py34_0 994 KB
qt-5.6.0 | 0 43.9 MB
sphinx-1.4.1 | py34_0 1.3 MB
pyqt-5.6.0 | py34_0 5.2 MB
matplotlib-1.5.3 | np111py34_0 8.4 MB
------------------------------------------------------------
Total: 279.6 MB"><pre class="notranslate"><code class="notranslate"> package | build
---------------------------|-----------------
expat-2.1.0 | 0 365 KB
icu-54.1 | 0 11.3 MB
jpeg-8d | 1 806 KB
libffi-3.2.1 | 0 36 KB
libgcc-5.2.0 | 0 1.1 MB
libgfortran-3.0.0 | 1 281 KB
libxcb-1.12 | 0 1.5 MB
mkl-11.3.3 | 0 122.1 MB
dbus-1.10.10 | 0 2.4 MB
glib-2.43.0 | 1 5.4 MB
libpng-1.6.22 | 0 214 KB
libxml2-2.9.2 | 0 4.2 MB
alabaster-0.7.9 | py34_0 11 KB
cython-0.24.1 | py34_0 6.3 MB
decorator-4.0.10 | py34_0 12 KB
docutils-0.12 | py34_2 673 KB
freetype-2.5.5 | 1 2.5 MB
gstreamer-1.8.0 | 0 2.6 MB
imagesize-0.7.1 | py34_0 3 KB
ipython_genutils-0.1.0 | py34_0 33 KB
markupsafe-0.23 | py34_2 32 KB
mpmath-0.19 | py34_1 901 KB
nose-1.3.7 | py34_1 196 KB
numpy-1.11.1 | py34_0 6.1 MB
path.py-8.2.1 | py34_0 47 KB
ptyprocess-0.5.1 | py34_0 19 KB
pygments-2.1.3 | py34_0 1.2 MB
pyparsing-2.1.4 | py34_0 72 KB
pytz-2016.6.1 | py34_0 177 KB
pyyaml-3.12 | py34_0 348 KB
setuptools-27.2.0 | py34_0 528 KB
simplegeneric-0.8.1 | py34_1 7 KB
sip-4.18 | py34_0 240 KB
six-1.10.0 | py34_0 17 KB
snowballstemmer-1.2.1 | py34_0 79 KB
sphinx_rtd_theme-0.1.9 | py34_0 628 KB
wcwidth-0.1.7 | py34_0 21 KB
wheel-0.29.0 | py34_0 82 KB
babel-2.3.4 | py34_0 4.8 MB
cycler-0.10.0 | py34_0 11 KB
fontconfig-2.11.1 | 6 405 KB
gst-plugins-base-1.8.0 | 0 3.1 MB
jinja2-2.8 | py34_1 304 KB
pexpect-4.0.1 | py34_0 66 KB
pickleshare-0.7.4 | py34_0 9 KB
pip-8.1.2 | py34_0 1.6 MB
prompt_toolkit-1.0.3 | py34_0 309 KB
python-dateutil-2.5.3 | py34_0 238 KB
scipy-0.18.0 | np111py34_0 30.7 MB
sympy-1.0 | py34_0 5.9 MB
traitlets-4.3.0 | py34_0 125 KB
ipython-5.1.0 | py34_0 994 KB
qt-5.6.0 | 0 43.9 MB
sphinx-1.4.1 | py34_0 1.3 MB
pyqt-5.6.0 | py34_0 5.2 MB
matplotlib-1.5.3 | np111py34_0 8.4 MB
------------------------------------------------------------
Total: 279.6 MB
</code></pre></div>
<p dir="auto">This was not an issue when using matplotlib-1.5.1 and pyqt-4.11.4 (<a href="https://travis-ci.org/simpeg/simpeg/jobs/159897876#L379" rel="nofollow">https://travis-ci.org/simpeg/simpeg/jobs/159897876#L379</a>)</p>
<p dir="auto">Thanks for your help!</p> | <p dir="auto">Our pandas tests on travis started to fail last night on python 3.5 (eg <a href="https://travis-ci.org/pydata/pandas/jobs/160584906" rel="nofollow">https://travis-ci.org/pydata/pandas/jobs/160584906</a>) with errors in our plotting tests (among others: "ImportError: No module named 'PyQt4'").<br>
Compared to the previous build that passed, I noticed the difference in matplotlib and pyqt versions (matplotlib 1.5.1 -> 1.5.3, pyqt-4.11.4 -> pyqt-5.6.0, qt-4.8.7 -> qt-5.6.0). I could also reproduce this locally with <code class="notranslate">conda create -n test-mpl python=3.5 matplotlib -c defaults</code>, then importing matplotlib.pyplot gives the above error.</p>
<p dir="auto">I am not sure if this has anything to do with matplotlib itself, or rather a broken build in anaconda, but reporting it here to be sure.</p> | 1 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p>
<p dir="auto">BUG REPORT</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):<br>
kube-dns kubernetes setupnetworkerror flannel subnet.env no such file</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):</p>
<p dir="auto">BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:42:39Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:42:39Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>:</li>
</ul>
<p dir="auto">VMWare Fusion for Mac</p>
<ul dir="auto">
<li><strong>OS</strong> (e.g. from /etc/os-release):</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NAME="Ubuntu"
VERSION="16.04.1 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.1 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial"><pre class="notranslate"><code class="notranslate">NAME="Ubuntu"
VERSION="16.04.1 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.1 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial
</code></pre></div>
<ul dir="auto">
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Linux ubuntu-master 4.4.0-47-generic #68-Ubuntu SMP Wed Oct 26 19:39:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux"><pre class="notranslate"><code class="notranslate">Linux ubuntu-master 4.4.0-47-generic #68-Ubuntu SMP Wed Oct 26 19:39:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
</code></pre></div>
<ul dir="auto">
<li>
<p dir="auto"><strong>Install tools</strong>:</p>
</li>
<li>
<p dir="auto"><strong>Others</strong>:</p>
</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="kube-system kube-dns-654381707-w4mpg 0/3 ContainerCreating 0 2m"><pre class="notranslate"><code class="notranslate">kube-system kube-dns-654381707-w4mpg 0/3 ContainerCreating 0 2m
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
3m 3m 1 {default-scheduler } Normal Scheduled Successfully assigned kube-dns-654381707-w4mpg to ubuntu-master
2m 1s 177 {kubelet ubuntu-master} Warning FailedSync Error syncing pod, skipping: failed to "SetupNetwork" for "kube-dns-654381707-w4mpg_kube-system" with SetupNetworkError: "Failed to setup network for pod \"kube-dns-654381707-w4mpg_kube-system(8ffe3172-a739-11e6-871f-000c2912631c)\" using network plugins \"cni\": open /run/flannel/subnet.env: no such file or directory; Skipping pod""><pre class="notranslate"><code class="notranslate">FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
3m 3m 1 {default-scheduler } Normal Scheduled Successfully assigned kube-dns-654381707-w4mpg to ubuntu-master
2m 1s 177 {kubelet ubuntu-master} Warning FailedSync Error syncing pod, skipping: failed to "SetupNetwork" for "kube-dns-654381707-w4mpg_kube-system" with SetupNetworkError: "Failed to setup network for pod \"kube-dns-654381707-w4mpg_kube-system(8ffe3172-a739-11e6-871f-000c2912631c)\" using network plugins \"cni\": open /run/flannel/subnet.env: no such file or directory; Skipping pod"
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">kube-dns Running</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@ubuntu-master:~# kubeadm init
Running pre-flight checks
<master/tokens> generated token: "247a8e.b7c8c1a7685bf204"
<master/pki> generated Certificate Authority key and certificate:
Issuer: CN=kubernetes | Subject: CN=kubernetes | CA: true
Not before: 2016-11-10 11:40:21 +0000 UTC Not After: 2026-11-08 11:40:21 +0000 UTC
Public: /etc/kubernetes/pki/ca-pub.pem
Private: /etc/kubernetes/pki/ca-key.pem
Cert: /etc/kubernetes/pki/ca.pem
<master/pki> generated API Server key and certificate:
Issuer: CN=kubernetes | Subject: CN=kube-apiserver | CA: false
Not before: 2016-11-10 11:40:21 +0000 UTC Not After: 2017-11-10 11:40:21 +0000 UTC
Alternate Names: [172.20.10.4 10.96.0.1 kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local]
Public: /etc/kubernetes/pki/apiserver-pub.pem
Private: /etc/kubernetes/pki/apiserver-key.pem
Cert: /etc/kubernetes/pki/apiserver.pem
<master/pki> generated Service Account Signing keys:
Public: /etc/kubernetes/pki/sa-pub.pem
Private: /etc/kubernetes/pki/sa-key.pem
<master/pki> created keys and certificates in "/etc/kubernetes/pki"
<util/kubeconfig> created "/etc/kubernetes/kubelet.conf"
<util/kubeconfig> created "/etc/kubernetes/admin.conf"
<master/apiclient> created API client configuration
<master/apiclient> created API client, waiting for the control plane to become ready
<master/apiclient> all control plane components are healthy after 14.053453 seconds
<master/apiclient> waiting for at least one node to register and become ready
<master/apiclient> first node is ready after 0.508561 seconds
<master/apiclient> attempting a test deployment
<master/apiclient> test deployment succeeded
<master/discovery> created essential addon: kube-discovery, waiting for it to become ready
<master/discovery> kube-discovery is ready after 1.503838 seconds
<master/addons> created essential addon: kube-proxy
<master/addons> created essential addon: kube-dns
Kubernetes master initialised successfully!
You can now join any number of machines by running the following on each node:
kubeadm join --token=247a8e.b7c8c1a7685bf204 172.20.10.4
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~# kubectl get pods --all-namespaces
NAMESPACE NAME READY STATUS RESTARTS AGE
kube-system dummy-2088944543-eo1ua 1/1 Running 0 47s
kube-system etcd-ubuntu-master 1/1 Running 3 51s
kube-system kube-apiserver-ubuntu-master 1/1 Running 0 49s
kube-system kube-controller-manager-ubuntu-master 1/1 Running 3 51s
kube-system kube-discovery-1150918428-qmu0b 1/1 Running 0 46s
kube-system kube-dns-654381707-mv47d 0/3 ContainerCreating 0 44s
kube-system kube-proxy-k0k9q 1/1 Running 0 44s
kube-system kube-scheduler-ubuntu-master 1/1 Running 3 51s
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~# kubectl apply -f https://git.io/weave-kube
daemonset "weave-net" created
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~# "><pre class="notranslate"><code class="notranslate">root@ubuntu-master:~# kubeadm init
Running pre-flight checks
<master/tokens> generated token: "247a8e.b7c8c1a7685bf204"
<master/pki> generated Certificate Authority key and certificate:
Issuer: CN=kubernetes | Subject: CN=kubernetes | CA: true
Not before: 2016-11-10 11:40:21 +0000 UTC Not After: 2026-11-08 11:40:21 +0000 UTC
Public: /etc/kubernetes/pki/ca-pub.pem
Private: /etc/kubernetes/pki/ca-key.pem
Cert: /etc/kubernetes/pki/ca.pem
<master/pki> generated API Server key and certificate:
Issuer: CN=kubernetes | Subject: CN=kube-apiserver | CA: false
Not before: 2016-11-10 11:40:21 +0000 UTC Not After: 2017-11-10 11:40:21 +0000 UTC
Alternate Names: [172.20.10.4 10.96.0.1 kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local]
Public: /etc/kubernetes/pki/apiserver-pub.pem
Private: /etc/kubernetes/pki/apiserver-key.pem
Cert: /etc/kubernetes/pki/apiserver.pem
<master/pki> generated Service Account Signing keys:
Public: /etc/kubernetes/pki/sa-pub.pem
Private: /etc/kubernetes/pki/sa-key.pem
<master/pki> created keys and certificates in "/etc/kubernetes/pki"
<util/kubeconfig> created "/etc/kubernetes/kubelet.conf"
<util/kubeconfig> created "/etc/kubernetes/admin.conf"
<master/apiclient> created API client configuration
<master/apiclient> created API client, waiting for the control plane to become ready
<master/apiclient> all control plane components are healthy after 14.053453 seconds
<master/apiclient> waiting for at least one node to register and become ready
<master/apiclient> first node is ready after 0.508561 seconds
<master/apiclient> attempting a test deployment
<master/apiclient> test deployment succeeded
<master/discovery> created essential addon: kube-discovery, waiting for it to become ready
<master/discovery> kube-discovery is ready after 1.503838 seconds
<master/addons> created essential addon: kube-proxy
<master/addons> created essential addon: kube-dns
Kubernetes master initialised successfully!
You can now join any number of machines by running the following on each node:
kubeadm join --token=247a8e.b7c8c1a7685bf204 172.20.10.4
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~# kubectl get pods --all-namespaces
NAMESPACE NAME READY STATUS RESTARTS AGE
kube-system dummy-2088944543-eo1ua 1/1 Running 0 47s
kube-system etcd-ubuntu-master 1/1 Running 3 51s
kube-system kube-apiserver-ubuntu-master 1/1 Running 0 49s
kube-system kube-controller-manager-ubuntu-master 1/1 Running 3 51s
kube-system kube-discovery-1150918428-qmu0b 1/1 Running 0 46s
kube-system kube-dns-654381707-mv47d 0/3 ContainerCreating 0 44s
kube-system kube-proxy-k0k9q 1/1 Running 0 44s
kube-system kube-scheduler-ubuntu-master 1/1 Running 3 51s
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~# kubectl apply -f https://git.io/weave-kube
daemonset "weave-net" created
root@ubuntu-master:~#
root@ubuntu-master:~#
root@ubuntu-master:~#
</code></pre></div>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">First time I ran</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@ubuntu-master:~# kubeadm init"><pre class="notranslate"><code class="notranslate">root@ubuntu-master:~# kubeadm init
</code></pre></div>
<p dir="auto">and then downloaded kube-flannel.yml and apply</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@ubuntu-master:~# kubectl apply -f kube-flannel.yml"><pre class="notranslate"><code class="notranslate">root@ubuntu-master:~# kubectl apply -f kube-flannel.yml
</code></pre></div>
<p dir="auto">And then tried to join nodes. Then I reset configuration by</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@ubuntu-master:~# kubeadm reset
root@ubuntu-master:~# rm -rf .kube/"><pre class="notranslate"><code class="notranslate">root@ubuntu-master:~# kubeadm reset
root@ubuntu-master:~# rm -rf .kube/
</code></pre></div>
<p dir="auto">Then tried to initialize kubernetes again using weave.</p> | <p dir="auto">Most applications should be running in multiple zones to increase availability. Kubernetes should support it. I imagine this to work in the following way:</p>
<ol dir="auto">
<li>User sets up cluster in a region in a way that minions are spread evenly across all available zones</li>
<li>User creates replication controller for the application with size > 1</li>
<li>Scheduler spreads pods within the same replication controller across available zones</li>
</ol>
<p dir="auto">That way user gets regional availability for free.</p>
<p dir="auto">AFAIU this will mostly require changes in how we create cluster and how we schedule pods.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/wojtek-t/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/wojtek-t">@wojtek-t</a></p> | 0 |
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">#sqlite does not have problem with this, but postgres has. (and i guess any #other more strict DB).<br>
#This functionality is being used in polymorphic_union()</p>
<p dir="auto">from sqlalchemy import *<br>
db = create_engine( 'sqlite:///:memory:')<br>
meta = BoundMetaData( db)</p>
<p dir="auto">table_A = Table( 'A', meta,<br>
Column( 'name', type= String, ),<br>
Column( 'id', primary_key= True, type= Integer ),<br>
Column( 'atype', type= String, ),<br>
)</p>
<p dir="auto">table_B = Table( 'B', meta,<br>
Column( 'bdata', type= String, ),<br>
Column( 'id', Integer, ForeignKey( 'A.id', ), primary_key= True ),<br>
)</p>
<p dir="auto">selB = table_A.join( table_B).select( table_A.c.atype == 'B' )<br>
print '---', selB</p>
<p dir="auto">selselB = select( selB.columns)<br>
print '===', selselB</p>
<p dir="auto">:::::::::: results in:</p>
<p dir="auto">--- SELECT "A".name, "A".id, "A".atype, "B".bdata, "B".id<br>
FROM "A" JOIN "B" ON "A".id = "B".id<br>
WHERE "A".atype = ?</p>
<p dir="auto">=== SELECT name, id, atype, bdata<br>
FROM (SELECT "A".name AS name, "A".id AS id, "A".atype AS<br>
atype, "B".bdata AS bdata, "B".id AS id<br>
FROM "A" JOIN "B" ON "A".id = "B".id<br>
WHERE "A".atype = ?)</p>
<p dir="auto">=======<br>
note both "A".id AS id , "B".id AS id</p> | <p dir="auto"><strong>Migrated issue, originally created by Dan Stovall</strong></p>
<p dir="auto">In MSSQL a ROWVERSION or TIMESTAMP column do not contain a date time. Instead the contain an 8-byte integer. Currently, the column is set as sqlachemy.sql.sqltypes.TIMESTAMP, which is an instance of the DateTime type. Running a query against a table with such a column returns a byte string value for those columns. The mssql dialect should probably have a specific ROWVERSION type and it should be an integer, not a DateTime. Also, it would be nice if the values of those columns returned an integer by using int.from_bytes to convert the byte string.</p> | 0 |
<p dir="auto">Electron version: 1.7.6<br>
Operating system: Windows 7</p>
<p dir="auto">Same as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="211757383" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/8828" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/8828/hovercard" href="https://github.com/electron/electron/issues/8828">#8828</a></p>
<p dir="auto">I am using 1.7.6 and still facing the same issue. It gets stuck at spooling. It works fine when I am running the app from the command line for development but does not work if I install the app using .exe file. It was working properly on my dev machine but when we released it in production then all our users complained about printing not working. It gets stuck at spooling in their machine and nothing gets printed. It does not show any size of the file as well. Please let me know if there is any fix for this.</p>
<p dir="auto">Attaching the screenshot of the issue happening at user's device: <a href="https://drive.google.com/open?id=0B0v4IupaEnYpdE13WDBpbUNIZjQ" rel="nofollow">https://drive.google.com/open?id=0B0v4IupaEnYpdE13WDBpbUNIZjQ</a></p> | <ul dir="auto">
<li>Electron version: 1.8.4</li>
<li>Operating system: Windows</li>
</ul>
<p dir="auto">Thanks for your excellent work! After a year of waiting, when will the encryption of ASAR be applied? Thank you~</p> | 0 |
<p dir="auto">If you add <code class="notranslate">inf, -inf</code> into the list <a href="https://github.com/pytorch/pytorch/blob/master/test/test_torch.py#L9274">https://github.com/pytorch/pytorch/blob/master/test/test_torch.py#L9274</a> it'll fail the test.</p>
<p dir="auto">So from numpy doc, <code class="notranslate">inf</code> norm is defined as <code class="notranslate">max(sum(abs(x), axis=1))</code> for matrix and <code class="notranslate">max(abs(x))</code> for vector, but it seems we always implemented <code class="notranslate">max(abs(x))</code>.</p>
<p dir="auto">short repro:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: import torch
In [2]: import numpy as np
In [3]: a = torch.rand(3, 3)
In [4]: b = a.numpy()
In [5]: import math
In [6]: torch.norm(a, math.inf)
Out[6]: tensor(0.7553)
In [7]: np.linalg.norm(b, math.inf)
Out[7]: 1.4294269"><pre class="notranslate"><code class="notranslate">In [1]: import torch
In [2]: import numpy as np
In [3]: a = torch.rand(3, 3)
In [4]: b = a.numpy()
In [5]: import math
In [6]: torch.norm(a, math.inf)
Out[6]: tensor(0.7553)
In [7]: np.linalg.norm(b, math.inf)
Out[7]: 1.4294269
</code></pre></div> | <p dir="auto"><code class="notranslate">torch.norm</code> currently have the following inconsistent behavior where for matrix inputs and <code class="notranslate">ord</code> is a numerical value, <strong>vector</strong> norm is computed instead:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ===== ============================ ==========================
ord matrix norm vector norm
===== ============================ ==========================
None Frobenius norm 2-norm
'fro' Frobenius norm --
'nuc' nuclear norm --
Other as vec norm when dim is None sum(abs(x)**ord)**(1./ord)
===== ============================ =========================="><pre class="notranslate"><code class="notranslate"> ===== ============================ ==========================
ord matrix norm vector norm
===== ============================ ==========================
None Frobenius norm 2-norm
'fro' Frobenius norm --
'nuc' nuclear norm --
Other as vec norm when dim is None sum(abs(x)**ord)**(1./ord)
===== ============================ ==========================
</code></pre></div>
<p dir="auto">(Even though the last row reads <code class="notranslate">when dim is None</code>, same behavior happens when <code class="notranslate">dim</code> is a 2-tuple).</p>
<p dir="auto">However, the matrix Lpq norms are useful. And users are justified in expecting that <code class="notranslate">mat.norm(2)</code> computes the L2 norm (max e-value) since <code class="notranslate">mat.norm('fro')</code> computes the matrix Frobenius norm. If we follow the <a href="https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.norm.html" rel="nofollow">NumPy interface</a>, the following behavior should be less surprising and error prune:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
===== ============================ ==========================
ord norm for matrices norm for vectors
===== ============================ ==========================
None Frobenius norm 2-norm
'fro' Frobenius norm --
'nuc' nuclear norm --
inf max(sum(abs(x), axis=1)) max(abs(x))
-inf min(sum(abs(x), axis=1)) min(abs(x))
0 -- sum(x != 0)
1 max(sum(abs(x), axis=0)) as below
-1 min(sum(abs(x), axis=0)) as below
2 2-norm (largest sing. value) as below
-2 smallest singular value as below
other -- sum(abs(x)**ord)**(1./ord)
===== ============================ =========================="><pre class="notranslate"><code class="notranslate">
===== ============================ ==========================
ord norm for matrices norm for vectors
===== ============================ ==========================
None Frobenius norm 2-norm
'fro' Frobenius norm --
'nuc' nuclear norm --
inf max(sum(abs(x), axis=1)) max(abs(x))
-inf min(sum(abs(x), axis=1)) min(abs(x))
0 -- sum(x != 0)
1 max(sum(abs(x), axis=0)) as below
-1 min(sum(abs(x), axis=0)) as below
2 2-norm (largest sing. value) as below
-2 smallest singular value as below
other -- sum(abs(x)**ord)**(1./ord)
===== ============================ ==========================
</code></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ssnl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ssnl">@ssnl</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vishwakftw/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vishwakftw">@vishwakftw</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jianyuh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jianyuh">@jianyuh</a></p> | 1 |
<p dir="auto">I am interested in your project and want to contribute but it's hard to figure out what I should start maybe start gitter chat ?<br>
Or you can suggest me here ?</p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13242392/36363696-e650c5f0-1536-11e8-9c06-49e6bf31cd07.png"><img src="https://user-images.githubusercontent.com/13242392/36363696-e650c5f0-1536-11e8-9c06-49e6bf31cd07.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13242392/36363704-f46dfab8-1536-11e8-901f-2fe9a010c9ca.png"><img src="https://user-images.githubusercontent.com/13242392/36363704-f46dfab8-1536-11e8-901f-2fe9a010c9ca.png" alt="image" style="max-width: 100%;"></a></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Doesn't exceed the call stack</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Maximum call stack size exceeded</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">I can't fully reproduce this issue, as it seems it's an edge case - but this was the environment in which it occurred</p>
<ol dir="auto">
<li>Add a component to the page which keeps itself in focus (monaco editor in this case)</li>
<li>Open up a new modal</li>
<li>Max call stack exceeded</li>
</ol>
<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>beta.34</td>
</tr>
<tr>
<td>React</td>
<td>16.2.0</td>
</tr>
</tbody>
</table> | 0 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
a = [[1,2],[3,4]]
plt.imshow(a)
plt.show()"><pre class="notranslate"><code class="notranslate">import matplotlib.pyplot as plt
a = [[1,2],[3,4]]
plt.imshow(a)
plt.show()
</code></pre></div>
<p dir="auto">Try to click on the 'edit axis, curve, and image parameters' button (the one with the wavy line with an arrow at the end) in the plot window.</p>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto">When I click the 'edit axis, curve, and image parameters' button in the plot window, the window crashes with the following output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/matplotlib/backends/backend_qt5.py", line 681, in edit_parameters
figureoptions.figure_edit(axes, self)
File "/usr/lib/python3.6/site-packages/matplotlib/backends/qt_editor/figureoptions.py", line 168, in figure_edit
+ [(name, name) for name in sorted(image.iterpnames)])]
TypeError: 'method' object is not iterable
fish: “python matplotlibbug.py” terminated by signal SIGABRT (Abort)"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/matplotlib/backends/backend_qt5.py", line 681, in edit_parameters
figureoptions.figure_edit(axes, self)
File "/usr/lib/python3.6/site-packages/matplotlib/backends/qt_editor/figureoptions.py", line 168, in figure_edit
+ [(name, name) for name in sorted(image.iterpnames)])]
TypeError: 'method' object is not iterable
fish: “python matplotlibbug.py” terminated by signal SIGABRT (Abort)
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">Expected outcome is to open the window which allows to edit the axis and curve parameters. This works on matplotlib version 2.0.2</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Arch Linux</li>
<li>Matplotlib version: 2.1.0</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): Qt5Agg</li>
<li>Python version: 3.6.2</li>
<li>Jupyter version (if applicable):</li>
<li>Other libraries:</li>
</ul>
<p dir="auto">I installed matplotlib from the packages in the Arch repos <a href="https://www.archlinux.org/packages/community/x86_64/python-matplotlib/" rel="nofollow">https://www.archlinux.org/packages/community/x86_64/python-matplotlib/</a></p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">Clicking on the figure options button (only available in the Qt backend) when showing an image does not work anymore. The dialog does not open and the script throws a TypeError.</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="from matplotlib import use
use('Qt5Agg')
import numpy as np
import matplotlib.pyplot as plt
data = np.ones((10,10))
plt.figure()
plt.imshow(data)
plt.show()"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">use</span>
<span class="pl-en">use</span>(<span class="pl-s">'Qt5Agg'</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">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">10</span>,<span class="pl-c1">10</span>))
<span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">imshow</span>(<span class="pl-s1">data</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto">Click on figure options button (the second one from the right).</p>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto">Figure options dialog is not shown, instead a TypeError is thrown:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/matplotlib/backends/backend_qt5.py", line 681, in edit_parameters
figureoptions.figure_edit(axes, self)
File "/usr/lib/python2.7/site-packages/matplotlib/backends/qt_editor/figureoptions.py", line 168, in figure_edit
+ [(name, name) for name in sorted(image.iterpnames)])]
TypeError: 'instancemethod' object is not iterable"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/matplotlib/backends/backend_qt5.py", line 681, in edit_parameters
figureoptions.figure_edit(axes, self)
File "/usr/lib/python2.7/site-packages/matplotlib/backends/qt_editor/figureoptions.py", line 168, in figure_edit
+ [(name, name) for name in sorted(image.iterpnames)])]
TypeError: 'instancemethod' object is not iterable
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">Figure options dialog is opened and the script does not throw the TypeError. Used to work in matplot 2.0.2.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<p dir="auto">Bug introduced in matplotlib 2.1.0, specifcally this commit:</p>
<p dir="auto"><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/matplotlib/matplotlib/commit/6ee70cb49705f9057c5716f9bc2a4147eead5442/hovercard" href="https://github.com/matplotlib/matplotlib/commit/6ee70cb49705f9057c5716f9bc2a4147eead5442"><tt>6ee70cb</tt></a></p>
<p dir="auto">changes 'iterpnames' from a variable (which is iterable) into a function (which must be called). The callside (figureoptions.py) was not modified accordingly. I guess adding '()' after iterpnames in figureoptions.py line 168 fixes the problem (untested).</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nebhale" rel="nofollow">nebhale</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1555?redirect=false" rel="nofollow">SPR-1555</a></strong> and commented</p>
<p dir="auto">I'd like to see support for the TestNG framework in the Spring Mocks area. To that end, I've gone ahead and done an initial conversion using the existing AbstractSpringContextTest and it's subclasses. As I worked on it, I felt that there was a ton of logic that would have to be duplicated in both trees and can probably be abstracted in some way. In addition there's backwards compatibility using XBean for TestNG if you want to support pre 1.5 (non-annotation) use of TestNG.</p>
<p dir="auto">As far as the changes go, I simply removed the TestCase extension point and used annotations to get the setUp() method to run at the beginning of each test class. In addition, I removed the tearDown() and the onSetUp() and onTearDown() methods. TestNG guarentees that multiple 'beforeTestClass' and 'beforeTestMethod' are executed descending through the inheritence tree. In addition, this should give users more power as they can now set dependencies of methods to guarentee order. In addition in the Transaction classes, the creation and rollback of the transactions area listed as 'before/afterTestMethod'.</p>
<p dir="auto">I realize that this is simply a first cut and there will still need to be work done. I'd like to see this as part of 2.0 final, but understand if it can't make it. If you want me to redo the work with design input from you all, that'd be OK as well.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 M1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/11352/AbstractDependencyInjectionSpringContextTests.java" rel="nofollow">AbstractDependencyInjectionSpringContextTests.java</a> (<em>9.88 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/11351/AbstractSpringContextTests.java" rel="nofollow">AbstractSpringContextTests.java</a> (<em>4.26 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/11354/AbstractTransactionalDataSourceSpringContextTests.java" rel="nofollow">AbstractTransactionalDataSourceSpringContextTests.java</a> (<em>2.69 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/11353/AbstractTransactionalSpringContextTests.java" rel="nofollow">AbstractTransactionalSpringContextTests.java</a> (<em>8.14 kB</em>)</li>
</ul>
<p dir="auto">9 votes, 7 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gmatthews" rel="nofollow">Greg Matthews</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1423?redirect=false" rel="nofollow">SPR-1423</a></strong> and commented</p>
<p dir="auto">When building a web application, you typically need to present messages to the user that can be an error, information, or warning.</p>
<p dir="auto">There is no built in support for this in Spring, other than the Errors interface.</p>
<p dir="auto">It would be good if there was built in support for:</p>
<ol dir="auto">
<li>A parameterized message level. e.g. Error, Info, Warning.</li>
<li>The ability for messages to survive a redirect (likely by storing them in session, and having the JSP page clear session state when messages are displayed). This point probably relates more the SpringWEB rather than SpringCORE because it needs to know about sessions.</li>
</ol>
<hr>
<p dir="auto"><strong>Affects:</strong> 1.2.5</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="398049488" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/4895" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/4895/hovercard" href="https://github.com/spring-projects/spring-framework/issues/4895">#4895</a> Create a notion of "Warnings" (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 0 |
<p dir="auto">This program:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn main() {
let a: &str = "one";
let b: String = "two".into_string();
let c = a + b;
println!("{}", c);
}"><pre class="notranslate"><code class="notranslate">fn main() {
let a: &str = "one";
let b: String = "two".into_string();
let c = a + b;
println!("{}", c);
}
</code></pre></div>
<p dir="auto">outputs <code class="notranslate">twoone</code> instead of <code class="notranslate">onetwo</code>. The issue is in <a href="https://github.com/rust-lang/rust/blob/89d2061c8f1cc2bcd5e9bb8a97e214f482d5ff2c/src/libcollections/string.rs#L877-L883"><code class="notranslate">impl<'a> Add<String, String> for &'a str</code></a>: it adds the slice (which is on the left-hand side of <code class="notranslate">+</code>) to the end of the string (which is on the right-hand side of <code class="notranslate">+</code>).</p> | <p dir="auto">Probably because of the changes in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/dbc7e17cce0344b774c2ad45066f84d29ce972e9/hovercard" href="https://github.com/rust-lang/rust/commit/dbc7e17cce0344b774c2ad45066f84d29ce972e9"><tt>dbc7e17</tt></a> / <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/076e932fd5c6deb1a71e73f46f700743e0b9746c/hovercard" href="https://github.com/rust-lang/rust/commit/076e932fd5c6deb1a71e73f46f700743e0b9746c"><tt>076e932</tt></a> the following code now prints <strong>"Text: suffixprefix"</strong> (playpen link: <a href="http://is.gd/5f44Bo" rel="nofollow">http://is.gd/5f44Bo</a>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn main() {
let prefix = "prefix";
let suffix = "suffix".to_string();
println!("Text: {}" , prefix + suffix);
}"><pre class="notranslate"><code class="notranslate">fn main() {
let prefix = "prefix";
let suffix = "suffix".to_string();
println!("Text: {}" , prefix + suffix);
}
</code></pre></div>
<p dir="auto">I think compiler should display a error or warning in this case.</p> | 1 |
<p dir="auto">Trying to include rust-http as a dependency results in an internal error, running <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/946654a721d6fd5eeb91e93293cdc2cba83c78b9/hovercard" href="https://github.com/rust-lang/rust/commit/946654a721d6fd5eeb91e93293cdc2cba83c78b9"><tt>946654a</tt></a>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ RUST_BACKTRACE=1 cargo build --verbose
Fresh openssl v0.0.0 (https://github.com/sfackler/rust-openssl.git#cec41181)
Fresh encoding v0.1.0 (https://github.com/lifthrasiir/rust-encoding#35f0d70f)
Fresh url v0.1.0 (https://github.com/servo/rust-url#bfdf8093)
Compiling http v0.1.0-pre (https://github.com/chris-morgan/rust-http.git#b94454e4)
Running sh prebuild.sh
Failed to run custom build command for `http v0.1.0-pre (https://github.com/chris-morgan/rust-http.git#b94454e4)`
Process didn't exit successfully: `sh prebuild.sh` (status=127)
--- stdout
Compiling rust-http-codegen v0.1.0-pre (file:///Users/sebnow/.cargo/git/checkouts/rust-http-5674b483f218b212/master/codegen)
task 'rustc' failed at 'Box<Any>', /Users/sebnow/Documents/rust/src/libsyntax/ast_util.rs:694
stack backtrace:
1: 0x10573ca69 - rt::backtrace::imp::write::haee36c9674313392dPq
2: 0x10573fdc1 - failure::on_fail::h18ca178b57e3c599R5q
3: 0x1059ca755 - unwind::begin_unwind_inner::hdf91233a12531aa5PQd
4: 0x103778c47 - unwind::begin_unwind::h14665316014492492854
5: 0x103779483 - diagnostic::Handler::bug::h28f0ca2456db3f42XND
6: 0x102410088 - driver::session::Session::bug::h5b8344456481dee0fyx
7: 0x1027e1fe6 - middle::trans::type_of::sizing_type_of::h9261548c35428499NP9
8: 0x1028106ef - middle::trans::meth::get_vtable::hed28957b036ba05dkOk
9: 0x10280fbe7 - middle::trans::expr::apply_adjustments::unsized_info::hda35613e1cab4ff9Gl3
10: 0x102812986 - middle::trans::expr::apply_adjustments::unsize_expr::closure.124116
11: 0x102812b2f - middle::trans::expr::apply_adjustments::into_fat_ptr::h8fbe0bfc985c300aZs3
12: 0x10280f292 - middle::trans::expr::apply_adjustments::apply_autoref::h252f3103c9877037D82
13: 0x10280eb4c - middle::trans::expr::apply_adjustments::apply_autoref::h252f3103c9877037D82
14: 0x1027cff1c - middle::trans::expr::trans::h66080e396e10a5cfRW2
15: 0x1028047e7 - middle::trans::callee::trans_args::hd334afe2d52d20f04r2
16: 0x1027d6ceb - middle::trans::callee::trans_call_inner::he7a3cf0efe973c74961
17: 0x1027fdabd - middle::trans::callee::trans_call::haa6ae4f7aade5ec7u11
18: 0x10280c915 - middle::trans::expr::trans_rvalue_dps_unadjusted::h1a1aa0a5f3241bf4Sc4
19: 0x10280b19d - middle::trans::expr::trans_unadjusted::h77bab0db2ba06bf1LD3
20: 0x1027cf318 - middle::trans::expr::trans::h66080e396e10a5cfRW2
21: 0x10281eae5 - middle::trans::_match::trans_match::ha85240b9775cca14M9h
22: 0x10280c31f - middle::trans::expr::trans_rvalue_dps_unadjusted::h1a1aa0a5f3241bf4Sc4
23: 0x1027cdf31 - middle::trans::expr::trans_into::hd903990ca0512a327S2
24: 0x1027cd29a - middle::trans::controlflow::trans_stmt_semi::hd96bdd42d4208757cZY
25: 0x1027cca14 - middle::trans::controlflow::trans_stmt::hde52138b93fe22d19UY
26: 0x1027ce188 - middle::trans::controlflow::trans_block::hc1a0a88cc6435a435ZY
27: 0x10287d103 - middle::trans::base::trans_closure::h34c2d01620eba474r1e
28: 0x1027c0cc8 - middle::trans::base::trans_fn::h2755db1dc190bd6fEcf
29: 0x1027bdacd - middle::trans::base::trans_item::h618cb9036c98f056Nvf
30: 0x1027bddf8 - middle::trans::base::trans_item::h618cb9036c98f056Nvf
31: 0x102887318 - middle::trans::base::trans_crate::hdfc80fd2c7d6ee30Gtg
32: 0x102c66fc5 - driver::driver::phase_4_translate_to_llvm::h723fe83079de59d87Yw
33: 0x102c5f6ff - driver::driver::compile_input::h858300a6b2e42cb79ww
34: 0x102cdea51 - driver::run_compiler::hba7b2e22eae5d051FnA
35: 0x102cdcc86 - driver::main_args::closure.146239
36: 0x10243e23b - task::TaskBuilder<S>::try_future::closure.101939
37: 0x10243e133 - task::TaskBuilder<S>::spawn_internal::closure.101910
38: 0x103e2594d - task::spawn_opts::closure.8511
39: 0x105a2ff4c - rust_try_inner
40: 0x105a2ff36 - rust_try
41: 0x1059c7b07 - unwind::try::hd9207e38b158b31bxFd
42: 0x1059c797c - task::Task::run::hb9448d2544b93aaaPVc
43: 0x103e257a2 - task::spawn_opts::closure.8450
44: 0x1059c963a - thread::thread_start::hb91288d4cab9ba651fd
45: 0x7fff90671899 - _pthread_body
46: 0x7fff9067172a - _pthread_struct_init
--- stderr
error: internal compiler error: trying to take the sizing type of std::io::Writer, an unsized type
note: the compiler hit an unexpected failure path. 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
Could not compile `rust-http-codegen`.
To learn more, run the command again with --verbose.
prebuild.sh: line 10: codegen/target/codegen: No such file or directory
prebuild.sh: line 11: codegen/target/codegen: No such file or directory"><pre class="notranslate"><code class="notranslate">$ RUST_BACKTRACE=1 cargo build --verbose
Fresh openssl v0.0.0 (https://github.com/sfackler/rust-openssl.git#cec41181)
Fresh encoding v0.1.0 (https://github.com/lifthrasiir/rust-encoding#35f0d70f)
Fresh url v0.1.0 (https://github.com/servo/rust-url#bfdf8093)
Compiling http v0.1.0-pre (https://github.com/chris-morgan/rust-http.git#b94454e4)
Running sh prebuild.sh
Failed to run custom build command for `http v0.1.0-pre (https://github.com/chris-morgan/rust-http.git#b94454e4)`
Process didn't exit successfully: `sh prebuild.sh` (status=127)
--- stdout
Compiling rust-http-codegen v0.1.0-pre (file:///Users/sebnow/.cargo/git/checkouts/rust-http-5674b483f218b212/master/codegen)
task 'rustc' failed at 'Box<Any>', /Users/sebnow/Documents/rust/src/libsyntax/ast_util.rs:694
stack backtrace:
1: 0x10573ca69 - rt::backtrace::imp::write::haee36c9674313392dPq
2: 0x10573fdc1 - failure::on_fail::h18ca178b57e3c599R5q
3: 0x1059ca755 - unwind::begin_unwind_inner::hdf91233a12531aa5PQd
4: 0x103778c47 - unwind::begin_unwind::h14665316014492492854
5: 0x103779483 - diagnostic::Handler::bug::h28f0ca2456db3f42XND
6: 0x102410088 - driver::session::Session::bug::h5b8344456481dee0fyx
7: 0x1027e1fe6 - middle::trans::type_of::sizing_type_of::h9261548c35428499NP9
8: 0x1028106ef - middle::trans::meth::get_vtable::hed28957b036ba05dkOk
9: 0x10280fbe7 - middle::trans::expr::apply_adjustments::unsized_info::hda35613e1cab4ff9Gl3
10: 0x102812986 - middle::trans::expr::apply_adjustments::unsize_expr::closure.124116
11: 0x102812b2f - middle::trans::expr::apply_adjustments::into_fat_ptr::h8fbe0bfc985c300aZs3
12: 0x10280f292 - middle::trans::expr::apply_adjustments::apply_autoref::h252f3103c9877037D82
13: 0x10280eb4c - middle::trans::expr::apply_adjustments::apply_autoref::h252f3103c9877037D82
14: 0x1027cff1c - middle::trans::expr::trans::h66080e396e10a5cfRW2
15: 0x1028047e7 - middle::trans::callee::trans_args::hd334afe2d52d20f04r2
16: 0x1027d6ceb - middle::trans::callee::trans_call_inner::he7a3cf0efe973c74961
17: 0x1027fdabd - middle::trans::callee::trans_call::haa6ae4f7aade5ec7u11
18: 0x10280c915 - middle::trans::expr::trans_rvalue_dps_unadjusted::h1a1aa0a5f3241bf4Sc4
19: 0x10280b19d - middle::trans::expr::trans_unadjusted::h77bab0db2ba06bf1LD3
20: 0x1027cf318 - middle::trans::expr::trans::h66080e396e10a5cfRW2
21: 0x10281eae5 - middle::trans::_match::trans_match::ha85240b9775cca14M9h
22: 0x10280c31f - middle::trans::expr::trans_rvalue_dps_unadjusted::h1a1aa0a5f3241bf4Sc4
23: 0x1027cdf31 - middle::trans::expr::trans_into::hd903990ca0512a327S2
24: 0x1027cd29a - middle::trans::controlflow::trans_stmt_semi::hd96bdd42d4208757cZY
25: 0x1027cca14 - middle::trans::controlflow::trans_stmt::hde52138b93fe22d19UY
26: 0x1027ce188 - middle::trans::controlflow::trans_block::hc1a0a88cc6435a435ZY
27: 0x10287d103 - middle::trans::base::trans_closure::h34c2d01620eba474r1e
28: 0x1027c0cc8 - middle::trans::base::trans_fn::h2755db1dc190bd6fEcf
29: 0x1027bdacd - middle::trans::base::trans_item::h618cb9036c98f056Nvf
30: 0x1027bddf8 - middle::trans::base::trans_item::h618cb9036c98f056Nvf
31: 0x102887318 - middle::trans::base::trans_crate::hdfc80fd2c7d6ee30Gtg
32: 0x102c66fc5 - driver::driver::phase_4_translate_to_llvm::h723fe83079de59d87Yw
33: 0x102c5f6ff - driver::driver::compile_input::h858300a6b2e42cb79ww
34: 0x102cdea51 - driver::run_compiler::hba7b2e22eae5d051FnA
35: 0x102cdcc86 - driver::main_args::closure.146239
36: 0x10243e23b - task::TaskBuilder<S>::try_future::closure.101939
37: 0x10243e133 - task::TaskBuilder<S>::spawn_internal::closure.101910
38: 0x103e2594d - task::spawn_opts::closure.8511
39: 0x105a2ff4c - rust_try_inner
40: 0x105a2ff36 - rust_try
41: 0x1059c7b07 - unwind::try::hd9207e38b158b31bxFd
42: 0x1059c797c - task::Task::run::hb9448d2544b93aaaPVc
43: 0x103e257a2 - task::spawn_opts::closure.8450
44: 0x1059c963a - thread::thread_start::hb91288d4cab9ba651fd
45: 0x7fff90671899 - _pthread_body
46: 0x7fff9067172a - _pthread_struct_init
--- stderr
error: internal compiler error: trying to take the sizing type of std::io::Writer, an unsized type
note: the compiler hit an unexpected failure path. 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
Could not compile `rust-http-codegen`.
To learn more, run the command again with --verbose.
prebuild.sh: line 10: codegen/target/codegen: No such file or directory
prebuild.sh: line 11: codegen/target/codegen: No such file or directory
</code></pre></div>
<p dir="auto">Complete newbie to Rust, so I have no idea where the actual error lies.</p>
<p dir="auto">OS: Mac OS 10.9.4<br>
Arch: x86_64</p> | <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use std::io;
fn f(wr: &mut Writer) {
wr.write_str("hello").ok().expect("failed");
}
fn main() {
let mut wr = box io::stdout() as Box<Writer + 'static>;
f(&mut wr);
}"><pre class="notranslate"><span class="pl-k">use</span> std<span class="pl-kos">::</span>io<span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">f</span><span class="pl-kos">(</span><span class="pl-s1">wr</span><span class="pl-kos">:</span> <span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">Writer</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
wr<span class="pl-kos">.</span><span class="pl-en">write_str</span><span class="pl-kos">(</span><span class="pl-s">"hello"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ok</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s">"failed"</span><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> <span class="pl-k">mut</span> wr = box io<span class="pl-kos">::</span><span class="pl-en">stdout</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">Writer</span> + <span class="pl-c1">'</span><span class="pl-ent">static</span><span class="pl-kos">></span><span class="pl-kos">;</span>
<span class="pl-en">f</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> wr<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="$ rustc foo.rs
error: internal compiler error: trying to take the sizing type of std::io::Writer, an unsized type
note: the compiler hit an unexpected failure path. 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
task 'rustc' failed at 'Box<Any>', /home/keegan/rust/src/libsyntax/diagnostic.rs:169 "><pre class="notranslate"><code class="notranslate">$ rustc foo.rs
error: internal compiler error: trying to take the sizing type of std::io::Writer, an unsized type
note: the compiler hit an unexpected failure path. 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
task 'rustc' failed at 'Box<Any>', /home/keegan/rust/src/libsyntax/diagnostic.rs:169
</code></pre></div>
<p dir="auto">upstream Rust version: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/828e075abd8ee2f8c16f6cb1b93c0d99307e704d/hovercard" href="https://github.com/rust-lang/rust/commit/828e075abd8ee2f8c16f6cb1b93c0d99307e704d"><tt>828e075</tt></a></p> | 1 |
<ul dir="auto">
<li>VSCode Version:latest</li>
<li>OS Version:win7</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>It automatically copy my code of .js file when I press Ctrl+s。</li>
</ol> | <ul dir="auto">
<li>open User settings</li>
<li>check the errors view, 2 warnings in settings.json (caused by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158879095" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/7312" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/7312/hovercard" href="https://github.com/microsoft/vscode/issues/7312">#7312</a>)</li>
<li>click on the warning. Error:</li>
</ul>
<blockquote>
<p dir="auto">Unable to open 'settings.json': Cannot read property 'then' of null.</p>
</blockquote> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nikita.tovstoles" rel="nofollow">Nikita Tovstoles</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9298?redirect=false" rel="nofollow">SPR-9298</a></strong> and commented</p>
<p dir="auto">On each web request, RequestMappingHandlerAdapter.invokeHandlerMethod() indirectly calls MethodParameter.getParameterAnnotations(), which calls into JRE lib method causing monitor contention. See screen shots & <a href="http://ecorebates-misc.s3.amazonaws.com/CLP-895/clp-895-init.snapshot" rel="nofollow">YourKit snapshot</a>. Most likely will need to patch spring (caching results of calls to java.lang.reflect.Method.getParameterAnnotations())</p>
<p dir="auto">Looking at Spring's MethodParameter:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public Annotation[] getParameterAnnotations() {
if (this.parameterAnnotations == null) {
Annotation[][] annotationArray = (this.method != null ?
this.method.getParameterAnnotations() : this.constructor.getParameterAnnotations());
if (this.parameterIndex >= 0 && this.parameterIndex < annotationArray.length) {
this.parameterAnnotations = annotationArray[this.parameterIndex];
}
else {
this.parameterAnnotations = new Annotation[0];
}
}
return this.parameterAnnotations;
}"><pre class="notranslate"><code class="notranslate">public Annotation[] getParameterAnnotations() {
if (this.parameterAnnotations == null) {
Annotation[][] annotationArray = (this.method != null ?
this.method.getParameterAnnotations() : this.constructor.getParameterAnnotations());
if (this.parameterIndex >= 0 && this.parameterIndex < annotationArray.length) {
this.parameterAnnotations = annotationArray[this.parameterIndex];
}
else {
this.parameterAnnotations = new Annotation[0];
}
}
return this.parameterAnnotations;
}
</code></pre></div>
<p dir="auto">results of calls on Method & Constructor:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Annotation[][] annotationArray = (this.method != null ?
this.method.getParameterAnnotations() : this.constructor.getParameterAnnotations());"><pre class="notranslate"><code class="notranslate">Annotation[][] annotationArray = (this.method != null ?
this.method.getParameterAnnotations() : this.constructor.getParameterAnnotations());
</code></pre></div>
<p dir="auto">should be cached in two static Maps (since MethodParameter object is recreated per request)</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 GA</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/19560/screenshot-1.jpg" rel="nofollow">screenshot-1.jpg</a> (<em>224.28 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/19561/screenshot-2.jpg" rel="nofollow">screenshot-2.jpg</a> (<em>291.28 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="398152908" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14382" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14382/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14382">#14382</a> Share MethodParameter cache between HandlerMethods (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112219" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12967" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12967/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12967">#12967</a> Look up of parameter annotations causes deadlock (<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="398114812" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13379" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13379/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13379">#13379</a> annotations need to be cached (jvm concurrency issue) (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto">0 votes, 7 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=pcl" rel="nofollow">Patrick Linskey</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9748?redirect=false" rel="nofollow">SPR-9748</a></strong> and commented</p>
<p dir="auto">RequestMappingHandlerAdapter creates a new HandlerMethod for each request. HandlerMethods cache their MethodParameters to avoid costly reflection calls each time annotation stats are needed, but the per-request copy circumvents this cache. This patch explicitly copies the MethodParameter cache from a HandlerMethod and its request-scoped dependents.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1.1, 3.1.2, 3.2 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="398118478" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13936" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13936/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13936">#13936</a> monitor contention at org.springframework.core.MethodParameter.getParameterAnnotations() (<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="398173917" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/17058" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/17058/hovercard" href="https://github.com/spring-projects/spring-framework/issues/17058">#17058</a> NPE in org.springframework.core.MethodParameter.getParameterName (possible race condition)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398177812" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/17429" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/17429/hovercard" href="https://github.com/spring-projects/spring-framework/issues/17429">#17429</a> Thread contention in HandlerMethod due to unnecessary BeanFactory.getType call</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/229537288a721ea1f73d7fee5ce9dd60ec46c23e/hovercard" href="https://github.com/spring-projects/spring-framework/commit/229537288a721ea1f73d7fee5ce9dd60ec46c23e"><tt>2295372</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/0a877afa061aacc67b238be6015bf82a3eecf0eb/hovercard" href="https://github.com/spring-projects/spring-framework/commit/0a877afa061aacc67b238be6015bf82a3eecf0eb"><tt>0a877af</tt></a></p>
<p dir="auto">1 votes, 3 watchers</p> | 1 |
<p dir="auto">here is my benchmark info (The model is inception-2015-12-05):<br>
I tensorflow/core/util/stat_summarizer.cc:262] 50 runs, avg 2880 ms, 1960 nodes defined 1664 nodes observed<br>
============ Top by duration =================<br>
[start] [first] [avg] [%] [cdf%] [Op] [Name]<br>
348.471 199.520 162.116 5.629% 5.629% QuantizedConv2D conv_4/Conv2D_eightbit_quantized_conv<br>
153.190 115.819 109.304 3.796% 9.425% QuantizedConv2D conv_2/Conv2D_eightbit_quantized_conv<br>
824.866 80.364 76.637 2.661% 12.086% QuantizedConv2D mixed_3/conv/Conv2D_eightbit_quantized_conv<br>
54.955 74.988 65.929 2.289% 14.375% QuantizedConv2D conv_1/Conv2D_eightbit_quantized_conv<br>
1594.582 51.488 52.699 1.830% 16.205% QuantizedConv2D mixed_10/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1464.195 48.764 48.403 1.681% 17.886% QuantizedConv2D mixed_9/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1553.345 40.343 42.581 1.479% 19.365% QuantizedConv2D mixed_10/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
588.883 36.744 39.660 1.377% 20.742% QuantizedConv2D mixed/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
1553.350 45.938 38.929 1.352% 22.094% QuantizedConv2D mixed_10/tower/conv/Conv2D_eightbit_quantized_conv<br>
672.714 33.140 35.053 1.217% 23.311% QuantizedConv2D mixed_1/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
1210.702 28.586 34.865 1.211% 24.521% QuantizedConv2D mixed_7/conv/Conv2D_eightbit_quantized_conv<br>
757.103 37.392 33.253 1.155% 25.676% QuantizedConv2D mixed_2/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
986.100 28.534 33.197 1.153% 26.829% QuantizedConv2D mixed_5/conv/Conv2D_eightbit_quantized_conv<br>
1210.706 33.822 32.936 1.144% 27.973% QuantizedConv2D mixed_7/tower/conv/Conv2D_eightbit_quantized_conv<br>
1553.349 44.802 32.891 1.142% 29.115% QuantizedConv2D mixed_10/conv/Conv2D_eightbit_quantized_conv<br>
1210.701 35.172 32.204 1.118% 30.233% QuantizedConv2D mixed_7/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1090.376 37.017 31.968 1.110% 31.343% QuantizedConv2D mixed_6/conv/Conv2D_eightbit_quantized_conv<br>
1213.365 32.057 31.738 1.102% 32.445% QuantizedConv2D mixed_7/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
849.401 44.313 31.509 1.094% 33.539% QuantizedConv2D mixed_3/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
589.508 34.897 30.761 1.068% 34.607% QuantizedConv2D mixed/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
908.076 26.733 30.611 1.063% 35.670% QuantizedConv2D mixed_4/conv/Conv2D_eightbit_quantized_conv<br>
1093.255 34.497 29.926 1.039% 36.709% QuantizedConv2D mixed_6/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
988.679 27.107 29.897 1.038% 37.748% QuantizedConv2D mixed_5/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
1090.377 34.881 29.526 1.025% 38.773% QuantizedConv2D mixed_6/tower/conv/Conv2D_eightbit_quantized_conv<br>
986.103 29.144 29.099 1.010% 39.783% QuantizedConv2D mixed_5/tower/conv/Conv2D_eightbit_quantized_conv<br>
911.030 32.084 28.822 1.001% 40.784% QuantizedConv2D mixed_4/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
628.323 22.784 28.299 0.983% 41.767% QuantizedConv2D mixed/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
682.759 24.791 28.184 0.979% 42.745% QuantizedConv2D mixed_1/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1090.373 37.104 27.889 0.968% 43.714% QuantizedConv2D mixed_6/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
986.098 28.129 27.769 0.964% 44.678% QuantizedConv2D mixed_5/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1554.331 35.148 26.506 0.920% 45.599% QuantizedConv2D mixed_10/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
1246.348 28.499 26.234 0.911% 46.510% QuantizedConv2D mixed_7/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
908.072 32.080 26.203 0.910% 47.419% QuantizedConv2D mixed_4/tower/conv/Conv2D_eightbit_quantized_conv<br>
274.045 35.524 25.959 0.901% 48.321% QuantizedBatchNormWithGlobalNormalization conv_2/batchnorm_eightbit_quantized_batch_norm<br>
757.224 38.495 25.621 0.890% 49.210% QuantizedConv2D mixed_2/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1670.984 18.898 25.575 0.888% 50.099% QuantizedMatMul softmax/logits/MatMul_eightbit_quantized_bias_add<br>
908.072 19.688 25.503 0.886% 50.984% QuantizedConv2D mixed_4/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1431.550 31.564 25.326 0.879% 51.864% QuantizedConv2D mixed_9/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
798.592 22.487 25.139 0.873% 52.736% QuantizedConv2D mixed_2/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
710.682 28.952 25.041 0.870% 53.606% QuantizedConv2D mixed_1/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
1249.958 26.722 24.774 0.860% 54.466% QuantizedConv2D mixed_7/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1276.259 24.995 24.427 0.848% 55.315% QuantizedConv2D mixed_7/tower/conv_2/Conv2D_eightbit_quantized_conv<br>
1289.982 17.597 23.551 0.818% 56.132% QuantizedConv2D mixed_7/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
1431.555 18.537 22.818 0.792% 56.925% QuantizedConv2D mixed_9/tower/conv/Conv2D_eightbit_quantized_conv<br>
824.860 21.110 22.180 0.770% 57.695% QuantizedConv2D mixed_3/tower/conv/Conv2D_eightbit_quantized_conv<br>
1646.740 22.990 21.676 0.753% 58.448% QuantizedConv2D mixed_10/tower_1/mixed/conv_1/Conv2D_eightbit_quantized_conv<br>
1646.744 22.860 21.567 0.749% 59.196% QuantizedConv2D mixed_10/tower_1/mixed/conv/Conv2D_eightbit_quantized_conv<br>
1371.468 20.181 21.385 0.743% 59.939% QuantizedConv2D mixed_8/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
1372.601 23.081 20.983 0.729% 60.668% QuantizedConv2D mixed_8/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1043.432 26.873 20.580 0.715% 61.382% QuantizedConv2D mixed_5/tower/conv_2/Conv2D_eightbit_quantized_conv<br>
1149.722 16.327 20.291 0.705% 62.087% QuantizedConv2D mixed_6/tower/conv_2/Conv2D_eightbit_quantized_conv<br>
1600.192 25.630 19.435 0.675% 62.762% QuantizedConv2D mixed_10/tower/mixed/conv/Conv2D_eightbit_quantized_conv<br>
1017.888 21.327 19.281 0.670% 63.431% QuantizedConv2D mixed_5/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
1308.978 18.376 19.117 0.664% 64.095% QuantizedConv2D mixed_7/tower_1/conv_3/Conv2D_eightbit_quantized_conv<br>
1128.559 19.422 18.884 0.656% 64.751% QuantizedConv2D mixed_6/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
1513.946 38.340 18.755 0.651% 65.402% QuantizedConv2D mixed_9/tower_1/mixed/conv/Conv2D_eightbit_quantized_conv<br>
1600.189 29.234 18.674 0.648% 66.050% QuantizedConv2D mixed_10/tower/mixed/conv_1/Conv2D_eightbit_quantized_conv<br>
1397.119 19.557 18.436 0.640% 66.691% QuantizedConv2D mixed_8/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
1015.906 20.308 18.426 0.640% 67.330% QuantizedConv2D mixed_5/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1135.983 14.258 18.416 0.639% 67.970% QuantizedConv2D mixed_6/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1450.805 29.566 18.226 0.633% 68.603% QuantizedConv2D mixed_9/tower/mixed/conv_1/Conv2D_eightbit_quantized_conv<br>
1328.743 22.393 18.113 0.629% 69.232% QuantizedConv2D mixed_7/tower_1/conv_4/Conv2D_eightbit_quantized_conv<br>
1450.809 28.226 17.926 0.622% 69.854% QuantizedConv2D mixed_9/tower/mixed/conv/Conv2D_eightbit_quantized_conv<br>
743.108 12.778 17.708 0.615% 70.469% QuantizedConv2D mixed_2/conv/Conv2D_eightbit_quantized_conv<br>
551.000 18.514 17.690 0.614% 71.083% QuantizedBatchNormWithGlobalNormalization conv_4/batchnorm_eightbit_quantized_batch_norm<br>
743.106 11.945 17.686 0.614% 71.698% QuantizedConv2D mixed_2/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1158.867 17.448 17.553 0.610% 72.307% QuantizedConv2D mixed_6/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
1431.553 15.412 17.497 0.608% 72.915% QuantizedConv2D mixed_9/conv/Conv2D_eightbit_quantized_conv<br>
654.795 18.570 17.457 0.606% 73.521% QuantizedConv2D mixed_1/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1513.932 16.375 17.418 0.605% 74.126% QuantizedConv2D mixed_9/tower_1/mixed/conv_1/Conv2D_eightbit_quantized_conv<br>
654.796 16.350 16.927 0.588% 74.713% QuantizedConv2D mixed_1/conv/Conv2D_eightbit_quantized_conv<br>
1037.406 21.229 16.914 0.587% 75.301% QuantizedConv2D mixed_5/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
743.109 12.459 16.895 0.587% 75.887% QuantizedConv2D mixed_2/tower/conv/Conv2D_eightbit_quantized_conv<br>
1352.871 17.220 16.892 0.587% 76.474% QuantizedConv2D mixed_8/tower/conv/Conv2D_eightbit_quantized_conv<br>
1352.867 18.301 16.870 0.586% 77.060% QuantizedConv2D mixed_8/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1432.532 22.308 16.561 0.575% 77.635% QuantizedConv2D mixed_9/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
952.475 12.333 16.346 0.568% 78.202% QuantizedConv2D mixed_4/tower/conv_2/Conv2D_eightbit_quantized_conv<br>
654.800 16.098 16.232 0.564% 78.766% QuantizedConv2D mixed_1/tower/conv/Conv2D_eightbit_quantized_conv<br>
1191.637 17.268 15.125 0.525% 79.291% QuantizedConv2D mixed_6/tower_1/conv_4/Conv2D_eightbit_quantized_conv<br>
1073.325 15.302 14.567 0.506% 79.797% QuantizedConv2D mixed_5/tower_1/conv_4/Conv2D_eightbit_quantized_conv<br>
27.923 23.420 14.489 0.503% 80.300% QuantizedBatchNormWithGlobalNormalization conv/batchnorm_eightbit_quantized_batch_norm<br>
658.731 11.937 13.903 0.483% 80.783% QuantizedConv2D mixed_1/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
757.306 25.541 13.874 0.482% 81.265% QuantizedConv2D mixed_2/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
1177.505 12.944 13.679 0.475% 81.740% QuantizedConv2D mixed_6/tower_1/conv_3/Conv2D_eightbit_quantized_conv<br>
574.255 13.735 13.379 0.465% 82.204% QuantizedConv2D mixed/conv/Conv2D_eightbit_quantized_conv<br>
574.230 11.661 13.310 0.462% 82.667% QuantizedConv2D mixed/tower_1/conv/Conv2D_eightbit_quantized_conv<br>
1060.333 11.805 13.287 0.461% 83.128% QuantizedConv2D mixed_5/tower_1/conv_3/Conv2D_eightbit_quantized_conv<br>
132.755 17.705 13.125 0.456% 83.584% QuantizedBatchNormWithGlobalNormalization conv_1/batchnorm_eightbit_quantized_batch_norm<br>
971.865 12.488 12.591 0.437% 84.021% QuantizedConv2D mixed_4/tower_1/conv_4/Conv2D_eightbit_quantized_conv<br>
574.298 12.449 12.557 0.436% 84.457% QuantizedConv2D mixed/tower/conv/Conv2D_eightbit_quantized_conv<br>
946.591 15.766 12.203 0.424% 84.881% QuantizedConv2D mixed_4/tower_1/conv_2/Conv2D_eightbit_quantized_conv<br>
941.124 10.019 12.132 0.421% 85.302% QuantizedConv2D mixed_4/tower/conv_1/Conv2D_eightbit_quantized_conv<br>
930.408 14.499 12.010 0.417% 85.719% QuantizedConv2D mixed_4/tower_1/conv_1/Conv2D_eightbit_quantized_conv<br>
1418.545 12.330 10.408 0.361% 86.080% QuantizedConv2D mixed_8/tower_1/conv_3/Conv2D_eightbit_quantized_conv<br>
319.410 10.155 9.309 0.323% 86.404% QuantizedConv2D conv_3/Conv2D_eightbit_quantized_conv<br>
963.651 7.257 8.809 0.306% 86.709% QuantizedConv2D mixed_4/tower_1/conv_3/Conv2D_eightbit_quantized_conv<br>
331.914 14.339 8.533 0.296% 87.006% QuantizedBatchNormWithGlobalNormalization conv_3/batchnorm_eightbit_quantized_batch_norm<br>
7.234 16.748 8.518 0.296% 87.302% QuantizedConv2D conv/Conv2D_eightbit_quantized_conv<br>
578.657 7.823 8.201 0.285% 87.586% QuantizedConv2D mixed/tower_2/conv/Conv2D_eightbit_quantized_conv<br>
590.466 8.945 7.803 0.271% 87.857% QuantizeDownAndShrinkRange mixed/conv/batchnorm_eightbit_quantize_down<br>
758.138 11.852 7.449 0.259% 88.116% QuantizeDownAndShrinkRange mixed_2/conv/batchnorm_eightbit_quantize_down<br>
896.657 7.011 7.431 0.258% 88.374% QuantizedConv2D mixed_3/tower/conv_2/Conv2D_eightbit_quantized_conv<br>
654.795 3.927 5.455 0.189% 88.563% QuantizedAvgPool mixed_1/tower_2/pool_eightbit_quantized<br>
743.107 14.192 5.226 0.181% 88.745% QuantizedAvgPool mixed_2/tower_2/pool_eightbit_quantized<br>
784.526 0.270 5.046 0.175% 88.920% QuantizeDownAndShrinkRange mixed_2/tower_2/conv/batchnorm_eightbit_quantize_down<br>
673.545 0.263 4.586 0.159% 89.079% QuantizeDownAndShrinkRange mixed_1/conv/batchnorm_eightbit_quantize_down<br>
845.982 0.646 4.385 0.152% 89.232% QuantizeDownAndShrinkRange mixed_3/tower/conv/Conv2D_eightbit_quantize_down<br>
673.023 0.279 4.126 0.143% 89.375% QuantizeDownAndShrinkRange mixed_1/tower_2/conv/batchnorm_eightbit_quantize_down<br>
269.022 5.018 4.039 0.140% 89.515% QuantizeDownAndShrinkRange conv_2/Conv2D_eightbit_quantize_down<br>
574.249 4.398 3.825 0.133% 89.648% QuantizedAvgPool mixed/tower_2/pool_eightbit_quantized<br>
1127.402 0.210 3.734 0.130% 89.778% QuantizeDownAndShrinkRange mixed_6/conv/Conv2D_eightbit_quantize_down<br>
309.582 4.882 3.708 0.129% 89.906% QuantizeDownAndShrinkRange conv_2/batchnorm_eightbit_quantize_down<br>
1246.651 0.211 3.177 0.110% 90.017% QuantizeDownAndShrinkRange mixed_7/tower_2/conv/batchnorm_eightbit_quantize_down<br>
1239.296 2.590 3.160 0.110% 90.126% QuantizeDownAndShrinkRange mixed_7/conv/Conv2D_eightbit_quantize_down<br>
1015.791 0.184 3.154 0.110% 90.236% QuantizeDownAndShrinkRange mixed_5/tower_2/conv/Conv2D_eightbit_quantize_down<br>
589.067 0.368 3.109 0.108% 90.344% QuantizeDownAndShrinkRange mixed/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1245.428 0.211 3.066 0.106% 90.450% QuantizeDownAndShrinkRange mixed_7/tower_2/conv/Conv2D_eightbit_quantize_down<br>
1243.366 0.220 2.937 0.102% 90.552% QuantizeDownAndShrinkRange mixed_7/conv/batchnorm_eightbit_quantize_down<br>
314.719 4.671 2.925 0.102% 90.654% QuantizedMaxPool pool_eightbit_quantized<br>
548.004 2.990 2.676 0.093% 90.747% QuantizeDownAndShrinkRange conv_4/Conv2D_eightbit_quantize_down<br>
986.100 2.571 2.643 0.092% 90.839% QuantizedAvgPool mixed_5/tower_2/pool_eightbit_quantized<br>
624.922 2.845 2.627 0.091% 90.930% QuantizedBatchNormWithGlobalNormalization mixed/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1210.698 2.659 2.564 0.089% 91.019% QuantizedAvgPool mixed_7/tower_2/pool_eightbit_quantized<br>
569.522 2.728 2.518 0.087% 91.106% QuantizeDownAndShrinkRange conv_4/batchnorm_eightbit_quantize_down<br>
1014.642 0.200 2.483 0.086% 91.192% QuantizeDownAndShrinkRange mixed_5/conv/Conv2D_eightbit_quantize_down<br>
908.075 2.947 2.448 0.085% 91.277% QuantizedAvgPool mixed_4/tower_2/pool_eightbit_quantized<br>
24.010 3.897 2.405 0.084% 91.361% QuantizeDownAndShrinkRange conv/Conv2D_eightbit_quantize_down<br>
1090.373 2.874 2.401 0.083% 91.444% QuantizedAvgPool mixed_6/tower_2/pool_eightbit_quantized<br>
794.763 1.403 2.383 0.083% 91.527% QuantizedBatchNormWithGlobalNormalization mixed_2/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1371.251 0.178 2.374 0.082% 91.610% QuantizeDownAndShrinkRange mixed_8/tower/conv/batchnorm_eightbit_quantize_down<br>
651.526 2.474 2.333 0.081% 91.691% QuantizedBatchNormWithGlobalNormalization mixed/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
707.929 2.311 2.318 0.081% 91.771% QuantizedBatchNormWithGlobalNormalization mixed_1/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1129.115 5.158 2.287 0.079% 91.850% QuantizeDownAndShrinkRange mixed_6/conv/batchnorm_eightbit_quantize_down<br>
939.397 0.211 2.285 0.079% 91.930% QuantizeDownAndShrinkRange mixed_4/conv/batchnorm_eightbit_quantize_down<br>
51.354 3.404 2.267 0.079% 92.009% QuantizeDownAndShrinkRange conv/batchnorm_eightbit_quantize_down<br>
676.107 6.540 2.243 0.078% 92.086% QuantizeDownAndShrinkRange mixed_1/tower_1/conv/batchnorm_eightbit_quantize_down<br>
894.118 2.012 2.242 0.078% 92.164% QuantizedBatchNormWithGlobalNormalization mixed_3/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
947.078 3.976 2.233 0.078% 92.242% QuantizeDownAndShrinkRange mixed_4/tower_2/conv/batchnorm_eightbit_quantize_down<br>
796.073 2.036 2.229 0.077% 92.319% QuantizedBatchNormWithGlobalNormalization mixed_2/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
755.892 0.239 2.216 0.077% 92.396% QuantizeDownAndShrinkRange mixed_2/conv/Conv2D_eightbit_quantize_down<br>
1016.312 0.250 2.215 0.077% 92.473% QuantizeDownAndShrinkRange mixed_5/conv/batchnorm_eightbit_quantize_down<br>
707.511 0.252 2.187 0.076% 92.549% QuantizeDownAndShrinkRange mixed_1/tower/conv_1/batchnorm_eightbit_quantize_down<br>
1129.453 4.033 2.144 0.074% 92.624% QuantizeDownAndShrinkRange mixed_6/tower_2/conv/batchnorm_eightbit_quantize_down<br>
670.963 2.054 2.113 0.073% 92.697% QuantizedBatchNormWithGlobalNormalization mixed_1/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
588.324 2.136 2.103 0.073% 92.770% QuantizedBatchNormWithGlobalNormalization mixed/conv/batchnorm_eightbit_quantized_batch_norm<br>
756.135 1.997 2.080 0.072% 92.842% QuantizedBatchNormWithGlobalNormalization mixed_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
756.893 0.281 2.072 0.072% 92.914% QuantizeDownAndShrinkRange mixed_2/tower_1/conv/batchnorm_eightbit_quantize_down<br>
740.059 2.084 2.069 0.072% 92.986% QuantizedBatchNormWithGlobalNormalization mixed_1/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
821.437 2.547 2.067 0.072% 93.058% QuantizedBatchNormWithGlobalNormalization mixed_2/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1017.169 0.408 2.062 0.072% 93.129% QuantizeDownAndShrinkRange mixed_5/tower_2/conv/batchnorm_eightbit_quantize_down<br>
625.635 0.293 2.044 0.071% 93.200% QuantizeDownAndShrinkRange mixed/tower/conv_1/Conv2D_eightbit_quantize_down<br>
129.959 2.789 2.007 0.070% 93.270% QuantizeDownAndShrinkRange conv_1/Conv2D_eightbit_quantize_down<br>
905.567 1.910 1.991 0.069% 93.339% QuantizedBatchNormWithGlobalNormalization mixed_3/conv/batchnorm_eightbit_quantized_batch_norm<br>
1301.262 0.225 1.967 0.068% 93.407% QuantizeDownAndShrinkRange mixed_7/tower/conv_2/Conv2D_eightbit_quantize_down<br>
846.632 2.042 1.963 0.068% 93.476% QuantizedBatchNormWithGlobalNormalization mixed_3/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
625.932 1.353 1.955 0.068% 93.543% QuantizedBatchNormWithGlobalNormalization mixed/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
150.469 2.571 1.954 0.068% 93.611% QuantizeDownAndShrinkRange conv_1/batchnorm_eightbit_quantize_down<br>
755.340 1.549 1.951 0.068% 93.679% QuantizedBatchNormWithGlobalNormalization mixed_2/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
848.680 0.633 1.913 0.066% 93.745% QuantizeDownAndShrinkRange mixed_3/tower/conv/batchnorm_eightbit_quantize_down<br>
673.656 2.444 1.904 0.066% 93.812% QuantizedBatchNormWithGlobalNormalization mixed_1/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1276.689 9.140 1.887 0.066% 93.877% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
586.394 2.666 1.884 0.065% 93.943% QuantizedBatchNormWithGlobalNormalization mixed/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
572.418 1.798 1.769 0.061% 94.004% QuantizedMaxPool pool_1_eightbit_quantized<br>
783.151 1.370 1.756 0.061% 94.065% QuantizedBatchNormWithGlobalNormalization mixed_2/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
671.424 2.115 1.747 0.061% 94.126% QuantizedBatchNormWithGlobalNormalization mixed_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1127.757 0.201 1.734 0.060% 94.186% QuantizeDownAndShrinkRange mixed_6/tower_2/conv/Conv2D_eightbit_quantize_down<br>
706.134 1.372 1.714 0.060% 94.245% QuantizedBatchNormWithGlobalNormalization mixed_1/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
934.819 3.298 1.690 0.059% 94.304% QuantizeDownAndShrinkRange mixed_4/conv/Conv2D_eightbit_quantize_down<br>
945.612 1.458 1.690 0.059% 94.363% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
586.995 1.576 1.690 0.059% 94.421% QuantizedBatchNormWithGlobalNormalization mixed/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1241.891 1.468 1.645 0.057% 94.479% QuantizedBatchNormWithGlobalNormalization mixed_7/conv/batchnorm_eightbit_quantized_batch_norm<br>
1244.535 0.188 1.629 0.057% 94.535% QuantizeDownAndShrinkRange mixed_7/tower/conv/Conv2D_eightbit_quantize_down<br>
794.502 0.257 1.624 0.056% 94.592% QuantizeDownAndShrinkRange mixed_2/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1247.636 2.254 1.475 0.051% 94.643% QuantizeDownAndShrinkRange mixed_7/tower_1/conv/batchnorm_eightbit_quantize_down<br>
782.853 0.294 1.471 0.051% 94.694% QuantizeDownAndShrinkRange mixed_2/tower_2/conv/Conv2D_eightbit_quantize_down<br>
796.173 0.242 1.458 0.051% 94.744% QuantizeDownAndShrinkRange mixed_2/tower/conv_1/batchnorm_eightbit_quantize_down<br>
1014.845 1.460 1.450 0.050% 94.795% QuantizedBatchNormWithGlobalNormalization mixed_5/conv/batchnorm_eightbit_quantized_batch_norm<br>
1245.882 0.292 1.438 0.050% 94.845% QuantizeDownAndShrinkRange mixed_7/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1245.641 1.005 1.438 0.050% 94.895% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
329.577 2.330 1.415 0.049% 94.944% QuantizeDownAndShrinkRange conv_3/Conv2D_eightbit_quantize_down<br>
755.816 1.034 1.409 0.049% 94.993% QuantizedBatchNormWithGlobalNormalization mixed_2/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1285.835 1.461 1.408 0.049% 95.042% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
943.121 2.486 1.391 0.048% 95.090% QuantizeDownAndShrinkRange mixed_4/tower_2/conv/Conv2D_eightbit_quantize_down<br>
671.166 1.264 1.389 0.048% 95.138% QuantizedBatchNormWithGlobalNormalization mixed_1/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1015.256 0.178 1.369 0.048% 95.186% QuantizeDownAndShrinkRange mixed_5/tower/conv/Conv2D_eightbit_quantize_down<br>
938.122 1.264 1.356 0.047% 95.233% QuantizedBatchNormWithGlobalNormalization mixed_4/conv/batchnorm_eightbit_quantized_batch_norm<br>
1015.978 1.184 1.350 0.047% 95.280% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
627.290 0.280 1.347 0.047% 95.326% QuantizeDownAndShrinkRange mixed/tower/conv_1/batchnorm_eightbit_quantize_down<br>
705.870 0.261 1.347 0.047% 95.373% QuantizeDownAndShrinkRange mixed_1/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1015.665 0.182 1.340 0.047% 95.420% QuantizeDownAndShrinkRange mixed_5/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1036.229 0.172 1.338 0.046% 95.466% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1127.962 1.485 1.338 0.046% 95.513% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
1127.616 1.493 1.329 0.046% 95.559% QuantizedBatchNormWithGlobalNormalization mixed_6/conv/batchnorm_eightbit_quantized_batch_norm<br>
1301.492 1.461 1.324 0.046% 95.605% QuantizedBatchNormWithGlobalNormalization mixed_7/tower/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
346.260 2.064 1.319 0.046% 95.651% QuantizeDownAndShrinkRange conv_3/batchnorm_eightbit_quantize_down<br>
1275.068 0.957 1.314 0.046% 95.696% QuantizedBatchNormWithGlobalNormalization mixed_7/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
755.057 0.280 1.281 0.044% 95.741% QuantizeDownAndShrinkRange mixed_2/tower_1/conv/Conv2D_eightbit_quantize_down<br>
673.372 0.281 1.278 0.044% 95.785% QuantizeDownAndShrinkRange mixed_1/tower_1/conv/Conv2D_eightbit_quantize_down<br>
967.976 1.451 1.244 0.043% 95.828% QuantizedBatchNormWithGlobalNormalization mixed_4/tower/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1244.726 1.385 1.237 0.043% 95.871% QuantizedBatchNormWithGlobalNormalization mixed_7/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1246.178 1.451 1.234 0.043% 95.914% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1176.319 0.165 1.228 0.043% 95.957% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
671.153 0.267 1.220 0.042% 95.999% QuantizeDownAndShrinkRange mixed_1/conv/Conv2D_eightbit_quantize_down<br>
1166.058 0.416 1.216 0.042% 96.041% QuantizeDownAndShrinkRange mixed_6/tower/conv_2/Conv2D_eightbit_quantize_down<br>
1166.479 1.325 1.195 0.041% 96.083% QuantizedBatchNormWithGlobalNormalization mixed_6/tower/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
927.772 1.473 1.193 0.041% 96.124% QuantizeDownAndShrinkRange mixed_4/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1070.499 0.956 1.190 0.041% 96.166% QuantizedBatchNormWithGlobalNormalization mixed_5/tower/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
586.682 1.051 1.169 0.041% 96.206% QuantizedBatchNormWithGlobalNormalization mixed/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
1127.483 0.175 1.164 0.040% 96.247% QuantizeDownAndShrinkRange mixed_6/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1039.225 0.279 1.148 0.040% 96.286% QuantizeDownAndShrinkRange mixed_5/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1370.289 0.956 1.129 0.039% 96.326% QuantizedBatchNormWithGlobalNormalization mixed_8/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
824.866 1.453 1.122 0.039% 96.365% QuantizedMaxPool mixed_3/pool_eightbit_quantized<br>
1128.346 0.157 1.109 0.039% 96.403% QuantizeDownAndShrinkRange mixed_6/tower/conv/batchnorm_eightbit_quantize_down<br>
1125.273 2.229 1.099 0.038% 96.441% QuantizeDownAndShrinkRange mixed_6/tower/conv/Conv2D_eightbit_quantize_down<br>
588.578 0.230 1.098 0.038% 96.479% QuantizeDownAndShrinkRange mixed/tower/conv/batchnorm_eightbit_quantize_down<br>
587.738 0.192 1.096 0.038% 96.517% QuantizeDownAndShrinkRange mixed/tower_2/conv/batchnorm_eightbit_quantize_down<br>
1036.406 0.799 1.094 0.038% 96.555% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1148.374 1.069 1.091 0.038% 96.593% QuantizedBatchNormWithGlobalNormalization mixed_6/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1371.398 0.965 1.091 0.038% 96.631% QuantizedBatchNormWithGlobalNormalization mixed_8/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1287.305 2.608 1.086 0.038% 96.669% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
672.436 0.234 1.086 0.038% 96.707% QuantizeDownAndShrinkRange mixed_1/tower/conv/batchnorm_eightbit_quantize_down<br>
1014.450 1.208 1.083 0.038% 96.744% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1395.893 0.969 1.073 0.037% 96.782% QuantizedBatchNormWithGlobalNormalization mixed_8/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1307.784 0.954 1.062 0.037% 96.818% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1015.437 1.117 1.052 0.037% 96.855% QuantizedBatchNormWithGlobalNormalization mixed_5/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1127.663 1.496 1.031 0.036% 96.891% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
944.914 0.606 1.026 0.036% 96.926% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1416.925 1.304 1.026 0.036% 96.962% QuantizedBatchNormWithGlobalNormalization mixed_8/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1351.363 0.955 1.024 0.036% 96.997% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_1/conv_4/batchnorm_eightbit_quantized_batch_norm<br>
1070.312 0.183 1.023 0.036% 97.033% QuantizeDownAndShrinkRange mixed_5/tower/conv_2/Conv2D_eightbit_quantize_down<br>
1327.551 0.954 1.015 0.035% 97.068% QuantizedBatchNormWithGlobalNormalization mixed_7/tower_1/conv_3/batchnorm_eightbit_quantized_batch_norm<br>
1039.509 1.049 1.012 0.035% 97.103% QuantizedBatchNormWithGlobalNormalization mixed_5/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
670.675 0.284 1.010 0.035% 97.138% QuantizeDownAndShrinkRange mixed_1/tower_2/conv/Conv2D_eightbit_quantize_down<br>
1127.506 0.836 1.006 0.035% 97.173% QuantizedBatchNormWithGlobalNormalization mixed_6/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
964.815 3.157 1.006 0.035% 97.208% QuantizeDownAndShrinkRange mixed_4/tower/conv_2/Conv2D_eightbit_quantize_down<br>
587.998 0.322 0.999 0.035% 97.243% QuantizeDownAndShrinkRange mixed/conv/Conv2D_eightbit_quantize_down<br>
1209.109 0.959 0.997 0.035% 97.278% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_1/conv_4/batchnorm_eightbit_quantized_batch_norm<br>
929.251 0.883 0.995 0.035% 97.312% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
1088.848 0.952 0.993 0.034% 97.347% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_1/conv_4/batchnorm_eightbit_quantized_batch_norm<br>
1391.652 0.090 0.992 0.034% 97.381% QuantizeDownAndShrinkRange mixed_8/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1246.118 0.192 0.975 0.034% 97.415% QuantizeDownAndShrinkRange mixed_7/tower/conv/batchnorm_eightbit_quantize_down<br>
984.569 0.956 0.959 0.033% 97.448% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_1/conv_4/batchnorm_eightbit_quantized_batch_norm<br>
1157.845 0.806 0.957 0.033% 97.482% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1150.248 7.594 0.951 0.033% 97.515% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1058.866 1.213 0.949 0.033% 97.547% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1274.860 0.205 0.943 0.033% 97.580% QuantizeDownAndShrinkRange mixed_7/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1040.567 2.812 0.930 0.032% 97.613% QuantizeDownAndShrinkRange mixed_5/tower/conv_1/batchnorm_eightbit_quantize_down<br>
1148.006 0.364 0.925 0.032% 97.645% QuantizeDownAndShrinkRange mixed_6/tower/conv_1/Conv2D_eightbit_quantize_down<br>
1129.167 6.752 0.919 0.032% 97.677% QuantizeDownAndShrinkRange mixed_6/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1014.241 0.205 0.912 0.032% 97.708% QuantizeDownAndShrinkRange mixed_5/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1176.487 0.796 0.902 0.031% 97.740% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
969.433 0.211 0.894 0.031% 97.771% QuantizeDownAndShrinkRange mixed_4/tower/conv_2/batchnorm_eightbit_quantize_down<br>
1071.460 0.184 0.863 0.030% 97.801% QuantizeDownAndShrinkRange mixed_5/tower/conv_2/batchnorm_eightbit_quantize_down<br>
940.305 0.641 0.854 0.030% 97.830% QuantizedBatchNormWithGlobalNormalization mixed_4/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1190.636 0.795 0.853 0.030% 97.860% QuantizedBatchNormWithGlobalNormalization mixed_6/tower_1/conv_3/batchnorm_eightbit_quantized_batch_norm<br>
1058.651 0.211 0.833 0.029% 97.889% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
1149.454 0.211 0.827 0.029% 97.917% QuantizeDownAndShrinkRange mixed_6/tower/conv_1/batchnorm_eightbit_quantize_down<br>
951.307 0.975 0.824 0.029% 97.946% QuantizedBatchNormWithGlobalNormalization mixed_4/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1072.316 0.795 0.823 0.029% 97.975% QuantizedBatchNormWithGlobalNormalization mixed_5/tower_1/conv_3/batchnorm_eightbit_quantized_batch_norm<br>
756.856 0.200 0.821 0.029% 98.003% QuantizeDownAndShrinkRange mixed_2/tower/conv/batchnorm_eightbit_quantize_down<br>
1167.811 0.208 0.821 0.029% 98.032% QuantizeDownAndShrinkRange mixed_6/tower/conv_2/batchnorm_eightbit_quantize_down<br>
1370.098 0.187 0.819 0.028% 98.060% QuantizeDownAndShrinkRange mixed_8/tower/conv/Conv2D_eightbit_quantize_down<br>
1553.349 0.971 0.810 0.028% 98.088% QuantizedMaxPool mixed_10/tower_2/pool_eightbit_quantized<br>
1016.560 1.268 0.810 0.028% 98.116% QuantizeDownAndShrinkRange mixed_5/tower/conv/batchnorm_eightbit_quantize_down<br>
795.726 0.341 0.803 0.028% 98.144% QuantizeDownAndShrinkRange mixed_2/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
951.149 0.154 0.789 0.027% 98.172% QuantizeDownAndShrinkRange mixed_4/tower/conv_1/Conv2D_eightbit_quantize_down<br>
945.523 0.884 0.789 0.027% 98.199% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
940.952 0.143 0.747 0.026% 98.225% QuantizeDownAndShrinkRange mixed_4/tower/conv/batchnorm_eightbit_quantize_down<br>
962.594 0.873 0.730 0.025% 98.250% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_1/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
952.288 0.155 0.728 0.025% 98.276% QuantizeDownAndShrinkRange mixed_4/tower/conv_1/batchnorm_eightbit_quantize_down<br>
1276.031 0.188 0.705 0.024% 98.300% QuantizeDownAndShrinkRange mixed_7/tower/conv_1/batchnorm_eightbit_quantize_down<br>
962.364 0.227 0.690 0.024% 98.324% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
586.757 0.233 0.679 0.024% 98.348% QuantizeDownAndShrinkRange mixed/tower/conv/Conv2D_eightbit_quantize_down<br>
971.048 0.638 0.660 0.023% 98.370% QuantizedBatchNormWithGlobalNormalization mixed_4/tower_1/conv_3/batchnorm_eightbit_quantized_batch_norm<br>
1431.550 0.976 0.658 0.023% 98.393% QuantizedAvgPool mixed_9/tower_2/pool_eightbit_quantized<br>
1463.275 0.709 0.650 0.023% 98.416% QuantizedBatchNormWithGlobalNormalization mixed_9/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
940.158 0.142 0.634 0.022% 98.438% QuantizeDownAndShrinkRange mixed_4/tower/conv/Conv2D_eightbit_quantize_down<br>
1593.936 0.467 0.619 0.022% 98.459% QuantizedBatchNormWithGlobalNormalization mixed_10/tower_1/conv/batchnorm_eightbit_quantized_batch_norm<br>
585.913 0.475 0.611 0.021% 98.481% QuantizeDownAndShrinkRange mixed/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1302.961 0.304 0.578 0.020% 98.501% QuantizeDownAndShrinkRange mixed_7/tower/conv_2/batchnorm_eightbit_quantize_down<br>
1392.113 0.097 0.569 0.020% 98.520% QuantizeDownAndShrinkRange mixed_8/tower/conv_1/batchnorm_eightbit_quantize_down<br>
903.803 0.748 0.541 0.019% 98.539% QuantizedBatchNormWithGlobalNormalization mixed_3/tower/conv_2/batchnorm_eightbit_quantized_batch_norm<br>
1669.749 0.458 0.540 0.019% 98.558% QuantizedBatchNormWithGlobalNormalization mixed_10/tower_1/mixed/conv/batchnorm_eightbit_quantized_batch_norm<br>
707.555 0.370 0.540 0.019% 98.577% QuantizeDownAndShrinkRange mixed_1/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
907.481 0.346 0.529 0.018% 98.595% QuantizeDownAndShrinkRange mixed_3/conv/batchnorm_eightbit_quantize_down<br>
930.142 0.220 0.529 0.018% 98.614% QuantizeDownAndShrinkRange mixed_4/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1629.581 0.498 0.518 0.018% 98.632% QuantizedBatchNormWithGlobalNormalization mixed_10/tower/mixed/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
624.420 0.495 0.516 0.018% 98.649% QuantizeDownAndShrinkRange mixed/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
654.004 0.422 0.513 0.018% 98.667% QuantizeDownAndShrinkRange mixed/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1450.225 0.441 0.508 0.018% 98.685% QuantizedBatchNormWithGlobalNormalization mixed_9/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1625.984 0.441 0.504 0.018% 98.702% QuantizedBatchNormWithGlobalNormalization mixed_10/tower/mixed/conv/batchnorm_eightbit_quantized_batch_norm<br>
1479.160 0.426 0.501 0.017% 98.720% QuantizedBatchNormWithGlobalNormalization mixed_9/tower/mixed/conv/batchnorm_eightbit_quantized_batch_norm<br>
1552.490 0.405 0.499 0.017% 98.737% QuantizedBatchNormWithGlobalNormalization mixed_9/tower_1/mixed/conv/batchnorm_eightbit_quantized_batch_norm<br>
1599.427 0.593 0.497 0.017% 98.754% QuantizedBatchNormWithGlobalNormalization mixed_10/tower/conv/batchnorm_eightbit_quantized_batch_norm<br>
1158.655 0.177 0.496 0.017% 98.772% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
1480.531 0.649 0.495 0.017% 98.789% QuantizedBatchNormWithGlobalNormalization mixed_9/tower/mixed/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1530.484 0.612 0.484 0.017% 98.806% QuantizedBatchNormWithGlobalNormalization mixed_9/tower_1/mixed/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1447.088 0.558 0.479 0.017% 98.822% QuantizedBatchNormWithGlobalNormalization mixed_9/conv/batchnorm_eightbit_quantized_batch_norm<br>
1598.267 0.370 0.475 0.016% 98.839% QuantizedBatchNormWithGlobalNormalization mixed_10/conv/batchnorm_eightbit_quantized_batch_norm<br>
798.113 0.408 0.474 0.016% 98.855% QuantizeDownAndShrinkRange mixed_2/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
1513.106 0.619 0.473 0.016% 98.872% QuantizedBatchNormWithGlobalNormalization mixed_9/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
1669.868 0.474 0.468 0.016% 98.888% QuantizedBatchNormWithGlobalNormalization mixed_10/tower_1/mixed/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
893.727 0.384 0.468 0.016% 98.904% QuantizeDownAndShrinkRange mixed_3/tower/conv_1/Conv2D_eightbit_quantize_down<br>
742.641 0.452 0.464 0.016% 98.920% QuantizedConcat mixed_1/join_eightbit_quantized_concat<br>
1037.213 0.158 0.458 0.016% 98.936% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
1391.744 0.366 0.455 0.016% 98.952% QuantizedBatchNormWithGlobalNormalization mixed_8/tower/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
824.421 0.428 0.454 0.016% 98.968% QuantizedConcat mixed_2/join_eightbit_quantized_concat<br>
1060.085 0.190 0.454 0.016% 98.983% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1646.188 0.401 0.449 0.016% 98.999% QuantizedBatchNormWithGlobalNormalization mixed_10/tower_1/conv_1/batchnorm_eightbit_quantized_batch_norm<br>
627.772 0.458 0.443 0.015% 99.014% QuantizeDownAndShrinkRange mixed/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
6.239 0.976 0.429 0.015% 99.029% QuantizeV2 conv/Conv2D_eightbit_quantize_Mul<br>
651.111 0.411 0.415 0.014% 99.044% QuantizeDownAndShrinkRange mixed/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
586.490 0.187 0.410 0.014% 99.058% QuantizeDownAndShrinkRange mixed/tower_2/conv/Conv2D_eightbit_quantize_down<br>
946.413 0.133 0.395 0.014% 99.072% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
0.000 0.165 0.388 0.013% 99.085% _SOURCE<br>
1598.155 0.108 0.379 0.013% 99.098% QuantizeDownAndShrinkRange mixed_10/conv/Conv2D_eightbit_quantize_down<br>
905.237 0.326 0.375 0.013% 99.111% QuantizeDownAndShrinkRange mixed_3/conv/Conv2D_eightbit_quantize_down<br>
896.134 0.375 0.373 0.013% 99.124% QuantizeDownAndShrinkRange mixed_3/tower/conv_1/batchnorm_eightbit_quantize_down<br>
710.245 0.360 0.371 0.013% 99.137% QuantizeDownAndShrinkRange mixed_1/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
742.147 0.420 0.369 0.013% 99.150% QuantizeDownAndShrinkRange mixed_1/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
739.647 0.407 0.369 0.013% 99.163% QuantizeDownAndShrinkRange mixed_1/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
1307.586 0.195 0.366 0.013% 99.175% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
1670.654 0.283 0.364 0.013% 99.188% QuantizedAvgPool pool_3_eightbit_quantized<br>
821.088 0.345 0.364 0.013% 99.201% QuantizeDownAndShrinkRange mixed_2/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
1352.869 0.305 0.361 0.013% 99.213% QuantizedMaxPool mixed_8/pool_eightbit_quantized<br>
823.993 0.354 0.356 0.012% 99.226% QuantizeDownAndShrinkRange mixed_2/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1352.588 0.267 0.338 0.012% 99.237% QuantizedConcat mixed_7/join_eightbit_quantized_concat<br>
1090.046 0.315 0.338 0.012% 99.249% QuantizedConcat mixed_5/join_eightbit_quantized_concat<br>
1190.454 0.179 0.337 0.012% 99.261% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_3/Conv2D_eightbit_quantize_down<br>
1210.351 0.332 0.331 0.012% 99.272% QuantizedConcat mixed_6/join_eightbit_quantized_concat<br>
1308.742 0.192 0.322 0.011% 99.283% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1463.990 0.166 0.321 0.011% 99.295% QuantizeDownAndShrinkRange mixed_9/tower_1/conv/batchnorm_eightbit_quantize_down<br>
673.305 0.085 0.317 0.011% 99.306% QuantizedRelu mixed_1/tower_2/conv_eightbit_quantized<br>
985.777 0.308 0.316 0.011% 99.317% QuantizedConcat mixed_4/join_eightbit_quantized_concat<br>
755.577 0.234 0.304 0.011% 99.327% QuantizeDownAndShrinkRange mixed_2/tower/conv/Conv2D_eightbit_quantize_down<br>
1589.839 0.089 0.297 0.010% 99.337% QuantizeDownAndShrinkRange mixed_10/tower_2/conv/batchnorm_eightbit_quantize_down<br>
670.908 0.254 0.293 0.010% 99.348% QuantizeDownAndShrinkRange mixed_1/tower/conv/Conv2D_eightbit_quantize_down<br>
654.512 0.270 0.293 0.010% 99.358% QuantizedConcat mixed/join_eightbit_quantized_concat<br>
1372.369 0.194 0.292 0.010% 99.368% QuantizeDownAndShrinkRange mixed_8/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1454.917 0.343 0.284 0.010% 99.378% QuantizedBatchNormWithGlobalNormalization mixed_9/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
1589.616 0.220 0.280 0.010% 99.388% QuantizedBatchNormWithGlobalNormalization mixed_10/tower_2/conv/batchnorm_eightbit_quantized_batch_norm<br>
1073.115 0.178 0.277 0.010% 99.397% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_3/batchnorm_eightbit_quantize_down<br>
1593.697 0.236 0.266 0.009% 99.406% QuantizeDownAndShrinkRange mixed_10/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1454.845 0.069 0.261 0.009% 99.416% QuantizeDownAndShrinkRange mixed_9/tower_2/conv/Conv2D_eightbit_quantize_down<br>
1430.985 0.315 0.244 0.008% 99.424% QuantizedBatchNormWithGlobalNormalization mixed_8/tower_1/conv_3/batchnorm_eightbit_quantized_batch_norm<br>
1553.082 0.245 0.224 0.008% 99.432% QuantizedConcat mixed_9/join_eightbit_quantized_concat<br>
1395.688 0.202 0.224 0.008% 99.440% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1531.102 0.764 0.221 0.008% 99.447% QuantizeDownAndShrinkRange mixed_9/tower_1/mixed/conv_1/batchnorm_eightbit_quantize_down<br>
1447.650 0.192 0.218 0.008% 99.455% QuantizeDownAndShrinkRange mixed_9/conv/batchnorm_eightbit_quantize_down<br>
1455.264 2.639 0.217 0.008% 99.462% QuantizeDownAndShrinkRange mixed_9/tower_2/conv/batchnorm_eightbit_quantize_down<br>
1327.362 0.186 0.209 0.007% 99.470% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_3/Conv2D_eightbit_quantize_down<br>
1396.867 0.213 0.208 0.007% 99.477% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
1210.073 0.213 0.208 0.007% 99.484% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_4/batchnorm_eightbit_quantize_down<br>
1352.322 0.222 0.207 0.007% 99.491% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_4/batchnorm_eightbit_quantize_down<br>
1670.479 0.166 0.204 0.007% 99.498% QuantizedConcat mixed_10/join_eightbit_quantized_concat<br>
1351.148 0.212 0.203 0.007% 99.505% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_4/Conv2D_eightbit_quantize_down<br>
1418.237 0.240 0.202 0.007% 99.512% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1416.688 0.233 0.201 0.007% 99.519% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_2/Conv2D_eightbit_quantize_down<br>
1328.509 0.196 0.200 0.007% 99.526% QuantizeDownAndShrinkRange mixed_7/tower_1/conv_3/batchnorm_eightbit_quantize_down<br>
985.531 0.208 0.199 0.007% 99.533% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_4/batchnorm_eightbit_quantize_down<br>
1089.804 0.203 0.198 0.007% 99.540% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_4/batchnorm_eightbit_quantize_down<br>
1371.173 0.220 0.198 0.007% 99.547% QuantizeDownAndShrinkRange mixed_8/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1208.909 0.198 0.197 0.007% 99.554% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_4/Conv2D_eightbit_quantize_down<br>
1088.632 0.213 0.197 0.007% 99.561% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_4/Conv2D_eightbit_quantize_down<br>
984.358 0.206 0.197 0.007% 99.567% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_4/Conv2D_eightbit_quantize_down<br>
1479.039 0.118 0.196 0.007% 99.574% QuantizeDownAndShrinkRange mixed_9/tower/mixed/conv/Conv2D_eightbit_quantize_down<br>
1191.435 0.170 0.193 0.007% 99.581% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_3/batchnorm_eightbit_quantize_down<br>
314.482 0.231 0.191 0.007% 99.588% QuantizedRelu conv_2_eightbit_quantized<br>
1446.973 0.111 0.185 0.006% 99.594% QuantizeDownAndShrinkRange mixed_9/conv/Conv2D_eightbit_quantize_down<br>
1177.287 0.185 0.183 0.006% 99.600% QuantizeDownAndShrinkRange mixed_6/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
971.691 0.145 0.183 0.006% 99.607% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_3/batchnorm_eightbit_quantize_down<br>
907.896 0.164 0.182 0.006% 99.613% QuantizedConcat mixed_3/join_eightbit_quantized_concat<br>
963.472 0.148 0.173 0.006% 99.619% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_2/batchnorm_eightbit_quantize_down<br>
1072.144 0.170 0.171 0.006% 99.625% QuantizeDownAndShrinkRange mixed_5/tower_1/conv_3/Conv2D_eightbit_quantize_down<br>
1463.126 0.144 0.163 0.006% 99.631% QuantizeDownAndShrinkRange mixed_9/tower_1/conv/Conv2D_eightbit_quantize_down<br>
1594.407 0.135 0.159 0.006% 99.636% QuantizeDownAndShrinkRange mixed_10/tower_1/conv/batchnorm_eightbit_quantize_down<br>
1589.488 0.123 0.157 0.005% 99.642% QuantizeDownAndShrinkRange mixed_10/tower_2/conv/Conv2D_eightbit_quantize_down<br>
1598.640 0.151 0.154 0.005% 99.647% QuantizeDownAndShrinkRange mixed_10/conv/batchnorm_eightbit_quantize_down<br>
1599.293 0.129 0.154 0.005% 99.652% QuantizeDownAndShrinkRange mixed_10/tower/conv/Conv2D_eightbit_quantize_down<br>
970.913 0.132 0.149 0.005% 99.658% QuantizeDownAndShrinkRange mixed_4/tower_1/conv_3/Conv2D_eightbit_quantize_down<br>
54.775 0.173 0.149 0.005% 99.663% QuantizedRelu conv_eightbit_quantized<br>
1512.964 0.138 0.143 0.005% 99.668% QuantizeDownAndShrinkRange mixed_9/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1629.432 0.145 0.140 0.005% 99.673% QuantizeDownAndShrinkRange mixed_10/tower/mixed/conv_1/Conv2D_eightbit_quantize_down<br>
572.257 0.153 0.139 0.005% 99.677% QuantizedRelu conv_4_eightbit_quantized<br>
1480.376 0.151 0.138 0.005% 99.682% QuantizeDownAndShrinkRange mixed_9/tower/mixed/conv_1/Conv2D_eightbit_quantize_down<br>
1669.608 0.138 0.136 0.005% 99.687% QuantizeDownAndShrinkRange mixed_10/tower_1/mixed/conv/Conv2D_eightbit_quantize_down<br>
1670.210 0.172 0.135 0.005% 99.692% QuantizeDownAndShrinkRange mixed_10/tower_1/mixed/conv/batchnorm_eightbit_quantize_down<br>
1646.075 0.110 0.135 0.005% 99.696% QuantizeDownAndShrinkRange mixed_10/tower_1/conv_1/Conv2D_eightbit_quantize_down<br>
1625.831 0.150 0.133 0.005% 99.701% QuantizeDownAndShrinkRange mixed_10/tower/mixed/conv/Conv2D_eightbit_quantize_down<br>
1481.185 0.129 0.133 0.005% 99.705% QuantizeDownAndShrinkRange mixed_9/tower/mixed/conv_1/batchnorm_eightbit_quantize_down<br>
1552.297 0.190 0.132 0.005% 99.710% QuantizeDownAndShrinkRange mixed_9/tower_1/mixed/conv/Conv2D_eightbit_quantize_down<br>
1530.315 0.165 0.130 0.005% 99.715% QuantizeDownAndShrinkRange mixed_9/tower_1/mixed/conv_1/Conv2D_eightbit_quantize_down<br>
1670.345 0.109 0.128 0.004% 99.719% QuantizeDownAndShrinkRange mixed_10/tower_1/mixed/conv_1/batchnorm_eightbit_quantize_down<br>
153.046 0.140 0.128 0.004% 99.723% QuantizedRelu conv_1_eightbit_quantized<br>
1626.428 0.112 0.128 0.004% 99.728% QuantizeDownAndShrinkRange mixed_10/tower/mixed/conv/batchnorm_eightbit_quantize_down<br>
1450.098 0.124 0.128 0.004% 99.732% QuantizeDownAndShrinkRange mixed_9/tower/conv/Conv2D_eightbit_quantize_down<br>
1630.082 0.111 0.127 0.004% 99.737% QuantizeDownAndShrinkRange mixed_10/tower/mixed/conv_1/batchnorm_eightbit_quantize_down<br>
1669.735 0.129 0.127 0.004% 99.741% QuantizeDownAndShrinkRange mixed_10/tower_1/mixed/conv_1/Conv2D_eightbit_quantize_down<br>
904.558 0.141 0.126 0.004% 99.746% QuantizeDownAndShrinkRange mixed_3/tower/conv_2/batchnorm_eightbit_quantize_down<br>
1600.024 0.116 0.126 0.004% 99.750% QuantizeDownAndShrinkRange mixed_10/tower/conv/batchnorm_eightbit_quantize_down<br>
1646.592 0.124 0.126 0.004% 99.754% QuantizeDownAndShrinkRange mixed_10/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
903.675 0.123 0.125 0.004% 99.759% QuantizeDownAndShrinkRange mixed_3/tower/conv_2/Conv2D_eightbit_quantize_down<br>
1513.729 0.164 0.124 0.004% 99.763% QuantizeDownAndShrinkRange mixed_9/tower_1/conv_1/batchnorm_eightbit_quantize_down<br>
1479.588 0.145 0.124 0.004% 99.767% QuantizeDownAndShrinkRange mixed_9/tower/mixed/conv/batchnorm_eightbit_quantize_down<br>
1552.898 0.161 0.123 0.004% 99.771% QuantizeDownAndShrinkRange mixed_9/tower_1/mixed/conv/batchnorm_eightbit_quantize_down<br>
1450.669 0.106 0.122 0.004% 99.776% QuantizeDownAndShrinkRange mixed_9/tower/conv/batchnorm_eightbit_quantize_down<br>
348.332 0.135 0.118 0.004% 99.780% QuantizedRelu conv_3_eightbit_quantized<br>
599.414 0.090 0.091 0.003% 99.783% QuantizedRelu mixed/conv_eightbit_quantized<br>
628.234 0.086 0.089 0.003% 99.786% QuantizedRelu mixed/tower_1/conv_1_eightbit_quantized<br>
5.808 0.225 0.084 0.003% 99.789% Max conv/Conv2D_eightbit_max_Mul<br>
896.518 0.134 0.083 0.003% 99.792% QuantizedRelu mixed_3/tower/conv_1_eightbit_quantized<br>
1430.886 0.095 0.081 0.003% 99.795% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_3/Conv2D_eightbit_quantize_down<br>
654.430 0.079 0.080 0.003% 99.797% QuantizedRelu mixed/tower_1/conv_2_eightbit_quantized<br>
798.525 0.064 0.080 0.003% 99.800% QuantizedRelu mixed_2/tower_1/conv_1_eightbit_quantized<br>
5.848 0.383 0.079 0.003% 99.803% Min conv/Conv2D_eightbit_min_Mul<br>
849.317 0.081 0.079 0.003% 99.806% QuantizedRelu mixed_3/tower/conv_eightbit_quantized<br>
589.438 0.067 0.079 0.003% 99.808% QuantizedRelu mixed/tower_1/conv_eightbit_quantized<br>
1431.410 0.125 0.078 0.003% 99.811% QuantizedConcat mixed_8/join_eightbit_quantized_concat<br>
1431.305 0.078 0.078 0.003% 99.814% QuantizeDownAndShrinkRange mixed_8/tower_1/conv_3/batchnorm_eightbit_quantize_down<br>
710.609 0.070 0.078 0.003% 99.817% QuantizedRelu mixed_1/tower_1/conv_1_eightbit_quantized<br>
627.572 0.046 0.078 0.003% 99.819% QuantizedRelu mixed/tower/conv_1_eightbit_quantized<br>
769.994 0.082 0.076 0.003% 99.822% QuantizedRelu mixed_2/conv_eightbit_quantized<br>
796.418 0.045 0.074 0.003% 99.825% QuantizedRelu mixed_2/tower/conv_1_eightbit_quantized<br>
682.652 0.104 0.074 0.003% 99.827% QuantizedRelu mixed_1/tower_1/conv_eightbit_quantized<br>
784.800 0.080 0.073 0.003% 99.830% QuantizedRelu mixed_2/tower_2/conv_eightbit_quantized<br>
707.766 0.046 0.073 0.003% 99.832% QuantizedRelu mixed_1/tower/conv_1_eightbit_quantized<br>
757.177 0.045 0.072 0.003% 99.835% QuantizedRelu mixed_2/tower_1/conv_eightbit_quantized<br>
824.352 0.066 0.072 0.002% 99.837% QuantizedRelu mixed_2/tower_1/conv_2_eightbit_quantized<br>
742.570 0.068 0.070 0.002% 99.840% QuantizedRelu mixed_1/tower_1/conv_2_eightbit_quantized<br>
907.830 0.063 0.069 0.002% 99.842% QuantizedRelu mixed_3/conv_eightbit_quantized<br>
673.812 0.079 0.069 0.002% 99.844% QuantizedRelu mixed_1/conv_eightbit_quantized<br>
588.811 0.069 0.062 0.002% 99.847% QuantizedRelu mixed/tower/conv_eightbit_quantized<br>
939.612 0.064 0.061 0.002% 99.849% QuantizedRelu mixed_4/conv_eightbit_quantized<br>
1134.276 0.065 0.058 0.002% 99.851% QuantizedRelu mixed_6/conv_eightbit_quantized<br>
1017.581 0.065 0.058 0.002% 99.853% QuantizedRelu mixed_5/tower_2/conv_eightbit_quantized<br>
1016.566 0.061 0.058 0.002% 99.855% QuantizedRelu mixed_5/conv_eightbit_quantized<br>
672.675 0.036 0.057 0.002% 99.857% QuantizedRelu mixed_1/tower/conv_eightbit_quantized<br>
951.059 0.068 0.057 0.002% 99.859% QuantizedRelu mixed_4/tower_2/conv_eightbit_quantized<br>
1243.589 0.067 0.057 0.002% 99.861% QuantizedRelu mixed_7/conv_eightbit_quantized<br>
1246.866 0.066 0.056 0.002% 99.863% QuantizedRelu mixed_7/tower_2/conv_eightbit_quantized<br>
1133.490 0.059 0.054 0.002% 99.864% QuantizedRelu mixed_6/tower_2/conv_eightbit_quantized<br>
1168.023 0.034 0.053 0.002% 99.866% QuantizedRelu mixed_6/tower/conv_2_eightbit_quantized<br>
1303.269 0.060 0.052 0.002% 99.868% QuantizedRelu mixed_7/tower/conv_2_eightbit_quantized<br>
1249.895 0.061 0.051 0.002% 99.870% QuantizedRelu mixed_7/tower_1/conv_eightbit_quantized<br>
969.648 0.065 0.051 0.002% 99.872% QuantizedRelu mixed_4/tower/conv_2_eightbit_quantized<br>
1289.918 0.061 0.050 0.002% 99.873% QuantizedRelu mixed_7/tower_1/conv_1_eightbit_quantized<br>
757.059 0.041 0.050 0.002% 99.875% QuantizedRelu mixed_2/tower/conv_eightbit_quantized<br>
1246.313 0.033 0.049 0.002% 99.877% QuantizedRelu mixed_7/tower/conv_eightbit_quantized<br>
1071.647 0.034 0.049 0.002% 99.878% QuantizedRelu mixed_5/tower/conv_2_eightbit_quantized<br>
1371.432 0.033 0.049 0.002% 99.880% QuantizedRelu mixed_8/tower/conv_eightbit_quantized<br>
587.936 0.042 0.048 0.002% 99.882% QuantizedRelu mixed/tower_2/conv_eightbit_quantized<br>
1015.851 0.053 0.047 0.002% 99.883% QuantizedRelu mixed_5/tower_1/conv_eightbit_quantized<br>
1017.831 0.054 0.047 0.002% 99.885% QuantizedRelu mixed_5/tower/conv_eightbit_quantized<br>
1043.385 0.044 0.045 0.002% 99.887% QuantizedRelu mixed_5/tower/conv_1_eightbit_quantized<br>
1276.223 0.034 0.044 0.002% 99.888% QuantizedRelu mixed_7/tower/conv_1_eightbit_quantized<br>
1149.669 0.050 0.044 0.002% 99.890% QuantizedRelu mixed_6/tower/conv_1_eightbit_quantized<br>
1372.566 0.033 0.043 0.001% 99.891% QuantizedRelu mixed_8/tower_1/conv_eightbit_quantized<br>
1135.923 0.057 0.043 0.001% 99.893% QuantizedRelu mixed_6/tower_1/conv_eightbit_quantized<br>
1397.084 0.033 0.043 0.001% 99.894% QuantizedRelu mixed_8/tower_1/conv_1_eightbit_quantized<br>
1308.938 0.038 0.043 0.001% 99.896% QuantizedRelu mixed_7/tower_1/conv_2_eightbit_quantized<br>
1037.374 0.029 0.041 0.001% 99.897% QuantizedRelu mixed_5/tower_1/conv_1_eightbit_quantized<br>
1128.507 0.049 0.041 0.001% 99.899% QuantizedRelu mixed_6/tower/conv_eightbit_quantized<br>
1158.836 0.029 0.041 0.001% 99.900% QuantizedRelu mixed_6/tower_1/conv_1_eightbit_quantized<br>
1060.278 0.052 0.040 0.001% 99.901% QuantizedRelu mixed_5/tower_1/conv_2_eightbit_quantized<br>
1352.549 0.036 0.040 0.001% 99.903% QuantizedRelu mixed_7/tower_1/conv_4_eightbit_quantized<br>
1090.010 0.034 0.040 0.001% 99.904% QuantizedRelu mixed_5/tower_1/conv_4_eightbit_quantized<br>
1328.708 0.034 0.039 0.001% 99.906% QuantizedRelu mixed_7/tower_1/conv_3_eightbit_quantized<br>
1418.481 0.061 0.039 0.001% 99.907% QuantizedRelu mixed_8/tower_1/conv_2_eightbit_quantized<br>
1210.292 0.056 0.038 0.001% 99.908% QuantizedRelu mixed_6/tower_1/conv_4_eightbit_quantized<br>
930.366 0.039 0.037 0.001% 99.910% QuantizedRelu mixed_4/tower_1/conv_eightbit_quantized<br>
952.447 0.026 0.037 0.001% 99.911% QuantizedRelu mixed_4/tower/conv_1_eightbit_quantized<br>
1177.475 0.028 0.037 0.001% 99.912% QuantizedRelu mixed_6/tower_1/conv_2_eightbit_quantized<br>
941.097 0.025 0.036 0.001% 99.913% QuantizedRelu mixed_4/tower/conv_eightbit_quantized<br>
985.741 0.035 0.035 0.001% 99.915% QuantizedRelu mixed_4/tower_1/conv_4_eightbit_quantized<br>
1191.607 0.029 0.034 0.001% 99.916% QuantizedRelu mixed_6/tower_1/conv_3_eightbit_quantized<br>
946.550 0.038 0.034 0.001% 99.917% QuantizedRelu mixed_4/tower_1/conv_1_eightbit_quantized<br>
1073.295 0.028 0.033 0.001% 99.918% QuantizedRelu mixed_5/tower_1/conv_3_eightbit_quantized<br>
1689.900 0.028 0.033 0.001% 99.919% QuantizedBiasAdd softmax/logits_eightbit_quantized_bias_add<br>
1689.945 0.028 0.033 0.001% 99.920% Softmax softmax<br>
963.624 0.025 0.032 0.001% 99.921% QuantizedRelu mixed_4/tower_1/conv_2_eightbit_quantized<br>
1630.197 0.038 0.030 0.001% 99.922% QuantizedRelu mixed_10/tower/mixed/conv_1_eightbit_quantized<br>
1464.160 0.032 0.029 0.001% 99.924% QuantizedRelu mixed_9/tower_1/conv_eightbit_quantized<br>
1594.545 0.035 0.028 0.001% 99.924% QuantizedRelu mixed_10/tower_1/conv_eightbit_quantized<br>
971.838 0.025 0.027 0.001% 99.925% QuantizedRelu mixed_4/tower_1/conv_3_eightbit_quantized<br>
1689.985 0.026 0.026 0.001% 99.926% _SINK<br>
1670.385 0.018 0.026 0.001% 99.927% QuantizedRelu mixed_10/tower_1/mixed/conv_eightbit_quantized<br>
904.702 0.037 0.025 0.001% 99.928% QuantizedRelu mixed_3/tower/conv_2_eightbit_quantized<br>
1598.794 0.017 0.025 0.001% 99.929% QuantizedRelu mixed_10/conv_eightbit_quantized<br>
1626.543 0.019 0.025 0.001% 99.930% QuantizedRelu mixed_10/tower/mixed/conv_eightbit_quantized<br>
1553.062 0.017 0.024 0.001% 99.931% QuantizedRelu mixed_9/tower_1/mixed/conv_eightbit_quantized<br>
1481.317 0.030 0.024 0.001% 99.932% QuantizedRelu mixed_9/tower/mixed/conv_1_eightbit_quantized<br>
1479.735 0.018 0.024 0.001% 99.932% QuantizedRelu mixed_9/tower/mixed/conv_eightbit_quantized<br>
1600.144 0.037 0.024 0.001% 99.933% QuantizedRelu mixed_10/tower/conv_eightbit_quantized<br>
1447.845 0.031 0.024 0.001% 99.934% QuantizedRelu mixed_9/conv_eightbit_quantized<br>
1392.212 0.016 0.024 0.001% 99.935% QuantizedRelu mixed_8/tower/conv_1_eightbit_quantized<br>
1450.780 0.020 0.024 0.001% 99.936% QuantizedRelu mixed_9/tower/conv_eightbit_quantized<br>
1670.458 0.018 0.024 0.001% 99.937% QuantizedRelu mixed_10/tower_1/mixed/conv_1_eightbit_quantized<br>
1531.870 0.028 0.023 0.001% 99.937% QuantizedRelu mixed_9/tower_1/mixed/conv_1_eightbit_quantized<br>
1513.897 0.029 0.022 0.001% 99.938% QuantizedRelu mixed_9/tower_1/conv_1_eightbit_quantized<br>
1646.719 0.017 0.022 0.001% 99.939% QuantizedRelu mixed_10/tower_1/conv_1_eightbit_quantized<br>
4.674 0.033 0.022 0.001% 99.940% Const mixed_9/tower_2/conv/batchnorm/gamma_min<br>
4.709 0.024 0.018 0.001% 99.940% Const mixed_9/tower_2/conv/batchnorm/gamma_max<br>
1589.931 0.012 0.018 0.001% 99.941% QuantizedRelu mixed_10/tower_2/conv_eightbit_quantized<br>
1457.907 0.014 0.017 0.001% 99.941% QuantizedRelu mixed_9/tower_2/conv_eightbit_quantized<br>
1670.970 0.012 0.017 0.001% 99.942% QuantizeV2 softmax/logits/MatMul_eightbit_quantize_pool_3/_reshape<br>
1431.387 0.020 0.015 0.001% 99.943% QuantizedRelu mixed_8/tower_1/conv_3_eightbit_quantized<br>
1689.888 0.010 0.013 0.000% 99.943% QuantizeDownAndShrinkRange softmax/logits/MatMul_eightbit_quantize_down<br>
1670.939 0.009 0.011 0.000% 99.943% Dequantize pool_3<br>
4.656 0.016 0.010 0.000% 99.944% Const mixed_9/tower_2/conv/batchnorm/gamma_quint8_const<br>
1689.930 0.007 0.009 0.000% 99.944% QuantizeDownAndShrinkRange softmax/logits_eightbit_quantize_down<br>
0.247 0.013 0.009 0.000% 99.944% Const mixed_10/join/concat_dim<br>
1689.938 0.006 0.007 0.000% 99.945% Dequantize softmax/logits<br>
0.441 0.008 0.007 0.000% 99.945% Const conv_2/batchnorm/gamma_quint8_const<br>
1670.959 0.005 0.007 0.000% 99.945% Max softmax/logits/MatMul_eightbit_max_pool_3/_reshape<br>
1670.966 0.003 0.005 0.000% 99.945% Min softmax/logits/MatMul_eightbit_min_pool_3/_reshape<br>
2.727 0.014 0.005 0.000% 99.945% Const mixed_5/tower/conv/batchnorm/gamma_quint8_const<br>
0.895 0.005 0.004 0.000% 99.945% Const mixed/tower_1/conv_1/batchnorm/gamma_quint8_const<br>
4.852 0.010 0.004 0.000% 99.946% Const mixed_10/tower/conv/batchnorm/gamma_quint8_const<br>
5.789 0.006 0.003 0.000% 99.946% Reshape conv/Conv2D_eightbit_reshape_Mul<br>
1670.949 0.003 0.003 0.000% 99.946% Reshape pool_3/_reshape<br>
2.164 0.007 0.003 0.000% 99.946% Const mixed_4/tower/conv/batchnorm/gamma_quint8_const<br>
1670.954 0.002 0.003 0.000% 99.946% Reshape softmax/logits/MatMul_eightbit_reshape_pool_3/_reshape<br>
4.225 0.003 0.002 0.000% 99.946% Const mixed_7/tower_2/conv/conv2d_params_quint8_const<br>
0.265 0.004 0.002 0.000% 99.946% Const conv/conv2d_params_quint8_const<br>
1.023 0.007 0.002 0.000% 99.946% Const mixed_1/conv/conv2d_params_quint8_const<br>
0.324 0.003 0.002 0.000% 99.946% Const conv/batchnorm/gamma_quint8_const<br>
0.664 0.005 0.002 0.000% 99.946% Const mixed/tower/conv/batchnorm/gamma_quint8_const<br>
2.054 0.003 0.002 0.000% 99.946% Const mixed_4/conv/conv2d_params_quint8_const<br>
1.136 0.005 0.002 0.000% 99.947% Const mixed_1/tower/conv/batchnorm/beta_quint8_const<br>
4.734 0.004 0.002 0.000% 99.947% Const mixed_10/conv/conv2d_params_quint8_const<br>
0.282 0.003 0.002 0.000% 99.947% Const conv/batchnorm/moving_mean_quint8_const<br>
4.442 0.003 0.002 0.000% 99.947% Const mixed_8/tower_1/conv_1/conv2d_params_quint8_const<br>
2.971 0.004 0.002 0.000% 99.947% Const mixed_5/tower_1/conv_2/conv2d_params_quint8_const<br>
5.310 0.004 0.002 0.000% 99.947% Const softmax/logits/MatMul_eightbit_reduction_dims<br>
5.227 0.003 0.002 0.000% 99.947% Const mixed_10/tower_2/conv/conv2d_params_quint8_const<br>
0.836 0.006 0.002 0.000% 99.947% Const mixed/tower_1/conv_1/conv2d_params_quint8_const<br>
0.592 0.003 0.002 0.000% 99.947% Const mixed/conv/batchnorm/moving_variance_min<br>
4.791 0.003 0.002 0.000% 99.947% Const mixed_10/conv/batchnorm/gamma_quint8_const<br>
1.536 0.003 0.002 0.000% 99.947% Const mixed_2/tower/conv_1/conv2d_params_quint8_const<br>
1.853 0.028 0.002 0.000% 99.947% Const mixed_3/conv/batchnorm/beta_max<br>
3.844 0.005 0.002 0.000% 99.947% Const mixed_7/tower/conv_1/conv2d_params_quint8_const<br>
1.720 0.002 0.002 0.000% 99.947% Const mixed_2/tower_1/conv_2/batchnorm/moving_mean_max<br>
0.559 0.003 0.002 0.000% 99.947% Const mixed/conv/conv2d_params_quint8_const<br>
3.300 0.003 0.002 0.000% 99.948% Const mixed_6/tower/conv_1/conv2d_params_quint8_const<br>
3.193 0.002 0.002 0.000% 99.948% Const mixed_6/conv/conv2d_params_quint8_const<br>
1.205 0.003 0.002 0.000% 99.948% Const mixed_1/tower_1/conv/conv2d_params_quint8_const<br>
0.329 0.004 0.002 0.000% 99.948% Const conv_1/conv2d_params_quint8_const<br>
4.277 0.006 0.002 0.000% 99.948% Const mixed_8/tower/conv/conv2d_params_quint8_const<br>
3.683 0.003 0.002 0.000% 99.948% Const mixed_6/tower_2/conv/conv2d_params_quint8_const<br>
3.352 0.007 0.002 0.000% 99.948% Const mixed_6/tower/conv_2/conv2d_params_quint8_const<br>
2.336 0.005 0.002 0.000% 99.948% Const mixed_4/tower_1/conv_1/conv2d_params_quint8_const<br>
1.643 0.003 0.002 0.000% 99.948% Const mixed_2/tower_1/conv_1/conv2d_params_quint8_const<br>
3.789 0.005 0.002 0.000% 99.948% Const mixed_7/tower/conv/conv2d_params_quint8_const<br>
1.994 0.004 0.002 0.000% 99.948% Const mixed_3/tower/conv_2/conv2d_params_quint8_const<br>
1.424 0.003 0.002 0.000% 99.948% Const mixed_2/conv/conv2d_params_quint8_const<br>
0.451 0.003 0.002 0.000% 99.948% Const conv_3/conv2d_params_quint8_const<br>
0.310 0.003 0.002 0.000% 99.948% Const conv/batchnorm/beta_quint8_const<br>
5.335 0.006 0.002 0.000% 99.948% Const mixed_9/tower/conv/conv2d_params_quint8_const<br>
5.102 0.007 0.002 0.000% 99.948% Const mixed_10/tower_1/mixed/conv/conv2d_params_quint8_const<br>
4.796 0.006 0.002 0.000% 99.949% Const mixed_10/tower/conv/conv2d_params_quint8_const<br>
4.133 0.003 0.002 0.000% 99.949% Const mixed_7/tower_1/conv_3/batchnorm/moving_mean_min<br>
2.395 0.003 0.002 0.000% 99.949% Const mixed_4/tower_1/conv_2/conv2d_params_quint8_const<br>
1.190 0.006 0.002 0.000% 99.949% Const mixed_1/tower/conv_1/batchnorm/beta_quint8_const<br>
0.506 0.004 0.002 0.000% 99.949% Const conv_4/conv2d_params_quint8_const<br>
0.388 0.003 0.002 0.000% 99.949% Const conv_2/conv2d_params_quint8_const<br>
3.737 0.002 0.002 0.000% 99.949% Const mixed_7/conv/conv2d_params_quint8_const<br>
3.463 0.002 0.002 0.000% 99.949% Const mixed_6/tower_1/conv_1/conv2d_params_quint8_const<br>
1.883 0.003 0.002 0.000% 99.949% Const mixed_3/tower/conv/conv2d_params_quint8_const<br>
0.920 0.004 0.002 0.000% 99.949% Const mixed/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
5.392 0.006 0.002 0.000% 99.949% Const mixed_9/tower/mixed/conv/conv2d_params_quint8_const<br>
5.165 0.005 0.002 0.000% 99.949% Const mixed_10/tower_1/mixed/conv_1/conv2d_params_quint8_const<br>
4.986 0.005 0.002 0.000% 99.949% Const mixed_10/tower_1/conv/conv2d_params_quint8_const<br>
4.603 0.003 0.002 0.000% 99.949% Const mixed_9/conv/conv2d_params_quint8_const<br>
3.629 0.003 0.002 0.000% 99.949% Const mixed_6/tower_1/conv_4/conv2d_params_quint8_const<br>
3.517 0.004 0.002 0.000% 99.949% Const mixed_6/tower_1/conv_2/conv2d_params_quint8_const<br>
2.805 0.003 0.002 0.000% 99.950% Const mixed_5/tower/conv_2/conv2d_params_quint8_const<br>
2.621 0.003 0.002 0.000% 99.950% Const mixed_5/conv/conv2d_params_quint8_const<br>
1.261 0.002 0.002 0.000% 99.950% Const mixed_1/tower_1/conv_1/conv2d_params_quint8_const<br>
1.220 0.002 0.002 0.000% 99.950% Const mixed_1/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
0.691 0.005 0.002 0.000% 99.950% Const mixed/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
4.930 0.005 0.002 0.000% 99.950% Const mixed_10/tower/mixed/conv_1/conv2d_params_quint8_const<br>
4.870 0.004 0.002 0.000% 99.950% Const mixed_10/tower/mixed/conv/conv2d_params_quint8_const<br>
2.857 0.010 0.002 0.000% 99.950% Const mixed_5/tower_1/conv/conv2d_params_quint8_const<br>
0.968 0.003 0.002 0.000% 99.950% Const mixed/tower_2/conv/conv2d_params_quint8_const<br>
0.902 0.006 0.002 0.000% 99.950% Const mixed/tower_1/conv_2/conv2d_params_quint8_const<br>
0.489 0.003 0.002 0.000% 99.950% Const conv_3/batchnorm/beta_quint8_const<br>
0.425 0.003 0.002 0.000% 99.950% Const conv_2/batchnorm/moving_variance_max<br>
0.402 0.003 0.002 0.000% 99.950% Const conv_2/batchnorm/moving_mean_quint8_const<br>
4.549 0.003 0.002 0.000% 99.950% Const mixed_8/tower_1/conv_3/conv2d_params_quint8_const<br>
4.115 0.003 0.002 0.000% 99.950% Const mixed_7/tower_1/conv_3/conv2d_params_quint8_const<br>
4.062 0.003 0.002 0.000% 99.950% Const mixed_7/tower_1/conv_2/conv2d_params_quint8_const<br>
3.084 0.003 0.002 0.000% 99.950% Const mixed_5/tower_1/conv_4/conv2d_params_quint8_const<br>
2.676 0.003 0.002 0.000% 99.951% Const mixed_5/tower/conv/conv2d_params_quint8_const<br>
2.282 0.007 0.002 0.000% 99.951% Const mixed_4/tower_1/conv/conv2d_params_quint8_const<br>
1.817 0.003 0.002 0.000% 99.951% Const mixed_3/conv/batchnorm/moving_mean_quint8_const<br>
1.749 0.005 0.002 0.000% 99.951% Const mixed_2/tower_2/conv/conv2d_params_quint8_const<br>
1.694 0.005 0.002 0.000% 99.951% Const mixed_2/tower_1/conv_2/conv2d_params_quint8_const<br>
1.082 0.006 0.002 0.000% 99.951% Const mixed_1/tower/conv/conv2d_params_quint8_const<br>
0.851 0.003 0.002 0.000% 99.951% Const mixed/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
0.752 0.005 0.002 0.000% 99.951% Const mixed/tower_1/conv/conv2d_params_quint8_const<br>
0.613 0.003 0.002 0.000% 99.951% Const mixed/tower/conv/conv2d_params_quint8_const<br>
5.045 0.006 0.002 0.000% 99.951% Const mixed_10/tower_1/conv_1/conv2d_params_quint8_const<br>
4.331 0.006 0.002 0.000% 99.951% Const mixed_8/tower/conv_1/conv2d_params_quint8_const<br>
3.027 0.003 0.002 0.000% 99.951% Const mixed_5/tower_1/conv_3/conv2d_params_quint8_const<br>
2.918 0.005 0.002 0.000% 99.951% Const mixed_5/tower_1/conv_1/conv2d_params_quint8_const<br>
2.226 0.003 0.002 0.000% 99.951% Const mixed_4/tower/conv_2/conv2d_params_quint8_const<br>
2.172 0.003 0.002 0.000% 99.951% Const mixed_4/tower/conv_1/conv2d_params_quint8_const<br>
1.937 0.003 0.002 0.000% 99.951% Const mixed_3/tower/conv_1/conv2d_params_quint8_const<br>
0.464 0.003 0.002 0.000% 99.951% Const conv_3/batchnorm/moving_mean_quint8_const<br>
0.272 0.003 0.002 0.000% 99.952% Const conv/conv2d_params_min<br>
5.525 0.003 0.002 0.000% 99.952% Const mixed_9/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
4.170 0.002 0.002 0.000% 99.952% Const mixed_7/tower_1/conv_4/conv2d_params_quint8_const<br>
3.598 0.005 0.002 0.000% 99.952% Const mixed_6/tower_1/conv_3/batchnorm/moving_variance_quint8_const<br>
3.571 0.003 0.002 0.000% 99.952% Const mixed_6/tower_1/conv_3/conv2d_params_quint8_const<br>
3.408 0.005 0.002 0.000% 99.952% Const mixed_6/tower_1/conv/conv2d_params_quint8_const<br>
3.246 0.003 0.002 0.000% 99.952% Const mixed_6/tower/conv/conv2d_params_quint8_const<br>
2.816 0.007 0.002 0.000% 99.952% Const mixed_5/tower/conv_2/batchnorm/moving_mean_quint8_const<br>
2.109 0.004 0.002 0.000% 99.952% Const mixed_4/tower/conv/conv2d_params_quint8_const<br>
1.802 0.003 0.002 0.000% 99.952% Const mixed_3/conv/conv2d_params_quint8_const<br>
1.370 0.003 0.002 0.000% 99.952% Const mixed_1/tower_2/conv/conv2d_params_quint8_const<br>
1.051 0.003 0.002 0.000% 99.952% Const mixed_1/conv/batchnorm/moving_mean_max<br>
5.680 0.003 0.002 0.000% 99.952% Const mixed_9/tower_1/mixed/conv_1/conv2d_params_quint8_const<br>
5.623 0.004 0.002 0.000% 99.952% Const mixed_9/tower_1/mixed/conv/conv2d_params_quint8_const<br>
5.509 0.004 0.002 0.000% 99.952% Const mixed_9/tower_1/conv/conv2d_params_quint8_const<br>
5.449 0.003 0.002 0.000% 99.952% Const mixed_9/tower/mixed/conv_1/conv2d_params_quint8_const<br>
3.954 0.003 0.002 0.000% 99.952% Const mixed_7/tower_1/conv/conv2d_params_quint8_const<br>
2.508 0.003 0.002 0.000% 99.952% Const mixed_4/tower_1/conv_4/conv2d_params_quint8_const<br>
2.449 0.003 0.002 0.000% 99.953% Const mixed_4/tower_1/conv_3/conv2d_params_quint8_const<br>
1.287 0.005 0.002 0.000% 99.953% Const mixed_1/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
0.374 0.002 0.002 0.000% 99.953% Const conv_1/batchnorm/beta_quint8_const<br>
5.566 0.003 0.002 0.000% 99.953% Const mixed_9/tower_1/conv_1/conv2d_params_quint8_const<br>
5.123 0.003 0.002 0.000% 99.953% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_mean_quint8_const<br>
4.495 0.003 0.002 0.000% 99.953% Const mixed_8/tower_1/conv_2/conv2d_params_quint8_const<br>
4.008 0.003 0.002 0.000% 99.953% Const mixed_7/tower_1/conv_1/conv2d_params_quint8_const<br>
2.688 0.005 0.002 0.000% 99.953% Const mixed_5/tower/conv/batchnorm/moving_mean_quint8_const<br>
2.562 0.003 0.002 0.000% 99.953% Const mixed_4/tower_2/conv/conv2d_params_quint8_const<br>
2.346 0.003 0.002 0.000% 99.953% Const mixed_4/tower_1/conv_1/conv2d_params_max<br>
2.066 0.005 0.002 0.000% 99.953% Const mixed_4/conv/batchnorm/moving_mean_quint8_const<br>
0.711 0.004 0.002 0.000% 99.953% Const mixed/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
0.626 0.002 0.002 0.000% 99.953% Const mixed/tower/conv/batchnorm/moving_mean_quint8_const<br>
0.319 0.003 0.002 0.000% 99.953% Const conv/batchnorm/beta_max<br>
5.737 0.003 0.002 0.000% 99.953% Const mixed_9/tower_2/conv/conv2d_params_quint8_const<br>
4.097 0.003 0.002 0.000% 99.953% Const mixed_7/tower_1/conv_2/batchnorm/moving_variance_max<br>
3.748 0.006 0.002 0.000% 99.953% Const mixed_7/conv/batchnorm/moving_mean_quint8_const<br>
3.113 0.003 0.002 0.000% 99.953% Const mixed_5/tower_1/conv_4/batchnorm/moving_variance_quint8_const<br>
2.751 0.003 0.002 0.000% 99.954% Const mixed_5/tower/conv_1/conv2d_params_quint8_const<br>
1.654 0.006 0.002 0.000% 99.954% Const mixed_2/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
1.315 0.003 0.002 0.000% 99.954% Const mixed_1/tower_1/conv_2/conv2d_params_quint8_const<br>
1.164 0.003 0.002 0.000% 99.954% Const mixed_1/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
0.813 0.007 0.002 0.000% 99.954% Const mixed/tower_1/conv/batchnorm/moving_variance_max<br>
0.588 0.003 0.002 0.000% 99.954% Const mixed/conv/batchnorm/moving_variance_quint8_const<br>
0.532 0.003 0.002 0.000% 99.954% Const conv_4/batchnorm/moving_variance_quint8_const<br>
0.477 0.003 0.002 0.000% 99.954% Const conv_3/batchnorm/moving_variance_quint8_const<br>
5.350 0.003 0.002 0.000% 99.954% Const mixed_9/tower/conv/batchnorm/moving_mean_quint8_const<br>
4.386 0.003 0.002 0.000% 99.954% Const mixed_8/tower_1/conv/conv2d_params_quint8_const<br>
3.899 0.003 0.002 0.000% 99.954% Const mixed_7/tower/conv_2/conv2d_params_quint8_const<br>
3.368 0.003 0.002 0.000% 99.954% Const mixed_6/tower/conv_2/batchnorm/moving_mean_quint8_const<br>
2.143 0.002 0.002 0.000% 99.954% Const mixed_4/tower/conv/batchnorm/moving_variance_min<br>
1.590 0.003 0.002 0.000% 99.954% Const mixed_2/tower_1/conv/conv2d_params_quint8_const<br>
1.491 0.002 0.002 0.000% 99.954% Const mixed_2/tower/conv/batchnorm/moving_mean_quint8_const<br>
1.436 0.005 0.002 0.000% 99.954% Const mixed_2/conv/batchnorm/moving_mean_quint8_const<br>
0.980 0.006 0.002 0.000% 99.954% Const mixed/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
0.866 0.003 0.002 0.000% 99.954% Const mixed/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
0.416 0.003 0.002 0.000% 99.955% Const conv_2/batchnorm/moving_variance_quint8_const<br>
0.305 0.003 0.002 0.000% 99.955% Const conv/batchnorm/moving_variance_max<br>
5.289 0.007 0.002 0.000% 99.955% Const softmax/weights_quint8_const<br>
4.945 0.003 0.002 0.000% 99.955% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_mean_quint8_const<br>
3.695 0.005 0.002 0.000% 99.955% Const mixed_6/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
3.258 0.005 0.002 0.000% 99.955% Const mixed_6/tower/conv/batchnorm/moving_mean_quint8_const<br>
3.045 0.002 0.002 0.000% 99.955% Const mixed_5/tower_1/conv_3/batchnorm/moving_mean_quint8_const<br>
2.194 0.003 0.002 0.000% 99.955% Const mixed_4/tower/conv_1/batchnorm/moving_mean_max<br>
1.988 0.003 0.002 0.000% 99.955% Const mixed_3/tower/conv_1/batchnorm/beta_max<br>
1.476 0.006 0.002 0.000% 99.955% Const mixed_2/tower/conv/conv2d_params_quint8_const<br>
0.952 0.003 0.002 0.000% 99.955% Const mixed/tower_1/conv_2/batchnorm/beta_quint8_const<br>
0.832 0.003 0.002 0.000% 99.955% Const mixed/tower_1/conv/batchnorm/beta_max<br>
0.780 0.009 0.002 0.000% 99.955% Const mixed/tower_1/conv/batchnorm/moving_mean_min<br>
0.772 0.005 0.002 0.000% 99.955% Const mixed/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
0.469 0.002 0.002 0.000% 99.955% Const conv_3/batchnorm/moving_mean_min<br>
0.360 0.003 0.002 0.000% 99.955% Const conv_1/batchnorm/moving_variance_quint8_const<br>
0.335 0.003 0.002 0.000% 99.955% Const conv_1/conv2d_params_min<br>
5.486 0.002 0.002 0.000% 99.955% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_variance_min<br>
4.034 0.005 0.002 0.000% 99.955% Const mixed_7/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
3.803 0.003 0.002 0.000% 99.956% Const mixed_7/tower/conv/batchnorm/moving_mean_quint8_const<br>
3.477 0.003 0.002 0.000% 99.956% Const mixed_6/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
3.139 0.003 0.002 0.000% 99.956% Const mixed_5/tower_2/conv/conv2d_params_quint8_const<br>
2.836 0.002 0.002 0.000% 99.956% Const mixed_5/tower/conv_2/batchnorm/moving_variance_min<br>
2.492 0.004 0.002 0.000% 99.956% Const mixed_4/tower_1/conv_3/batchnorm/beta_quint8_const<br>
1.763 0.003 0.002 0.000% 99.956% Const mixed_2/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
1.341 0.003 0.002 0.000% 99.956% Const mixed_1/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
1.150 0.002 0.002 0.000% 99.956% Const mixed_1/tower/conv_1/conv2d_params_quint8_const<br>
1.120 0.003 0.002 0.000% 99.956% Const mixed_1/tower/conv/batchnorm/moving_mean_max<br>
0.823 0.003 0.002 0.000% 99.956% Const mixed/tower_1/conv/batchnorm/beta_quint8_const<br>
0.651 0.003 0.002 0.000% 99.956% Const mixed/tower/conv/batchnorm/beta_quint8_const<br>
0.519 0.003 0.002 0.000% 99.956% Const conv_4/batchnorm/moving_mean_quint8_const<br>
0.502 0.003 0.002 0.000% 99.956% Const conv_3/batchnorm/gamma_quint8_const<br>
0.456 0.003 0.002 0.000% 99.956% Const conv_3/conv2d_params_min<br>
0.365 0.002 0.002 0.000% 99.956% Const conv_1/batchnorm/moving_variance_min<br>
5.684 0.003 0.002 0.000% 99.956% Const mixed_9/tower_1/mixed/conv_1/conv2d_params_min<br>
4.292 0.002 0.002 0.000% 99.956% Const mixed_8/tower/conv/batchnorm/moving_mean_quint8_const<br>
4.238 0.002 0.002 0.000% 99.956% Const mixed_7/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
3.968 0.003 0.002 0.000% 99.956% Const mixed_7/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
3.832 0.003 0.002 0.000% 99.957% Const mixed_7/tower/conv/batchnorm/beta_quint8_const<br>
3.586 0.003 0.002 0.000% 99.957% Const mixed_6/tower_1/conv_3/batchnorm/moving_mean_quint8_const<br>
3.532 0.003 0.002 0.000% 99.957% Const mixed_6/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
3.423 0.002 0.002 0.000% 99.957% Const mixed_6/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
3.207 0.003 0.002 0.000% 99.957% Const mixed_6/conv/batchnorm/moving_mean_quint8_const<br>
2.354 0.003 0.002 0.000% 99.957% Const mixed_4/tower_1/conv_1/batchnorm/moving_mean_min<br>
2.160 0.002 0.002 0.000% 99.957% Const mixed_4/tower/conv/batchnorm/beta_max<br>
1.668 0.003 0.002 0.000% 99.957% Const mixed_2/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
1.382 0.006 0.002 0.000% 99.957% Const mixed_1/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
1.209 0.005 0.002 0.000% 99.957% Const mixed_1/tower_1/conv/conv2d_params_min<br>
1.179 0.002 0.002 0.000% 99.957% Const mixed_1/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
1.070 0.003 0.002 0.000% 99.957% Const mixed_1/conv/batchnorm/beta_quint8_const<br>
0.991 0.003 0.002 0.000% 99.957% Const mixed/tower_2/conv/batchnorm/moving_mean_max<br>
0.930 0.003 0.002 0.000% 99.957% Const mixed/tower_1/conv_2/batchnorm/moving_mean_max<br>
0.799 0.004 0.002 0.000% 99.957% Const mixed/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
0.759 0.004 0.002 0.000% 99.957% Const mixed/tower_1/conv/conv2d_params_min<br>
0.731 0.004 0.002 0.000% 99.957% Const mixed/tower/conv_1/batchnorm/beta_quint8_const<br>
0.671 0.005 0.002 0.000% 99.957% Const mixed/tower/conv_1/conv2d_params_quint8_const<br>
0.541 0.002 0.002 0.000% 99.957% Const conv_4/batchnorm/moving_variance_max<br>
0.494 0.002 0.002 0.000% 99.958% Const conv_3/batchnorm/beta_min<br>
0.346 0.003 0.002 0.000% 99.958% Const conv_1/batchnorm/moving_mean_quint8_const<br>
5.306 0.003 0.001 0.000% 99.958% Const softmax/logits/MatMul_eightbit_reshape_dims<br>
4.811 0.003 0.001 0.000% 99.958% Const mixed_10/tower/conv/batchnorm/moving_mean_quint8_const<br>
3.616 0.008 0.001 0.000% 99.958% Const mixed_6/tower_1/conv_3/batchnorm/beta_min<br>
3.612 0.002 0.001 0.000% 99.958% Const mixed_6/tower_1/conv_3/batchnorm/beta_quint8_const<br>
3.503 0.005 0.001 0.000% 99.958% Const mixed_6/tower_1/conv_1/batchnorm/beta_quint8_const<br>
2.059 0.002 0.001 0.000% 99.958% Const mixed_4/conv/conv2d_params_min<br>
1.962 0.006 0.001 0.000% 99.958% Const mixed_3/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
1.330 0.003 0.001 0.000% 99.958% Const mixed_1/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
1.039 0.003 0.001 0.000% 99.958% Const mixed_1/conv/batchnorm/moving_mean_quint8_const<br>
0.973 0.002 0.001 0.000% 99.958% Const mixed/tower_2/conv/conv2d_params_min<br>
0.909 0.003 0.001 0.000% 99.958% Const mixed/tower_1/conv_2/conv2d_params_min<br>
0.577 0.005 0.001 0.000% 99.958% Const mixed/conv/batchnorm/moving_mean_min<br>
5.342 0.003 0.001 0.000% 99.958% Const mixed_9/tower/conv/conv2d_params_min<br>
5.285 0.003 0.001 0.000% 99.958% Const pool_3/_reshape/shape<br>
4.456 0.003 0.001 0.000% 99.958% Const mixed_8/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
3.914 0.003 0.001 0.000% 99.958% Const mixed_7/tower/conv_2/batchnorm/moving_mean_quint8_const<br>
3.655 0.003 0.001 0.000% 99.958% Const mixed_6/tower_1/conv_4/batchnorm/moving_variance_quint8_const<br>
3.644 0.002 0.001 0.000% 99.958% Const mixed_6/tower_1/conv_4/batchnorm/moving_mean_quint8_const<br>
3.557 0.003 0.001 0.000% 99.959% Const mixed_6/tower_1/conv_2/batchnorm/beta_quint8_const<br>
2.791 0.002 0.001 0.000% 99.959% Const mixed_5/tower/conv_1/batchnorm/beta_quint8_const<br>
2.716 0.003 0.001 0.000% 99.959% Const mixed_5/tower/conv/batchnorm/beta_quint8_const<br>
2.428 0.002 0.001 0.000% 99.959% Const mixed_4/tower_1/conv_2/batchnorm/moving_variance_min<br>
2.271 0.003 0.001 0.000% 99.959% Const mixed_4/tower/conv_2/batchnorm/beta_quint8_const<br>
2.241 0.004 0.001 0.000% 99.959% Const mixed_4/tower/conv_2/batchnorm/moving_mean_quint8_const<br>
2.184 0.005 0.001 0.000% 99.959% Const mixed_4/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
2.153 0.003 0.001 0.000% 99.959% Const mixed_4/tower/conv/batchnorm/beta_quint8_const<br>
1.825 0.005 0.001 0.000% 99.959% Const mixed_3/conv/batchnorm/moving_mean_max<br>
1.602 0.005 0.001 0.000% 99.959% Const mixed_2/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
1.429 0.002 0.001 0.000% 99.959% Const mixed_2/conv/conv2d_params_min<br>
1.378 0.003 0.001 0.000% 99.959% Const mixed_1/tower_2/conv/conv2d_params_max<br>
1.275 0.003 0.001 0.000% 99.959% Const mixed_1/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
1.234 0.003 0.001 0.000% 99.959% Const mixed_1/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
1.097 0.003 0.001 0.000% 99.959% Const mixed_1/tower/conv/batchnorm/moving_mean_quint8_const<br>
0.638 0.003 0.001 0.000% 99.959% Const mixed/tower/conv/batchnorm/moving_variance_quint8_const<br>
0.596 0.003 0.001 0.000% 99.959% Const mixed/conv/batchnorm/moving_variance_max<br>
0.545 0.002 0.001 0.000% 99.959% Const conv_4/batchnorm/beta_quint8_const<br>
0.383 0.003 0.001 0.000% 99.959% Const conv_1/batchnorm/beta_max<br>
5.365 0.003 0.001 0.000% 99.959% Const mixed_9/tower/conv/batchnorm/moving_variance_quint8_const<br>
5.153 0.003 0.001 0.000% 99.960% Const mixed_10/tower_1/mixed/conv/batchnorm/beta_quint8_const<br>
4.765 0.003 0.001 0.000% 99.960% Const mixed_10/conv/batchnorm/moving_variance_quint8_const<br>
4.650 0.002 0.001 0.000% 99.960% Const mixed_9/tower_2/conv/batchnorm/beta_max<br>
4.615 0.005 0.001 0.000% 99.960% Const mixed_9/conv/batchnorm/moving_mean_quint8_const<br>
4.346 0.002 0.001 0.000% 99.960% Const mixed_8/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
4.266 0.003 0.001 0.000% 99.960% Const mixed_7/tower_2/conv/batchnorm/beta_quint8_const<br>
4.129 0.003 0.001 0.000% 99.960% Const mixed_7/tower_1/conv_3/batchnorm/moving_mean_quint8_const<br>
3.777 0.003 0.001 0.000% 99.960% Const mixed_7/conv/batchnorm/beta_quint8_const<br>
3.448 0.006 0.001 0.000% 99.960% Const mixed_6/tower_1/conv/batchnorm/beta_quint8_const<br>
3.341 0.002 0.001 0.000% 99.960% Const mixed_6/tower/conv_1/batchnorm/beta_quint8_const<br>
2.987 0.003 0.001 0.000% 99.960% Const mixed_5/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
2.932 0.003 0.001 0.000% 99.960% Const mixed_5/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
2.764 0.003 0.001 0.000% 99.960% Const mixed_5/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
2.463 0.003 0.001 0.000% 99.960% Const mixed_4/tower_1/conv_3/batchnorm/moving_mean_quint8_const<br>
2.424 0.003 0.001 0.000% 99.960% Const mixed_4/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
2.076 0.002 0.001 0.000% 99.960% Const mixed_4/conv/batchnorm/moving_mean_max<br>
2.014 0.003 0.001 0.000% 99.960% Const mixed_3/tower/conv_2/batchnorm/moving_mean_quint8_const<br>
1.976 0.002 0.001 0.000% 99.960% Const mixed_3/tower/conv_1/batchnorm/beta_quint8_const<br>
1.842 0.006 0.001 0.000% 99.960% Const mixed_3/conv/batchnorm/beta_quint8_const<br>
1.832 0.002 0.001 0.000% 99.960% Const mixed_3/conv/batchnorm/moving_variance_quint8_const<br>
1.708 0.003 0.001 0.000% 99.961% Const mixed_2/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
1.450 0.002 0.001 0.000% 99.961% Const mixed_2/conv/batchnorm/moving_variance_quint8_const<br>
1.363 0.006 0.001 0.000% 99.961% Const mixed_1/tower_1/conv_2/batchnorm/beta_max<br>
1.324 0.005 0.001 0.000% 99.961% Const mixed_1/tower_1/conv_2/conv2d_params_max<br>
1.251 0.004 0.001 0.000% 99.961% Const mixed_1/tower_1/conv/batchnorm/beta_min<br>
1.154 0.005 0.001 0.000% 99.961% Const mixed_1/tower/conv_1/conv2d_params_min<br>
1.011 0.003 0.001 0.000% 99.961% Const mixed/tower_2/conv/batchnorm/beta_quint8_const<br>
0.939 0.008 0.001 0.000% 99.961% Const mixed/tower_1/conv_2/batchnorm/moving_variance_min<br>
0.605 0.002 0.001 0.000% 99.961% Const mixed/conv/batchnorm/beta_min<br>
0.473 0.002 0.001 0.000% 99.961% Const conv_3/batchnorm/moving_mean_max<br>
0.407 0.002 0.001 0.000% 99.961% Const conv_2/batchnorm/moving_mean_min<br>
0.296 0.003 0.001 0.000% 99.961% Const conv/batchnorm/moving_variance_quint8_const<br>
5.583 0.002 0.001 0.000% 99.961% Const mixed_9/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
4.885 0.003 0.001 0.000% 99.961% Const mixed_10/tower/mixed/conv/batchnorm/moving_mean_quint8_const<br>
4.825 0.003 0.001 0.000% 99.961% Const mixed_10/tower/conv/batchnorm/moving_variance_quint8_const<br>
4.759 0.005 0.001 0.000% 99.961% Const mixed_10/conv/batchnorm/moving_mean_max<br>
4.743 0.003 0.001 0.000% 99.961% Const mixed_10/conv/conv2d_params_min<br>
4.589 0.002 0.001 0.000% 99.961% Const mixed_8/tower_1/conv_3/batchnorm/beta_quint8_const<br>
4.563 0.003 0.001 0.000% 99.961% Const mixed_8/tower_1/conv_3/batchnorm/moving_mean_quint8_const<br>
4.510 0.003 0.001 0.000% 99.961% Const mixed_8/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
4.417 0.003 0.001 0.000% 99.962% Const mixed_8/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
4.320 0.002 0.001 0.000% 99.962% Const mixed_8/tower/conv/batchnorm/beta_quint8_const<br>
4.229 0.003 0.001 0.000% 99.962% Const mixed_7/tower_2/conv/conv2d_params_min<br>
4.195 0.003 0.001 0.000% 99.962% Const mixed_7/tower_1/conv_4/batchnorm/moving_variance_quint8_const<br>
4.076 0.003 0.001 0.000% 99.962% Const mixed_7/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
4.022 0.003 0.001 0.000% 99.962% Const mixed_7/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
3.940 0.005 0.001 0.000% 99.962% Const mixed_7/tower/conv_2/batchnorm/beta_quint8_const<br>
3.872 0.003 0.001 0.000% 99.962% Const mixed_7/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
3.763 0.002 0.001 0.000% 99.962% Const mixed_7/conv/batchnorm/moving_variance_quint8_const<br>
3.441 0.002 0.001 0.000% 99.962% Const mixed_6/tower_1/conv/batchnorm/moving_variance_min<br>
3.360 0.003 0.001 0.000% 99.962% Const mixed_6/tower/conv_2/conv2d_params_min<br>
3.165 0.005 0.001 0.000% 99.962% Const mixed_5/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
3.070 0.005 0.001 0.000% 99.962% Const mixed_5/tower_1/conv_3/batchnorm/beta_quint8_const<br>
3.013 0.005 0.001 0.000% 99.962% Const mixed_5/tower_1/conv_2/batchnorm/beta_quint8_const<br>
2.662 0.002 0.001 0.000% 99.962% Const mixed_5/conv/batchnorm/beta_quint8_const<br>
2.567 0.002 0.001 0.000% 99.962% Const mixed_4/tower_2/conv/conv2d_params_min<br>
2.523 0.002 0.001 0.000% 99.962% Const mixed_4/tower_1/conv_4/batchnorm/moving_mean_quint8_const<br>
2.435 0.005 0.001 0.000% 99.962% Const mixed_4/tower_1/conv_2/batchnorm/beta_quint8_const<br>
2.139 0.003 0.001 0.000% 99.962% Const mixed_4/tower/conv/batchnorm/moving_variance_quint8_const<br>
1.923 0.002 0.001 0.000% 99.962% Const mixed_3/tower/conv/batchnorm/beta_quint8_const<br>
1.912 0.002 0.001 0.000% 99.963% Const mixed_3/tower/conv/batchnorm/moving_variance_quint8_const<br>
1.777 0.002 0.001 0.000% 99.963% Const mixed_2/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
1.576 0.003 0.001 0.000% 99.963% Const mixed_2/tower/conv_1/batchnorm/beta_quint8_const<br>
1.305 0.005 0.001 0.000% 99.963% Const mixed_1/tower_1/conv_1/batchnorm/beta_min<br>
1.297 0.003 0.001 0.000% 99.963% Const mixed_1/tower_1/conv_1/batchnorm/moving_variance_max<br>
0.960 0.006 0.001 0.000% 99.963% Const mixed/tower_1/conv_2/batchnorm/beta_max<br>
0.630 0.003 0.001 0.000% 99.963% Const mixed/tower/conv/batchnorm/moving_mean_min<br>
0.429 0.003 0.001 0.000% 99.963% Const conv_2/batchnorm/beta_quint8_const<br>
0.398 0.002 0.001 0.000% 99.963% Const conv_2/conv2d_params_max<br>
0.340 0.003 0.001 0.000% 99.963% Const conv_1/conv2d_params_max<br>
0.301 0.002 0.001 0.000% 99.963% Const conv/batchnorm/moving_variance_min<br>
5.766 0.003 0.001 0.000% 99.963% Const mixed_9/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
5.750 0.006 0.001 0.000% 99.963% Const mixed_9/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
5.695 0.003 0.001 0.000% 99.963% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_mean_quint8_const<br>
5.594 0.006 0.001 0.000% 99.963% Const mixed_9/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
5.552 0.005 0.001 0.000% 99.963% Const mixed_9/tower_1/conv/batchnorm/beta_quint8_const<br>
5.494 0.006 0.001 0.000% 99.963% Const mixed_9/tower/mixed/conv_1/batchnorm/beta_quint8_const<br>
5.473 0.007 0.001 0.000% 99.963% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_mean_max<br>
5.408 0.002 0.001 0.000% 99.963% Const mixed_9/tower/mixed/conv/batchnorm/moving_mean_quint8_const<br>
5.380 0.003 0.001 0.000% 99.963% Const mixed_9/tower/conv/batchnorm/beta_quint8_const<br>
5.243 0.003 0.001 0.000% 99.964% Const mixed_10/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
5.034 0.002 0.001 0.000% 99.964% Const mixed_10/tower_1/conv/batchnorm/beta_min<br>
4.902 0.002 0.001 0.000% 99.964% Const mixed_10/tower/mixed/conv/batchnorm/moving_variance_quint8_const<br>
4.777 0.005 0.001 0.000% 99.964% Const mixed_10/conv/batchnorm/beta_quint8_const<br>
4.751 0.002 0.001 0.000% 99.964% Const mixed_10/conv/batchnorm/moving_mean_quint8_const<br>
4.428 0.005 0.001 0.000% 99.964% Const mixed_8/tower_1/conv/batchnorm/beta_quint8_const<br>
4.401 0.003 0.001 0.000% 99.964% Const mixed_8/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
4.360 0.003 0.001 0.000% 99.964% Const mixed_8/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
3.983 0.002 0.001 0.000% 99.964% Const mixed_7/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
3.922 0.006 0.001 0.000% 99.964% Const mixed_7/tower/conv_2/batchnorm/moving_mean_max<br>
3.907 0.002 0.001 0.000% 99.964% Const mixed_7/tower/conv_2/conv2d_params_min<br>
3.741 0.002 0.001 0.000% 99.964% Const mixed_7/conv/conv2d_params_min<br>
3.709 0.002 0.001 0.000% 99.964% Const mixed_6/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
3.633 0.003 0.001 0.000% 99.964% Const mixed_6/tower_1/conv_4/conv2d_params_min<br>
3.444 0.003 0.001 0.000% 99.964% Const mixed_6/tower_1/conv/batchnorm/moving_variance_max<br>
3.437 0.003 0.001 0.000% 99.964% Const mixed_6/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
3.311 0.003 0.001 0.000% 99.964% Const mixed_6/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
3.225 0.002 0.001 0.000% 99.964% Const mixed_6/conv/batchnorm/moving_variance_min<br>
3.178 0.003 0.001 0.000% 99.964% Const mixed_5/tower_2/conv/batchnorm/beta_quint8_const<br>
2.946 0.002 0.001 0.000% 99.964% Const mixed_5/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
2.925 0.002 0.001 0.000% 99.964% Const mixed_5/tower_1/conv_1/conv2d_params_min<br>
2.892 0.003 0.001 0.000% 99.965% Const mixed_5/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
2.878 0.002 0.001 0.000% 99.965% Const mixed_5/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
2.853 0.003 0.001 0.000% 99.965% Const mixed_5/tower/conv_2/batchnorm/beta_max<br>
2.846 0.003 0.001 0.000% 99.965% Const mixed_5/tower/conv_2/batchnorm/beta_quint8_const<br>
2.706 0.002 0.001 0.000% 99.965% Const mixed_5/tower/conv/batchnorm/moving_variance_min<br>
2.633 0.006 0.001 0.000% 99.965% Const mixed_5/conv/batchnorm/moving_mean_quint8_const<br>
2.588 0.005 0.001 0.000% 99.965% Const mixed_4/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
2.453 0.005 0.001 0.000% 99.965% Const mixed_4/tower_1/conv_3/conv2d_params_min<br>
2.147 0.005 0.001 0.000% 99.965% Const mixed_4/tower/conv/batchnorm/moving_variance_max<br>
2.080 0.002 0.001 0.000% 99.965% Const mixed_4/conv/batchnorm/moving_variance_quint8_const<br>
2.025 0.003 0.001 0.000% 99.965% Const mixed_3/tower/conv_2/batchnorm/moving_variance_quint8_const<br>
1.767 0.005 0.001 0.000% 99.965% Const mixed_2/tower_2/conv/batchnorm/moving_mean_min<br>
1.626 0.002 0.001 0.000% 99.965% Const mixed_2/tower_1/conv/batchnorm/moving_variance_max<br>
1.551 0.002 0.001 0.000% 99.965% Const mixed_2/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
1.410 0.003 0.001 0.000% 99.965% Const mixed_1/tower_2/conv/batchnorm/beta_quint8_const<br>
1.397 0.002 0.001 0.000% 99.965% Const mixed_1/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
1.338 0.002 0.001 0.000% 99.965% Const mixed_1/tower_1/conv_2/batchnorm/moving_mean_max<br>
1.257 0.002 0.001 0.000% 99.965% Const mixed_1/tower_1/conv/batchnorm/beta_max<br>
1.227 0.003 0.001 0.000% 99.965% Const mixed_1/tower_1/conv/batchnorm/moving_mean_max<br>
1.160 0.003 0.001 0.000% 99.965% Const mixed_1/tower/conv_1/conv2d_params_max<br>
1.031 0.003 0.001 0.000% 99.965% Const mixed_1/conv/conv2d_params_min<br>
0.891 0.002 0.001 0.000% 99.966% Const mixed/tower_1/conv_1/batchnorm/beta_max<br>
0.887 0.002 0.001 0.000% 99.966% Const mixed/tower_1/conv_1/batchnorm/beta_min<br>
0.874 0.003 0.001 0.000% 99.966% Const mixed/tower_1/conv_1/batchnorm/moving_variance_max<br>
0.862 0.003 0.001 0.000% 99.966% Const mixed/tower_1/conv_1/batchnorm/moving_mean_max<br>
0.647 0.002 0.001 0.000% 99.966% Const mixed/tower/conv/batchnorm/moving_variance_max<br>
0.643 0.002 0.001 0.000% 99.966% Const mixed/tower/conv/batchnorm/moving_variance_min<br>
0.634 0.003 0.001 0.000% 99.966% Const mixed/tower/conv/batchnorm/moving_mean_max<br>
0.601 0.002 0.001 0.000% 99.966% Const mixed/conv/batchnorm/beta_quint8_const<br>
0.485 0.003 0.001 0.000% 99.966% Const conv_3/batchnorm/moving_variance_max<br>
5.664 0.003 0.001 0.000% 99.966% Const mixed_9/tower_1/mixed/conv/batchnorm/beta_quint8_const<br>
5.426 0.003 0.001 0.000% 99.966% Const mixed_9/tower/mixed/conv/batchnorm/moving_variance_min<br>
5.270 0.005 0.001 0.000% 99.966% Const mixed_10/tower_2/conv/batchnorm/beta_quint8_const<br>
5.235 0.003 0.001 0.000% 99.966% Const mixed_10/tower_2/conv/conv2d_params_min<br>
5.041 0.003 0.001 0.000% 99.966% Const mixed_10/tower_1/conv/batchnorm/gamma_quint8_const<br>
5.030 0.002 0.001 0.000% 99.966% Const mixed_10/tower_1/conv/batchnorm/beta_quint8_const<br>
4.960 0.003 0.001 0.000% 99.966% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_variance_quint8_const<br>
4.937 0.003 0.001 0.000% 99.966% Const mixed_10/tower/mixed/conv_1/conv2d_params_min<br>
4.829 0.002 0.001 0.000% 99.966% Const mixed_10/tower/conv/batchnorm/moving_variance_min<br>
4.642 0.003 0.001 0.000% 99.966% Const mixed_9/conv/batchnorm/beta_quint8_const<br>
4.567 0.003 0.001 0.000% 99.966% Const mixed_8/tower_1/conv_3/batchnorm/moving_mean_min<br>
4.364 0.002 0.001 0.000% 99.967% Const mixed_8/tower/conv_1/batchnorm/moving_variance_min<br>
4.156 0.002 0.001 0.000% 99.967% Const mixed_7/tower_1/conv_3/batchnorm/beta_quint8_const<br>
4.141 0.002 0.001 0.000% 99.967% Const mixed_7/tower_1/conv_3/batchnorm/moving_variance_quint8_const<br>
4.066 0.003 0.001 0.000% 99.967% Const mixed_7/tower_1/conv_2/conv2d_params_min<br>
3.858 0.003 0.001 0.000% 99.967% Const mixed_7/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
3.759 0.002 0.001 0.000% 99.967% Const mixed_7/conv/batchnorm/moving_mean_max<br>
3.672 0.003 0.001 0.000% 99.967% Const mixed_6/tower_1/conv_4/batchnorm/beta_min<br>
3.522 0.005 0.001 0.000% 99.967% Const mixed_6/tower_1/conv_2/conv2d_params_min<br>
3.513 0.003 0.001 0.000% 99.967% Const mixed_6/tower_1/conv_1/batchnorm/beta_max<br>
3.326 0.003 0.001 0.000% 99.967% Const mixed_6/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
3.272 0.002 0.001 0.000% 99.967% Const mixed_6/tower/conv/batchnorm/moving_variance_quint8_const<br>
3.219 0.002 0.001 0.000% 99.967% Const mixed_6/conv/batchnorm/moving_variance_quint8_const<br>
3.032 0.008 0.001 0.000% 99.967% Const mixed_5/tower_1/conv_3/conv2d_params_min<br>
2.906 0.003 0.001 0.000% 99.967% Const mixed_5/tower_1/conv/batchnorm/beta_quint8_const<br>
2.787 0.003 0.001 0.000% 99.967% Const mixed_5/tower/conv_1/batchnorm/moving_variance_max<br>
2.776 0.003 0.001 0.000% 99.967% Const mixed_5/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
2.769 0.002 0.001 0.000% 99.967% Const mixed_5/tower/conv_1/batchnorm/moving_mean_min<br>
2.577 0.002 0.001 0.000% 99.967% Const mixed_4/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
2.381 0.006 0.001 0.000% 99.967% Const mixed_4/tower_1/conv_1/batchnorm/beta_quint8_const<br>
2.350 0.003 0.001 0.000% 99.967% Const mixed_4/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
2.343 0.002 0.001 0.000% 99.967% Const mixed_4/tower_1/conv_1/conv2d_params_min<br>
2.254 0.002 0.001 0.000% 99.968% Const mixed_4/tower/conv_2/batchnorm/moving_mean_max<br>
2.230 0.003 0.001 0.000% 99.968% Const mixed_4/tower/conv_2/conv2d_params_min<br>
2.047 0.006 0.001 0.000% 99.968% Const mixed_3/tower/conv_2/batchnorm/beta_max<br>
2.022 0.002 0.001 0.000% 99.968% Const mixed_3/tower/conv_2/batchnorm/moving_mean_max<br>
1.951 0.003 0.001 0.000% 99.968% Const mixed_3/tower/conv_1/batchnorm/moving_mean_quint8_const<br>
1.933 0.003 0.001 0.000% 99.968% Const mixed_3/tower/conv/batchnorm/beta_max<br>
1.629 0.003 0.001 0.000% 99.968% Const mixed_2/tower_1/conv/batchnorm/beta_quint8_const<br>
1.519 0.003 0.001 0.000% 99.968% Const mixed_2/tower/conv/batchnorm/beta_quint8_const<br>
1.301 0.002 0.001 0.000% 99.968% Const mixed_1/tower_1/conv_1/batchnorm/beta_quint8_const<br>
1.074 0.003 0.001 0.000% 99.968% Const mixed_1/conv/batchnorm/beta_min<br>
1.063 0.006 0.001 0.000% 99.968% Const mixed_1/conv/batchnorm/moving_variance_max<br>
1.055 0.003 0.001 0.000% 99.968% Const mixed_1/conv/batchnorm/moving_variance_quint8_const<br>
0.738 0.004 0.001 0.000% 99.968% Const mixed/tower/conv_1/batchnorm/beta_min<br>
0.724 0.004 0.001 0.000% 99.968% Const mixed/tower/conv_1/batchnorm/moving_variance_max<br>
0.524 0.002 0.001 0.000% 99.968% Const conv_4/batchnorm/moving_mean_min<br>
0.511 0.003 0.001 0.000% 99.968% Const conv_4/conv2d_params_min<br>
0.498 0.002 0.001 0.000% 99.968% Const conv_3/batchnorm/beta_max<br>
0.460 0.003 0.001 0.000% 99.968% Const conv_3/conv2d_params_max<br>
0.433 0.003 0.001 0.000% 99.968% Const conv_2/batchnorm/beta_min<br>
0.421 0.002 0.001 0.000% 99.968% Const conv_2/batchnorm/moving_variance_min<br>
0.393 0.003 0.001 0.000% 99.968% Const conv_2/conv2d_params_min<br>
0.287 0.003 0.001 0.000% 99.969% Const conv/batchnorm/moving_mean_min<br>
5.540 0.003 0.001 0.000% 99.969% Const mixed_9/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
5.138 0.003 0.001 0.000% 99.969% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_variance_quint8_const<br>
4.876 0.003 0.001 0.000% 99.969% Const mixed_10/tower/mixed/conv/conv2d_params_min<br>
4.821 0.003 0.001 0.000% 99.969% Const mixed_10/tower/conv/batchnorm/moving_mean_max<br>
4.787 0.003 0.001 0.000% 99.969% Const mixed_10/conv/batchnorm/beta_max<br>
4.638 0.003 0.001 0.000% 99.969% Const mixed_9/conv/batchnorm/moving_variance_max<br>
4.521 0.005 0.001 0.000% 99.969% Const mixed_8/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
4.390 0.006 0.001 0.000% 99.969% Const mixed_8/tower_1/conv/conv2d_params_min<br>
4.048 0.003 0.001 0.000% 99.969% Const mixed_7/tower_1/conv_1/batchnorm/beta_quint8_const<br>
4.004 0.003 0.001 0.000% 99.969% Const mixed_7/tower_1/conv/batchnorm/beta_max<br>
3.851 0.002 0.001 0.000% 99.969% Const mixed_7/tower/conv_1/conv2d_params_min<br>
3.539 0.003 0.001 0.000% 99.969% Const mixed_6/tower_1/conv_2/batchnorm/moving_mean_max<br>
3.492 0.002 0.001 0.000% 99.969% Const mixed_6/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
3.322 0.003 0.001 0.000% 99.969% Const mixed_6/tower/conv_1/batchnorm/moving_mean_max<br>
3.304 0.003 0.001 0.000% 99.969% Const mixed_6/tower/conv_1/conv2d_params_min<br>
3.286 0.002 0.001 0.000% 99.969% Const mixed_6/tower/conv/batchnorm/beta_quint8_const<br>
3.088 0.003 0.001 0.000% 99.969% Const mixed_5/tower_1/conv_4/conv2d_params_min<br>
3.023 0.003 0.001 0.000% 99.969% Const mixed_5/tower_1/conv_2/batchnorm/beta_max<br>
3.002 0.002 0.001 0.000% 99.969% Const mixed_5/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
2.942 0.002 0.001 0.000% 99.969% Const mixed_5/tower_1/conv_1/batchnorm/moving_mean_max<br>
2.882 0.006 0.001 0.000% 99.970% Const mixed_5/tower_1/conv/batchnorm/moving_mean_min<br>
2.798 0.005 0.001 0.000% 99.970% Const mixed_5/tower/conv_1/batchnorm/beta_max<br>
2.773 0.002 0.001 0.000% 99.970% Const mixed_5/tower/conv_1/batchnorm/moving_mean_max<br>
2.702 0.002 0.001 0.000% 99.970% Const mixed_5/tower/conv/batchnorm/moving_variance_quint8_const<br>
2.698 0.003 0.001 0.000% 99.970% Const mixed_5/tower/conv/batchnorm/moving_mean_max<br>
2.648 0.002 0.001 0.000% 99.970% Const mixed_5/conv/batchnorm/moving_variance_quint8_const<br>
2.534 0.005 0.001 0.000% 99.970% Const mixed_4/tower_1/conv_4/batchnorm/moving_variance_quint8_const<br>
2.513 0.002 0.001 0.000% 99.970% Const mixed_4/tower_1/conv_4/conv2d_params_min<br>
2.410 0.003 0.001 0.000% 99.970% Const mixed_4/tower_1/conv_2/batchnorm/moving_mean_quint8_const<br>
2.298 0.002 0.001 0.000% 99.970% Const mixed_4/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
2.265 0.005 0.001 0.000% 99.970% Const mixed_4/tower/conv_2/batchnorm/moving_variance_max<br>
2.198 0.002 0.001 0.000% 99.970% Const mixed_4/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
2.090 0.002 0.001 0.000% 99.970% Const mixed_4/conv/batchnorm/moving_variance_max<br>
2.000 0.004 0.001 0.000% 99.970% Const mixed_3/tower/conv_2/conv2d_params_min<br>
1.897 0.003 0.001 0.000% 99.970% Const mixed_3/tower/conv/batchnorm/moving_mean_quint8_const<br>
1.887 0.005 0.001 0.000% 99.970% Const mixed_3/tower/conv/conv2d_params_min<br>
1.810 0.002 0.001 0.000% 99.970% Const mixed_3/conv/conv2d_params_min<br>
1.798 0.002 0.001 0.000% 99.970% Const mixed_2/tower_2/conv/batchnorm/beta_max<br>
1.712 0.007 0.001 0.000% 99.970% Const mixed_2/tower_1/conv_2/batchnorm/moving_mean_min<br>
1.690 0.002 0.001 0.000% 99.970% Const mixed_2/tower_1/conv_1/batchnorm/beta_max<br>
1.615 0.003 0.001 0.000% 99.970% Const mixed_2/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
1.513 0.005 0.001 0.000% 99.971% Const mixed_2/tower/conv/batchnorm/moving_variance_max<br>
1.268 0.006 0.001 0.000% 99.971% Const mixed_1/tower_1/conv_1/conv2d_params_max<br>
1.265 0.002 0.001 0.000% 99.971% Const mixed_1/tower_1/conv_1/conv2d_params_min<br>
1.246 0.003 0.001 0.000% 99.971% Const mixed_1/tower_1/conv/batchnorm/beta_quint8_const<br>
1.059 0.003 0.001 0.000% 99.971% Const mixed_1/conv/batchnorm/moving_variance_min<br>
0.704 0.004 0.001 0.000% 99.971% Const mixed/tower/conv_1/batchnorm/moving_mean_max<br>
0.583 0.003 0.001 0.000% 99.971% Const mixed/conv/batchnorm/moving_mean_max<br>
0.528 0.002 0.001 0.000% 99.971% Const conv_4/batchnorm/moving_mean_max<br>
0.351 0.003 0.001 0.000% 99.971% Const conv_1/batchnorm/moving_mean_min<br>
0.315 0.002 0.001 0.000% 99.971% Const conv/batchnorm/beta_min<br>
5.609 0.002 0.001 0.000% 99.971% Const mixed_9/tower_1/conv_1/batchnorm/beta_quint8_const<br>
5.482 0.002 0.001 0.000% 99.971% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_variance_quint8_const<br>
5.388 0.003 0.001 0.000% 99.971% Const mixed_9/tower/conv/batchnorm/beta_max<br>
5.373 0.005 0.001 0.000% 99.971% Const mixed_9/tower/conv/batchnorm/moving_variance_max<br>
5.190 0.003 0.001 0.000% 99.971% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_mean_quint8_const<br>
5.011 0.003 0.001 0.000% 99.971% Const mixed_10/tower_1/conv/batchnorm/moving_mean_max<br>
4.803 0.003 0.001 0.000% 99.971% Const mixed_10/tower/conv/conv2d_params_min<br>
4.632 0.005 0.001 0.000% 99.971% Const mixed_9/conv/batchnorm/moving_variance_min<br>
4.553 0.003 0.001 0.000% 99.971% Const mixed_8/tower_1/conv_3/conv2d_params_min<br>
4.409 0.006 0.001 0.000% 99.971% Const mixed_8/tower_1/conv/batchnorm/moving_mean_max<br>
4.182 0.005 0.001 0.000% 99.971% Const mixed_7/tower_1/conv_4/batchnorm/moving_mean_quint8_const<br>
4.070 0.005 0.001 0.000% 99.971% Const mixed_7/tower_1/conv_2/conv2d_params_max<br>
3.888 0.002 0.001 0.000% 99.972% Const mixed_7/tower/conv_1/batchnorm/beta_quint8_const<br>
3.826 0.005 0.001 0.000% 99.972% Const mixed_7/tower/conv/batchnorm/moving_variance_max<br>
3.807 0.006 0.001 0.000% 99.972% Const mixed_7/tower/conv/batchnorm/moving_mean_min<br>
3.800 0.002 0.001 0.000% 99.972% Const mixed_7/tower/conv/conv2d_params_max<br>
3.773 0.003 0.001 0.000% 99.972% Const mixed_7/conv/batchnorm/moving_variance_max<br>
3.722 0.003 0.001 0.000% 99.972% Const mixed_6/tower_2/conv/batchnorm/beta_quint8_const<br>
3.546 0.003 0.001 0.000% 99.972% Const mixed_6/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
3.485 0.005 0.001 0.000% 99.972% Const mixed_6/tower_1/conv_1/batchnorm/moving_mean_max<br>
3.397 0.002 0.001 0.000% 99.972% Const mixed_6/tower/conv_2/batchnorm/beta_quint8_const<br>
3.372 0.005 0.001 0.000% 99.972% Const mixed_6/tower/conv_2/batchnorm/moving_mean_min<br>
3.293 0.002 0.001 0.000% 99.972% Const mixed_6/tower/conv/batchnorm/beta_max<br>
3.251 0.002 0.001 0.000% 99.972% Const mixed_6/tower/conv/conv2d_params_min<br>
3.157 0.003 0.001 0.000% 99.972% Const mixed_5/tower_2/conv/batchnorm/moving_mean_min<br>
3.052 0.005 0.001 0.000% 99.972% Const mixed_5/tower_1/conv_3/batchnorm/moving_mean_max<br>
2.900 0.005 0.001 0.000% 99.972% Const mixed_5/tower_1/conv/batchnorm/moving_variance_max<br>
2.828 0.002 0.001 0.000% 99.972% Const mixed_5/tower/conv_2/batchnorm/moving_mean_max<br>
2.780 0.006 0.001 0.000% 99.972% Const mixed_5/tower/conv_1/batchnorm/moving_variance_min<br>
2.756 0.002 0.001 0.000% 99.972% Const mixed_5/tower/conv_1/conv2d_params_min<br>
2.651 0.006 0.001 0.000% 99.972% Const mixed_5/conv/batchnorm/moving_variance_min<br>
2.551 0.007 0.001 0.000% 99.972% Const mixed_4/tower_1/conv_4/batchnorm/beta_min<br>
2.477 0.002 0.001 0.000% 99.972% Const mixed_4/tower_1/conv_3/batchnorm/moving_variance_quint8_const<br>
2.157 0.002 0.001 0.000% 99.973% Const mixed_4/tower/conv/batchnorm/beta_min<br>
2.098 0.002 0.001 0.000% 99.973% Const mixed_4/conv/batchnorm/beta_min<br>
2.018 0.002 0.001 0.000% 99.973% Const mixed_3/tower/conv_2/batchnorm/moving_mean_min<br>
1.742 0.002 0.001 0.000% 99.973% Const mixed_2/tower_1/conv_2/batchnorm/beta_min<br>
1.683 0.002 0.001 0.000% 99.973% Const mixed_2/tower_1/conv_1/batchnorm/beta_quint8_const<br>
1.527 0.003 0.001 0.000% 99.973% Const mixed_2/tower/conv/batchnorm/beta_min<br>
1.495 0.005 0.001 0.000% 99.973% Const mixed_2/tower/conv/batchnorm/moving_mean_min<br>
1.375 0.002 0.001 0.000% 99.973% Const mixed_1/tower_2/conv/conv2d_params_min<br>
1.312 0.002 0.001 0.000% 99.973% Const mixed_1/tower_1/conv_1/batchnorm/beta_max<br>
1.242 0.003 0.001 0.000% 99.973% Const mixed_1/tower_1/conv/batchnorm/moving_variance_max<br>
1.128 0.002 0.001 0.000% 99.973% Const mixed_1/tower/conv/batchnorm/moving_variance_min<br>
1.089 0.003 0.001 0.000% 99.973% Const mixed_1/tower/conv/conv2d_params_min<br>
0.948 0.003 0.001 0.000% 99.973% Const mixed/tower_1/conv_2/batchnorm/moving_variance_max<br>
0.882 0.003 0.001 0.000% 99.973% Const mixed/tower_1/conv_1/batchnorm/beta_quint8_const<br>
0.792 0.004 0.001 0.000% 99.973% Const mixed/tower_1/conv/batchnorm/moving_mean_max<br>
0.745 0.004 0.001 0.000% 99.973% Const mixed/tower/conv_1/batchnorm/beta_max<br>
0.572 0.003 0.001 0.000% 99.973% Const mixed/conv/batchnorm/moving_mean_quint8_const<br>
0.568 0.003 0.001 0.000% 99.973% Const mixed/conv/conv2d_params_max<br>
0.549 0.002 0.001 0.000% 99.973% Const conv_4/batchnorm/beta_min<br>
0.369 0.003 0.001 0.000% 99.973% Const conv_1/batchnorm/moving_variance_max<br>
5.781 0.002 0.001 0.000% 99.973% Const mixed_9/tower_2/conv/batchnorm/beta_quint8_const<br>
5.726 0.002 0.001 0.000% 99.973% Const mixed_9/tower_1/mixed/conv_1/batchnorm/beta_min<br>
5.722 0.002 0.001 0.000% 99.974% Const mixed_9/tower_1/mixed/conv_1/batchnorm/beta_quint8_const<br>
5.441 0.003 0.001 0.000% 99.974% Const mixed_9/tower/mixed/conv/batchnorm/beta_min<br>
5.369 0.003 0.001 0.000% 99.974% Const mixed_9/tower/conv/batchnorm/moving_variance_min<br>
5.142 0.003 0.001 0.000% 99.974% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_variance_min<br>
5.077 0.002 0.001 0.000% 99.974% Const mixed_10/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
5.001 0.002 0.001 0.000% 99.974% Const mixed_10/tower_1/conv/batchnorm/moving_mean_quint8_const<br>
4.993 0.003 0.001 0.000% 99.974% Const mixed_10/tower_1/conv/conv2d_params_min<br>
4.956 0.003 0.001 0.000% 99.974% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_mean_max<br>
4.918 0.003 0.001 0.000% 99.974% Const mixed_10/tower/mixed/conv/batchnorm/beta_quint8_const<br>
4.898 0.002 0.001 0.000% 99.974% Const mixed_10/tower/mixed/conv/batchnorm/moving_mean_max<br>
4.629 0.002 0.001 0.000% 99.974% Const mixed_9/conv/batchnorm/moving_variance_quint8_const<br>
4.539 0.005 0.001 0.000% 99.974% Const mixed_8/tower_1/conv_2/batchnorm/beta_min<br>
4.371 0.006 0.001 0.000% 99.974% Const mixed_8/tower/conv_1/batchnorm/beta_quint8_const<br>
4.310 0.002 0.001 0.000% 99.974% Const mixed_8/tower/conv/batchnorm/moving_variance_min<br>
4.274 0.002 0.001 0.000% 99.974% Const mixed_7/tower_2/conv/batchnorm/beta_max<br>
4.211 0.002 0.001 0.000% 99.974% Const mixed_7/tower_1/conv_4/batchnorm/beta_quint8_const<br>
4.101 0.002 0.001 0.000% 99.974% Const mixed_7/tower_1/conv_2/batchnorm/beta_quint8_const<br>
4.087 0.005 0.001 0.000% 99.974% Const mixed_7/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
4.058 0.003 0.001 0.000% 99.974% Const mixed_7/tower_1/conv_1/batchnorm/beta_max<br>
4.030 0.003 0.001 0.000% 99.974% Const mixed_7/tower_1/conv_1/batchnorm/moving_mean_max<br>
3.994 0.002 0.001 0.000% 99.974% Const mixed_7/tower_1/conv/batchnorm/beta_quint8_const<br>
3.990 0.003 0.001 0.000% 99.974% Const mixed_7/tower_1/conv/batchnorm/moving_variance_max<br>
3.958 0.005 0.001 0.000% 99.975% Const mixed_7/tower_1/conv/conv2d_params_min<br>
3.929 0.003 0.001 0.000% 99.975% Const mixed_7/tower/conv_2/batchnorm/moving_variance_quint8_const<br>
3.880 0.003 0.001 0.000% 99.975% Const mixed_7/tower/conv_1/batchnorm/moving_variance_max<br>
3.840 0.002 0.001 0.000% 99.975% Const mixed_7/tower/conv/batchnorm/beta_max<br>
3.836 0.003 0.001 0.000% 99.975% Const mixed_7/tower/conv/batchnorm/beta_min<br>
3.796 0.002 0.001 0.000% 99.975% Const mixed_7/tower/conv/conv2d_params_min<br>
3.605 0.002 0.001 0.000% 99.975% Const mixed_6/tower_1/conv_3/batchnorm/moving_variance_min<br>
3.579 0.006 0.001 0.000% 99.975% Const mixed_6/tower_1/conv_3/conv2d_params_max<br>
3.568 0.002 0.001 0.000% 99.975% Const mixed_6/tower_1/conv_2/batchnorm/beta_max<br>
3.383 0.002 0.001 0.000% 99.975% Const mixed_6/tower/conv_2/batchnorm/moving_variance_quint8_const<br>
3.319 0.002 0.001 0.000% 99.975% Const mixed_6/tower/conv_1/batchnorm/moving_mean_min<br>
3.276 0.005 0.001 0.000% 99.975% Const mixed_6/tower/conv/batchnorm/moving_variance_min<br>
3.268 0.002 0.001 0.000% 99.975% Const mixed_6/tower/conv/batchnorm/moving_mean_max<br>
3.175 0.002 0.001 0.000% 99.975% Const mixed_5/tower_2/conv/batchnorm/moving_variance_max<br>
3.154 0.002 0.001 0.000% 99.975% Const mixed_5/tower_2/conv/batchnorm/moving_mean_quint8_const<br>
3.143 0.002 0.001 0.000% 99.975% Const mixed_5/tower_2/conv/conv2d_params_min<br>
3.099 0.003 0.001 0.000% 99.975% Const mixed_5/tower_1/conv_4/batchnorm/moving_mean_quint8_const<br>
3.062 0.003 0.001 0.000% 99.975% Const mixed_5/tower_1/conv_3/batchnorm/moving_variance_min<br>
3.006 0.002 0.001 0.000% 99.975% Const mixed_5/tower_1/conv_2/batchnorm/moving_variance_min<br>
2.936 0.005 0.001 0.000% 99.975% Const mixed_5/tower_1/conv_1/batchnorm/moving_mean_min<br>
2.832 0.002 0.001 0.000% 99.975% Const mixed_5/tower/conv_2/batchnorm/moving_variance_quint8_const<br>
2.813 0.002 0.001 0.000% 99.976% Const mixed_5/tower/conv_2/conv2d_params_max<br>
2.695 0.002 0.001 0.000% 99.976% Const mixed_5/tower/conv/batchnorm/moving_mean_min<br>
2.680 0.003 0.001 0.000% 99.976% Const mixed_5/tower/conv/conv2d_params_min<br>
2.625 0.003 0.001 0.000% 99.976% Const mixed_5/conv/conv2d_params_min<br>
2.400 0.005 0.001 0.000% 99.976% Const mixed_4/tower_1/conv_2/conv2d_params_min<br>
2.369 0.003 0.001 0.000% 99.976% Const mixed_4/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
2.325 0.002 0.001 0.000% 99.976% Const mixed_4/tower_1/conv/batchnorm/beta_quint8_const<br>
2.311 0.003 0.001 0.000% 99.976% Const mixed_4/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
2.301 0.005 0.001 0.000% 99.976% Const mixed_4/tower_1/conv/batchnorm/moving_mean_min<br>
2.290 0.003 0.001 0.000% 99.976% Const mixed_4/tower_1/conv/conv2d_params_min<br>
2.258 0.002 0.001 0.000% 99.976% Const mixed_4/tower/conv_2/batchnorm/moving_variance_quint8_const<br>
2.212 0.002 0.001 0.000% 99.976% Const mixed_4/tower/conv_1/batchnorm/beta_quint8_const<br>
2.125 0.002 0.001 0.000% 99.976% Const mixed_4/tower/conv/batchnorm/moving_mean_quint8_const<br>
2.094 0.002 0.001 0.000% 99.976% Const mixed_4/conv/batchnorm/beta_quint8_const<br>
2.073 0.002 0.001 0.000% 99.976% Const mixed_4/conv/batchnorm/moving_mean_min<br>
2.040 0.002 0.001 0.000% 99.976% Const mixed_3/tower/conv_2/batchnorm/beta_quint8_const<br>
1.969 0.002 0.001 0.000% 99.976% Const mixed_3/tower/conv_1/batchnorm/moving_variance_min<br>
1.959 0.002 0.001 0.000% 99.976% Const mixed_3/tower/conv_1/batchnorm/moving_mean_max<br>
1.835 0.003 0.001 0.000% 99.976% Const mixed_3/conv/batchnorm/moving_variance_min<br>
1.724 0.002 0.001 0.000% 99.976% Const mixed_2/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
1.701 0.002 0.001 0.000% 99.976% Const mixed_2/tower_1/conv_2/conv2d_params_min<br>
1.562 0.002 0.001 0.000% 99.976% Const mixed_2/tower/conv_1/batchnorm/moving_variance_quint8_const<br>
1.407 0.002 0.001 0.000% 99.977% Const mixed_1/tower_2/conv/batchnorm/moving_variance_max<br>
1.400 0.005 0.001 0.000% 99.977% Const mixed_1/tower_2/conv/batchnorm/moving_variance_min<br>
1.320 0.002 0.001 0.000% 99.977% Const mixed_1/tower_1/conv_2/conv2d_params_min<br>
1.283 0.003 0.001 0.000% 99.977% Const mixed_1/tower_1/conv_1/batchnorm/moving_mean_max<br>
1.239 0.002 0.001 0.000% 99.977% Const mixed_1/tower_1/conv/batchnorm/moving_variance_min<br>
1.201 0.002 0.001 0.000% 99.977% Const mixed_1/tower/conv_1/batchnorm/beta_max<br>
1.186 0.002 0.001 0.000% 99.977% Const mixed_1/tower/conv_1/batchnorm/moving_variance_max<br>
1.172 0.005 0.001 0.000% 99.977% Const mixed_1/tower/conv_1/batchnorm/moving_mean_max<br>
1.142 0.003 0.001 0.000% 99.977% Const mixed_1/tower/conv/batchnorm/beta_min<br>
1.132 0.002 0.001 0.000% 99.977% Const mixed_1/tower/conv/batchnorm/moving_variance_max<br>
1.124 0.003 0.001 0.000% 99.977% Const mixed_1/tower/conv/batchnorm/moving_variance_quint8_const<br>
1.007 0.003 0.001 0.000% 99.977% Const mixed/tower_2/conv/batchnorm/moving_variance_max<br>
0.999 0.003 0.001 0.000% 99.977% Const mixed/tower_2/conv/batchnorm/moving_variance_min<br>
0.871 0.002 0.001 0.000% 99.977% Const mixed/tower_1/conv_1/batchnorm/moving_variance_min<br>
0.765 0.004 0.001 0.000% 99.977% Const mixed/tower_1/conv/conv2d_params_max<br>
0.655 0.003 0.001 0.000% 99.977% Const mixed/tower/conv/batchnorm/beta_min<br>
0.553 0.002 0.001 0.000% 99.977% Const conv_4/batchnorm/beta_max<br>
0.536 0.003 0.001 0.000% 99.977% Const conv_4/batchnorm/moving_variance_min<br>
0.378 0.003 0.001 0.000% 99.977% Const conv_1/batchnorm/beta_min<br>
0.356 0.002 0.001 0.000% 99.977% Const conv_1/batchnorm/moving_mean_max<br>
5.770 0.005 0.001 0.000% 99.977% Const mixed_9/tower_2/conv/batchnorm/moving_variance_min<br>
5.758 0.003 0.001 0.000% 99.977% Const mixed_9/tower_2/conv/batchnorm/moving_mean_min<br>
5.742 0.003 0.001 0.000% 99.978% Const mixed_9/tower_2/conv/conv2d_params_min<br>
5.718 0.002 0.001 0.000% 99.978% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_variance_max<br>
5.661 0.002 0.001 0.000% 99.978% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_variance_max<br>
5.638 0.003 0.001 0.000% 99.978% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_mean_quint8_const<br>
5.562 0.003 0.001 0.000% 99.978% Const mixed_9/tower_1/conv/batchnorm/beta_max<br>
5.400 0.002 0.001 0.000% 99.978% Const mixed_9/tower/mixed/conv/conv2d_params_min<br>
5.354 0.006 0.001 0.000% 99.978% Const mixed_9/tower/conv/batchnorm/moving_mean_min<br>
5.215 0.002 0.001 0.000% 99.978% Const mixed_10/tower_1/mixed/conv_1/batchnorm/beta_quint8_const<br>
5.127 0.006 0.001 0.000% 99.978% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_mean_min<br>
5.084 0.006 0.001 0.000% 99.978% Const mixed_10/tower_1/conv_1/batchnorm/moving_variance_max<br>
5.060 0.004 0.001 0.000% 99.978% Const mixed_10/tower_1/conv_1/batchnorm/moving_mean_quint8_const<br>
4.974 0.003 0.001 0.000% 99.978% Const mixed_10/tower/mixed/conv_1/batchnorm/beta_quint8_const<br>
4.881 0.003 0.001 0.000% 99.978% Const mixed_10/tower/mixed/conv/conv2d_params_max<br>
4.754 0.003 0.001 0.000% 99.978% Const mixed_10/conv/batchnorm/moving_mean_min<br>
4.608 0.002 0.001 0.000% 99.978% Const mixed_9/conv/conv2d_params_min<br>
4.517 0.003 0.001 0.000% 99.978% Const mixed_8/tower_1/conv_2/batchnorm/moving_mean_max<br>
4.252 0.003 0.001 0.000% 99.978% Const mixed_7/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
4.199 0.007 0.001 0.000% 99.978% Const mixed_7/tower_1/conv_4/batchnorm/moving_variance_min<br>
4.188 0.003 0.001 0.000% 99.978% Const mixed_7/tower_1/conv_4/batchnorm/moving_mean_min<br>
4.174 0.002 0.001 0.000% 99.978% Const mixed_7/tower_1/conv_4/conv2d_params_min<br>
4.145 0.006 0.001 0.000% 99.978% Const mixed_7/tower_1/conv_3/batchnorm/moving_variance_min<br>
4.105 0.002 0.001 0.000% 99.978% Const mixed_7/tower_1/conv_2/batchnorm/beta_min<br>
4.080 0.002 0.001 0.000% 99.979% Const mixed_7/tower_1/conv_2/batchnorm/moving_mean_min<br>
4.052 0.005 0.001 0.000% 99.979% Const mixed_7/tower_1/conv_1/batchnorm/beta_min<br>
3.876 0.003 0.001 0.000% 99.979% Const mixed_7/tower/conv_1/batchnorm/moving_variance_min<br>
3.854 0.003 0.001 0.000% 99.979% Const mixed_7/tower/conv_1/conv2d_params_max<br>
3.766 0.003 0.001 0.000% 99.979% Const mixed_7/conv/batchnorm/moving_variance_min<br>
3.726 0.003 0.001 0.000% 99.979% Const mixed_6/tower_2/conv/batchnorm/beta_min<br>
3.712 0.006 0.001 0.000% 99.979% Const mixed_6/tower_2/conv/batchnorm/moving_variance_min<br>
3.705 0.002 0.001 0.000% 99.979% Const mixed_6/tower_2/conv/batchnorm/moving_mean_max<br>
3.668 0.003 0.001 0.000% 99.979% Const mixed_6/tower_1/conv_4/batchnorm/beta_quint8_const<br>
3.648 0.002 0.001 0.000% 99.979% Const mixed_6/tower_1/conv_4/batchnorm/moving_mean_min<br>
3.590 0.003 0.001 0.000% 99.979% Const mixed_6/tower_1/conv_3/batchnorm/moving_mean_min<br>
3.576 0.002 0.001 0.000% 99.979% Const mixed_6/tower_1/conv_3/conv2d_params_min<br>
3.482 0.002 0.001 0.000% 99.979% Const mixed_6/tower_1/conv_1/batchnorm/moving_mean_min<br>
3.415 0.002 0.001 0.000% 99.979% Const mixed_6/tower_1/conv/conv2d_params_min<br>
3.289 0.003 0.001 0.000% 99.979% Const mixed_6/tower/conv/batchnorm/beta_min<br>
3.240 0.005 0.001 0.000% 99.979% Const mixed_6/conv/batchnorm/beta_max<br>
3.215 0.002 0.001 0.000% 99.979% Const mixed_6/conv/batchnorm/moving_mean_max<br>
3.197 0.002 0.001 0.000% 99.979% Const mixed_6/conv/conv2d_params_min<br>
3.041 0.002 0.001 0.000% 99.979% Const mixed_5/tower_1/conv_3/conv2d_params_max<br>
2.979 0.003 0.001 0.000% 99.979% Const mixed_5/tower_1/conv_2/conv2d_params_min<br>
2.896 0.003 0.001 0.000% 99.979% Const mixed_5/tower_1/conv/batchnorm/moving_variance_min<br>
2.723 0.003 0.001 0.000% 99.979% Const mixed_5/tower/conv/batchnorm/beta_max<br>
2.713 0.002 0.001 0.000% 99.980% Const mixed_5/tower/conv/batchnorm/moving_variance_max<br>
2.669 0.005 0.001 0.000% 99.980% Const mixed_5/conv/batchnorm/beta_max<br>
2.602 0.002 0.001 0.000% 99.980% Const mixed_4/tower_2/conv/batchnorm/beta_quint8_const<br>
2.559 0.002 0.001 0.000% 99.980% Const mixed_4/tower_1/conv_4/batchnorm/beta_max<br>
2.445 0.003 0.001 0.000% 99.980% Const mixed_4/tower_1/conv_2/batchnorm/beta_max<br>
2.406 0.003 0.001 0.000% 99.980% Const mixed_4/tower_1/conv_2/conv2d_params_max<br>
2.328 0.003 0.001 0.000% 99.980% Const mixed_4/tower_1/conv/batchnorm/beta_min<br>
2.318 0.005 0.001 0.000% 99.980% Const mixed_4/tower_1/conv/batchnorm/moving_variance_max<br>
2.202 0.005 0.001 0.000% 99.980% Const mixed_4/tower/conv_1/batchnorm/moving_variance_min<br>
2.180 0.003 0.001 0.000% 99.980% Const mixed_4/tower/conv_1/conv2d_params_max<br>
2.116 0.004 0.001 0.000% 99.980% Const mixed_4/tower/conv/conv2d_params_min<br>
1.945 0.005 0.001 0.000% 99.980% Const mixed_3/tower/conv_1/conv2d_params_max<br>
1.941 0.002 0.001 0.000% 99.980% Const mixed_3/tower/conv_1/conv2d_params_min<br>
1.814 0.002 0.001 0.000% 99.980% Const mixed_3/conv/conv2d_params_max<br>
1.791 0.002 0.001 0.000% 99.980% Const mixed_2/tower_2/conv/batchnorm/beta_quint8_const<br>
1.784 0.002 0.001 0.000% 99.980% Const mixed_2/tower_2/conv/batchnorm/moving_variance_max<br>
1.738 0.002 0.001 0.000% 99.980% Const mixed_2/tower_1/conv_2/batchnorm/beta_quint8_const<br>
1.636 0.003 0.001 0.000% 99.980% Const mixed_2/tower_1/conv/batchnorm/beta_max<br>
1.619 0.005 0.001 0.000% 99.980% Const mixed_2/tower_1/conv/batchnorm/moving_variance_min<br>
1.558 0.003 0.001 0.000% 99.980% Const mixed_2/tower/conv_1/batchnorm/moving_mean_max<br>
1.414 0.003 0.001 0.000% 99.980% Const mixed_1/tower_2/conv/batchnorm/beta_min<br>
1.356 0.002 0.001 0.000% 99.980% Const mixed_1/tower_1/conv_2/batchnorm/beta_quint8_const<br>
1.279 0.003 0.001 0.000% 99.980% Const mixed_1/tower_1/conv_1/batchnorm/moving_mean_min<br>
1.182 0.003 0.001 0.000% 99.981% Const mixed_1/tower/conv_1/batchnorm/moving_variance_min<br>
1.146 0.002 0.001 0.000% 99.981% Const mixed_1/tower/conv/batchnorm/beta_max<br>
1.101 0.003 0.001 0.000% 99.981% Const mixed_1/tower/conv/batchnorm/moving_mean_min<br>
1.044 0.006 0.001 0.000% 99.981% Const mixed_1/conv/batchnorm/moving_mean_min<br>
1.035 0.003 0.001 0.000% 99.981% Const mixed_1/conv/conv2d_params_max<br>
0.995 0.003 0.001 0.000% 99.981% Const mixed/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
0.935 0.002 0.001 0.000% 99.981% Const mixed/tower_1/conv_2/batchnorm/moving_variance_quint8_const<br>
0.916 0.002 0.001 0.000% 99.981% Const mixed/tower_1/conv_2/conv2d_params_max<br>
0.847 0.003 0.001 0.000% 99.981% Const mixed/tower_1/conv_1/conv2d_params_max<br>
0.806 0.004 0.001 0.000% 99.981% Const mixed/tower_1/conv/batchnorm/moving_variance_min<br>
0.618 0.002 0.001 0.000% 99.981% Const mixed/tower/conv/conv2d_params_min<br>
0.515 0.003 0.001 0.000% 99.981% Const conv_4/conv2d_params_max<br>
0.291 0.003 0.001 0.000% 99.981% Const conv/batchnorm/moving_mean_max<br>
5.707 0.003 0.001 0.000% 99.981% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_variance_quint8_const<br>
5.650 0.005 0.001 0.000% 99.981% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_variance_quint8_const<br>
5.465 0.002 0.001 0.000% 99.981% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_mean_quint8_const<br>
5.437 0.003 0.001 0.000% 99.981% Const mixed_9/tower/mixed/conv/batchnorm/beta_quint8_const<br>
5.422 0.002 0.001 0.000% 99.981% Const mixed_9/tower/mixed/conv/batchnorm/moving_variance_quint8_const<br>
5.384 0.003 0.001 0.000% 99.981% Const mixed_9/tower/conv/batchnorm/beta_min<br>
5.331 0.003 0.001 0.000% 99.981% Const mixed_9/conv/batchnorm/beta_max<br>
5.297 0.003 0.001 0.000% 99.981% Const softmax/weights_min<br>
5.280 0.003 0.001 0.000% 99.981% Const mixed_10/tower_2/conv/batchnorm/beta_max<br>
5.202 0.003 0.001 0.000% 99.982% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_variance_quint8_const<br>
5.172 0.002 0.001 0.000% 99.982% Const mixed_10/tower_1/mixed/conv_1/conv2d_params_min<br>
5.161 0.002 0.001 0.000% 99.982% Const mixed_10/tower_1/mixed/conv/batchnorm/beta_max<br>
5.053 0.002 0.001 0.000% 99.982% Const mixed_10/tower_1/conv_1/conv2d_params_min<br>
5.015 0.002 0.001 0.000% 99.982% Const mixed_10/tower_1/conv/batchnorm/moving_variance_quint8_const<br>
4.964 0.002 0.001 0.000% 99.982% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_variance_min<br>
4.912 0.004 0.001 0.000% 99.982% Const mixed_10/tower/mixed/conv/batchnorm/moving_variance_max<br>
4.840 0.003 0.001 0.000% 99.982% Const mixed_10/tower/conv/batchnorm/beta_quint8_const<br>
4.773 0.002 0.001 0.000% 99.982% Const mixed_10/conv/batchnorm/moving_variance_max<br>
4.769 0.003 0.001 0.000% 99.982% Const mixed_10/conv/batchnorm/moving_variance_min<br>
4.596 0.006 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_3/batchnorm/beta_max<br>
4.500 0.002 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_2/conv2d_params_min<br>
4.485 0.005 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_1/batchnorm/beta_min<br>
4.481 0.003 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_1/batchnorm/beta_quint8_const<br>
4.474 0.002 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_1/batchnorm/moving_variance_min<br>
4.452 0.003 0.001 0.000% 99.982% Const mixed_8/tower_1/conv_1/conv2d_params_max<br>
4.324 0.002 0.001 0.000% 99.982% Const mixed_8/tower/conv/batchnorm/beta_min<br>
4.314 0.004 0.001 0.000% 99.982% Const mixed_8/tower/conv/batchnorm/moving_variance_max<br>
4.284 0.003 0.001 0.000% 99.982% Const mixed_8/tower/conv/conv2d_params_min<br>
4.152 0.002 0.001 0.000% 99.982% Const mixed_7/tower_1/conv_3/batchnorm/moving_variance_max<br>
4.012 0.003 0.001 0.000% 99.982% Const mixed_7/tower_1/conv_1/conv2d_params_min<br>
3.976 0.002 0.001 0.000% 99.982% Const mixed_7/tower_1/conv/batchnorm/moving_mean_max<br>
3.950 0.003 0.001 0.000% 99.983% Const mixed_7/tower/conv_2/batchnorm/beta_max<br>
3.892 0.002 0.001 0.000% 99.983% Const mixed_7/tower/conv_1/batchnorm/beta_min<br>
3.862 0.003 0.001 0.000% 99.983% Const mixed_7/tower/conv_1/batchnorm/moving_mean_min<br>
3.781 0.002 0.001 0.000% 99.983% Const mixed_7/conv/batchnorm/beta_min<br>
3.755 0.002 0.001 0.000% 99.983% Const mixed_7/conv/batchnorm/moving_mean_min<br>
3.665 0.002 0.001 0.000% 99.983% Const mixed_6/tower_1/conv_4/batchnorm/moving_variance_max<br>
3.594 0.002 0.001 0.000% 99.983% Const mixed_6/tower_1/conv_3/batchnorm/moving_mean_max<br>
3.496 0.002 0.001 0.000% 99.983% Const mixed_6/tower_1/conv_1/batchnorm/moving_variance_min<br>
3.455 0.003 0.001 0.000% 99.983% Const mixed_6/tower_1/conv/batchnorm/beta_min<br>
3.391 0.004 0.001 0.000% 99.983% Const mixed_6/tower/conv_2/batchnorm/moving_variance_max<br>
3.379 0.002 0.001 0.000% 99.983% Const mixed_6/tower/conv_2/batchnorm/moving_mean_max<br>
3.233 0.002 0.001 0.000% 99.983% Const mixed_6/conv/batchnorm/beta_quint8_const<br>
3.182 0.005 0.001 0.000% 99.983% Const mixed_5/tower_2/conv/batchnorm/beta_min<br>
2.949 0.003 0.001 0.000% 99.983% Const mixed_5/tower_1/conv_1/batchnorm/moving_variance_min<br>
2.850 0.002 0.001 0.000% 99.983% Const mixed_5/tower/conv_2/batchnorm/beta_min<br>
2.795 0.002 0.001 0.000% 99.983% Const mixed_5/tower/conv_1/batchnorm/beta_min<br>
2.644 0.002 0.001 0.000% 99.983% Const mixed_5/conv/batchnorm/moving_mean_max<br>
2.541 0.002 0.001 0.000% 99.983% Const mixed_4/tower_1/conv_4/batchnorm/moving_variance_min<br>
2.363 0.004 0.001 0.000% 99.983% Const mixed_4/tower_1/conv_1/batchnorm/moving_mean_max<br>
2.275 0.002 0.001 0.000% 99.983% Const mixed_4/tower/conv_2/batchnorm/beta_min<br>
2.261 0.003 0.001 0.000% 99.983% Const mixed_4/tower/conv_2/batchnorm/moving_variance_min<br>
2.250 0.003 0.001 0.000% 99.983% Const mixed_4/tower/conv_2/batchnorm/moving_mean_min<br>
2.136 0.002 0.001 0.000% 99.983% Const mixed_4/tower/conv/batchnorm/moving_mean_max<br>
2.132 0.002 0.001 0.000% 99.984% Const mixed_4/tower/conv/batchnorm/moving_mean_min<br>
2.006 0.003 0.001 0.000% 99.984% Const mixed_3/tower/conv_2/conv2d_params_max<br>
1.980 0.006 0.001 0.000% 99.984% Const mixed_3/tower/conv_1/batchnorm/beta_min<br>
1.916 0.002 0.001 0.000% 99.984% Const mixed_3/tower/conv/batchnorm/moving_variance_min<br>
1.773 0.003 0.001 0.000% 99.984% Const mixed_2/tower_2/conv/batchnorm/moving_mean_max<br>
1.745 0.002 0.001 0.000% 99.984% Const mixed_2/tower_1/conv_2/batchnorm/beta_max<br>
1.705 0.002 0.001 0.000% 99.984% Const mixed_2/tower_1/conv_2/conv2d_params_max<br>
1.612 0.002 0.001 0.000% 99.984% Const mixed_2/tower_1/conv/batchnorm/moving_mean_max<br>
1.583 0.006 0.001 0.000% 99.984% Const mixed_2/tower/conv_1/batchnorm/beta_max<br>
1.573 0.002 0.001 0.000% 99.984% Const mixed_2/tower/conv_1/batchnorm/moving_variance_max<br>
1.505 0.003 0.001 0.000% 99.984% Const mixed_2/tower/conv/batchnorm/moving_variance_quint8_const<br>
1.443 0.002 0.001 0.000% 99.984% Const mixed_2/conv/batchnorm/moving_mean_min<br>
1.389 0.003 0.001 0.000% 99.984% Const mixed_1/tower_2/conv/batchnorm/moving_mean_min<br>
1.352 0.003 0.001 0.000% 99.984% Const mixed_1/tower_1/conv_2/batchnorm/moving_variance_max<br>
1.294 0.002 0.001 0.000% 99.984% Const mixed_1/tower_1/conv_1/batchnorm/moving_variance_min<br>
1.216 0.002 0.001 0.000% 99.984% Const mixed_1/tower_1/conv/conv2d_params_max<br>
1.198 0.002 0.001 0.000% 99.984% Const mixed_1/tower/conv_1/batchnorm/beta_min<br>
1.093 0.003 0.001 0.000% 99.984% Const mixed_1/tower/conv/conv2d_params_max<br>
1.019 0.002 0.001 0.000% 99.984% Const mixed/tower_2/conv/batchnorm/beta_max<br>
0.843 0.003 0.001 0.000% 99.984% Const mixed/tower_1/conv_1/conv2d_params_min<br>
0.698 0.004 0.001 0.000% 99.984% Const mixed/tower/conv_1/batchnorm/moving_mean_min<br>
0.685 0.004 0.001 0.000% 99.984% Const mixed/tower/conv_1/conv2d_params_max<br>
0.622 0.002 0.001 0.000% 99.985% Const mixed/tower/conv/conv2d_params_max<br>
0.437 0.003 0.001 0.000% 99.985% Const conv_2/batchnorm/beta_max<br>
0.411 0.003 0.001 0.000% 99.985% Const conv_2/batchnorm/moving_mean_max<br>
0.277 0.002 0.001 0.000% 99.985% Const conv/conv2d_params_max<br>
3.427 0.002 0.001 0.000% 99.985% Const mixed_6/tower_1/conv/batchnorm/moving_mean_min<br>
5.544 0.003 0.001 0.000% 99.985% Const mixed_9/tower_1/conv/batchnorm/moving_variance_min<br>
5.457 0.002 0.001 0.000% 99.985% Const mixed_9/tower/mixed/conv_1/conv2d_params_min<br>
5.412 0.002 0.001 0.000% 99.985% Const mixed_9/tower/mixed/conv/batchnorm/moving_mean_min<br>
5.251 0.006 0.001 0.000% 99.985% Const mixed_10/tower_2/conv/batchnorm/moving_mean_max<br>
5.185 0.003 0.001 0.000% 99.985% Const mixed_10/tower_1/mixed/conv_1/conv2d_params_max<br>
5.146 0.006 0.001 0.000% 99.985% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_variance_max<br>
5.073 0.002 0.001 0.000% 99.985% Const mixed_10/tower_1/conv_1/batchnorm/moving_mean_max<br>
4.949 0.006 0.001 0.000% 99.985% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_mean_min<br>
4.783 0.003 0.001 0.000% 99.985% Const mixed_10/conv/batchnorm/beta_min<br>
4.582 0.002 0.001 0.000% 99.985% Const mixed_8/tower_1/conv_3/batchnorm/moving_variance_min<br>
4.535 0.002 0.001 0.000% 99.985% Const mixed_8/tower_1/conv_2/batchnorm/beta_quint8_const<br>
4.528 0.002 0.001 0.000% 99.985% Const mixed_8/tower_1/conv_2/batchnorm/moving_variance_min<br>
4.470 0.003 0.001 0.000% 99.985% Const mixed_8/tower_1/conv_1/batchnorm/moving_variance_quint8_const<br>
4.460 0.003 0.001 0.000% 99.985% Const mixed_8/tower_1/conv_1/batchnorm/moving_mean_min<br>
4.338 0.002 0.001 0.000% 99.985% Const mixed_8/tower/conv_1/conv2d_params_min<br>
4.306 0.003 0.001 0.000% 99.985% Const mixed_8/tower/conv/batchnorm/moving_variance_quint8_const<br>
4.302 0.003 0.001 0.000% 99.985% Const mixed_8/tower/conv/batchnorm/moving_mean_max<br>
4.260 0.005 0.001 0.000% 99.985% Const mixed_7/tower_2/conv/batchnorm/moving_variance_max<br>
4.234 0.002 0.001 0.000% 99.986% Const mixed_7/tower_2/conv/conv2d_params_max<br>
4.160 0.002 0.001 0.000% 99.986% Const mixed_7/tower_1/conv_3/batchnorm/beta_min<br>
4.027 0.002 0.001 0.000% 99.986% Const mixed_7/tower_1/conv_1/batchnorm/moving_mean_min<br>
4.001 0.002 0.001 0.000% 99.986% Const mixed_7/tower_1/conv/batchnorm/beta_min<br>
3.937 0.002 0.001 0.000% 99.986% Const mixed_7/tower/conv_2/batchnorm/moving_variance_max<br>
3.818 0.002 0.001 0.000% 99.986% Const mixed_7/tower/conv/batchnorm/moving_variance_quint8_const<br>
3.702 0.002 0.001 0.000% 99.986% Const mixed_6/tower_2/conv/batchnorm/moving_mean_min<br>
3.687 0.002 0.001 0.000% 99.986% Const mixed_6/tower_2/conv/conv2d_params_min<br>
3.637 0.005 0.001 0.000% 99.986% Const mixed_6/tower_1/conv_4/conv2d_params_max<br>
3.564 0.002 0.001 0.000% 99.986% Const mixed_6/tower_1/conv_2/batchnorm/beta_min<br>
3.554 0.002 0.001 0.000% 99.986% Const mixed_6/tower_1/conv_2/batchnorm/moving_variance_max<br>
3.467 0.005 0.001 0.000% 99.986% Const mixed_6/tower_1/conv_1/conv2d_params_min<br>
3.334 0.005 0.001 0.000% 99.986% Const mixed_6/tower/conv_1/batchnorm/moving_variance_max<br>
3.330 0.003 0.001 0.000% 99.986% Const mixed_6/tower/conv_1/batchnorm/moving_variance_min<br>
3.201 0.002 0.001 0.000% 99.986% Const mixed_6/conv/conv2d_params_max<br>
3.161 0.002 0.001 0.000% 99.986% Const mixed_5/tower_2/conv/batchnorm/moving_mean_max<br>
3.121 0.002 0.001 0.000% 99.986% Const mixed_5/tower_1/conv_4/batchnorm/moving_variance_max<br>
3.049 0.002 0.001 0.000% 99.986% Const mixed_5/tower_1/conv_3/batchnorm/moving_mean_min<br>
3.009 0.002 0.001 0.000% 99.986% Const mixed_5/tower_1/conv_2/batchnorm/moving_variance_max<br>
2.995 0.005 0.001 0.000% 99.986% Const mixed_5/tower_1/conv_2/batchnorm/moving_mean_max<br>
2.914 0.002 0.001 0.000% 99.986% Const mixed_5/tower_1/conv/batchnorm/beta_max<br>
2.720 0.002 0.001 0.000% 99.986% Const mixed_5/tower/conv/batchnorm/beta_min<br>
2.605 0.003 0.001 0.000% 99.986% Const mixed_4/tower_2/conv/batchnorm/beta_min<br>
2.594 0.003 0.001 0.000% 99.987% Const mixed_4/tower_2/conv/batchnorm/moving_variance_min<br>
2.584 0.003 0.001 0.000% 99.987% Const mixed_4/tower_2/conv/batchnorm/moving_mean_max<br>
2.580 0.003 0.001 0.000% 99.987% Const mixed_4/tower_2/conv/batchnorm/moving_mean_min<br>
2.570 0.005 0.001 0.000% 99.987% Const mixed_4/tower_2/conv/conv2d_params_max<br>
2.548 0.002 0.001 0.000% 99.987% Const mixed_4/tower_1/conv_4/batchnorm/beta_quint8_const<br>
2.527 0.002 0.001 0.000% 99.987% Const mixed_4/tower_1/conv_4/batchnorm/moving_mean_min<br>
2.501 0.002 0.001 0.000% 99.987% Const mixed_4/tower_1/conv_3/batchnorm/beta_min<br>
2.121 0.002 0.001 0.000% 99.987% Const mixed_4/tower/conv/conv2d_params_max<br>
2.062 0.002 0.001 0.000% 99.987% Const mixed_4/conv/conv2d_params_max<br>
1.901 0.002 0.001 0.000% 99.987% Const mixed_3/tower/conv/batchnorm/moving_mean_min<br>
1.839 0.002 0.001 0.000% 99.987% Const mixed_3/conv/batchnorm/moving_variance_max<br>
1.821 0.002 0.001 0.000% 99.987% Const mixed_3/conv/batchnorm/moving_mean_min<br>
1.759 0.003 0.001 0.000% 99.987% Const mixed_2/tower_2/conv/conv2d_params_max<br>
1.731 0.005 0.001 0.000% 99.987% Const mixed_2/tower_1/conv_2/batchnorm/moving_variance_max<br>
1.672 0.002 0.001 0.000% 99.987% Const mixed_2/tower_1/conv_1/batchnorm/moving_variance_min<br>
1.598 0.002 0.001 0.000% 99.987% Const mixed_2/tower_1/conv/conv2d_params_max<br>
1.462 0.002 0.001 0.000% 99.987% Const mixed_2/conv/batchnorm/moving_variance_max<br>
1.432 0.003 0.001 0.000% 99.987% Const mixed_2/conv/conv2d_params_max<br>
1.418 0.005 0.001 0.000% 99.987% Const mixed_1/tower_2/conv/batchnorm/beta_max<br>
0.828 0.002 0.001 0.000% 99.987% Const mixed/tower_1/conv/batchnorm/beta_min<br>
0.679 0.004 0.001 0.000% 99.987% Const mixed/tower/conv_1/conv2d_params_min<br>
0.659 0.003 0.001 0.000% 99.987% Const mixed/tower/conv/batchnorm/beta_max<br>
0.481 0.003 0.001 0.000% 99.987% Const conv_3/batchnorm/moving_variance_min<br>
5.656 0.003 0.001 0.000% 99.988% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_variance_min<br>
5.601 0.003 0.001 0.000% 99.988% Const mixed_9/tower_1/conv_1/batchnorm/moving_variance_min<br>
5.571 0.002 0.001 0.000% 99.988% Const mixed_9/tower_1/conv_1/conv2d_params_min<br>
5.514 0.006 0.001 0.000% 99.988% Const mixed_9/tower_1/conv/conv2d_params_min<br>
5.319 0.003 0.001 0.000% 99.988% Const softmax/biases_quint8_const<br>
5.258 0.003 0.001 0.000% 99.988% Const mixed_10/tower_2/conv/batchnorm/moving_variance_quint8_const<br>
5.247 0.003 0.001 0.000% 99.988% Const mixed_10/tower_2/conv/batchnorm/moving_mean_min<br>
5.134 0.003 0.001 0.000% 99.988% Const mixed_10/tower_1/mixed/conv/batchnorm/moving_mean_max<br>
5.037 0.002 0.001 0.000% 99.988% Const mixed_10/tower_1/conv/batchnorm/beta_max<br>
4.815 0.005 0.001 0.000% 99.988% Const mixed_10/tower/conv/batchnorm/moving_mean_min<br>
4.747 0.002 0.001 0.000% 99.988% Const mixed_10/conv/conv2d_params_max<br>
4.622 0.002 0.001 0.000% 99.988% Const mixed_9/conv/batchnorm/moving_mean_min<br>
4.575 0.002 0.001 0.000% 99.988% Const mixed_8/tower_1/conv_3/batchnorm/moving_variance_quint8_const<br>
4.368 0.002 0.001 0.000% 99.988% Const mixed_8/tower/conv_1/batchnorm/moving_variance_max<br>
4.357 0.002 0.001 0.000% 99.988% Const mixed_8/tower/conv_1/batchnorm/moving_mean_max<br>
4.350 0.002 0.001 0.000% 99.988% Const mixed_8/tower/conv_1/batchnorm/moving_mean_min<br>
4.327 0.002 0.001 0.000% 99.988% Const mixed_8/tower/conv/batchnorm/beta_max<br>
4.296 0.005 0.001 0.000% 99.988% Const mixed_8/tower/conv/batchnorm/moving_mean_min<br>
4.218 0.003 0.001 0.000% 99.988% Const mixed_7/tower_1/conv_4/batchnorm/beta_max<br>
4.120 0.002 0.001 0.000% 99.988% Const mixed_7/tower_1/conv_3/conv2d_params_min<br>
4.084 0.002 0.001 0.000% 99.988% Const mixed_7/tower_1/conv_2/batchnorm/moving_mean_max<br>
3.972 0.003 0.001 0.000% 99.988% Const mixed_7/tower_1/conv/batchnorm/moving_mean_min<br>
3.730 0.005 0.001 0.000% 99.988% Const mixed_6/tower_2/conv/batchnorm/beta_max<br>
3.691 0.002 0.001 0.000% 99.989% Const mixed_6/tower_2/conv/conv2d_params_max<br>
3.550 0.002 0.001 0.000% 99.989% Const mixed_6/tower_1/conv_2/batchnorm/moving_variance_min<br>
3.536 0.002 0.001 0.000% 99.989% Const mixed_6/tower_1/conv_2/batchnorm/moving_mean_min<br>
3.499 0.003 0.001 0.000% 99.989% Const mixed_6/tower_1/conv_1/batchnorm/moving_variance_max<br>
3.387 0.002 0.001 0.000% 99.989% Const mixed_6/tower/conv_2/batchnorm/moving_variance_min<br>
3.308 0.002 0.001 0.000% 99.989% Const mixed_6/tower/conv_1/conv2d_params_max<br>
3.189 0.002 0.001 0.000% 99.989% Const mixed_5/tower_2/conv/batchnorm/beta_max<br>
3.171 0.002 0.001 0.000% 99.989% Const mixed_5/tower_2/conv/batchnorm/moving_variance_min<br>
3.129 0.004 0.001 0.000% 99.989% Const mixed_5/tower_1/conv_4/batchnorm/beta_min<br>
3.107 0.002 0.001 0.000% 99.989% Const mixed_5/tower_1/conv_4/batchnorm/moving_mean_max<br>
3.066 0.003 0.001 0.000% 99.989% Const mixed_5/tower_1/conv_3/batchnorm/moving_variance_max<br>
3.059 0.002 0.001 0.000% 99.989% Const mixed_5/tower_1/conv_3/batchnorm/moving_variance_quint8_const<br>
2.960 0.002 0.001 0.000% 99.989% Const mixed_5/tower_1/conv_1/batchnorm/beta_quint8_const<br>
2.910 0.003 0.001 0.000% 99.989% Const mixed_5/tower_1/conv/batchnorm/beta_min<br>
2.889 0.002 0.001 0.000% 99.989% Const mixed_5/tower_1/conv/batchnorm/moving_mean_max<br>
2.869 0.004 0.001 0.000% 99.989% Const mixed_5/tower_1/conv/conv2d_params_min<br>
2.842 0.003 0.001 0.000% 99.989% Const mixed_5/tower/conv_2/batchnorm/moving_variance_max<br>
2.666 0.002 0.001 0.000% 99.989% Const mixed_5/conv/batchnorm/beta_min<br>
2.629 0.002 0.001 0.000% 99.989% Const mixed_5/conv/conv2d_params_max<br>
2.615 0.004 0.001 0.000% 99.989% Const mixed_4/tower_2/conv/batchnorm/beta_max<br>
2.598 0.002 0.001 0.000% 99.989% Const mixed_4/tower_2/conv/batchnorm/moving_variance_max<br>
2.505 0.002 0.001 0.000% 99.989% Const mixed_4/tower_1/conv_3/batchnorm/beta_max<br>
2.432 0.002 0.001 0.000% 99.989% Const mixed_4/tower_1/conv_2/batchnorm/moving_variance_max<br>
2.235 0.004 0.001 0.000% 99.990% Const mixed_4/tower/conv_2/conv2d_params_max<br>
2.215 0.003 0.001 0.000% 99.990% Const mixed_4/tower/conv_1/batchnorm/beta_min<br>
2.177 0.002 0.001 0.000% 99.990% Const mixed_4/tower/conv_1/conv2d_params_min<br>
1.930 0.002 0.001 0.000% 99.990% Const mixed_3/tower/conv/batchnorm/beta_min<br>
1.781 0.002 0.001 0.000% 99.990% Const mixed_2/tower_2/conv/batchnorm/moving_variance_min<br>
1.728 0.002 0.001 0.000% 99.990% Const mixed_2/tower_1/conv_2/batchnorm/moving_variance_min<br>
1.661 0.003 0.001 0.000% 99.990% Const mixed_2/tower_1/conv_1/batchnorm/moving_mean_min<br>
1.651 0.002 0.001 0.000% 99.990% Const mixed_2/tower_1/conv_1/conv2d_params_max<br>
1.647 0.002 0.001 0.000% 99.990% Const mixed_2/tower_1/conv_1/conv2d_params_min<br>
1.633 0.002 0.001 0.000% 99.990% Const mixed_2/tower_1/conv/batchnorm/beta_min<br>
1.608 0.002 0.001 0.000% 99.990% Const mixed_2/tower_1/conv/batchnorm/moving_mean_min<br>
1.580 0.002 0.001 0.000% 99.990% Const mixed_2/tower/conv_1/batchnorm/beta_min<br>
1.569 0.002 0.001 0.000% 99.990% Const mixed_2/tower/conv_1/batchnorm/moving_variance_min<br>
1.544 0.004 0.001 0.000% 99.990% Const mixed_2/tower/conv_1/conv2d_params_max<br>
1.532 0.002 0.001 0.000% 99.990% Const mixed_2/tower/conv/batchnorm/beta_max<br>
1.446 0.003 0.001 0.000% 99.990% Const mixed_2/conv/batchnorm/moving_mean_max<br>
1.360 0.002 0.001 0.000% 99.990% Const mixed_1/tower_1/conv_2/batchnorm/beta_min<br>
1.349 0.002 0.001 0.000% 99.990% Const mixed_1/tower_1/conv_2/batchnorm/moving_variance_min<br>
1.015 0.003 0.001 0.000% 99.990% Const mixed/tower_2/conv/batchnorm/beta_min<br>
0.977 0.002 0.001 0.000% 99.990% Const mixed/tower_2/conv/conv2d_params_max<br>
0.718 0.004 0.001 0.000% 99.990% Const mixed/tower/conv_1/batchnorm/moving_variance_min<br>
0.609 0.002 0.001 0.000% 99.990% Const mixed/conv/batchnorm/beta_max<br>
5.699 0.002 0.001 0.000% 99.990% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_mean_min<br>
5.591 0.002 0.001 0.000% 99.990% Const mixed_9/tower_1/conv_1/batchnorm/moving_mean_max<br>
5.533 0.005 0.001 0.000% 99.991% Const mixed_9/tower_1/conv/batchnorm/moving_mean_max<br>
5.529 0.002 0.001 0.000% 99.991% Const mixed_9/tower_1/conv/batchnorm/moving_mean_min<br>
5.490 0.002 0.001 0.000% 99.991% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_variance_max<br>
5.361 0.003 0.001 0.000% 99.991% Const mixed_9/tower/conv/batchnorm/moving_mean_max<br>
5.347 0.002 0.001 0.000% 99.991% Const mixed_9/tower/conv/conv2d_params_max<br>
5.327 0.003 0.001 0.000% 99.991% Const softmax/biases_max<br>
5.239 0.003 0.001 0.000% 99.991% Const mixed_10/tower_2/conv/conv2d_params_max<br>
5.219 0.003 0.001 0.000% 99.991% Const mixed_10/tower_1/mixed/conv_1/batchnorm/beta_min<br>
5.194 0.003 0.001 0.000% 99.991% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_mean_min<br>
5.117 0.004 0.001 0.000% 99.991% Const mixed_10/tower_1/mixed/conv/conv2d_params_max<br>
5.111 0.004 0.001 0.000% 99.991% Const mixed_10/tower_1/mixed/conv/conv2d_params_min<br>
5.095 0.002 0.001 0.000% 99.991% Const mixed_10/tower_1/conv_1/batchnorm/beta_min<br>
5.091 0.003 0.001 0.000% 99.991% Const mixed_10/tower_1/conv_1/batchnorm/beta_quint8_const<br>
5.057 0.002 0.001 0.000% 99.991% Const mixed_10/tower_1/conv_1/conv2d_params_max<br>
4.982 0.002 0.001 0.000% 99.991% Const mixed_10/tower/mixed/conv_1/batchnorm/beta_max<br>
4.968 0.005 0.001 0.000% 99.991% Const mixed_10/tower/mixed/conv_1/batchnorm/moving_variance_max<br>
4.941 0.002 0.001 0.000% 99.991% Const mixed_10/tower/mixed/conv_1/conv2d_params_max<br>
4.922 0.003 0.001 0.000% 99.991% Const mixed_10/tower/mixed/conv/batchnorm/beta_min<br>
4.906 0.002 0.001 0.000% 99.991% Const mixed_10/tower/mixed/conv/batchnorm/moving_variance_min<br>
4.503 0.005 0.001 0.000% 99.991% Const mixed_8/tower_1/conv_2/conv2d_params_max<br>
4.446 0.002 0.001 0.000% 99.991% Const mixed_8/tower_1/conv_1/conv2d_params_min<br>
4.435 0.002 0.001 0.000% 99.991% Const mixed_8/tower_1/conv/batchnorm/beta_min<br>
4.425 0.002 0.001 0.000% 99.991% Const mixed_8/tower_1/conv/batchnorm/moving_variance_max<br>
4.342 0.002 0.001 0.000% 99.992% Const mixed_8/tower/conv_1/conv2d_params_max<br>
4.207 0.002 0.001 0.000% 99.992% Const mixed_7/tower_1/conv_4/batchnorm/moving_variance_max<br>
4.178 0.002 0.001 0.000% 99.992% Const mixed_7/tower_1/conv_4/conv2d_params_max<br>
3.987 0.002 0.001 0.000% 99.992% Const mixed_7/tower_1/conv/batchnorm/moving_variance_min<br>
3.933 0.002 0.001 0.000% 99.992% Const mixed_7/tower/conv_2/batchnorm/moving_variance_min<br>
3.814 0.003 0.001 0.000% 99.992% Const mixed_7/tower/conv/batchnorm/moving_mean_max<br>
3.745 0.002 0.001 0.000% 99.992% Const mixed_7/conv/conv2d_params_max<br>
3.528 0.003 0.001 0.000% 99.992% Const mixed_6/tower_1/conv_2/conv2d_params_max<br>
3.510 0.002 0.001 0.000% 99.992% Const mixed_6/tower_1/conv_1/batchnorm/beta_min<br>
3.433 0.003 0.001 0.000% 99.992% Const mixed_6/tower_1/conv/batchnorm/moving_mean_max<br>
3.404 0.002 0.001 0.000% 99.992% Const mixed_6/tower/conv_2/batchnorm/beta_max<br>
3.229 0.002 0.001 0.000% 99.992% Const mixed_6/conv/batchnorm/moving_variance_max<br>
3.147 0.005 0.001 0.000% 99.992% Const mixed_5/tower_2/conv/conv2d_params_max<br>
3.135 0.002 0.001 0.000% 99.992% Const mixed_5/tower_1/conv_4/batchnorm/beta_max<br>
3.076 0.003 0.001 0.000% 99.992% Const mixed_5/tower_1/conv_3/batchnorm/beta_min<br>
2.991 0.003 0.001 0.000% 99.992% Const mixed_5/tower_1/conv_2/batchnorm/moving_mean_min<br>
2.983 0.002 0.001 0.000% 99.992% Const mixed_5/tower_1/conv_2/conv2d_params_max<br>
2.928 0.003 0.001 0.000% 99.992% Const mixed_5/tower_1/conv_1/conv2d_params_max<br>
2.684 0.002 0.001 0.000% 99.992% Const mixed_5/tower/conv/conv2d_params_max<br>
2.640 0.002 0.001 0.000% 99.992% Const mixed_5/conv/batchnorm/moving_mean_min<br>
2.481 0.003 0.001 0.000% 99.992% Const mixed_4/tower_1/conv_3/batchnorm/moving_variance_min<br>
2.471 0.002 0.001 0.000% 99.992% Const mixed_4/tower_1/conv_3/batchnorm/moving_mean_max<br>
2.460 0.002 0.001 0.000% 99.992% Const mixed_4/tower_1/conv_3/conv2d_params_max<br>
2.414 0.002 0.001 0.000% 99.992% Const mixed_4/tower_1/conv_2/batchnorm/moving_mean_min<br>
2.392 0.002 0.001 0.000% 99.993% Const mixed_4/tower_1/conv_1/batchnorm/beta_max<br>
2.374 0.002 0.001 0.000% 99.993% Const mixed_4/tower_1/conv_1/batchnorm/moving_variance_min<br>
2.332 0.002 0.001 0.000% 99.993% Const mixed_4/tower_1/conv/batchnorm/beta_max<br>
2.208 0.002 0.001 0.000% 99.993% Const mixed_4/tower/conv_1/batchnorm/moving_variance_max<br>
2.101 0.003 0.001 0.000% 99.993% Const mixed_4/conv/batchnorm/beta_max<br>
2.084 0.005 0.001 0.000% 99.993% Const mixed_4/conv/batchnorm/moving_variance_min<br>
1.973 0.002 0.001 0.000% 99.993% Const mixed_3/tower/conv_1/batchnorm/moving_variance_max<br>
1.849 0.002 0.001 0.000% 99.993% Const mixed_3/conv/batchnorm/beta_min<br>
1.686 0.003 0.001 0.000% 99.993% Const mixed_2/tower_1/conv_1/batchnorm/beta_min<br>
1.679 0.002 0.001 0.000% 99.993% Const mixed_2/tower_1/conv_1/batchnorm/moving_variance_max<br>
1.665 0.002 0.001 0.000% 99.993% Const mixed_2/tower_1/conv_1/batchnorm/moving_mean_max<br>
1.594 0.003 0.001 0.000% 99.993% Const mixed_2/tower_1/conv/conv2d_params_min<br>
1.541 0.002 0.001 0.000% 99.993% Const mixed_2/tower/conv_1/conv2d_params_min<br>
1.509 0.003 0.001 0.000% 99.993% Const mixed_2/tower/conv/batchnorm/moving_variance_min<br>
1.469 0.002 0.001 0.000% 99.993% Const mixed_2/conv/batchnorm/beta_min<br>
1.466 0.002 0.001 0.000% 99.993% Const mixed_2/conv/batchnorm/beta_quint8_const<br>
1.393 0.002 0.001 0.000% 99.993% Const mixed_1/tower_2/conv/batchnorm/moving_mean_max<br>
1.224 0.002 0.001 0.000% 99.993% Const mixed_1/tower_1/conv/batchnorm/moving_mean_min<br>
1.168 0.002 0.001 0.000% 99.993% Const mixed_1/tower/conv_1/batchnorm/moving_mean_min<br>
0.564 0.002 0.001 0.000% 99.993% Const mixed/conv/conv2d_params_min<br>
5.669 0.005 0.001 0.000% 99.993% Const mixed_9/tower_1/mixed/conv/batchnorm/beta_min<br>
5.612 0.006 0.001 0.000% 99.993% Const mixed_9/tower_1/conv_1/batchnorm/beta_min<br>
5.469 0.002 0.001 0.000% 99.993% Const mixed_9/tower/mixed/conv_1/batchnorm/moving_mean_min<br>
5.461 0.002 0.001 0.000% 99.994% Const mixed_9/tower/mixed/conv_1/conv2d_params_max<br>
5.301 0.003 0.001 0.000% 99.994% Const softmax/weights_max<br>
5.262 0.002 0.001 0.000% 99.994% Const mixed_10/tower_2/conv/batchnorm/moving_variance_min<br>
5.211 0.002 0.001 0.000% 99.994% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_variance_max<br>
5.206 0.003 0.001 0.000% 99.994% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_variance_min<br>
5.080 0.003 0.001 0.000% 99.994% Const mixed_10/tower_1/conv_1/batchnorm/moving_variance_min<br>
5.019 0.002 0.001 0.000% 99.994% Const mixed_10/tower_1/conv/batchnorm/moving_variance_min<br>
4.844 0.003 0.001 0.000% 99.994% Const mixed_10/tower/conv/batchnorm/beta_min<br>
4.646 0.002 0.001 0.000% 99.994% Const mixed_9/conv/batchnorm/beta_min<br>
4.557 0.003 0.001 0.000% 99.994% Const mixed_8/tower_1/conv_3/conv2d_params_max<br>
4.531 0.003 0.001 0.000% 99.994% Const mixed_8/tower_1/conv_2/batchnorm/moving_variance_max<br>
4.478 0.002 0.001 0.000% 99.994% Const mixed_8/tower_1/conv_1/batchnorm/moving_variance_max<br>
4.421 0.002 0.001 0.000% 99.994% Const mixed_8/tower_1/conv/batchnorm/moving_variance_min<br>
4.256 0.002 0.001 0.000% 99.994% Const mixed_7/tower_2/conv/batchnorm/moving_variance_min<br>
4.094 0.002 0.001 0.000% 99.994% Const mixed_7/tower_1/conv_2/batchnorm/moving_variance_min<br>
4.041 0.002 0.001 0.000% 99.994% Const mixed_7/tower_1/conv_1/batchnorm/moving_variance_min<br>
3.965 0.002 0.001 0.000% 99.994% Const mixed_7/tower_1/conv/conv2d_params_max<br>
3.719 0.002 0.001 0.000% 99.994% Const mixed_6/tower_2/conv/batchnorm/moving_variance_max<br>
3.608 0.002 0.001 0.000% 99.994% Const mixed_6/tower_1/conv_3/batchnorm/moving_variance_max<br>
3.419 0.002 0.001 0.000% 99.994% Const mixed_6/tower_1/conv/conv2d_params_max<br>
3.401 0.002 0.001 0.000% 99.994% Const mixed_6/tower/conv_2/batchnorm/beta_min<br>
3.348 0.003 0.001 0.000% 99.994% Const mixed_6/tower/conv_1/batchnorm/beta_max<br>
3.264 0.003 0.001 0.000% 99.994% Const mixed_6/tower/conv/batchnorm/moving_mean_min<br>
3.236 0.002 0.001 0.000% 99.994% Const mixed_6/conv/batchnorm/beta_min<br>
3.211 0.003 0.001 0.000% 99.995% Const mixed_6/conv/batchnorm/moving_mean_min<br>
3.125 0.002 0.001 0.000% 99.995% Const mixed_5/tower_1/conv_4/batchnorm/beta_quint8_const<br>
3.117 0.003 0.001 0.000% 99.995% Const mixed_5/tower_1/conv_4/batchnorm/moving_variance_min<br>
3.080 0.002 0.001 0.000% 99.995% Const mixed_5/tower_1/conv_3/batchnorm/beta_max<br>
2.953 0.002 0.001 0.000% 99.995% Const mixed_5/tower_1/conv_1/batchnorm/moving_variance_max<br>
2.874 0.002 0.001 0.000% 99.995% Const mixed_5/tower_1/conv/conv2d_params_max<br>
2.824 0.003 0.001 0.000% 99.995% Const mixed_5/tower/conv_2/batchnorm/moving_mean_min<br>
2.658 0.003 0.001 0.000% 99.995% Const mixed_5/conv/batchnorm/moving_variance_max<br>
2.519 0.003 0.001 0.000% 99.995% Const mixed_4/tower_1/conv_4/conv2d_params_max<br>
2.486 0.004 0.001 0.000% 99.995% Const mixed_4/tower_1/conv_3/batchnorm/moving_variance_max<br>
2.467 0.003 0.001 0.000% 99.995% Const mixed_4/tower_1/conv_3/batchnorm/moving_mean_min<br>
2.388 0.002 0.001 0.000% 99.995% Const mixed_4/tower_1/conv_1/batchnorm/beta_min<br>
2.377 0.002 0.001 0.000% 99.995% Const mixed_4/tower_1/conv_1/batchnorm/moving_variance_max<br>
2.219 0.002 0.001 0.000% 99.995% Const mixed_4/tower/conv_1/batchnorm/beta_max<br>
2.044 0.002 0.001 0.000% 99.995% Const mixed_3/tower/conv_2/batchnorm/beta_min<br>
2.032 0.003 0.001 0.000% 99.995% Const mixed_3/tower/conv_2/batchnorm/moving_variance_min<br>
1.756 0.002 0.001 0.000% 99.995% Const mixed_2/tower_2/conv/conv2d_params_min<br>
1.502 0.002 0.001 0.000% 99.995% Const mixed_2/tower/conv/batchnorm/moving_mean_max<br>
1.078 0.002 0.001 0.000% 99.995% Const mixed_1/conv/batchnorm/beta_max<br>
0.957 0.002 0.001 0.000% 99.995% Const mixed/tower_1/conv_2/batchnorm/beta_min<br>
0.925 0.003 0.001 0.000% 99.995% Const mixed/tower_1/conv_2/batchnorm/moving_mean_min<br>
5.733 0.002 0.001 0.000% 99.995% Const mixed_9/tower_1/mixed/conv_1/batchnorm/beta_max<br>
5.703 0.002 0.001 0.000% 99.995% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_mean_max<br>
5.688 0.003 0.001 0.000% 99.995% Const mixed_9/tower_1/mixed/conv_1/conv2d_params_max<br>
5.646 0.002 0.001 0.000% 99.996% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_mean_max<br>
5.587 0.002 0.001 0.000% 99.996% Const mixed_9/tower_1/conv_1/batchnorm/moving_mean_min<br>
5.548 0.003 0.001 0.000% 99.996% Const mixed_9/tower_1/conv/batchnorm/moving_variance_max<br>
5.502 0.002 0.001 0.000% 99.996% Const mixed_9/tower/mixed/conv_1/batchnorm/beta_min<br>
5.445 0.002 0.001 0.000% 99.996% Const mixed_9/tower/mixed/conv/batchnorm/beta_max<br>
5.430 0.002 0.001 0.000% 99.996% Const mixed_9/tower/mixed/conv/batchnorm/moving_variance_max<br>
5.418 0.003 0.001 0.000% 99.996% Const mixed_9/tower/mixed/conv/batchnorm/moving_mean_max<br>
5.266 0.002 0.001 0.000% 99.996% Const mixed_10/tower_2/conv/batchnorm/moving_variance_max<br>
5.098 0.003 0.001 0.000% 99.996% Const mixed_10/tower_1/conv_1/batchnorm/beta_max<br>
5.022 0.002 0.001 0.000% 99.996% Const mixed_10/tower_1/conv/batchnorm/moving_variance_max<br>
4.926 0.002 0.001 0.000% 99.996% Const mixed_10/tower/mixed/conv/batchnorm/beta_max<br>
4.848 0.002 0.001 0.000% 99.996% Const mixed_10/tower/conv/batchnorm/beta_max<br>
4.807 0.003 0.001 0.000% 99.996% Const mixed_10/tower/conv/conv2d_params_max<br>
4.612 0.002 0.001 0.000% 99.996% Const mixed_9/conv/conv2d_params_max<br>
4.571 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv_3/batchnorm/moving_mean_max<br>
4.545 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv_2/batchnorm/beta_max<br>
4.514 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv_2/batchnorm/moving_mean_min<br>
4.492 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv_1/batchnorm/beta_max<br>
4.464 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv_1/batchnorm/moving_mean_max<br>
4.438 0.002 0.001 0.000% 99.996% Const mixed_8/tower_1/conv/batchnorm/beta_max<br>
4.397 0.003 0.001 0.000% 99.996% Const mixed_8/tower_1/conv/conv2d_params_max<br>
4.288 0.002 0.001 0.000% 99.996% Const mixed_8/tower/conv/conv2d_params_max<br>
4.270 0.002 0.001 0.000% 99.996% Const mixed_7/tower_2/conv/batchnorm/beta_min<br>
4.163 0.005 0.001 0.000% 99.996% Const mixed_7/tower_1/conv_3/batchnorm/beta_max<br>
4.137 0.002 0.001 0.000% 99.996% Const mixed_7/tower_1/conv_3/batchnorm/moving_mean_max<br>
4.123 0.002 0.001 0.000% 99.997% Const mixed_7/tower_1/conv_3/conv2d_params_max<br>
4.044 0.003 0.001 0.000% 99.997% Const mixed_7/tower_1/conv_1/batchnorm/moving_variance_max<br>
4.019 0.002 0.001 0.000% 99.997% Const mixed_7/tower_1/conv_1/conv2d_params_max<br>
3.947 0.002 0.001 0.000% 99.997% Const mixed_7/tower/conv_2/batchnorm/beta_min<br>
3.918 0.003 0.001 0.000% 99.997% Const mixed_7/tower/conv_2/batchnorm/moving_mean_min<br>
3.911 0.002 0.001 0.000% 99.997% Const mixed_7/tower/conv_2/conv2d_params_max<br>
3.895 0.003 0.001 0.000% 99.997% Const mixed_7/tower/conv_1/batchnorm/beta_max<br>
3.679 0.002 0.001 0.000% 99.997% Const mixed_6/tower_1/conv_4/batchnorm/beta_max<br>
3.661 0.003 0.001 0.000% 99.997% Const mixed_6/tower_1/conv_4/batchnorm/moving_variance_min<br>
3.626 0.002 0.001 0.000% 99.997% Const mixed_6/tower_1/conv_3/batchnorm/beta_max<br>
3.474 0.002 0.001 0.000% 99.997% Const mixed_6/tower_1/conv_1/conv2d_params_max<br>
3.459 0.002 0.001 0.000% 99.997% Const mixed_6/tower_1/conv/batchnorm/beta_max<br>
3.345 0.002 0.001 0.000% 99.997% Const mixed_6/tower/conv_1/batchnorm/beta_min<br>
3.020 0.002 0.001 0.000% 99.997% Const mixed_5/tower_1/conv_2/batchnorm/beta_min<br>
2.968 0.002 0.001 0.000% 99.997% Const mixed_5/tower_1/conv_1/batchnorm/beta_max<br>
2.964 0.002 0.001 0.000% 99.997% Const mixed_5/tower_1/conv_1/batchnorm/beta_min<br>
2.809 0.002 0.001 0.000% 99.997% Const mixed_5/tower/conv_2/conv2d_params_min<br>
2.418 0.005 0.001 0.000% 99.997% Const mixed_4/tower_1/conv_2/batchnorm/moving_mean_max<br>
2.294 0.002 0.001 0.000% 99.997% Const mixed_4/tower_1/conv/conv2d_params_max<br>
2.279 0.002 0.001 0.000% 99.997% Const mixed_4/tower/conv_2/batchnorm/beta_max<br>
2.036 0.002 0.001 0.000% 99.997% Const mixed_3/tower/conv_2/batchnorm/moving_variance_max<br>
1.955 0.003 0.001 0.000% 99.997% Const mixed_3/tower/conv_1/batchnorm/moving_mean_min<br>
1.795 0.002 0.001 0.000% 99.997% Const mixed_2/tower_2/conv/batchnorm/beta_min<br>
1.555 0.002 0.001 0.000% 99.997% Const mixed_2/tower/conv_1/batchnorm/moving_mean_min<br>
1.454 0.002 0.001 0.000% 99.998% Const mixed_2/conv/batchnorm/moving_variance_min<br>
1.334 0.003 0.001 0.000% 99.998% Const mixed_1/tower_1/conv_2/batchnorm/moving_mean_min<br>
0.856 0.002 0.001 0.000% 99.998% Const mixed/tower_1/conv_1/batchnorm/moving_mean_min<br>
5.785 0.002 0.001 0.000% 99.998% Const mixed_9/tower_2/conv/batchnorm/beta_min<br>
5.675 0.003 0.001 0.000% 99.998% Const mixed_9/tower_1/mixed/conv/batchnorm/beta_max<br>
5.632 0.005 0.001 0.000% 99.998% Const mixed_9/tower_1/mixed/conv/conv2d_params_max<br>
5.628 0.002 0.001 0.000% 99.998% Const mixed_9/tower_1/mixed/conv/conv2d_params_min<br>
5.559 0.002 0.001 0.000% 99.998% Const mixed_9/tower_1/conv/batchnorm/beta_min<br>
5.505 0.003 0.001 0.000% 99.998% Const mixed_9/tower/mixed/conv_1/batchnorm/beta_max<br>
5.198 0.003 0.001 0.000% 99.998% Const mixed_10/tower_1/mixed/conv_1/batchnorm/moving_mean_max<br>
5.066 0.005 0.001 0.000% 99.998% Const mixed_10/tower_1/conv_1/batchnorm/moving_mean_min<br>
4.978 0.003 0.001 0.000% 99.998% Const mixed_10/tower/mixed/conv_1/batchnorm/beta_min<br>
4.833 0.002 0.001 0.000% 99.998% Const mixed_10/tower/conv/batchnorm/moving_variance_max<br>
4.625 0.002 0.001 0.000% 99.998% Const mixed_9/conv/batchnorm/moving_mean_max<br>
4.382 0.002 0.001 0.000% 99.998% Const mixed_8/tower/conv_1/batchnorm/beta_max<br>
4.378 0.003 0.001 0.000% 99.998% Const mixed_8/tower/conv_1/batchnorm/beta_min<br>
4.249 0.002 0.001 0.000% 99.998% Const mixed_7/tower_2/conv/batchnorm/moving_mean_max<br>
4.245 0.002 0.001 0.000% 99.998% Const mixed_7/tower_2/conv/batchnorm/moving_mean_min<br>
4.215 0.002 0.001 0.000% 99.998% Const mixed_7/tower_1/conv_4/batchnorm/beta_min<br>
4.192 0.002 0.001 0.000% 99.998% Const mixed_7/tower_1/conv_4/batchnorm/moving_mean_max<br>
3.785 0.002 0.001 0.000% 99.998% Const mixed_7/conv/batchnorm/beta_max<br>
3.651 0.003 0.001 0.000% 99.998% Const mixed_6/tower_1/conv_4/batchnorm/moving_mean_max<br>
3.282 0.002 0.001 0.000% 99.998% Const mixed_6/tower/conv/batchnorm/moving_variance_max<br>
3.254 0.002 0.001 0.000% 99.998% Const mixed_6/tower/conv/conv2d_params_max<br>
3.103 0.002 0.001 0.000% 99.998% Const mixed_5/tower_1/conv_4/batchnorm/moving_mean_min<br>
2.531 0.002 0.001 0.000% 99.999% Const mixed_4/tower_1/conv_4/batchnorm/moving_mean_max<br>
2.442 0.002 0.001 0.000% 99.999% Const mixed_4/tower_1/conv_2/batchnorm/beta_min<br>
2.308 0.002 0.001 0.000% 99.999% Const mixed_4/tower_1/conv/batchnorm/moving_mean_max<br>
1.905 0.002 0.001 0.000% 99.999% Const mixed_3/tower/conv/batchnorm/moving_mean_max<br>
1.473 0.002 0.001 0.000% 99.999% Const mixed_2/conv/batchnorm/beta_max<br>
0.988 0.002 0.001 0.000% 99.999% Const mixed/tower_2/conv/batchnorm/moving_mean_min<br>
5.777 0.002 0.001 0.000% 99.999% Const mixed_9/tower_2/conv/batchnorm/moving_variance_max<br>
5.579 0.002 0.001 0.000% 99.999% Const mixed_9/tower_1/conv_1/conv2d_params_max<br>
5.521 0.002 0.001 0.000% 99.999% Const mixed_9/tower_1/conv/conv2d_params_max<br>
5.404 0.002 0.001 0.000% 99.999% Const mixed_9/tower/mixed/conv/conv2d_params_max<br>
5.157 0.002 0.001 0.000% 99.999% Const mixed_10/tower_1/mixed/conv/batchnorm/beta_min<br>
4.405 0.003 0.001 0.000% 99.999% Const mixed_8/tower_1/conv/batchnorm/moving_mean_min<br>
4.112 0.002 0.001 0.000% 99.999% Const mixed_7/tower_1/conv_2/batchnorm/beta_max<br>
3.822 0.002 0.001 0.000% 99.999% Const mixed_7/tower/conv/batchnorm/moving_variance_min<br>
3.096 0.002 0.001 0.000% 99.999% Const mixed_5/tower_1/conv_4/conv2d_params_max<br>
2.544 0.002 0.001 0.000% 99.999% Const mixed_4/tower_1/conv_4/batchnorm/moving_variance_max<br>
1.919 0.003 0.001 0.000% 99.999% Const mixed_3/tower/conv/batchnorm/moving_variance_max<br>
1.894 0.002 0.001 0.000% 99.999% Const mixed_3/tower/conv/conv2d_params_max<br>
1.487 0.002 0.001 0.000% 99.999% Const mixed_2/tower/conv/conv2d_params_max<br>
1.483 0.003 0.001 0.000% 99.999% Const mixed_2/tower/conv/conv2d_params_min<br>
5.714 0.003 0.001 0.000% 99.999% Const mixed_9/tower_1/mixed/conv_1/batchnorm/moving_variance_min<br>
5.642 0.003 0.001 0.000% 99.999% Const mixed_9/tower_1/mixed/conv/batchnorm/moving_mean_min<br>
5.620 0.002 0.001 0.000% 99.999% Const mixed_9/tower_1/conv_1/batchnorm/beta_max<br>
5.223 0.003 0.001 0.000% 99.999% Const mixed_10/tower_1/mixed/conv_1/batchnorm/beta_max<br>
5.005 0.002 0.001 0.000% 99.999% Const mixed_10/tower_1/conv/batchnorm/moving_mean_min<br>
4.997 0.002 0.001 0.000% 100.000% Const mixed_10/tower_1/conv/conv2d_params_max<br>
2.191 0.002 0.001 0.000% 100.000% Const mixed_4/tower/conv_1/batchnorm/moving_mean_min<br>
5.762 0.002 0.001 0.000% 100.000% Const mixed_9/tower_2/conv/batchnorm/moving_mean_max<br>
5.746 0.003 0.001 0.000% 100.000% Const mixed_9/tower_2/conv/conv2d_params_max<br>
5.323 0.003 0.001 0.000% 100.000% Const softmax/biases_min<br>
5.276 0.003 0.001 0.000% 100.000% Const mixed_10/tower_2/conv/batchnorm/beta_min<br>
4.894 0.002 0.001 0.000% 100.000% Const mixed_10/tower/mixed/conv/batchnorm/moving_mean_min<br>
4.585 0.002 0.001 0.000% 100.000% Const mixed_8/tower_1/conv_3/batchnorm/moving_variance_max<br>
3.869 0.002 0.001 0.000% 100.000% Const mixed_7/tower/conv_1/batchnorm/moving_mean_max<br>
4.593 0.002 0.001 0.000% 100.000% Const mixed_8/tower_1/conv_3/batchnorm/beta_min<br>
3.364 0.002 0.001 0.000% 100.000% Const mixed_6/tower/conv_2/conv2d_params_max<br>
2.760 0.002 0.001 0.000% 100.000% Const mixed_5/tower/conv_1/conv2d_params_max<br>
2.315 0.002 0.001 0.000% 100.000% Const mixed_4/tower_1/conv/batchnorm/moving_variance_min<br>
5.605 0.002 0.001 0.000% 100.000% Const mixed_9/tower_1/conv_1/batchnorm/moving_variance_max</p>
<p dir="auto">I tensorflow/core/util/stat_summarizer.cc:263]</p> | <ol dir="auto">
<li>
<p dir="auto">On Ubuntu 15.10 with CUDA 7.5, cuDNN 7.0, tensorflow-0.9.0rc0, ran "tensorflow/examples/label_image/" application by taking inception-v3 graph and roughly measure the elapsed time.</p>
</li>
<li>
<p dir="auto">Then take "tensorflow/contrib/quantization/tools:quantize_graph" to quant inception-v3, rebuilt application by giving</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""//tensorflow/contrib/quantization:cc_ops",
"//tensorflow/contrib/quantization/kernels:quantized_ops","><pre class="notranslate"><code class="notranslate">"//tensorflow/contrib/quantization:cc_ops",
"//tensorflow/contrib/quantization/kernels:quantized_ops",
</code></pre></div>
</li>
</ol>
<p dir="auto">into "tensorflow/examples/label_image/BUILD" and redo the same classification and measure the time.</p>
<p dir="auto">Before/After quantization, elapsed time were 6 seconds vs. 17 seconds, i.e. quantization doubled the inference time?</p>
<p dir="auto">The results looks ok as below so I think I was running it correctly.<br>
Before</p>
<ul dir="auto">
<li>military uniform (866): 0.647299</li>
<li>suit (794): 0.0477195</li>
<li>academic gown (896): 0.0232407</li>
<li>bow tie (817): 0.0157355</li>
<li>bolo tie (940): 0.0145023</li>
</ul>
<p dir="auto">After</p>
<ul dir="auto">
<li>military uniform (866): 0.703474</li>
<li>suit (794): 0.0248454</li>
<li>bow tie (817): 0.0171362</li>
<li>bolo tie (940): 0.0171362</li>
<li>academic gown (896): 0.0164432</li>
</ul>
<p dir="auto">My tensor flow was built as CPU only. Have also tried to enable GPU while the timing didn't change. Do we know what the expected performance would be?</p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report
[ ] feature request
[ ] support request"><pre class="notranslate"><code class="notranslate">[X] bug report
[ ] feature request
[ ] support request
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Let's suppose we have to following modules:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="AppModule
-> imports FeatureModule
-> import SubFeatureModule"><pre class="notranslate"><code class="notranslate">AppModule
-> imports FeatureModule
-> import SubFeatureModule
</code></pre></div>
<p dir="auto"><code class="notranslate">FeatureModule</code> has routes definitions</p>
<p dir="auto"><code class="notranslate">SubFeatureModule</code> has component and router guard (resolve). Component declares its resolves via static field (to keep it in one place)</p>
<p dir="auto">So <code class="notranslate">FeatureModule</code> declares a route, that lands to the component from <code class="notranslate">SubFeatureModule</code> and resolves given guard.</p>
<p dir="auto">In runtime (browser-dynamic) everything works as expected. But when we compile with angular-compiler, among imports a duplicate entry appears for resolver, and it has wrong path.</p>
<p dir="auto">Although, resolution via static fields in AoT in other cases works fine, I could not figure out why it fails in this case.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
I've created a repository with minimal code to reproduce:<br>
<a href="https://github.com/beenokle/angular-compiler-bug">Source code to reproduce</a></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong><br>
2.0.1</li>
<li><strong>Language:</strong><br>
<code class="notranslate">[email protected]</code></li>
<li><strong>Node (for AoT issues):</strong><br>
<code class="notranslate">node version 6.5.0</code></li>
</ul> | <p dir="auto">Typescript emits an <code class="notranslate">__extends</code> helper to, well, help with extending classes.</p>
<p dir="auto">It currently shows up a few dozen times in our codebase, turning it off in the broccoli tree saves ~70KB unminified / 44KB minified in the existing System bundles.</p>
<p dir="auto">option is <code class="notranslate">noEmitHelpers: true</code></p>
<p dir="auto">Same optimization in Rx saves ~20KB or so, will submit a PR over there as well.</p>
<p dir="auto">We'll need to include it at least once, of course, so this might be best added into our proposed "ngPolyfill" along with Reflect?</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/IgorMinar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/IgorMinar">@IgorMinar</a></p> | 0 |
<p dir="auto">I cannot understand why the result of <code class="notranslate">take</code> can be visited by a for loop while throwing an error when put in a list comprehension, such as the code</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for x in take(repeated(2), 10)
println(x)
end"><pre class="notranslate"><code class="notranslate">for x in take(repeated(2), 10)
println(x)
end
</code></pre></div>
<p dir="auto">works well but the following code</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x for x in take(repeated(2), 10)]"><pre class="notranslate"><code class="notranslate">[x for x in take(repeated(2), 10)]
</code></pre></div>
<p dir="auto">throws an error,</p>
<p dir="auto">LoadError: MethodError: <code class="notranslate">length</code> has no method matching length(::Base.Take{Base.Repeated{Int64}})<br>
while loading In[153], in expression starting on line 1</p>
<p dir="auto">in anonymous at no file</p> | <p dir="auto">AIUI, the Julia package manager currently allows only per-user installation of packages.</p>
<p dir="auto">From a packager perspective (I am a Debian developer), the possibility of having both system-wide and per user packages is very important.</p>
<p dir="auto">In Debian, we already distribute large parts of Python's PIP, Perl's CPAN, R's CPAN, Octave Forge,… through the package manager.</p>
<p dir="auto">I can give the following reasons for doing the same for Julia packages (the description below mentions Debian at several places, but you can replace it by virtually any GNU/Linux distributor):</p>
<ul dir="auto">
<li>uniformity of experience: a Debian user expects to get all its software through the Debian package manager (APT). Having to learn various package managers (Python's, Ruby's, Perl's, Octave's, R's,<br>
Emacs', Julia's…) seems redundant and a waste of time</li>
<li>getting dependencies easily: if a Julia package relies on some shared library, then installing it through APT would automatically pull the library; Julia's package manager obviously cannot do that</li>
<li>quality assurance and security: a Debian user typically trusts Debian Developpers to make various checks on the quality and security of a package before putting it in the Debian archive, so he will be more confident on the quality of a package that he gets through APT than through another mean; also, downloads from the Debian archive are GPG-signed, which gives the user more confidence into the fact the he downloaded an untampered piece of code</li>
<li>scalability: the Debian package manager makes it much easier to deploy large installations with either many users on a single machine or many similar machines (like in large educational centers or scientific organizations). The sysadmin will clearly prefer to install an extra Debian package (since this already fits into its workflow) than to install Julia packages in the home of every user. Duplicating installations of Julia packages is also a waste of storage space, and creates a greater potential for heterogeneous installs</li>
</ul>
<p dir="auto">Obviously the goal is not to package <em>all</em> Julia packages into Debian. Several criteria such as popularity, usefulness, maturity and stability will matter when making the decision to create a Debian package.</p>
<p dir="auto">Of course, the system needs to be designed in such a way that the per-user and system-wide repositories co-exist nicely. For example, if a package is installed in both locations, the per-user should probably take precedence (when executing a "Using" or when resolving dependencies).</p>
<p dir="auto">In designing the system, it is important to recall that from user perspective, the system-wide location is read-only.</p> | 0 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke-staging/43/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke-staging/43/</a></p>
<p dir="auto">Multiple broken tests:</p>
<p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Simple pod should support inline execution and attach {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:281
Expected
<bool>: false
to be true"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:281
Expected
<bool>: false
to be true
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156879759" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26324" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26324/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26324">#26324</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161178789" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27715" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27715/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27715">#27715</a></p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 0 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 09:53:52.736: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-j3nh:
container "runtime": expected RSS memory (MB) < 89128960; got 91185152
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 89128960; got 99504128"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 09:53:52.736: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-j3nh:
container "runtime": expected RSS memory (MB) < 89128960; got 91185152
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 89128960; got 99504128
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158397793" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26784" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26784/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26784">#26784</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163478516" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28384" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28384/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28384">#28384</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177833576" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33023" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33023/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33023">#33023</a></p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 100 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 10:24:30.100: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-j3nh:
container "runtime": expected RSS memory (MB) < 314572800; got 540254208
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 314572800; got 533241856
node gke-jenkins-e2e-default-pool-a07f754a-mpr5:
container "runtime": expected RSS memory (MB) < 314572800; got 527937536"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 10:24:30.100: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-j3nh:
container "runtime": expected RSS memory (MB) < 314572800; got 540254208
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 314572800; got 533241856
node gke-jenkins-e2e-default-pool-a07f754a-mpr5:
container "runtime": expected RSS memory (MB) < 314572800; got 527937536
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158988182" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26982" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26982/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26982">#26982</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="180814114" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33994" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33994/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33994">#33994</a></p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 35 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 05:31:57.793: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-7x0o:
container "runtime": expected RSS memory (MB) < 157286400; got 229957632
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 157286400; got 225828864
node gke-jenkins-e2e-default-pool-a07f754a-mpr5:
container "runtime": expected RSS memory (MB) < 157286400; got 227266560"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Oct 4 05:31:57.793: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-a07f754a-7x0o:
container "runtime": expected RSS memory (MB) < 157286400; got 229957632
node gke-jenkins-e2e-default-pool-a07f754a-jgc7:
container "runtime": expected RSS memory (MB) < 157286400; got 225828864
node gke-jenkins-e2e-default-pool-a07f754a-mpr5:
container "runtime": expected RSS memory (MB) < 157286400; got 227266560
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="162928137" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28220" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28220/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28220">#28220</a></p> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke-staging/3/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke-staging/3/</a></p>
<p dir="auto">Multiple broken tests:</p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 0 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 05:00:45.790: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 89128960; got 97689600"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 05:00:45.790: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 89128960; got 97689600
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158397793" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26784" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26784/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26784">#26784</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163478516" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28384" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28384/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28384">#28384</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="174654466" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/31935" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/31935/hovercard" href="https://github.com/kubernetes/kubernetes/issues/31935">#31935</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177833576" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33023" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33023/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33023">#33023</a></p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 35 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 06:26:08.472: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-i65p:
container "runtime": expected RSS memory (MB) < 157286400; got 247791616
node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:
container "runtime": expected RSS memory (MB) < 157286400; got 246493184
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 157286400; got 243408896"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 06:26:08.472: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-i65p:
container "runtime": expected RSS memory (MB) < 157286400; got 247791616
node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:
container "runtime": expected RSS memory (MB) < 157286400; got 246493184
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 157286400; got 243408896
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="162928137" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28220" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28220/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28220">#28220</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177562336" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32942" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32942/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32942">#32942</a></p>
<p dir="auto">Failed: [k8s.io] SchedulerPredicates [Serial] validates that NodeSelector is respected if matching [Conformance] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/scheduler_predicates.go:549
Expected error:
<*errors.StatusError | 0xc82173ac00>: {
ErrStatus: {
TypeMeta: {Kind: "Status", APIVersion: "v1"},
ListMeta: {SelfLink: "", ResourceVersion: ""},
Status: "Failure",
Message: "Operation cannot be fulfilled on nodes \"gke-jenkins-e2e-default-pool-033aeb8c-6hqp\": the object has been modified; please apply your changes to the latest version and try again",
Reason: "Conflict",
Details: {
Name: "gke-jenkins-e2e-default-pool-033aeb8c-6hqp",
Group: "",
Kind: "nodes",
Causes: nil,
RetryAfterSeconds: 0,
},
Code: 409,
},
}
Operation cannot be fulfilled on nodes "gke-jenkins-e2e-default-pool-033aeb8c-6hqp": the object has been modified; please apply your changes to the latest version and try again
not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/scheduler_predicates.go:549
Expected error:
<*errors.StatusError | 0xc82173ac00>: {
ErrStatus: {
TypeMeta: {Kind: "Status", APIVersion: "v1"},
ListMeta: {SelfLink: "", ResourceVersion: ""},
Status: "Failure",
Message: "Operation cannot be fulfilled on nodes \"gke-jenkins-e2e-default-pool-033aeb8c-6hqp\": the object has been modified; please apply your changes to the latest version and try again",
Reason: "Conflict",
Details: {
Name: "gke-jenkins-e2e-default-pool-033aeb8c-6hqp",
Group: "",
Kind: "nodes",
Causes: nil,
RetryAfterSeconds: 0,
},
Code: 409,
},
}
Operation cannot be fulfilled on nodes "gke-jenkins-e2e-default-pool-033aeb8c-6hqp": the object has been modified; please apply your changes to the latest version and try again
not to have occurred
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="167211798" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/29516" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/29516/hovercard" href="https://github.com/kubernetes/kubernetes/issues/29516">#29516</a></p>
<p dir="auto">Failed: [k8s.io] Downward API volume should update labels on modification [Conformance] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/downwardapi_volume.go:97
Timed out after 45.000s.
Expected
<string>: content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
to contain substring
<string>: key3="value3"
"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/downwardapi_volume.go:97
Timed out after 45.000s.
Expected
<string>: content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
content of file "/etc/labels": key1="value1"
key2="value2"
to contain substring
<string>: key3="value3"
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163506515" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28416" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28416/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28416">#28416</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="172263977" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/31055" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/31055/hovercard" href="https://github.com/kubernetes/kubernetes/issues/31055">#31055</a></p>
<p dir="auto">Failed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage tracking resource tracking for 100 pods per node {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 02:37:35.336: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 314572800; got 523587584
node gke-jenkins-e2e-default-pool-033aeb8c-i65p:
container "runtime": expected RSS memory (MB) < 314572800; got 522100736
node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:
container "runtime": expected RSS memory (MB) < 314572800; got 525316096"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277
Sep 23 02:37:35.336: Memory usage exceeding limits:
node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:
container "runtime": expected RSS memory (MB) < 314572800; got 523587584
node gke-jenkins-e2e-default-pool-033aeb8c-i65p:
container "runtime": expected RSS memory (MB) < 314572800; got 522100736
node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:
container "runtime": expected RSS memory (MB) < 314572800; got 525316096
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158988182" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26982" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26982/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26982">#26982</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="175562552" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32214" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32214/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32214">#32214</a></p>
<p dir="auto">Failed: Test {e2e.go}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error running Ginkgo tests: exit status 1"><pre class="notranslate"><code class="notranslate">error running Ginkgo tests: exit status 1
</code></pre></div>
<p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="178824446" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33361" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33361/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33361">#33361</a></p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C:\Windows\TEMP\playwright_firefoxdev_profile-nGhAlE -juggler-pipe -silent
<launched> pid=25444
[pid=25444][err] Error: Access was denied while trying to open files in your profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) [GFX1-]: shader-cache: Shader disk cache is not supported
[pid=25444][err] [2022-02-22T07:51:47Z ERROR webrender_bindings::program_cache] shader-cache: Shader disk cache is not supported
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) [GFX1-]: RcANGLE(no compositor window)
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) [GFX1-]: Failed to connect WebRenderBridgeChild.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) |[1][GFX1-]: Fallback WR to SW-WR + D3D11 (t=4.80253) [GFX1-]: Fallback WR to SW-WR + D3D11
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) [GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) |[G3][GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN (t=2.3687) [GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
============================================================
at Microsoft.Playwright.Transport.Connection.SendMessageToServerAsync[T](String guid, String method, Object args)
at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options)
at SC.BankTransferMimic.Engine.Banks.BankBase.Initialize(String browser) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankBase.cs:line 43
at SC.BankTransferMimic.Engine.Banks.Malaysia.CIMBBankFactory.NewBankAsync() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\Malaysia\CIMBBankFactory.cs:line 16
at SC.BankTransferMimic.Engine.Banks.BankProvider.NewSessionAsync(String bankId, String merchantId) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankProvider.cs:line 52
at Program.<>c.<<<Main>$>b__0_1>d.MoveNext() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Program.cs:line 60
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)
at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass46_3.<<HandleRequestBodyAndCompileRequestDelegate>b__2>d.MoveNext()
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
at Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.<Invoke>g__Awaited|6_0(ExceptionHandlerMiddleware middleware, HttpContext context, Task task)`"><pre lang="Exception:" class="notranslate"><code class="notranslate">System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C:\Windows\TEMP\playwright_firefoxdev_profile-nGhAlE -juggler-pipe -silent
<launched> pid=25444
[pid=25444][err] Error: Access was denied while trying to open files in your profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) [GFX1-]: shader-cache: Shader disk cache is not supported
[pid=25444][err] [2022-02-22T07:51:47Z ERROR webrender_bindings::program_cache] shader-cache: Shader disk cache is not supported
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) [GFX1-]: RcANGLE(no compositor window)
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) [GFX1-]: Failed to connect WebRenderBridgeChild.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) |[1][GFX1-]: Fallback WR to SW-WR + D3D11 (t=4.80253) [GFX1-]: Fallback WR to SW-WR + D3D11
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) [GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) |[G3][GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN (t=2.3687) [GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
============================================================
at Microsoft.Playwright.Transport.Connection.SendMessageToServerAsync[T](String guid, String method, Object args)
at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options)
at SC.BankTransferMimic.Engine.Banks.BankBase.Initialize(String browser) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankBase.cs:line 43
at SC.BankTransferMimic.Engine.Banks.Malaysia.CIMBBankFactory.NewBankAsync() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\Malaysia\CIMBBankFactory.cs:line 16
at SC.BankTransferMimic.Engine.Banks.BankProvider.NewSessionAsync(String bankId, String merchantId) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankProvider.cs:line 52
at Program.<>c.<<<Main>$>b__0_1>d.MoveNext() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Program.cs:line 60
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)
at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass46_3.<<HandleRequestBodyAndCompileRequestDelegate>b__2>d.MoveNext()
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
at Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.<Invoke>g__Awaited|6_0(ExceptionHandlerMiddleware middleware, HttpContext context, Task task)`
</code></pre></div> | <h3 dir="auto">Your question</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C:\Windows\TEMP\playwright_firefoxdev_profile-nGhAlE -juggler-pipe -silent
<launched> pid=25444
[pid=25444][err] Error: Access was denied while trying to open files in your profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) [GFX1-]: shader-cache: Shader disk cache is not supported
[pid=25444][err] [2022-02-22T07:51:47Z ERROR webrender_bindings::program_cache] shader-cache: Shader disk cache is not supported
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) [GFX1-]: RcANGLE(no compositor window)
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) [GFX1-]: Failed to connect WebRenderBridgeChild.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) |[1][GFX1-]: Fallback WR to SW-WR + D3D11 (t=4.80253) [GFX1-]: Fallback WR to SW-WR + D3D11
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) [GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) |[G3][GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN (t=2.3687) [GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
============================================================
at Microsoft.Playwright.Transport.Connection.SendMessageToServerAsync[T](String guid, String method, Object args)
at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options)
at SC.BankTransferMimic.Engine.Banks.BankBase.Initialize(String browser) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankBase.cs:line 43
at SC.BankTransferMimic.Engine.Banks.Malaysia.CIMBBankFactory.NewBankAsync() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\Malaysia\CIMBBankFactory.cs:line 16
at SC.BankTransferMimic.Engine.Banks.BankProvider.NewSessionAsync(String bankId, String merchantId) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankProvider.cs:line 52
at Program.<>c.<<<Main>$>b__0_1>d.MoveNext() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Program.cs:line 60
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)
at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass46_3.<<HandleRequestBodyAndCompileRequestDelegate>b__2>d.MoveNext()
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
at Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.<Invoke>g__Awaited|6_0(ExceptionHandlerMiddleware middleware, HttpContext context, Task task)`"><pre lang="Exception:" class="notranslate"><code class="notranslate">System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C:\Windows\TEMP\playwright_firefoxdev_profile-nGhAlE -juggler-pipe -silent
<launched> pid=25444
[pid=25444][err] Error: Access was denied while trying to open files in your profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) [GFX1-]: shader-cache: Shader disk cache is not supported
[pid=25444][err] [2022-02-22T07:51:47Z ERROR webrender_bindings::program_cache] shader-cache: Shader disk cache is not supported
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) [GFX1-]: RcANGLE(no compositor window)
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) [GFX1-]: Failed to connect WebRenderBridgeChild.
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[0][GFX1-]: Failed to connect WebRenderBridgeChild. (t=4.64253) |[1][GFX1-]: Fallback WR to SW-WR + D3D11 (t=4.80253) [GFX1-]: Fallback WR to SW-WR + D3D11
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) [GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0
[pid=25444][out] Crash Annotation GraphicsCriticalError: |[G0][GFX1-]: shader-cache: Shader disk cache is not supported (t=2.2087) |[G1][GFX1-]: RcANGLE(no compositor window) (t=2.2087) |[G2][GFX1-]: [D3D11] create swap chain failed: 0x887a0022, 0 (t=2.3687) |[G3][GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN (t=2.3687) [GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN
[pid=25444][err] JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
============================================================
at Microsoft.Playwright.Transport.Connection.SendMessageToServerAsync[T](String guid, String method, Object args)
at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options)
at SC.BankTransferMimic.Engine.Banks.BankBase.Initialize(String browser) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankBase.cs:line 43
at SC.BankTransferMimic.Engine.Banks.Malaysia.CIMBBankFactory.NewBankAsync() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\Malaysia\CIMBBankFactory.cs:line 16
at SC.BankTransferMimic.Engine.Banks.BankProvider.NewSessionAsync(String bankId, String merchantId) in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Banks\BankProvider.cs:line 52
at Program.<>c.<<<Main>$>b__0_1>d.MoveNext() in C:\SigmaCoders\SC.BankTransferMimic\SC.BankTransferMimic.Engine\Program.cs:line 60
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)
at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass46_3.<<HandleRequestBodyAndCompileRequestDelegate>b__2>d.MoveNext()
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
at Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.<Invoke>g__Awaited|6_0(ExceptionHandlerMiddleware middleware, HttpContext context, Task task)`
</code></pre></div> | 1 |
<p dir="auto">At the moment there's no way that I can see to pass attr attributes through to the separate date and time child widgets of a datetime instance. This is easy to fix and I'm happy to put together a PR if people think it's a good idea.</p>
<p dir="auto">The proposed solution is:</p>
<ul dir="auto">
<li>add <code class="notranslate">date_widget_attr</code> and <code class="notranslate">time_widget_attr</code> options to DateTimeType, which default to <code class="notranslate">array()</code></li>
<li>in DateTimeType::buildForm(), pass these values through to the child widgets, using calls like <code class="notranslate">$dateOptions['attr'] = $options['date_widget_attr'];</code></li>
<li>add related tests and documentation</li>
</ul>
<p dir="auto">As far as I can see, that's all that's needed (and is working in my local code).</p>
<p dir="auto">Let me know if this is considered useful and I'll put together a PR.</p> | <p dir="auto">We currently use various different ways for influencing the options of the children of an added type:</p>
<p dir="auto">a) By letting <em>one</em> option accept <em>multiple values</em> for the children (e.g. the "empty_value" option in DateType)</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$form->add('updatedAt', 'date', array(
'empty_value' => array(
'day' => 'The day...',
),
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>form</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'date'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'empty_value'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'day'</span> => <span class="pl-s">'The day...'</span>,
),
));</pre></div>
<p dir="auto">b) By having dedicated "options" options (e.g. "options" in CollectionType, "first_options"/"second_options" in RepeatedType)</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$form->add('password', 'repeated', array(
'type' => 'password',
'first_options' => array(
'required' => true,
),
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>form</span>-><span class="pl-en">add</span>(<span class="pl-s">'password'</span>, <span class="pl-s">'repeated'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'type'</span> => <span class="pl-s">'password'</span>,
<span class="pl-s">'first_options'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'required'</span> => <span class="pl-c1">true</span>,
),
));</pre></div>
<p dir="auto">And in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4017499" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/3825" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/3825/hovercard" href="https://github.com/symfony/symfony/pull/3825">#3825</a>, a third possibility was suggested:</p>
<p dir="auto">c) By having <em>one</em> dedicated option per child and option (e.g. "day_widget", "month_widget" etc.)</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$form->add('updatedAt', 'date', array(
'day_widget' => 'text',
'month_widget' => 'choice',
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>form</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'date'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'day_widget'</span> => <span class="pl-s">'text'</span>,
<span class="pl-s">'month_widget'</span> => <span class="pl-s">'choice'</span>,
));</pre></div>
<p dir="auto">These different alternatives</p>
<ul dir="auto">
<li>are inconsistent</li>
<li>need to be implemented manually</li>
<li>need to be changed whenever a new child option should be supported</li>
</ul>
<p dir="auto">Therefore I propose adding a generic way for overriding nested options by supporting a special syntax in the options array:</p>
<p dir="auto"><code class="notranslate">@child(/nestedChild)*[#option]</code></p>
<p dir="auto">Examples:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$builder->add('updatedAt', 'datetime', array(
'@date' => array(
'required' => true,
'@day' => array(
'empty_value' => 'The day...',
),
),
));
// equivalent to
$builder->add('updatedAt', 'datetime', array(
'@date' => array(
'required' => true,
),
'@date/day' => array(
'empty_value' => 'The day...',
),
));
// equivalent to
$builder->add('updatedAt', 'datetime', array(
'@date#required' => true,
'@date/day#empty_value' => 'The day...',
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'datetime'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'@date'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'required'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'@day'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'empty_value'</span> => <span class="pl-s">'The day...'</span>,
),
),
));
<span class="pl-c">// equivalent to</span>
<span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'datetime'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'@date'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'required'</span> => <span class="pl-c1">true</span>,
),
<span class="pl-s">'@date/day'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'empty_value'</span> => <span class="pl-s">'The day...'</span>,
),
));
<span class="pl-c">// equivalent to</span>
<span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'datetime'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'@date#required'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'@date/day#empty_value'</span> => <span class="pl-s">'The day...'</span>,
));</pre></div>
<p dir="auto">Additionally, setting an option for all children at once should be supported:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$builder->add('updatedAt', 'datetime', array(
'@date/*#empty_value' => '...',
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'updatedAt'</span>, <span class="pl-s">'datetime'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'@date/*#empty_value'</span> => <span class="pl-s">'...'</span>,
));</pre></div>
<p dir="auto">References:</p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4017499" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/3825" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/3825/hovercard" href="https://github.com/symfony/symfony/pull/3825">#3825</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="9284560" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/6350" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/6350/hovercard" href="https://github.com/symfony/symfony/issues/6350">#6350</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="10424905" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/6910" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/6910/hovercard" href="https://github.com/symfony/symfony/pull/6910">#6910</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16236996" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/8396" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/8396/hovercard" href="https://github.com/symfony/symfony/issues/8396">#8396</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16466738" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/8443" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/8443/hovercard" href="https://github.com/symfony/symfony/issues/8443">#8443</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25518955" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/10012" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/10012/hovercard" href="https://github.com/symfony/symfony/pull/10012">#10012</a></li>
</ul> | 1 |
<p dir="auto">VS code on my Mac cannot save modified files suddenly. I tried restarting VS Code and MAC itself, but none brought saving back. It keeps popping this dialog when I cmd + S to save a file.</p>
<p dir="auto">More information:<br>
VS version: 0.10.6<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/10081208/12103906/3f34763a-b2fb-11e5-8198-90c9ee1a83ab.png"><img width="891" alt="vscode unable to save files 3" src="https://cloud.githubusercontent.com/assets/10081208/12103906/3f34763a-b2fb-11e5-8198-90c9ee1a83ab.png" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/10081208/12104351/849b4ab0-b2ff-11e5-883e-51a54b641cb3.png"><img width="921" alt="dev information 3" src="https://cloud.githubusercontent.com/assets/10081208/12104351/849b4ab0-b2ff-11e5-883e-51a54b641cb3.png" style="max-width: 100%;"></a></p> | <p dir="auto">I often need to edit config files (MySQL, PHP, Apache, ...) in directories like C:\Program Files that require administrative rights. When you open them with code and save the file it says "Permission denied". So I have to run Code with right click as administrator and then choose "open file" to open the file. Once, it is not possible to simply drag&drop the file into the elevated Code. The other problem is, once I already have code instance running without elevated rights (say I have my project open and now I need to edit a config) I cannot get another instance with elevated permissions. UAC asks for permissions and a new Code window opens, but it is not elevated, when I save it says permission denied. I have to close my project before I can get an elevated Code instance.</p>
<p dir="auto">I don't know if that is a restriction of Windows but seeing that you can, for example, run a normal Powershell and an elevated Powershell side-by-side I think this should be possible. The optimal case of course would be if Code could elevate itself if it can't save a file because of insufficient permissions. But being able to run elevated and non-elevated side-by-side would already help a lot.</p> | 1 |
<h3 dir="auto">Apache Airflow Provider(s)</h3>
<p dir="auto">google</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">apache-airflow-providers-google 6.8.0<br>
apache-airflow-providers-amazon 3.2.0<br>
apache-airflow-providers-ftp 2.1.2<br>
apache-airflow-providers-http 2.1.2<br>
apache-airflow-providers-imap 2.2.3<br>
apache-airflow-providers-postgres 4.1.0<br>
apache-airflow-providers-sqlite 2.1.3</p>
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.4</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Debian GNU/Linux 11 (bullseye)</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Docker-Compose</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">What happened</h3>
<p dir="auto">Context:<br>
apache-airflow-providers-google=6.8.0 has package version requirement range of >=12.0.0,<14.0.1 for google-ads.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9274393/167197478-4f2de56a-d5fc-4832-9805-c1868ec65ea3.png"><img src="https://user-images.githubusercontent.com/9274393/167197478-4f2de56a-d5fc-4832-9805-c1868ec65ea3.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">The lowest google-ads version to contain v9 is 14.1.0<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9274393/167197421-36ff3572-05d3-451f-84d2-d23d3fd93a8e.png"><img src="https://user-images.githubusercontent.com/9274393/167197421-36ff3572-05d3-451f-84d2-d23d3fd93a8e.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Google-ads is deprecating v8, v7 on may 11th.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9274393/167197640-ea77988f-6bae-4971-90cb-88834cb279b4.png"><img src="https://user-images.githubusercontent.com/9274393/167197640-ea77988f-6bae-4971-90cb-88834cb279b4.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Issue:<br>
The said google-airflow provider is blocking us from updating google-ads.<br>
Is it possible to relax the restriction on google-ads package versions to include upto 14.1.0 ?</p>
<p dir="auto">Thanks</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</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"> 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.0.2</p>
<h3 dir="auto">What happened</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2022-02-26 15:42:51 UTC [104192]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 STATEMENT: UPDATE dag SET next_dagrun='2022-02-26T15:32:50.428672+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:42:50.428672+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 ERROR: deadlock detected
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 DETAIL: Process 130186 waits for ShareLock on transaction 1728784371; blocked by process 130573.
Process 130573 waits for ShareLock on transaction 1728784356; blocked by process 130186.
Process 130186: UPDATE dag SET next_dagrun='2022-02-26T15:42:47.604016+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:52:47.604016+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'
Process 130573: UPDATE dag SET last_parsed_time='2022-02-26T15:43:03.633626+00:00'::timestamptz, next_dagrun='2022-02-26T15:40:03.633649+00:00'::timestamptz WHERE dag.dag_id = 'redacted_2'
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 HINT: See server log for query details.
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 CONTEXT: while updating tuple (4,2) in relation "dag"
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 STATEMENT: UPDATE dag SET next_dagrun='2022-02-26T15:42:47.604016+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:52:47.604016+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'"><pre class="notranslate"><code class="notranslate">2022-02-26 15:42:51 UTC [104192]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 STATEMENT: UPDATE dag SET next_dagrun='2022-02-26T15:32:50.428672+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:42:50.428672+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 ERROR: deadlock detected
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 DETAIL: Process 130186 waits for ShareLock on transaction 1728784371; blocked by process 130573.
Process 130573 waits for ShareLock on transaction 1728784356; blocked by process 130186.
Process 130186: UPDATE dag SET next_dagrun='2022-02-26T15:42:47.604016+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:52:47.604016+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'
Process 130573: UPDATE dag SET last_parsed_time='2022-02-26T15:43:03.633626+00:00'::timestamptz, next_dagrun='2022-02-26T15:40:03.633649+00:00'::timestamptz WHERE dag.dag_id = 'redacted_2'
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 HINT: See server log for query details.
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 CONTEXT: while updating tuple (4,2) in relation "dag"
2022-02-26 15:43:07 UTC [130186]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 STATEMENT: UPDATE dag SET next_dagrun='2022-02-26T15:42:47.604016+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:52:47.604016+00:00'::timestamptz WHERE dag.dag_id = 'redacted_1'
</code></pre></div>
<p dir="auto">Likely places which conflict in the code:<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/apache/airflow/blob/d7265791187fb2117dfd090cdb7cce3f8c20866c/airflow/models/dag.py#L2436">airflow/airflow/models/dag.py</a>
</p>
<p class="mb-0 color-fg-muted">
Line 2436
in
<a data-pjax="true" class="commit-tease-sha" href="/apache/airflow/commit/d7265791187fb2117dfd090cdb7cce3f8c20866c">d726579</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="L2436" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="2436"></td>
<td id="LC2436" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">orm_dag</span>.<span class="pl-s1">last_parsed_time</span> <span class="pl-c1">=</span> <span class="pl-s1">timezone</span>.<span class="pl-en">utcnow</span>() </td>
</tr>
</tbody></table>
</div>
</div>
<br>
<div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/apache/airflow/blob/d7265791187fb2117dfd090cdb7cce3f8c20866c/airflow/models/dag.py#L2919">airflow/airflow/models/dag.py</a>
</p>
<p class="mb-0 color-fg-muted">
Line 2919
in
<a data-pjax="true" class="commit-tease-sha" href="/apache/airflow/commit/d7265791187fb2117dfd090cdb7cce3f8c20866c">d726579</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="L2919" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="2919"></td>
<td id="LC2919" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">self</span>.<span class="pl-s1">next_dagrun_create_after</span> <span class="pl-c1">=</span> <span class="pl-s1">next_dagrun_info</span>.<span class="pl-s1">run_after</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">We have 830 dags and this number keeps growing due to business requirements. No special steps to reproduce are required, it just happens every now and then, as would be expected. Increase fillfactor, perhaps?</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">VERSION="20.04.3 LTS (Focal Fossa)"</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">apache-airflow-providers-celery==1.0.1<br>
apache-airflow-providers-ftp==1.0.1<br>
apache-airflow-providers-http==1.1.0<br>
apache-airflow-providers-imap==1.0.1<br>
apache-airflow-providers-sqlite==1.0.1</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other Docker-based deployment</p>
<h3 dir="auto">Deployment details</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ docker --version
Docker version 19.03.5, build 633a0ea838"><pre class="notranslate"><code class="notranslate">$ docker --version
Docker version 19.03.5, build 633a0ea838
</code></pre></div>
<p dir="auto">Postgres: psql (11.5 (Ubuntu 11.5-1.pgdg16.04+1))</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto">Multiple times a day.</p>
<p dir="auto">Took remediation steps to reduce amount of rows on page:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="prod_airflow=# alter table dag set (fillfactor = 10);
ALTER TABLE
prod_airflow=# vacuum full dag;
VACUUM"><pre class="notranslate"><code class="notranslate">prod_airflow=# alter table dag set (fillfactor = 10);
ALTER TABLE
prod_airflow=# vacuum full dag;
VACUUM
</code></pre></div>
<p dir="auto">which reduced frequency to ~1/day.</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> | 0 |
<p dir="auto">If you put a widget inside of a stack, and you offset it in such a way that parts of it would exist outside of that stack, and then you wrap it in some sort of animation that animates the opacity, it will animate oddly. This is 100% reproducible.</p>
<p dir="auto">This is pretty severe in some cases, for example an image that is faded in but is made to aspect fit. it animates in what looks like progressive chunks, but it's actually this bug.</p>
<p dir="auto">Here's a video of the bug in action: <a href="https://www.youtube.com/watch?v=teHlNhBuTzs" rel="nofollow">https://www.youtube.com/watch?v=teHlNhBuTzs</a></p>
<p dir="auto">Here's a main.dart file I used in the video above:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
AnimationController _controller;
double _leftOffset = 0.0;
@override
void initState() {
_controller = AnimationController(
vsync: this, duration: Duration(milliseconds: 1000));
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
color: Colors.white,
child: Stack(
children: <Widget>[
GestureDetector(
onTapDown: (details) {
setState(() {
_leftOffset = details.globalPosition.dx;
});
},
),
Positioned(
left: _leftOffset,
top: 0.0,
width: 300.0,
height: 200.0,
child: AnimatedBuilder(
animation: _controller,
builder: (context, child) {
return Opacity(
opacity: _controller.value,
child: child,
);
},
child: Container(
color: Colors.blueAccent,
),
),
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
_controller.forward(from: 0.0);
},
child: Icon(Icons.add),
),
);
}
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'package:flutter/material.dart'</span>;
<span class="pl-k">void</span> <span class="pl-en">main</span>() <span class="pl-k">=></span> <span class="pl-en">runApp</span>(<span class="pl-c1">MyApp</span>());
<span class="pl-k">class</span> <span class="pl-c1">MyApp</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> {
<span class="pl-k">@override</span>
<span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) {
<span class="pl-k">return</span> <span class="pl-c1">MaterialApp</span>(
title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo'</span>,
theme<span class="pl-k">:</span> <span class="pl-c1">ThemeData</span>(
primarySwatch<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.blue,
),
home<span class="pl-k">:</span> <span class="pl-c1">MyHomePage</span>(title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo Home Page'</span>),
);
}
}
<span class="pl-k">class</span> <span class="pl-c1">MyHomePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatefulWidget</span> {
<span class="pl-c1">MyHomePage</span>({<span class="pl-c1">Key</span> key, <span class="pl-c1">this</span>.title}) <span class="pl-k">:</span> <span class="pl-c1">super</span>(key<span class="pl-k">:</span> key);
<span class="pl-k">final</span> <span class="pl-c1">String</span> title;
<span class="pl-k">@override</span>
<span class="pl-c1">_MyHomePageState</span> <span class="pl-en">createState</span>() <span class="pl-k">=></span> <span class="pl-c1">_MyHomePageState</span>();
}
<span class="pl-k">class</span> <span class="pl-c1">_MyHomePageState</span> <span class="pl-k">extends</span> <span class="pl-c1">State</span><<span class="pl-c1">MyHomePage</span>> <span class="pl-k">with</span> <span class="pl-c1">TickerProviderStateMixin</span> {
<span class="pl-c1">AnimationController</span> _controller;
<span class="pl-c1">double</span> _leftOffset <span class="pl-k">=</span> <span class="pl-c1">0.0</span>;
<span class="pl-k">@override</span>
<span class="pl-k">void</span> <span class="pl-en">initState</span>() {
_controller <span class="pl-k">=</span> <span class="pl-c1">AnimationController</span>(
vsync<span class="pl-k">:</span> <span class="pl-c1">this</span>, duration<span class="pl-k">:</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">1000</span>));
<span class="pl-c1">super</span>.<span class="pl-en">initState</span>();
}
<span class="pl-k">@override</span>
<span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) {
<span class="pl-k">return</span> <span class="pl-c1">Scaffold</span>(
appBar<span class="pl-k">:</span> <span class="pl-c1">AppBar</span>(
title<span class="pl-k">:</span> <span class="pl-c1">Text</span>(widget.title),
),
body<span class="pl-k">:</span> <span class="pl-c1">Container</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.white,
child<span class="pl-k">:</span> <span class="pl-c1">Stack</span>(
children<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-c1">GestureDetector</span>(
onTapDown<span class="pl-k">:</span> (details) {
<span class="pl-en">setState</span>(() {
_leftOffset <span class="pl-k">=</span> details.globalPosition.dx;
});
},
),
<span class="pl-c1">Positioned</span>(
left<span class="pl-k">:</span> _leftOffset,
top<span class="pl-k">:</span> <span class="pl-c1">0.0</span>,
width<span class="pl-k">:</span> <span class="pl-c1">300.0</span>,
height<span class="pl-k">:</span> <span class="pl-c1">200.0</span>,
child<span class="pl-k">:</span> <span class="pl-c1">AnimatedBuilder</span>(
animation<span class="pl-k">:</span> _controller,
builder<span class="pl-k">:</span> (context, child) {
<span class="pl-k">return</span> <span class="pl-c1">Opacity</span>(
opacity<span class="pl-k">:</span> _controller.value,
child<span class="pl-k">:</span> child,
);
},
child<span class="pl-k">:</span> <span class="pl-c1">Container</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.blueAccent,
),
),
),
],
),
),
floatingActionButton<span class="pl-k">:</span> <span class="pl-c1">FloatingActionButton</span>(
onPressed<span class="pl-k">:</span> () {
_controller.<span class="pl-en">forward</span>(from<span class="pl-k">:</span> <span class="pl-c1">0.0</span>);
},
child<span class="pl-k">:</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.add),
),
);
}
}</pre></div>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +2 ms] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ +1 ms] An Observatory debugger and profiler on iPhone XS is available at: http://127.0.0.1:53526/
[ ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
[+115689 ms] [DEVICE LOG] 2018-11-09 11:13:51.200335-0500 localhost Runner[5498]: (AggregateDictionary)
AggregateDictionary is not supported on this platform
"><pre class="notranslate"><code class="notranslate">[ +2 ms] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ +1 ms] An Observatory debugger and profiler on iPhone XS is available at: http://127.0.0.1:53526/
[ ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
[+115689 ms] [DEVICE LOG] 2018-11-09 11:13:51.200335-0500 localhost Runner[5498]: (AggregateDictionary)
AggregateDictionary is not supported on this platform
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter analyze
Analyzing animatedopacitytest...
No issues found! (ran in 1.9s)
"><pre class="notranslate"><code class="notranslate">$ flutter analyze
Analyzing animatedopacitytest...
No issues found! (ran in 1.9s)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel master, v0.11.1-pre.127, on Mac OS X 10.13.6 17G65, locale en-US)
• Flutter version 0.11.1-pre.127 at /Users/KG/Developer/Flutter/flutter
• Framework revision ae2b215efe (7 hours ago), 2018-11-09 00:40:29 -0800
• Engine revision b2479f8d29
• Dart version 2.1.0 (build 2.1.0-dev.9.3 9c07fb64c4)
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.3)
• Android SDK at /Users/KG/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• ANDROID_HOME = /Users/KG/Library/Android/sdk
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.0, Build version 10A255
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] IntelliJ IDEA Community Edition (version 2018.2.5)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 29.1.3
• Dart plugin version 182.4892.25
"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel master, v0.11.1-pre.127, on Mac OS X 10.13.6 17G65, locale en-US)
• Flutter version 0.11.1-pre.127 at /Users/KG/Developer/Flutter/flutter
• Framework revision ae2b215efe (7 hours ago), 2018-11-09 00:40:29 -0800
• Engine revision b2479f8d29
• Dart version 2.1.0 (build 2.1.0-dev.9.3 9c07fb64c4)
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.3)
• Android SDK at /Users/KG/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• ANDROID_HOME = /Users/KG/Library/Android/sdk
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.0, Build version 10A255
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] IntelliJ IDEA Community Edition (version 2018.2.5)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 29.1.3
• Dart plugin version 182.4892.25
</code></pre></div> | 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 => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => 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 => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => 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>
If we use <code class="notranslate">providers</code> on the module, service <a href="https://angular.io/docs/ts/latest/cookbook/ngmodule-faq.html#q-module-provider-visibility" rel="nofollow">become application level</a>. So, it is way to provide application-level services (as it made in <a href="https://embed.plnkr.co/?show=preview" rel="nofollow">example</a>).</p>
<p dir="auto">But, if we create lazy-loaded module it can import another modules, and import its providers as well. Due to lazy loaded modules get their own root scope, imported providers will override application root providers, and dublicate instances of the services will be created.</p>
<p dir="auto">So, if we using lazy-loaded modules, we should not use feature module providers at all - these services will be dublicated. We only can use providers of the AppModule. There is no use case, where feature module providers can be safely used.</p>
<p dir="auto"><a href="http://stackoverflow.com/questions/41925132/angular-where-to-provide-services" rel="nofollow">Additional info and documentation refs there</a>.</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">Something should be fixed in the architecture, to create use case for feature module providers, or this feature should be deprecated. Documentation should describe, how to define application-level providers (in AppModule, and not in feature modules).</p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.X</li>
</ul> | <p dir="auto">in creating a options list that allows the user to change different settings i found a problem with the type checkbox . take this component</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(function(app){
app.testing=ng.core.Component({
selector:"testing",
template:"<input type='checkbox' [(ngModel)]='testing'/>"+
"<template ngFor #item [ngForOf]='list'>"+
"<input [type]='item.type' [(ngModel)]='item.value'/>"+
"</template>"
}).Class({
constructor:[function(){
this.testing=true;
this.list=[
{type:"checkbox",value:true},
{type:"text",value:"hello world"}
];
}],
});
})(window.app||(window.app={}));"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">app</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-c1">testing</span><span class="pl-c1">=</span><span class="pl-s1">ng</span><span class="pl-kos">.</span><span class="pl-c1">core</span><span class="pl-kos">.</span><span class="pl-en">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">selector</span>:<span class="pl-s">"testing"</span><span class="pl-kos">,</span>
<span class="pl-c1">template</span>:<span class="pl-s">"<input type='checkbox' [(ngModel)]='testing'/>"</span><span class="pl-c1">+</span>
<span class="pl-s">"<template ngFor #item [ngForOf]='list'>"</span><span class="pl-c1">+</span>
<span class="pl-s">"<input [type]='item.type' [(ngModel)]='item.value'/>"</span><span class="pl-c1">+</span>
<span class="pl-s">"</template>"</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">Class</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">constructor</span>:<span class="pl-kos">[</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">testing</span><span class="pl-c1">=</span><span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">list</span><span class="pl-c1">=</span><span class="pl-kos">[</span>
<span class="pl-kos">{</span><span class="pl-c1">type</span>:<span class="pl-s">"checkbox"</span><span class="pl-kos">,</span><span class="pl-c1">value</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-c1">type</span>:<span class="pl-s">"text"</span><span class="pl-kos">,</span><span class="pl-c1">value</span>:<span class="pl-s">"hello world"</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><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">app</span><span class="pl-c1">||</span><span class="pl-kos">(</span><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">app</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></pre></div>
<p dir="auto">because of the ngFor loop combining with the dynamic setting of inputs and their types ngModel does not work on the second checkbox although it does on the first which is not dynamically set. im guessing this is a problem with how ngModel determines that the input is type checkbox. a example of this can be found <a href="https://jsfiddle.net/Lakntoyv/4/" rel="nofollow">here</a></p>
<p dir="auto">sorry to those of you who work in typescript i was not able to use typescript so it is in plain es5. i hope you can still interpret what its meaning and maybe someone can translate it to typescript.</p> | 0 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have 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"> 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"> 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" checked=""> 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 & 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 & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: 5.0.5 (singularity)</p>
<details>
<summary><b><code class="notranslate">celery report</code> Outputsoftware -> celery:5.0.5 (singularity) kombu:5.0.2 py:3.7.7
billiard:3.6.3.0 py-amqp:5.0.2
platform -> system:Darwin arch:64bit
kernel version:20.3.0 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:******
</b><p dir="auto"><b>ABSOLUTE_URL_OVERRIDES: {<br>
}<br>
ADMINS: []<br>
ALLOWED_HOSTS: ['<em>']<br>
APPEND_SLASH: False<br>
AUTHENTICATION_BACKENDS: {'auth.auth0backend.Auth0',<br>
'django.contrib.auth.backends.ModelBackend'}<br>
AUTH_PASSWORD_VALIDATORS: '********'<br>
AUTH_USER_MODEL: 'users.CustomUser'<br>
BASE_DIR: '</em><strong>'<br>
BROKER_ADDRESS: None<br>
BROKER_TYPE: None<br>
CACHES: {<br>
'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'}}<br>
CACHE_MIDDLEWARE_ALIAS: 'default'<br>
CACHE_MIDDLEWARE_KEY_PREFIX: ''<br>
CACHE_MIDDLEWARE_SECONDS: 600<br>
CACHE_TIMEOUT: 345600<br>
CELERY_ACCEPT_CONTENT: ['pickle', 'json']<br>
CELERY_BROKER_TRANSPORT_OPTIONS: {<br>
'visibility_timeout': 172800}<br>
CELERY_IMPORTS: ['.orchestrator.tasks',<br>
'.positioning_pipeline.pipeline_tasks',<br>
'</strong><strong>.positioning_pipeline.tasks_consumers',<br>
'</strong><strong>.services_settings.celery_commands']<br>
CELERY_RESULT_BACKEND: '</strong><strong>'<br>
CELERY_RESULT_CHORD_RETRY_INTERVAL: 0.5<br>
CELERY_RESULT_EXTENDED: True<br>
CELERY_RESULT_SERIALIZER: 'json'<br>
CELERY_TASK_QUEUES: [<unbound Queue celery -> <unbound Exchange ''(direct)> -> >,<br>
<unbound Queue renderer_tasks -> <unbound Exchange ''(direct)> -> >,<br>
<unbound Queue small_tasks -> <unbound Exchange ''(direct)> -> >,<br>
<unbound Queue medium_tasks -> <unbound Exchange ''(direct)> -> >,<br>
<unbound Queue big_tasks -> <unbound Exchange ''(direct)> -> >,<br>
<unbound Queue users_tasks -> <unbound Exchange ''(direct)> -> >]<br>
CELERY_TASK_ROUTES: [<bound method Router.route_task of <class '</strong><em><em>.services_settings.celery_routing.Router'>>]<br>
CELERY_TASK_SERIALIZER: 'pickle'<br>
CELERY_TASK_TRACK_STARTED: True<br>
CELERY_WORKER_CONCURRENCY: 1<br>
CELERY_WORKER_LOG_FORMAT: '%(message)s'<br>
CELERY_WORKER_MAX_MEMORY_PER_CHILD: 3145728<br>
CELERY_WORKER_PREFETCH_MULTIPLIER: 1<br>
CORS_ALLOW_CREDENTIALS: True<br>
CORS_ORIGIN_ALLOW_ALL: True<br>
CORS_URLS_REGEX: '/api/.</em>/.</em>-image/.<em>'<br>
CSRF_COOKIE_AGE: 31449600<br>
CSRF_COOKIE_DOMAIN: None<br>
CSRF_COOKIE_HTTPONLY: False<br>
CSRF_COOKIE_NAME: 'csrftoken'<br>
CSRF_COOKIE_PATH: '/'<br>
CSRF_COOKIE_SAMESITE: 'Lax'<br>
CSRF_COOKIE_SECURE: False<br>
CSRF_FAILURE_VIEW: 'django.views.csrf.csrf_failure'<br>
CSRF_HEADER_NAME: 'HTTP_X_CSRFTOKEN'<br>
CSRF_TRUSTED_ORIGINS: []<br>
CSRF_USE_SESSIONS: False<br>
DATABASES: {<br>
'default': { 'ATOMIC_REQUESTS': False,<br>
'AUTOCOMMIT': True,<br>
'CONN_MAX_AGE': 0,<br>
'ENGINE': 'django.db.backends.sqlite3',<br>
'HOST': '',<br>
'NAME': '</em><em><strong>',<br>
'OPTIONS': {},<br>
'PASSWORD': '</strong></em><em><strong>',<br>
'PORT': '',<br>
'TEST': { 'CHARSET': None,<br>
'COLLATION': None,<br>
'MIGRATE': True,<br>
'MIRROR': None,<br>
'NAME': None},<br>
'TIME_ZONE': None,<br>
'USER': ''}}<br>
DATABASE_INFO_TO_USE: {<br>
'ATOMIC_REQUESTS': False,<br>
'AUTOCOMMIT': True,<br>
'CONN_MAX_AGE': 0,<br>
'ENGINE': 'django.db.backends.sqlite3',<br>
'HOST': '',<br>
'NAME': '</strong></em><em><strong>',<br>
'OPTIONS': {},<br>
'PASSWORD': '</strong></em><em><strong>',<br>
'PORT': '',<br>
'TEST': { 'CHARSET': None,<br>
'COLLATION': None,<br>
'MIGRATE': True,<br>
'MIRROR': None,<br>
'NAME': None},<br>
'TIME_ZONE': None,<br>
'USER': ''}<br>
DATABASE_ROUTERS: '</strong></em><em><strong>'<br>
DATA_UPLOAD_MAX_MEMORY_SIZE: 2621440<br>
DATA_UPLOAD_MAX_NUMBER_FIELDS: 1000<br>
DATETIME_FORMAT: 'N j, Y, P'<br>
DATETIME_INPUT_FORMATS: ['%Y-%m-%d %H:%M:%S',<br>
'%Y-%m-%d %H:%M:%S.%f',<br>
'%Y-%m-%d %H:%M',<br>
'%m/%d/%Y %H:%M:%S',<br>
'%m/%d/%Y %H:%M:%S.%f',<br>
'%m/%d/%Y %H:%M',<br>
'%m/%d/%y %H:%M:%S',<br>
'%m/%d/%y %H:%M:%S.%f',<br>
'%m/%d/%y %H:%M']<br>
DATE_FORMAT: 'N j, Y'<br>
DATE_INPUT_FORMATS: ['%Y-%m-%d',<br>
'%m/%d/%Y',<br>
'%m/%d/%y',<br>
'%b %d %Y',<br>
'%b %d, %Y',<br>
'%d %b %Y',<br>
'%d %b, %Y',<br>
'%B %d %Y',<br>
'%B %d, %Y',<br>
'%d %B %Y',<br>
'%d %B, %Y']<br>
DEBUG: True<br>
DEBUG_PROPAGATE_EXCEPTIONS: False<br>
DEBUG_TOOLBAR_CONFIG: {<br>
'SHOW_TOOLBAR_CALLBACK': '</strong></em><em><strong>.settings.show_toolbar'}<br>
DECIMAL_SEPARATOR: '.'<br>
DEFAULT_CHARSET: 'utf-8'<br>
DEFAULT_EXCEPTION_REPORTER: 'django.views.debug.ExceptionReporter'<br>
DEFAULT_EXCEPTION_REPORTER_FILTER: 'django.views.debug.SafeExceptionReporterFilter'<br>
DEFAULT_FILE_STORAGE: 'django.core.files.storage.FileSystemStorage'<br>
DEFAULT_FROM_EMAIL: 'webmaster@localhost'<br>
DEFAULT_HASHING_ALGORITHM: 'sha256'<br>
DEFAULT_INDEX_TABLESPACE: ''<br>
DEFAULT_TABLESPACE: ''<br>
DISALLOWED_USER_AGENTS: []<br>
EMAIL_BACKEND: 'django.core.mail.backends.smtp.EmailBackend'<br>
EMAIL_HOST: 'localhost'<br>
EMAIL_HOST_PASSWORD: '</strong></em><em><strong>'<br>
EMAIL_HOST_USER: ''<br>
EMAIL_PORT: 25<br>
EMAIL_SSL_CERTFILE: None<br>
EMAIL_SSL_KEYFILE: '</strong></em><em><strong>'<br>
EMAIL_SUBJECT_PREFIX: '[Django] '<br>
EMAIL_TIMEOUT: None<br>
EMAIL_USE_LOCALTIME: False<br>
EMAIL_USE_SSL: False<br>
EMAIL_USE_TLS: False<br>
FILE_UPLOAD_DIRECTORY_PERMISSIONS: None<br>
FILE_UPLOAD_HANDLERS: ['django.core.files.uploadhandler.MemoryFileUploadHandler',<br>
'django.core.files.uploadhandler.TemporaryFileUploadHandler']<br>
FILE_UPLOAD_MAX_MEMORY_SIZE: 2621440<br>
FILE_UPLOAD_PERMISSIONS: 420<br>
FILE_UPLOAD_TEMP_DIR: None<br>
FIRST_DAY_OF_WEEK: 0<br>
FIXTURE_DIRS: []<br>
FORCE_SCRIPT_NAME: None<br>
FORMAT_MODULE_PATH: None<br>
FORM_RENDERER: 'django.forms.renderers.DjangoTemplates'<br>
IGNORABLE_404_URLS: []<br>
INSTALLED_APPS: ['social_django',<br>
'</strong></em><em><strong>',<br>
'</strong></em><em><strong>',<br>
'django.contrib.auth',<br>
'django.contrib.contenttypes',<br>
'django.contrib.sessions',<br>
'django.contrib.messages',<br>
'django.contrib.staticfiles',<br>
'corsheaders',<br>
'rest_framework',<br>
'debug_toolbar',<br>
'</strong></em><em><strong>.django_celery_results']<br>
INTERNAL_IPS: ['127.0.0.1']<br>
IS_PRODUCTION_OR_DEMO: False<br>
IS_REAL_PRODUCTION: False<br>
JWT_AUTH: {<br>
'JWT_ALGORITHM': 'RS256',<br>
'JWT_AUDIENCE': '</strong></em><em><strong>',<br>
'JWT_AUTH_HEADER_PREFIX': 'Bearer',<br>
'JWT_ISSUER': '</strong></em><em><strong>',<br>
'JWT_PAYLOAD_GET_USERNAME_HANDLER': 'auth.auth0user.jwt_get_username_from_payload_handler',<br>
'JWT_PUBLIC_KEY': '</strong></em><em><strong>'}<br>
LANGUAGES: [('af', 'Afrikaans'),<br>
('ar', 'Arabic'),<br>
('ar-dz', 'Algerian Arabic'),<br>
('ast', 'Asturian'),<br>
('az', 'Azerbaijani'),<br>
('bg', 'Bulgarian'),<br>
('be', 'Belarusian'),<br>
('bn', 'Bengali'),<br>
('br', 'Breton'),<br>
('bs', 'Bosnian'),<br>
('ca', 'Catalan'),<br>
('cs', 'Czech'),<br>
('cy', 'Welsh'),<br>
('da', 'Danish'),<br>
('de', 'German'),<br>
('dsb', 'Lower Sorbian'),<br>
('el', 'Greek'),<br>
('en', 'English'),<br>
('en-au', 'Australian English'),<br>
('en-gb', 'British English'),<br>
('eo', 'Esperanto'),<br>
('es', 'Spanish'),<br>
('es-ar', 'Argentinian Spanish'),<br>
('es-co', 'Colombian Spanish'),<br>
('es-mx', 'Mexican Spanish'),<br>
('es-ni', 'Nicaraguan Spanish'),<br>
('es-ve', 'Venezuelan Spanish'),<br>
('et', 'Estonian'),<br>
('eu', 'Basque'),<br>
('fa', 'Persian'),<br>
('fi', 'Finnish'),<br>
('fr', 'French'),<br>
('fy', 'Frisian'),<br>
('ga', 'Irish'),<br>
('gd', 'Scottish Gaelic'),<br>
('gl', 'Galician'),<br>
('he', 'Hebrew'),<br>
('hi', 'Hindi'),<br>
('hr', 'Croatian'),<br>
('hsb', 'Upper Sorbian'),<br>
('hu', 'Hungarian'),<br>
('hy', 'Armenian'),<br>
('ia', 'Interlingua'),<br>
('id', 'Indonesian'),<br>
('ig', 'Igbo'),<br>
('io', 'Ido'),<br>
('is', 'Icelandic'),<br>
('it', 'Italian'),<br>
('ja', 'Japanese'),<br>
('ka', 'Georgian'),<br>
('kab', 'Kabyle'),<br>
('kk', 'Kazakh'),<br>
('km', 'Khmer'),<br>
('kn', 'Kannada'),<br>
('ko', 'Korean'),<br>
('ky', 'Kyrgyz'),<br>
('lb', 'Luxembourgish'),<br>
('lt', 'Lithuanian'),<br>
('lv', 'Latvian'),<br>
('mk', 'Macedonian'),<br>
('ml', 'Malayalam'),<br>
('mn', 'Mongolian'),<br>
('mr', 'Marathi'),<br>
('my', 'Burmese'),<br>
('nb', 'Norwegian Bokmål'),<br>
('ne', 'Nepali'),<br>
('nl', 'Dutch'),<br>
('nn', 'Norwegian Nynorsk'),<br>
('os', 'Ossetic'),<br>
('pa', 'Punjabi'),<br>
('pl', 'Polish'),<br>
('pt', 'Portuguese'),<br>
('pt-br', 'Brazilian Portuguese'),<br>
('ro', 'Romanian'),<br>
('ru', 'Russian'),<br>
('sk', 'Slovak'),<br>
('sl', 'Slovenian'),<br>
('sq', 'Albanian'),<br>
('sr', 'Serbian'),<br>
('sr-latn', 'Serbian Latin'),<br>
('sv', 'Swedish'),<br>
('sw', 'Swahili'),<br>
('ta', 'Tamil'),<br>
('te', 'Telugu'),<br>
('tg', 'Tajik'),<br>
('th', 'Thai'),<br>
('tk', 'Turkmen'),<br>
('tr', 'Turkish'),<br>
('tt', 'Tatar'),<br>
('udm', 'Udmurt'),<br>
('uk', 'Ukrainian'),<br>
('ur', 'Urdu'),<br>
('uz', 'Uzbek'),<br>
('vi', 'Vietnamese'),<br>
('zh-hans', 'Simplified Chinese'),<br>
('zh-hant', 'Traditional Chinese')]<br>
LANGUAGES_BIDI: ['he', 'ar', 'ar-dz', 'fa', 'ur']<br>
LANGUAGE_CODE: 'en-us'<br>
LANGUAGE_COOKIE_AGE: None<br>
LANGUAGE_COOKIE_DOMAIN: None<br>
LANGUAGE_COOKIE_HTTPONLY: False<br>
LANGUAGE_COOKIE_NAME: 'django_language'<br>
LANGUAGE_COOKIE_PATH: '/'<br>
LANGUAGE_COOKIE_SAMESITE: None<br>
LANGUAGE_COOKIE_SECURE: False<br>
LOCALE_PATHS: []<br>
LOGGING: {<br>
}<br>
LOGGING_CONFIG: 'logging.config.dictConfig'<br>
LOGIN_REDIRECT_URL: '/'<br>
LOGIN_URL: '/login/auth0'<br>
LOGOUT_REDIRECT_URL: '</strong></em><em>'<br>
MANAGERS: []<br>
MAX_AGE_FOR_DB_CONNECTION_SECONDS: 300<br>
MAX_CACHE_ENTRIES: 1000<br>
MEDIA_ROOT: ''<br>
MEDIA_URL: '/'<br>
MESSAGE_STORAGE: 'django.contrib.messages.storage.fallback.FallbackStorage'<br>
MIDDLEWARE: ['data.middleware.</em><em><strong>',<br>
'data.routers.RouterMiddleware',<br>
'data.middleware.log_performance_middleware',<br>
'corsheaders.middleware.CorsMiddleware',<br>
'django.contrib.sessions.middleware.SessionMiddleware',<br>
'django.middleware.csrf.CsrfViewMiddleware',<br>
'django.contrib.auth.middleware.AuthenticationMiddleware',<br>
'data.middleware.bind_site_username_middleware',<br>
'django.contrib.messages.middleware.MessageMiddleware',<br>
'django.middleware.clickjacking.XFrameOptionsMiddleware',<br>
'debug_toolbar.middleware.DebugToolbarMiddleware',<br>
'data.middleware.</strong></em><em>']<br>
MIGRATION_MODULES: {<br>
}<br>
MONTH_DAY_FORMAT: 'F j'<br>
NUMBER_GROUPING: 0<br>
OPTIONAL_CACHES: {<br>
'dummycache': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},<br>
'loccache': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',<br>
'OPTIONS': {'MAX_ENTRIES': 1000},<br>
'TIMEOUT': 345600},<br>
'memcached': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',<br>
'LOCATION': None,<br>
'OPTIONS': {'server_max_value_length': 33554432},<br>
'TIMEOUT': 345600}}<br>
OPTIONAL_DATABASES: {<br>
'sqlite': { 'ATOMIC_REQUESTS': False,<br>
'AUTOCOMMIT': True,<br>
'CONN_MAX_AGE': 0,<br>
'ENGINE': 'django.db.backends.sqlite3',<br>
'HOST': '',<br>
'NAME': '</em><em><strong>',<br>
'OPTIONS': {},<br>
'PASSWORD': '</strong></em><em><strong>',<br>
'PORT': '',<br>
'TEST': { 'CHARSET': None,<br>
'COLLATION': None,<br>
'MIGRATE': True,<br>
'MIRROR': None,<br>
'NAME': None},<br>
'TIME_ZONE': None,<br>
'USER': ''},<br>
'sqlite-tests': { 'ENGINE': 'django.db.backends.sqlite3',<br>
'NAME': ':memory:'}}<br>
PASSWORD_HASHERS: '</strong></em><em><strong>'<br>
PASSWORD_RESET_TIMEOUT: '</strong></em><em><strong>'<br>
PASSWORD_RESET_TIMEOUT_DAYS: '</strong></em><em><strong>'<br>
PREPEND_WWW: False<br>
PROJECT_DIR: '</strong></em><em>'<br>
REST_FRAMEWORK: {<br>
'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework_jwt.authentication.JSONWebTokenAuthentication',<br>
'rest_framework.authentication.SessionAuthentication',<br>
'rest_framework.authentication.BasicAuthentication'),<br>
'DEFAULT_PERMISSION_CLASSES': ( 'data.</em><em><strong>.utils.views_utils.ProjectViewerEndpoint',),<br>
'DEFAULT_RENDERER_CLASSES': [ 'rest_framework.renderers.JSONRenderer',<br>
'rest_framework.renderers.BrowsableAPIRenderer'],<br>
'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.URLPathVersioning'}<br>
ROOT_URLCONF: '</strong></em><em>.urls'<br>
SECRET_KEY: '</em><em><strong>'<br>
SECURE_BROWSER_XSS_FILTER: True<br>
SECURE_CONTENT_TYPE_NOSNIFF: False<br>
SECURE_HSTS_INCLUDE_SUBDOMAINS: False<br>
SECURE_HSTS_PRELOAD: False<br>
SECURE_HSTS_SECONDS: 0<br>
SECURE_PROXY_SSL_HEADER: None<br>
SECURE_REDIRECT_EXEMPT: []<br>
SECURE_REFERRER_POLICY: 'same-origin'<br>
SECURE_SSL_HOST: None<br>
SECURE_SSL_REDIRECT: False<br>
SELF_ADDRESS: '<a href="http://localhost:7000" rel="nofollow">http://localhost:7000</a>'<br>
SERVER_EMAIL: 'root@localhost'<br>
SESSION_CACHE_ALIAS: 'default'<br>
SESSION_COOKIE_AGE: 1209600<br>
SESSION_COOKIE_DOMAIN: None<br>
SESSION_COOKIE_HTTPONLY: True<br>
SESSION_COOKIE_NAME: '</strong>'<br>
SESSION_COOKIE_PATH: '/'<br>
SESSION_COOKIE_SAMESITE: 'Lax'<br>
SESSION_COOKIE_SECURE: False<br>
SESSION_ENGINE: 'django.contrib.sessions.backends.db'<br>
SESSION_EXPIRE_AT_BROWSER_CLOSE: False<br>
SESSION_FILE_PATH: None<br>
SESSION_SAVE_EVERY_REQUEST: False<br>
SESSION_SERIALIZER: 'django.contrib.sessions.serializers.JSONSerializer'<br>
SETTINGS_MODULE: '</em><em><strong>.settings'<br>
SHORT_DATETIME_FORMAT: 'm/d/Y P'<br>
SHORT_DATE_FORMAT: 'm/d/Y'<br>
SHOULD_PROXY_AUTH_TABLES: False<br>
SIGNING_BACKEND: 'django.core.signing.TimestampSigner'<br>
SILENCED_SYSTEM_CHECKS: []<br>
SOCIAL_AUTH_AUTH0_AUDIENCE: '</strong></em><em>'<br>
SOCIAL_AUTH_AUTH0_DOMAIN: '</em><em><strong>'<br>
SOCIAL_AUTH_AUTH0_JWKS: ('{"keys": [{"alg": "RS256", "kty": "RSA", '<br>
'"use": "sig", "n": '<br>
'"</strong></em><em>", '<br>
'"e": "AQAB", "kid": '<br>
'"</em><em><strong>", '<br>
'"x5t": '<br>
'"</strong></em><em>", '<br>
'"x5c": '<br>
'["</em><em><strong>"]}, '<br>
'{"alg": "RS256", "kty": "RSA", "use": "sig", '<br>
'"n": '<br>
'"</strong></em><em>", '<br>
'"e": "AQAB", "kid": "kd5L2gFzHj_oIGFj3dAQb", '<br>
'"x5t": "</em><em><strong>", "x5c": '<br>
'["</strong></em><em>"]}]}')<br>
SOCIAL_AUTH_AUTH0_KEY: '</em><em><strong>'<br>
SOCIAL_AUTH_AUTH0_SCOPE: ['openid', 'profile']<br>
SOCIAL_AUTH_AUTH0_SECRET: '</strong></em><em>'<br>
SOCIAL_AUTH_PIPELINE:<br>
('social_core.pipeline.social_auth.social_details',<br>
'social_core.pipeline.social_auth.social_uid',<br>
'social_core.pipeline.social_auth.social_user',<br>
'social_core.pipeline.user.get_username',<br>
'social_core.pipeline.social_auth.associate_by_email',<br>
'social_core.pipeline.user.create_user',<br>
'social_core.pipeline.social_auth.associate_user',<br>
'social_core.pipeline.social_auth.load_extra_data',<br>
'social_core.pipeline.user.user_details')<br>
SOCIAL_AUTH_REDIRECT_IS_HTTPS: False<br>
<em><strong>: '</strong></em></em>'<br>
STATICFILES_DIRS: []<br>
STATICFILES_FINDERS: ['django.contrib.staticfiles.finders.FileSystemFinder',<br>
'django.contrib.staticfiles.finders.AppDirectoriesFinder']<br>
STATICFILES_STORAGE: 'django.contrib.staticfiles.storage.StaticFilesStorage'<br>
STATIC_ROOT: '<strong>'<br>
STATIC_URL: '/backend_static/'<br>
TEMPLATES: [{'APP_DIRS': True,<br>
'BACKEND': 'django.template.backends.django.DjangoTemplates',<br>
'DIRS': [],<br>
'OPTIONS': {'context_processors': ['django.template.context_processors.debug',<br>
'django.template.context_processors.request',<br>
'django.contrib.auth.context_processors.auth',<br>
'django.contrib.messages.context_processors.messages']}}]<br>
TEST_NON_SERIALIZED_APPS: []<br>
TEST_RUNNER: 'django.test.runner.DiscoverRunner'<br>
THOUSAND_SEPARATOR: ','<br>
TIME_FORMAT: 'P'<br>
TIME_INPUT_FORMATS: ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M']<br>
TIME_ZONE: 'UTC'<br>
USE_I18N: False<br>
USE_L10N: False<br>
USE_THOUSAND_SEPARATOR: False<br>
USE_TZ: True<br>
USE_X_FORWARDED_HOST: True<br>
USE_X_FORWARDED_PORT: True<br>
WSGI_APPLICATION: '</strong>.wsgi.application'<br>
X_FRAME_OPTIONS: 'DENY'<br>
YEAR_MONTH_FORMAT: 'F Y'<br>
is_overridden: <bound method Settings.is_overridden of <Settings "******.settings">><br>
deprecated_settings: None<br>
:</b></p></summary><p dir="auto"></p>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: 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:amqp==5.0.6
celery==5.0.5
pickleshare==0.7.5</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">
import pickle
from celery.canvas import chord
from io import BytesIO
</p><p dir="auto">dict(pickle.load(BytesIO(pickle.dumps(chord([])))))</p>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">I expect that after pickle load I will get the same object as I dumped</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">dumped:<br>
{'task': 'celery.chord',<br>
'args': (),<br>
'kwargs': {'kwargs': {}, 'header': [], 'body': None},<br>
'options': {},<br>
'subtask_type': 'chord',<br>
'immutable': False,<br>
'chord_size': None}</p>
<p dir="auto">loaded:<br>
{'task': 'celery.chord',<br>
'args': (),<br>
'kwargs': {'kwargs': {'kwargs': {}}, 'header': [], 'body': None},<br>
'options': {'chord_size': None},<br>
'subtask_type': 'chord',<br>
'immutable': False,<br>
'chord_size': None}</p>
<p dir="auto">kwargs added multiple times.</p> | <h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have 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://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"> 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"> 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 & 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">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b>
</summary>
<p dir="auto">
software -> celery:5.1.0 (sun-harmonics) kombu:5.1.0 py:3.9.2
billiard:3.6.4.0 redis:3.5.3
platform -> system:Linux arch:64bit, ELF
kernel version:4.4.0-198-generic imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:redis://localhost/1
</p><p dir="auto">broker_url: 'redis://localhost:6379/1'<br>
result_backend: 'redis://localhost/1'<br>
result_serializer: 'pickle'<br>
deprecated_settings: None<br>
task_serializer: 'pickle'<br>
accept_content: ['pickle', 'json']<br>
result_expires: 3600<br>
task_default_queue: 'zabbix'</p>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<p dir="auto">Schedule a chord with beat via a task.</p>
<p dir="auto">I created a task that takes a chain/chord as parameter and executes it, since beat does not allow for scheduling anything but a simple task directly:<br>
@app.task()<br>
def execute_chain(ch):<br>
ch.apply_async(ignore_result=True)</p>
<p dir="auto">This is added to the beat schedule via<br>
ch = group(*zbxitems) | func.s() | publish_mqtt.s()<br>
sender.add_periodic_task(interval, execute_chain.s(ch), name=name)</p>
<h2 dir="auto">Required Dependencies</h2>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
amqp==5.0.6
billiard==3.6.4.0
celery==5.1.0
certifi==2021.5.30
chardet==4.0.0
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
colorama==0.4.4
idna==2.10
kombu==5.1.0
paho-mqtt==1.5.1
prompt-toolkit==3.0.18
pytz==2021.1
PyYAML==5.4.1
pyzabbix==0.8.2
redis==3.5.3
requests==2.25.1
six==1.16.0
urllib3==1.26.5
vine==5.0.0
wcwidth==0.2.5
(venv) root@vmt
</p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<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">version 3.9.5</p>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">This should continue to work, executing the chain again and again.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">I works for several hours till it exits with:<br>
2021-06-11 06:25:54,253:CRITICAL:worker.start:line 207:Unrecoverable error: RecursionError('maximum recursion depth exceeded while pickling an object')<br>
Traceback (most recent call last):<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/worker.py", line 203, in start<br>
self.blueprint.start(self)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/bootsteps.py", line 116, in start<br>
step.start(parent)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/bootsteps.py", line 365, in start<br>
return self.obj.start()<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/consumer/consumer.py", line 326, in start<br>
blueprint.start(self)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/bootsteps.py", line 116, in start<br>
step.start(parent)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/consumer/consumer.py", line 618, in start<br>
c.loop(*c.loop_args())<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/loops.py", line 81, in asynloop<br>
next(loop)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/asynchronous/hub.py", line 361, in create_loop<br>
cb(*cbargs)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/transport/redis.py", line 1128, in on_readable<br>
self.cycle.on_readable(fileno)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/transport/redis.py", line 398, in on_readable<br>
chan.handlers<a href="">type</a><br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/transport/redis.py", line 789, in _brpop_read<br>
self.connection._deliver(loads(bytes_to_str(item)), dest)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/transport/virtual/base.py", line 980, in _deliver<br>
callback(message)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/transport/virtual/base.py", line 630, in _callback<br>
return callback(message)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/messaging.py", line 626, in _receive_callback<br>
return on_m(message) if on_m else self.receive(decoded, message)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/consumer/consumer.py", line 586, in on_task_received<br>
strategy(<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/strategy.py", line 201, in task_message_handler<br>
handle(req)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/worker.py", line 221, in _process_task_sem<br>
return self._quick_acquire(self._process_task, req)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/kombu/asynchronous/semaphore.py", line 57, in acquire<br>
callback(*partial_args, **partial_kwargs)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/worker.py", line 226, in _process_task<br>
req.execute_using_pool(self.pool)<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/worker/request.py", line 691, in execute_using_pool<br>
result = apply_async(<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/concurrency/base.py", line 152, in apply_async<br>
return self.on_apply(target, args, kwargs,<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/billiard/pool.py", line 1530, in apply_async<br>
self._quick_put((TASK, (result._job, None, func, args, kwds)))<br>
File "/usr/share/nd_zabbixexport/venv/lib/python3.9/site-packages/celery/concurrency/asynpool.py", line 859, in send_job<br>
body = dumps(tup, protocol=protocol)<br>
RecursionError: maximum recursion depth exceeded while pickling an object</p>
<p dir="auto">When json dumping the task, I see this after a few iterations (mind the kwargs):<br>
2021-06-11 16:44:16,370:DEBUG:beat.execute_chain:line 90:{"task": "celery.chord", "args": [], "kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {<br>
"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {"kwargs": {}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "header": [{"task": "tasks.zabbix.get<br>
_zabbix_items_value", "args": ["Memory Free", "rd servers"], "kwargs": {}, "options": {}, "subtask_type": null, "immutable": true}, {"task": "tasks.zabbix.get_zabbix_items_value", "args": ["Available memory", "rd servers"], "kwargs": {}, "options": {}, "subtask_type": n<br>
ull, "immutable": true}], "body": {"task": "celery.chain", "args": [], "kwargs": {"tasks": [{"task": "tasks.aggregate.percentage_per_item", "args": [], "kwargs": {}, "options": {}, "subtask_type": null, "immutable": false}, {"task": "tasks.mqtt.publish_mqtt", "args": ["<br>
vmmqtt01", "zabbix/"], "kwargs": {}, "options": {}, "subtask_type": null, "immutable": false}]}, "options": {}, "subtask_type": "chain", "immutable": false}}, "options": {}, "subtask_type": "chord", "immutable": false}</p>
<p dir="auto">I tried also by cloning the chord first in the scheduled task and executing the clone, but same result.</p> | 1 |
<p dir="auto">Bootstrap: affix.js v3.1.1</p>
<p dir="auto">When you scroll to the bottom, the "position" system is set. But it is not "unset" when you scroll back up (unpin).</p>
<p dir="auto">I fixed the problem by changing:</p>
<p dir="auto">. if (this.unpin) this.$element.css('top', '')</p>
<p dir="auto">...to...</p>
<p dir="auto">if (this.unpin) this.$element.css('top', '').css('position', '')</p>
<p dir="auto">Dunno if this is a good "fix" or a bit of a hack.</p> | <p dir="auto">When scrolling to the bottom of the page, affix-Plugin sets the class "affix-bottom" and sets inline styles like "position: relative; top: XYZpx;". The Problem is, that the inline "position: relative" aren't removed after scrolling up again. It would be better, to set "position: relative" via the class "affix-bottom" (which works correct) and not via javascript. That would solve the problem.</p>
<p dir="auto">BTW: I use Mac OS 10.9.3, Chrome 35.0.1916.114</p> | 1 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): "read-only"</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): Bug report. I am not sure if this is an issue with Kubernetes, Docker, or Google Cloud, but posting here to get this started.</p>
<p dir="auto">I've looked at 29358, 29166, 28750, 29903 but they all appear to be related to different issues.</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:06:06Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:06:06Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: Google Cloud (GKE)</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):<br>
In container:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.4.0
PRETTY_NAME="Alpine Linux v3.4"
HOME_URL="http://alpinelinux.org"
BUG_REPORT_URL="http://bugs.alpinelinux.org""><pre class="notranslate"><code class="notranslate">NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.4.0
PRETTY_NAME="Alpine Linux v3.4"
HOME_URL="http://alpinelinux.org"
BUG_REPORT_URL="http://bugs.alpinelinux.org"
</code></pre></div>
<ul dir="auto">
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):<br>
In container:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Linux redis-cache 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08) x86_64 Linux"><pre class="notranslate"><code class="notranslate">Linux redis-cache 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08) x86_64 Linux
</code></pre></div>
<ul dir="auto">
<li><strong>Install tools</strong>: Google Cloud SDK</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
When kubernetes moves around pods, sometimes the pods with <code class="notranslate">gcePersistentDisk</code> volumes end up not coming up ("timeout expired waiting for volumes to attach/mount for pod"). When this doesn't resolve it self, I delete the pod. Kubernetes recreates, eventually mounting the disk, but intermittently the disk ends up being mounted read-only even though it is the only container connected to it and <code class="notranslate">kubectl describe pod</code> shows the volume as "ReadWrite".</p>
<p dir="auto">To resolve this, I have to delete the <em>deployment</em> and wait for the disk to auto-detach, or use <code class="notranslate">glcoud compute instance detach-disk</code> to remove it from the instance. After doing this, re-creating the deployment seems to launch the pod correctly and the drive gets attached in read-write mode as it should.</p>
<p dir="auto">I've talked with another team that has seen the same behavior (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/davidewatson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/davidewatson">@davidewatson</a>).</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
A persisted disk assigned to a single node should be read-write within the container.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
It's intermittent. :/</p>
<p dir="auto">In our case we see this when attaching disks to redis instances. The disks are not huge (200G of which maybe 15G is used) but the redis instance (PID 1 in the container) immediately launches and tries to read the disk so it would need to be mounted on container start.</p>
<p dir="auto">We have a fairly high rate of mount timeouts that never resolve. Perhaps 20% of the time. I've let some of them run as long as an hour or a day and they just keep trying to remount. Sometimes deleting the pod resolves this. Sometimes deleting the pod results in this read-only mount.</p>
<p dir="auto">Deployment spec:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: redis-cache
spec:
template:
metadata:
labels:
purpose: cache
service: redis
spec:
volumes:
- name: data
gcePersistentDisk:
pdName: redis-cache
fsType: ext4
containers:
- name: redis
image: us.gcr.io/xxxxxxxx/redis-cache:latest
resources:
requests:
memory: "10G"
ports:
- containerPort: 6379
volumeMounts:
- mountPath: /data
name: data
args: ["redis-server", "/etc/redis.conf"]"><pre class="notranslate"><code class="notranslate">apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: redis-cache
spec:
template:
metadata:
labels:
purpose: cache
service: redis
spec:
volumes:
- name: data
gcePersistentDisk:
pdName: redis-cache
fsType: ext4
containers:
- name: redis
image: us.gcr.io/xxxxxxxx/redis-cache:latest
resources:
requests:
memory: "10G"
ports:
- containerPort: 6379
volumeMounts:
- mountPath: /data
name: data
args: ["redis-server", "/etc/redis.conf"]
</code></pre></div>
<p dir="auto"><code class="notranslate">Dockerfile</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM redis:3.2-alpine
ADD ./deploy/redis-cache.conf /etc/redis.conf"><pre class="notranslate"><code class="notranslate">FROM redis:3.2-alpine
ADD ./deploy/redis-cache.conf /etc/redis.conf
</code></pre></div>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">Here's a full log of the behavior.</p>
<p dir="auto">First we saw that the redis instance was down. Inspecting the cluster showed that kubernetes had shuffled the pod.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl get pods -l purpose=cache
NAME READY STATUS RESTARTS AGE
redis-cache-3629295551-h5zig 1/1 Terminating 1 2d
redis-cache-3629295551-mqkm2 0/1 ContainerCreating 0 2m"><pre class="notranslate"><code class="notranslate">$ kubectl get pods -l purpose=cache
NAME READY STATUS RESTARTS AGE
redis-cache-3629295551-h5zig 1/1 Terminating 1 2d
redis-cache-3629295551-mqkm2 0/1 ContainerCreating 0 2m
</code></pre></div>
<p dir="auto">About an hour later the pod still had not come up. Inspecting the pod, shows that it's been retrying the mount over the hour and not succeeding. Note that this was re-launched on the same node that the evicted pod was running on.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl describe pod redis-cache-3629295551-abfoh
Name: redis-cache-3629295551-abfoh
Namespace: default
Node: gke-app-name-pool-1-b5918e16-rqip/10.138.0.6
...
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
59m 59m 1 {default-scheduler } Normal Scheduled Successfully assigned redis-cache-3629295551-abfoh to gke-app-name-pool-1-b5918e16-rqip
57m 14s 27 {kubelet gke-app-name-pool-1-b5918e16-rqip} Warning FailedMount Unable to mount volumes for pod "redis-cache-3629295551-abfoh_default(72768d65-7c4a-11e6-a198-42010a8a000d)": timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-abfoh"/"default". list of unattached/unmounted volumes=[data]
57m 14s 27 {kubelet gke-app-name-pool-1-b5918e16-rqip} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-abfoh"/"default". list of unattached/unmounted volumes=[data]"><pre class="notranslate"><code class="notranslate">$ kubectl describe pod redis-cache-3629295551-abfoh
Name: redis-cache-3629295551-abfoh
Namespace: default
Node: gke-app-name-pool-1-b5918e16-rqip/10.138.0.6
...
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
59m 59m 1 {default-scheduler } Normal Scheduled Successfully assigned redis-cache-3629295551-abfoh to gke-app-name-pool-1-b5918e16-rqip
57m 14s 27 {kubelet gke-app-name-pool-1-b5918e16-rqip} Warning FailedMount Unable to mount volumes for pod "redis-cache-3629295551-abfoh_default(72768d65-7c4a-11e6-a198-42010a8a000d)": timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-abfoh"/"default". list of unattached/unmounted volumes=[data]
57m 14s 27 {kubelet gke-app-name-pool-1-b5918e16-rqip} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-abfoh"/"default". list of unattached/unmounted volumes=[data]
</code></pre></div>
<p dir="auto">I deleted the pod and let the deployment create a new one:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl delete pod redis-cache-3629295551-abfoh
pod "redis-cache-3629295551-abfoh" deleted
$ kubectl get pods -l purpose=cache
NAME READY STATUS RESTARTS AGE
redis-cache-3629295551-abfoh 0/1 Terminating 0 1h
redis-cache-3629295551-o7mm9 0/1 ContainerCreating 0 7s"><pre class="notranslate"><code class="notranslate">$ kubectl delete pod redis-cache-3629295551-abfoh
pod "redis-cache-3629295551-abfoh" deleted
$ kubectl get pods -l purpose=cache
NAME READY STATUS RESTARTS AGE
redis-cache-3629295551-abfoh 0/1 Terminating 0 1h
redis-cache-3629295551-o7mm9 0/1 ContainerCreating 0 7s
</code></pre></div>
<p dir="auto">This eventually comes up, on another node:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl describe pod redis-cache-3629295551-o7mm9
Name: redis-cache-3629295551-o7mm9
Namespace: default
Node: gke-app-name-pool-1-b5918e16-8cdb/10.138.0.4
...
Volumes:
data:
Type: GCEPersistentDisk (a Persistent Disk resource in Google Compute Engine)
PDName: redis-cache
FSType: ext4
Partition: 0
ReadOnly: false
...
Events:
FirstSeen LastSeen Count From SubobjectPath Type ReasonMessage
--------- -------- ----- ---- ------------- -------- -------------
7m 7m 1 {default-scheduler } Normal Scheduled Successfully assigned redis-cache-3629295551-o7mm9 to gke-app-name-pool-1-b5918e16-8cdb
5m 3m 2 {kubelet gke-app-name-pool-1-b5918e16-8cdb} Warning FailedMount Unable to mount volumes for pod "redis-cache-3629295551-o7mm9_default(d6fb24b0-7c52-11e6-a198-42010a8a000d)": timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-o7mm9"/"default". list of unattached/unmounted volumes=[data]
5m 3m 2 {kubelet gke-app-name-pool-1-b5918e16-8cdb} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-o7mm9"/"default". list of unattached/unmounted volumes=[data]
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal PulledContainer image "us.gcr.io/xxxxxxx/redis-cache:latest" already present on machine
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal CreateCreated container with docker id 896b189ef167
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal StarteStarted container with docker id 896b189ef167"><pre class="notranslate"><code class="notranslate">$ kubectl describe pod redis-cache-3629295551-o7mm9
Name: redis-cache-3629295551-o7mm9
Namespace: default
Node: gke-app-name-pool-1-b5918e16-8cdb/10.138.0.4
...
Volumes:
data:
Type: GCEPersistentDisk (a Persistent Disk resource in Google Compute Engine)
PDName: redis-cache
FSType: ext4
Partition: 0
ReadOnly: false
...
Events:
FirstSeen LastSeen Count From SubobjectPath Type ReasonMessage
--------- -------- ----- ---- ------------- -------- -------------
7m 7m 1 {default-scheduler } Normal Scheduled Successfully assigned redis-cache-3629295551-o7mm9 to gke-app-name-pool-1-b5918e16-8cdb
5m 3m 2 {kubelet gke-app-name-pool-1-b5918e16-8cdb} Warning FailedMount Unable to mount volumes for pod "redis-cache-3629295551-o7mm9_default(d6fb24b0-7c52-11e6-a198-42010a8a000d)": timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-o7mm9"/"default". list of unattached/unmounted volumes=[data]
5m 3m 2 {kubelet gke-app-name-pool-1-b5918e16-8cdb} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "redis-cache-3629295551-o7mm9"/"default". list of unattached/unmounted volumes=[data]
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal PulledContainer image "us.gcr.io/xxxxxxx/redis-cache:latest" already present on machine
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal CreateCreated container with docker id 896b189ef167
1m 1m 1 {kubelet gke-app-name-pool-1-b5918e16-8cdb} spec.containers{redis} Normal StarteStarted container with docker id 896b189ef167
</code></pre></div>
<p dir="auto">But the volume isn't writable inside the container:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl exec redis-cache-3629295551-o7mm9 -- mount | grep /data
/dev/sdb on /data type ext4 (ro,relatime,data=ordered)"><pre class="notranslate"><code class="notranslate">$ kubectl exec redis-cache-3629295551-o7mm9 -- mount | grep /data
/dev/sdb on /data type ext4 (ro,relatime,data=ordered)
</code></pre></div> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): "btrfs kubelet"</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): v1.4.6</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: bare metal</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): CentOS Linux 7 (Core)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux vilnus 3.10.0-327.36.3.el7.x86_64 <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Mon Oct 24 16:09:20 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: Ansible script from <a href="https://github.com/kubernetes/contrib.git">https://github.com/kubernetes/contrib.git</a> with custom changes.</li>
<li><strong>Others</strong>: Cluster with 4 bare metal nodes, same OS on all nodes</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
kubelet continuously reports following error messages:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Dec 06 01:27:26 vilnus kubelet[2447]: E1206 01:27:26.798004 2447 kubelet.go:2132] Failed to check if disk space is available on the root partition: failed to get fs info for "root": error trying to get filesystem Device for dir /var/lib/kubelet: err: could not find device with major: 0, minor: 37 in cached partitions map"><pre class="notranslate"><code class="notranslate">Dec 06 01:27:26 vilnus kubelet[2447]: E1206 01:27:26.798004 2447 kubelet.go:2132] Failed to check if disk space is available on the root partition: failed to get fs info for "root": error trying to get filesystem Device for dir /var/lib/kubelet: err: could not find device with major: 0, minor: 37 in cached partitions map
</code></pre></div>
<p dir="auto">As (I assume) a side effect heapster pod fails with following error messages:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2016-12-07T22:48:05.074258000Z E1207 22:48:05.073677 1 summary.go:114] error while getting metrics summary from Kubelet antego(192.168.81.104:10255): request failed - "500 Internal Server Error", response: "Internal Error: failed RootFsInfo: error trying to get filesystem Device for dir /var/lib/kubelet: err: could not find device with major: 0, minor: 36 in cached partitions map""><pre class="notranslate"><code class="notranslate">2016-12-07T22:48:05.074258000Z E1207 22:48:05.073677 1 summary.go:114] error while getting metrics summary from Kubelet antego(192.168.81.104:10255): request failed - "500 Internal Server Error", response: "Internal Error: failed RootFsInfo: error trying to get filesystem Device for dir /var/lib/kubelet: err: could not find device with major: 0, minor: 36 in cached partitions map"
</code></pre></div>
<p dir="auto">When kubelet starts there is no device with major:minor ID '0:37':</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Dec 06 01:27:21 vilnus kubelet[2447]: I1206 01:27:21.304451 2447 fs.go:117] Filesystem partitions: map[/dev/sda4:{mountpoint:/ major:0 minor:35 fsType:btrfs blockSize:0} /dev/sda2:{mountp
oint:/boot major:8 minor:2 fsType:xfs blockSize:0}]"><pre class="notranslate"><code class="notranslate">Dec 06 01:27:21 vilnus kubelet[2447]: I1206 01:27:21.304451 2447 fs.go:117] Filesystem partitions: map[/dev/sda4:{mountpoint:/ major:0 minor:35 fsType:btrfs blockSize:0} /dev/sda2:{mountp
oint:/boot major:8 minor:2 fsType:xfs blockSize:0}]
</code></pre></div>
<p dir="auto">stat tool does not report device with 0:35 but 0:37 (i.e. 25h/37d):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[root@vilnus rubinstein]# stat /
File: ‘/’
Size: 152 Blocks: 0 IO Block: 4096 directory
Device: 25h/37d Inode: 256 Links: 1
Access: (0555/dr-xr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Context: system_u:object_r:root_t:s0
Access: 2016-12-07 23:49:42.368681876 +0100
Modify: 2016-12-06 01:27:50.993617031 +0100
Change: 2016-12-06 01:27:50.993617031 +0100
Birth: -"><pre class="notranslate"><code class="notranslate">[root@vilnus rubinstein]# stat /
File: ‘/’
Size: 152 Blocks: 0 IO Block: 4096 directory
Device: 25h/37d Inode: 256 Links: 1
Access: (0555/dr-xr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Context: system_u:object_r:root_t:s0
Access: 2016-12-07 23:49:42.368681876 +0100
Modify: 2016-12-06 01:27:50.993617031 +0100
Change: 2016-12-06 01:27:50.993617031 +0100
Birth: -
</code></pre></div>
<p dir="auto">Here is also /etc/fstab</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#
# /etc/fstab
# Created by anaconda on Tue Nov 8 15:25:05 2016
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=4706dd7f-81aa-4bb6-bcb6-e742aae08456 / btrfs subvol=root 0 0
UUID=72a8c6a4-b442-48ef-a6ad-a8da2146fab6 /boot xfs defaults 0 0
UUID=039B-CD7E /boot/efi vfat umask=0077,shortname=winnt 0 0
UUID=56f454ff-1d8e-4900-b034-1f777df92c30 swap swap defaults 0 0
UUID=4706dd7f-81aa-4bb6-bcb6-e742aae08456 /mnt/disk-4706dd7f-81aa-4bb6-bcb6-e742aae08456 btrfs subvol=/ 0 0"><pre class="notranslate"><code class="notranslate">#
# /etc/fstab
# Created by anaconda on Tue Nov 8 15:25:05 2016
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=4706dd7f-81aa-4bb6-bcb6-e742aae08456 / btrfs subvol=root 0 0
UUID=72a8c6a4-b442-48ef-a6ad-a8da2146fab6 /boot xfs defaults 0 0
UUID=039B-CD7E /boot/efi vfat umask=0077,shortname=winnt 0 0
UUID=56f454ff-1d8e-4900-b034-1f777df92c30 swap swap defaults 0 0
UUID=4706dd7f-81aa-4bb6-bcb6-e742aae08456 /mnt/disk-4706dd7f-81aa-4bb6-bcb6-e742aae08456 btrfs subvol=/ 0 0
</code></pre></div>
<p dir="auto">Same errors appears on all nodes and all nodes have / mounted to btrfs partition.</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">No errors, kubernetes 1.2.0 installed from CentOS 7 package had no such errors.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto">Kubernetes binaries were installed from here :<br>
<a href="https://storage.googleapis.com/kubernetes-release/release/v1.4.6/bin/linux/amd64" rel="nofollow">https://storage.googleapis.com/kubernetes-release/release/v1.4.6/bin/linux/amd64</a></p>
<p dir="auto">Run kubelet on btrfs root partition.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">I would like at least to have recommendations how to figure out what exactly issue is.</p> | 0 |
<pre class="notranslate">In this small example below, both snippets used to compile. Recently,
however, only the 2nd snippet compiles:
<a href="http://pastie.org/743667" rel="nofollow">http://pastie.org/743667</a>
What is the expected output? What do you see instead?
I expect both to compile.
What is your $GOOS? $GOARCH?
linux/386
Which revision are you using? (hg identify)
a33ae1785d42+ (+=�=<) tip
Please provide any additional information below.
Something must have changed recently</pre> | <p dir="auto">by <strong>kballard</strong>:</p>
<pre class="notranslate">Building launchpad.net/goyaml produces a series of warnings:
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_alias’:
decode.go:34:7: warning: assignment from incompatible pointer type [enabled by default]
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_mapping_start’:
decode.go:44:7: warning: assignment from incompatible pointer type [enabled by default]
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_scalar’:
decode.go:54:7: warning: assignment from incompatible pointer type [enabled by default]
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_sequence_start’:
decode.go:64:7: warning: assignment from incompatible pointer type [enabled by default]
The Cgo-generated function for the first warning looks like
void
_cgo_27a928056cbd_Cfunc_event_mapping_start(void *v)
{
struct {
yaml_event_t* p0;
const struct {yaml_char_t* anchor; yaml_char_t* tag; int implicit; yaml_mapping_style_t style; }* r;
} __attribute__((__packed__)) *a = v;
a->r = (const struct {yaml_char_t* anchor; yaml_char_t* tag; int implicit; yaml_mapping_style_t style; }*) event_mapping_start((void*)a->p0);
}
The warning is on the `a->r = ...` line.
If I ask Clang to build this file, the warning is a bit more verbose:
decode.go:34:7: warning: incompatible pointer types assigning to 'const struct
<anonymous struct at decode.go:32:9> *' from 'const struct <anonymous struct at
decode.go:34:16> *' [-Wincompatible-pointer-types]
a->r = (const struct {yaml_char_t* anchor; }*) event_alias((void*)a->p0);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What steps will reproduce the problem?
1. Build launchpad.net/goyaml
What is the expected output?
No warnings
What do you see instead?
The warnings listed above
Which compiler are you using (5g, 6g, 8g, gccgo)?
8g
Which operating system are you using?
Ubuntu 12.04
Which version are you using? (run 'go version')
go version go1.1 linux/386</pre> | 0 |
<p dir="auto">What I want to do is retrieving(or slicing 1-element) from tensor with tensor indices.</p>
<p dir="auto">for example,</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="data = tf.constant( [ [1,2,3], [4,5,6] ] )
i = tf.constant(2)
j = tf.constant(1)
k = data[i,j] # error
l = tf.gather( tf.gather(data, i) , j) # ok. but generate errors when gradient optimization process.."><pre class="notranslate"><code class="notranslate">data = tf.constant( [ [1,2,3], [4,5,6] ] )
i = tf.constant(2)
j = tf.constant(1)
k = data[i,j] # error
l = tf.gather( tf.gather(data, i) , j) # ok. but generate errors when gradient optimization process..
</code></pre></div>
<p dir="auto"><code class="notranslate">sess.run(k, ...)</code> generates bad slice errors.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" data[i,j]
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/array_ops.py", line 129, in _SliceHelper
raise TypeError("Bad slice index %s of type %s" % (s, type(s)))"><pre class="notranslate"><code class="notranslate"> data[i,j]
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/array_ops.py", line 129, in _SliceHelper
raise TypeError("Bad slice index %s of type %s" % (s, type(s)))
</code></pre></div>
<p dir="auto"><code class="notranslate">tf.gather</code> is ok to slice element, but it yields errors when training time (<code class="notranslate">tf.train.GradientDescentOptimizer.minimize</code>)</p>
<p dir="auto">Any tips to work-around this problem?</p> | <h3 dir="auto">Issue:</h3>
<p dir="auto">TFLearn estimator summary writer fails because _write_dict_to_summary() in <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/learn/python/learn/estimators/estimator.py#L324">/tensorflow/contrib/learn/python/learn/estimators/estimator.py</a> dose not allow int values, which naturally stops the np.int64 valued 'global_step' parameter from being written, thus causing the summary writer to fail.</p>
<h3 dir="auto">How to reproduce:</h3>
<p dir="auto">Try and run <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/learn/wide_n_deep_tutorial.py">wide_n_deep_tutorial.py</a>, and you will get:</p>
<p dir="auto"><code class="notranslate">INFO:tensorflow:Saving dict for global step 202: accuracy = 0.818254, accuracy/baseline_label_mean = 0.236226, accuracy/threshold_0.500000_mean = 0.818254, auc = 0.742517, global_step = 202, labels/actual_label_mean = 0.236226, labels/prediction_mean = 0.182356, loss = 0.680463, precision/positive_threshold_0.500000_mean = 0.764145, recall/positive_threshold_0.500000_mean = 0.333593 WARNING:tensorflow:Skipping summary for global_step, must be a float or np.float32.</code></p>
<h3 dir="auto">Pull Request:</h3>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="208015582" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/7555" data-hovercard-type="pull_request" data-hovercard-url="/tensorflow/tensorflow/pull/7555/hovercard" href="https://github.com/tensorflow/tensorflow/pull/7555">#7555</a></p> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>8.x - 12.0.0-beta14</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10 (Build 18363)</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>N/A</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">BrowserView should fill the available space in BrowserWindow when application window size is changed when it has been set to autoresize view according to BrowserWindow width/height.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">BrowserView does fill the available space, but leaves small gaps to the right/bottom side of the view. Gap size is relative to how much the size is enlarged. This happens only in Windows. On Linux there are no gaps and changing window size works without<br>
issues.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Gist for Electron Fiddle: <a href="https://gist.github.com/4c1a403df092cded0d8ff85640a9c19f">https://gist.github.com/4c1a403df092cded0d8ff85640a9c19f</a></p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/66526/104361211-d8382180-551a-11eb-9579-d808fc0437a2.png"><img src="https://user-images.githubusercontent.com/66526/104361211-d8382180-551a-11eb-9579-d808fc0437a2.png" alt="image" style="max-width: 100%;"></a></p>
<details open="" class="details-reset border rounded-2">
<summary class="px-3 py-2">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video">
<path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path>
</svg>
<span aria-label="Video description 2021-01-12.21-38-28.mp4" class="m-1">2021-01-12.21-38-28.mp4</span>
<span class="dropdown-caret"></span>
</summary>
<video src="https://user-images.githubusercontent.com/66526/104364196-f142d180-551e-11eb-9349-798f658f9e30.mp4" data-canonical-src="https://user-images.githubusercontent.com/66526/104364196-f142d180-551e-11eb-9349-798f658f9e30.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px">
</video>
</details> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong> confirmed in 8.0.1, 7.1.2, 5.0.7, 4.0.0</li>
<li><strong>Operating System:</strong> Windows 10</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I have a <code class="notranslate">BrowserView</code> that is configured to resize with the window. I have a <code class="notranslate">resize</code> handler on the <code class="notranslate">BrowserWindow</code> that in some cases calls <code class="notranslate">setBounds</code>/<code class="notranslate">setSize</code> to change the size of the window.</p>
<p dir="auto">I expect the <code class="notranslate">BrowserView</code> to resize with the window.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The <code class="notranslate">BrowserView</code> doesn't resize correctly and shrinks.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Download the quickstart app. Replace main.js with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const { app, BrowserWindow, BrowserView } = require('electron')
async function createWindow() {
const mainWindow = new BrowserWindow({ backgroundColor: "#000" });
const view = new BrowserView();
mainWindow.setBrowserView(view);
const contentBounds = mainWindow.getContentBounds();
view.setBounds({ x: 0, y: 0, width: contentBounds.width, height: contentBounds.height });
view.setAutoResize({ width: true, height: true });
await view.webContents.loadURL("https://google.com");
mainWindow.once("maximize", () => {
mainWindow.once("resize", () => {
mainWindow.setSize(1000, 1000);
setTimeout(() => {
console.log(mainWindow.getBounds()); // logs what it used to be at {x: 914, y: 62, width: 800, height: 600}
console.log(view.getBounds()); // bounds are not resized correctly: {x: 0, y: 0, width: 0, height: 145}
}, 1000);
});
});
}
app.on('ready', createWindow)"><pre class="notranslate"><code class="notranslate">const { app, BrowserWindow, BrowserView } = require('electron')
async function createWindow() {
const mainWindow = new BrowserWindow({ backgroundColor: "#000" });
const view = new BrowserView();
mainWindow.setBrowserView(view);
const contentBounds = mainWindow.getContentBounds();
view.setBounds({ x: 0, y: 0, width: contentBounds.width, height: contentBounds.height });
view.setAutoResize({ width: true, height: true });
await view.webContents.loadURL("https://google.com");
mainWindow.once("maximize", () => {
mainWindow.once("resize", () => {
mainWindow.setSize(1000, 1000);
setTimeout(() => {
console.log(mainWindow.getBounds()); // logs what it used to be at {x: 914, y: 62, width: 800, height: 600}
console.log(view.getBounds()); // bounds are not resized correctly: {x: 0, y: 0, width: 0, height: 145}
}, 1000);
});
});
}
app.on('ready', createWindow)
</code></pre></div>
<p dir="auto">Run <code class="notranslate">npm start</code>, maximize the window to set up the <code class="notranslate">resize</code> handler, and then unmaximize it.</p>
<p dir="auto">Observe all the black space in the window where you would expect to see the browser view (google).</p>
<p dir="auto">Another thing to note is how the window size doesn't increase to 1000x1000 and stays whatever size it was. It does look like the BrowserView size increases, and it ends up out of sync with the window.</p>
<p dir="auto">Maybe the issue isn't about the BrowserView, but more about the window size not increasing.</p>
<h3 dir="auto">Gif</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6374473/74377426-7a023c00-4da9-11ea-919a-708560c81d78.gif"><img src="https://user-images.githubusercontent.com/6374473/74377426-7a023c00-4da9-11ea-919a-708560c81d78.gif" alt="browserview_resize_issue" data-animated-image="" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Also, what is the latest stable version? I use 3.7.0 but I see there is a 3.8 and a 3.7.1? Which is the latest stable?</p> | <p dir="auto">Right now Glide is in a bit of an awkward state with 3.x being updated from times to times while the focus seems to be on version 4.</p>
<p dir="auto">3.x is a bit of a pain to compile with JVM 7 and old support libraries while improvements made on the 4.x branch can only be used if we compile it ourselves.</p>
<p dir="auto">Is there any plan to officially publish Glide 4.0 soon ? From what I can gather it is already used internally at Google on some products so it sounds stable enough.</p>
<p dir="auto">IMO it would benefit the library to focus on this branch and only maintain 3.x .</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.4.2</li>
<li>Operating System / Platform => Windows10</li>
<li>Compiler => android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe (ver 3.8)</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">configure using cmake-gui</p>
<p dir="auto">default build pass, failed with following configuration</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" CPU/HW features:
Baseline: VFPV3 NEON
requested: DETECT
required: NEON VFPV3"><pre class="notranslate"><code class="notranslate"> CPU/HW features:
Baseline: VFPV3 NEON
requested: DETECT
required: NEON VFPV3
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="General configuration for OpenCV 3.4.2 =====================================
Version control: unknown
Platform:
Timestamp: 2018-08-27T03:39:44Z
Host: Windows 10.0.17134 AMD64
Target: Android 1 armv7-a
CMake: 3.11.2
CMake generator: MinGW Makefiles
CMake build tool: C:/msys64/mingw64/bin/mingw32-make.exe
Configuration: Release
CPU/HW features:
Baseline: VFPV3 NEON
requested: DETECT
required: NEON VFPV3
C/C++:
Built as dynamic libs?: NO
C++11: YES
C++ Compiler: D:/software/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe (ver 3.8)
C++ flags (Release): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -std=c++11 -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -Os -DNDEBUG -DNDEBUG
C++ flags (Debug): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -std=c++11 -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -O0 -fno-limit-debug-info -DDEBUG -D_DEBUG
C Compiler: D:/software/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
C flags (Release): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -Os -DNDEBUG -DNDEBUG
C flags (Debug): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -O0 -fno-limit-debug-info -DDEBUG -D_DEBUG
Linker flags (Release): -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libatomic.a -nostdlib++ --sysroot D:/software/android-sdk/ndk-bundle/platforms/android-14/arch-arm -Wl,--build-id -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--fix-cortex-a8 -Wl,--exclude-libs,libunwind.a -LD:/software/android-sdk/ndk-bundle/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -Wl,--no-undefined -Wl,-z,noexecstack -Qunused-arguments -Wl,-z,relro -Wl,-z,now
Linker flags (Debug): -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libatomic.a -nostdlib++ --sysroot D:/software/android-sdk/ndk-bundle/platforms/android-14/arch-arm -Wl,--build-id -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--fix-cortex-a8 -Wl,--exclude-libs,libunwind.a -LD:/software/android-sdk/ndk-bundle/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -Wl,--no-undefined -Wl,-z,noexecstack -Qunused-arguments -Wl,-z,relro -Wl,-z,now
ccache: NO
Precompiled headers: NO
Extra dependencies: z dl m log
3rdparty dependencies: libprotobuf libjpeg-turbo libwebp libpng libtiff libjasper IlmImf libcpufeatures tegra_hal
OpenCV modules:
To be built: calib3d core dnn features2d flann highgui imgcodecs imgproc java_bindings_generator ml objdetect photo python_bindings_generator shape stitching superres video videostab world
Disabled: js videoio
Disabled by dependency: ts
Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python2 python3 viz
Applications: -
Documentation: NO
Non-free algorithms: NO
Android NDK: D:/software/android-sdk/ndk-bundle (ver 17.1.4828580)
Android ABI: armeabi-v7a
NDK toolchain: arm-linux-androideabi-clang
STL type: c++_static
Native API level: 14
Android SDK: not used, projects are not built
GUI:
Media I/O:
ZLib: z (ver 1.2.3)
JPEG: build-libjpeg-turbo (ver 1.5.3-62)
WEBP: build (ver encoder: 0x020e)
PNG: build (ver 1.6.34)
TIFF: build (ver 42 - 4.0.9)
JPEG 2000: build (ver 1.900.1)
OpenEXR: build (ver 1.7.1)
HDR: YES
SUNRASTER: YES
PXM: YES
Video I/O:
Parallel framework: pthreads
Trace: YES (built-in)
Other third-party libraries:
Custom HAL: YES (carotene (ver 0.0.1))
Protobuf: build (3.5.1)
Python (for build): NO
Java: export all functions
ant: NO
Java wrappers: NO
Java tests: NO"><pre class="notranslate"><code class="notranslate">General configuration for OpenCV 3.4.2 =====================================
Version control: unknown
Platform:
Timestamp: 2018-08-27T03:39:44Z
Host: Windows 10.0.17134 AMD64
Target: Android 1 armv7-a
CMake: 3.11.2
CMake generator: MinGW Makefiles
CMake build tool: C:/msys64/mingw64/bin/mingw32-make.exe
Configuration: Release
CPU/HW features:
Baseline: VFPV3 NEON
requested: DETECT
required: NEON VFPV3
C/C++:
Built as dynamic libs?: NO
C++11: YES
C++ Compiler: D:/software/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe (ver 3.8)
C++ flags (Release): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -std=c++11 -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -Os -DNDEBUG -DNDEBUG
C++ flags (Debug): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -std=c++11 -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -O0 -fno-limit-debug-info -DDEBUG -D_DEBUG
C Compiler: D:/software/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
C flags (Release): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -Os -DNDEBUG -DNDEBUG
C flags (Debug): -isystem D:/software/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -D__ANDROID_API__=14 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -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 -Wsign-promo -Wuninitialized -Winit-self -Winconsistent-missing-override -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-unnamed-type-template-args -Wno-comment -fdiagnostics-show-option -Qunused-arguments -mfpu=neon -fvisibility=hidden -fvisibility-inlines-hidden -O0 -fno-limit-debug-info -DDEBUG -D_DEBUG
Linker flags (Release): -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libatomic.a -nostdlib++ --sysroot D:/software/android-sdk/ndk-bundle/platforms/android-14/arch-arm -Wl,--build-id -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--fix-cortex-a8 -Wl,--exclude-libs,libunwind.a -LD:/software/android-sdk/ndk-bundle/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -Wl,--no-undefined -Wl,-z,noexecstack -Qunused-arguments -Wl,-z,relro -Wl,-z,now
Linker flags (Debug): -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libatomic.a -nostdlib++ --sysroot D:/software/android-sdk/ndk-bundle/platforms/android-14/arch-arm -Wl,--build-id -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--fix-cortex-a8 -Wl,--exclude-libs,libunwind.a -LD:/software/android-sdk/ndk-bundle/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -Wl,--no-undefined -Wl,-z,noexecstack -Qunused-arguments -Wl,-z,relro -Wl,-z,now
ccache: NO
Precompiled headers: NO
Extra dependencies: z dl m log
3rdparty dependencies: libprotobuf libjpeg-turbo libwebp libpng libtiff libjasper IlmImf libcpufeatures tegra_hal
OpenCV modules:
To be built: calib3d core dnn features2d flann highgui imgcodecs imgproc java_bindings_generator ml objdetect photo python_bindings_generator shape stitching superres video videostab world
Disabled: js videoio
Disabled by dependency: ts
Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python2 python3 viz
Applications: -
Documentation: NO
Non-free algorithms: NO
Android NDK: D:/software/android-sdk/ndk-bundle (ver 17.1.4828580)
Android ABI: armeabi-v7a
NDK toolchain: arm-linux-androideabi-clang
STL type: c++_static
Native API level: 14
Android SDK: not used, projects are not built
GUI:
Media I/O:
ZLib: z (ver 1.2.3)
JPEG: build-libjpeg-turbo (ver 1.5.3-62)
WEBP: build (ver encoder: 0x020e)
PNG: build (ver 1.6.34)
TIFF: build (ver 42 - 4.0.9)
JPEG 2000: build (ver 1.900.1)
OpenEXR: build (ver 1.7.1)
HDR: YES
SUNRASTER: YES
PXM: YES
Video I/O:
Parallel framework: pthreads
Trace: YES (built-in)
Other third-party libraries:
Custom HAL: YES (carotene (ver 0.0.1))
Protobuf: build (3.5.1)
Python (for build): NO
Java: export all functions
ant: NO
Java wrappers: NO
Java tests: NO
</code></pre></div>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">run</p>
<p dir="auto"><code class="notranslate">make</code></p>
<p dir="auto">build result stop at</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[ 30%] Building ASM object 3rdparty/libpng/CMakeFiles/libpng.dir/arm/filter_neon.S.o
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_sub4_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:65:1: note: while in macro instantiation
func png_read_filter_row_sub4_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:79:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_sub3_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:81:1: note: while in macro instantiation
func png_read_filter_row_sub3_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:105:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_up_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:107:1: note: while in macro instantiation
func png_read_filter_row_up_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:118:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_avg4_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:120:1: note: while in macro instantiation
func png_read_filter_row_avg4_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:139:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_avg3_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:141:1: note: while in macro instantiation
func png_read_filter_row_avg3_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:174:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_paeth4_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:192:1: note: while in macro instantiation
func png_read_filter_row_paeth4_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:213:1: note: while in macro instantiation
endfunc
^
<instantiation>:18:9: error: unknown directive
.func png_read_filter_row_paeth3_neon
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:215:1: note: while in macro instantiation
func png_read_filter_row_paeth3_neon, export=1
^
<instantiation>:2:9: error: unknown directive
.endfunc
^
C:\\Users\\user\\Downloads\\opencv-3.4.2\\3rdparty\\libpng\\arm\\filter_neon.S:250:1: note: while in macro instantiation
endfunc
^
make[2]: *** [3rdparty\libpng\CMakeFiles\libpng.dir\build.make:270: 3rdparty/libpng/CMakeFiles/libpng.dir/arm/filter_neon.S.o] Error 1
make[1]: *** [CMakeFiles\Makefile2:557: 3rdparty/libpng/CMakeFiles/libpng.dir/all] Error 2
make: *** [Makefile:162: all] Error 2
"><pre class="notranslate">[ 30%] Building ASM object 3rdparty/libpng/CMakeFiles/libpng.dir/arm/filter_neon.S.o
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_sub4_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:65:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_sub4_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:79:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_sub3_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:81:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_sub3_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:105:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_up_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:107:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_up_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:118:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_avg4_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:120:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_avg4_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:139:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_avg3_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:141:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_avg3_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:174:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_paeth4_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:192:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_paeth4_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:213:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:18:9: error: unknown directive
.func png_read_filter_row_paeth3_neon
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:215:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
func png_read_filter_row_paeth3_neon, export=1
^
<span class="pl-k"><</span>instantiation<span class="pl-k">></span>:2:9: error: unknown directive
.endfunc
^
C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>user<span class="pl-cce">\\</span>Downloads<span class="pl-cce">\\</span>opencv-3.4.2<span class="pl-cce">\\</span>3rdparty<span class="pl-cce">\\</span>libpng<span class="pl-cce">\\</span>arm<span class="pl-cce">\\</span>filter_neon.S:250:1: note: <span class="pl-k">while</span> <span class="pl-k">in</span> macro instantiation
endfunc
^
make[2]: <span class="pl-k">***</span> [3rdparty<span class="pl-cce">\l</span>ibpng<span class="pl-cce">\C</span>MakeFiles<span class="pl-cce">\l</span>ibpng.dir<span class="pl-cce">\b</span>uild.make:270: 3rdparty/libpng/CMakeFiles/libpng.dir/arm/filter_neon.S.o] Error 1
make[1]: <span class="pl-k">***</span> [CMakeFiles<span class="pl-cce">\M</span>akefile2:557: 3rdparty/libpng/CMakeFiles/libpng.dir/all] Error 2
make: <span class="pl-k">***</span> [Makefile:162: all] Error 2
</pre></div> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.0.1:</li>
<li>Operating System / Platform => Android 8.0 armeabi-v7a:</li>
<li>Compiler => ❔ clang NDK 19, 18, 17, 16</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I am trying to use opencv-4.0.1-android-sdk.zip in latest Android studio. For Armv8 everything is ok. Armv7 crashes when I am trying to call compute function.</p>
<p dir="auto">Maybe I need any special arguments in build.gradle file with Armv7 build?</p>
<p dir="auto">I tried NDK 19, 18, 17, 16, and "-DANDROID_STL=c++_shared" flags, it does not helps.</p>
<p dir="auto">Here is Logcat:</p>
<p dir="auto">signal 7 (SIGBUS), code 1 (BUS_ADRALN)<br>
...<br>
/lib/arm/libopencv_java4.so (_ZN2cv3hal11sepFilter2DEiiiPhjS1_jiiiiiiS1_iS1_iiidi+474)<br>
/lib/arm/libopencv_java4.so (_ZN2cv11sepFilter2DERKNS_11_InputArrayERKNS_12_OutputArrayEiS2_S2_NS_6Point_IiEEdi+428)<br>
/lib/arm/libopencv_java4.so (_ZN2cv12GaussianBlurERKNS_11_InputArrayERKNS_12_OutputArrayENS_5Size_IiEEddi+432)<br>
/lib/arm/libopencv_java4.so<br>
/lib/arm/libopencv_java4.so (_ZN2cv9Feature2D7computeERKNS_11_InputArrayERNSt6__ndk16vectorINS_8KeyPointENS4_9allocatorIS6_EEEERKNS_12_OutputArrayE+76)<br>
...</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">call Feature2D.compute or cv::buildOpticalFlowPyramid</p> | 0 |
<p dir="auto">My issue is about scipy.signal.medfilt(values, window). It works perfectly between values[(window+1)/2 : -(window+1)/2]. Near the edges it returns a ascending sorted list of values at the beginning and descending sorted list of values at the end.</p>
<p dir="auto">This should be <em>either</em> metioned in the document <em>or</em> fixed as a proper median.</p>
<p dir="auto">The input list at the example below:<br>
<code class="notranslate">values = [0,1,1,0.8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1]</code></p>
<p dir="auto"><strong>should produce</strong> (assuming nanmedian behavior for values outside the list):</p>
<p dir="auto">0: median([nan, nan, nan,0,1,1,0.8]) = (0.8+1)/2 = 0.9<br>
1: median([nan,nan,0,1,1,0.8,1]) = 1<br>
2: median([nan,0,1,1,0.8,1,1) = 1<br>
3: median([0,1,1,0.8,1,1,1]) = 1<br>
4: median([1,1,1,0.8,1,1,1]) = 1</p>
<p dir="auto">The output should thus start as [0.9,1,1,1,1,1,...]</p>
<p dir="auto"><strong>alternatively</strong> if the window size is reduced when approaching the edge:</p>
<p dir="auto">0: median([0]) = 0<br>
1: median([0,1) = 0.5<br>
2: median([0,1,1]) = 1<br>
3: median([0,1,1,0.8]) =(0.8+1)/2 = 0.9<br>
4: median([0,1,1,0.8,1]) = 1.0</p>
<p dir="auto">The output should then start [0,0.5,1,0.9,1,1,1,1,1,...]</p>
<p dir="auto"><strong>Instead the actual output</strong> start is [0,0.8,1,1,...] which is a sorted list of first 4 elements.</p>
<p dir="auto">The same happens at the end.</p>
<p dir="auto">This current output is perfectly ok <em>if</em> it would be mentioned in the documentation. For example: "Medfilt returns the median with a running window when index is greater than (window+1)/2. The beginning of the output is the ascending list of input values upto the (window+1)/2. Behavior is the same near the end of the input list but with descending input values from indices - (window+1)/2"</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.signal import medfilt
values = [0,1,1,0.8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1]
print(medfilt(values,7))"><pre class="notranslate"><code class="notranslate">from scipy.signal import medfilt
values = [0,1,1,0.8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1]
print(medfilt(values,7))
</code></pre></div>
<h4 dir="auto">Scipy/Numpy/Python version information:</h4>
<p dir="auto">Python 3.8 64bit</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.4.0 1.17.4 sys.version_info(major=3, minor=8, micro=0, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">1.4.0 1.17.4 sys.version_info(major=3, minor=8, micro=0, releaselevel='final', serial=0)
</code></pre></div>
<p dir="auto">Python 2.7 32bit</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="('1.2.2', '1.15.4', sys.version_info(major=2, minor=7, micro=15, releaselevel='final', serial=0))"><pre class="notranslate"><code class="notranslate">('1.2.2', '1.15.4', sys.version_info(major=2, minor=7, micro=15, releaselevel='final', serial=0))
</code></pre></div> | <p dir="auto">Hi, I have been facing a lot of issues while installing python packages such as scipy, skearn, numpy, spacy and scikit-learn. I tried using pip, conda but unfortunately i was not able to install all requirements. Is there any problem of mac m1 processor with packages like scipy, skearn, numpy, spacy and scikit-learn</p>
<p dir="auto">I tried a lot and seeking a way to get the things resolved.</p> | 0 |
<p dir="auto">Hi<br>
when I write this code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export default function Bug(props) {
return (
<Bug></Bug>
)
}"><pre class="notranslate"><code class="notranslate">export default function Bug(props) {
return (
<Bug></Bug>
)
}
</code></pre></div>
<p dir="auto">it will cause crashes and my browser never responses on the page and the page progress indicator turns forever without any error or something else. and the whole page freezes:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/84472404/142823377-37d7d97b-8c41-46d0-b3ab-1ac75c8fb248.png"><img src="https://user-images.githubusercontent.com/84472404/142823377-37d7d97b-8c41-46d0-b3ab-1ac75c8fb248.png" alt="Screenshot from 2021-11-22 11-21-35" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/84472404/142823368-19339644-2f2f-4781-8eaf-63620004488c.png"><img src="https://user-images.githubusercontent.com/84472404/142823368-19339644-2f2f-4781-8eaf-63620004488c.png" alt="Screenshot from 2021-11-22 11-22-30" style="max-width: 100%;"></a></p>
<p dir="auto">I report it because I know React provides infinite loops, but here it crashes unexpectedly.</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<ul dir="auto">
<li>Feature (possibly bug?)</li>
</ul>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">I've been trying out the new Context API in my project and it's awesome. However, in my haste to start using it, I managed to stumble into a situation where every time I would try and render a certain component which was making use of a few different contexts, the app would completely freeze, and the only thing that would let me get out of this error state was to forcefully kill the process via the chrome task manager.</p>
<p dir="auto">Nothing would be logged to the console, the app would just completely freeze, and when I opened up the task manager and saw the CPU spiked up every time i would go to this component, and the only way I could stop it was to crash the tab.</p>
<p dir="auto">I finally threw some <code class="notranslate">console</code> statements in and saw that it had just entered into an infinite loop between these providers. I managed to get the app to stop crashing, but I'm still unsure as to why exactly this was happening. I'm sure I was just using this API incorrectly somehow, but this was a very confusing problem to diagnose, and some error checking here would be incredibly useful</p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">It would be very beneficial to have some sort of checks in place, similar to what happens with too many <code class="notranslate">setState</code> calls happening too closely when you call it from <code class="notranslate">componentDidUpdate</code>, for example. That way, instead of freezing everything up permanently, the app could at least crash and report some sort of information and help me realize where I'd gone wrong.</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<ul dir="auto">
<li>React <code class="notranslate">16.3.0</code></li>
<li>Chrome <code class="notranslate">65.0.3325.181</code></li>
</ul> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.