search for: yihan

Displaying 3 results from an estimated 3 matches for "yihan".

Did you mean: yifan
2018 Feb 02
1
Vector Splitting for Stackmap Operands
...*Res*) that resulted from *SplittingVecOp_*xxx function. However, this way I ran into other failed assertion at other locations. Right now I am not sure what is an effective way of handling stackmap vector operand in the legalizing phase and I appreciate any suggestions from the community Best, Yihan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180202/9f051b72/attachment.html>
2018 Feb 03
2
llvm-dev Digest, Vol 164, Issue 6
...1. [GSOC 2018] Mentors and projects needed! Any help > appreciated. (Tanya Lattner via llvm-dev) > 2. Phabricator acting funny (George Karpenkov via llvm-dev) > 3. Re: llvm.memcpy for struct copy (Hongbin Zheng via llvm-dev) > 4. Vector Splitting for Stackmap Operands (Yihan Pang via llvm-dev) > 5. Re: Customizing SBCC for lcov workflows > (Vedant Kumar via llvm-dev) > 6. Re: Debug info error on bitcode inline modification > (David Blaikie via llvm-dev) > 7. Re: retpoline mitigation and 6.0 (David Woodhouse via llvm-dev) > 8. L...
2009 Sep 22
3
R PNG graph width limitation
Hi folks, I am trying to do a clustering and generate a long dendrogram in R on Linux server: ========= data<-read.table(file="mean_ratio.txt.noheader",row.names=1,sep="\t",quote="\"") hc<-hclust(dist(data),"ward") png(file="mean_ratio.txt.noheader.ward.png",bg="white",pointsize=8,width=32767,height=1536) plot(hc,hang=-1)