search for: qin

Displaying 20 results from an estimated 148 matches for "qin".

Did you mean: in
2017 Feb 27
2
How to catch EXCEPTION_ACCESS_VIOLATION exceptions on win64
...yManager allocated memory address is very large, allocateCodeSection, allocateDataSection assigned address (more than 32 bit address space) is getting smaller and smaller. Cause registerEHFrames to fail. 3.9.1 or 4.0.0 version has been supported on win x64? Or how to solve this problem? haifeng.qin at wellintech.com 发件人: haifeng.qin at wellintech.com 发送时间: 2017-02-17 10:38 收件人: llvm-dev 主题: 回复: How to catch EXCEPTION_ACCESS_VIOLATION exceptions on win64 I'm sorry。 I make mistakes. SE can be catched. haifeng.qin at wellintech.com 发件人: haifeng.qin at wellintech.com 发送时间: 2017-02-16 1...
2017 Feb 16
2
How to catch EXCEPTION_ACCESS_VIOLATION exceptions on win64
...n will have a SEH exception (EXCEPTION_ACCESS_VIOLATION), But JIT can not capture the exception of the EXCEPTION_ACCESS_VIOLATION. I saw Bug 24233. EXCEPTION_ACCESS_VIOLATION exception cannot be captured after modification. How to catch EXCEPTION_ACCESS_VIOLATION exceptions on win64 ? haifeng.qin at wellintech.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170216/d3e7098f/attachment-0001.html>
2007 Mar 01
1
compiling echo cancellation
..., it complains about unresolved external symbol _speex_echo_state_init. And when I include mdf.c into the source, it generates whole bunch of errors. Any idea? thanks so much --------------------Configuration: audio - Win32 Debug-------------------- Compiling... mdf.c C:\Documents and Settings\Min Qin\Desktop\speex\audio\mdf.c(156) : error C2054: expected '(' to follow 'inline' C:\Documents and Settings\Min Qin\Desktop\speex\audio\mdf.c(157) : error C2085: 'filter_dc_notch16' : not in formal parameter list C:\Documents and Settings\Min Qin\Desktop\speex\audio\mdf.c(157) :...
2011 Apr 19
1
[LLVMdev] Fully funded University Ph.D. studentship in University of Teesside, UK
SCHOOL OF COMPUTING University of Teesside Fully funded University Ph.D. studentship (3 years) Ref: QinOCT11 Applications are invited for a Ph.D. student to work on program analysis and software verification or a closely related topic under the supervision of Dr. Shengchao Qin in the School of Computing in Teesside University. Dr. Qin currently has a number of postdoc and Ph.D students in his resea...
2018 Feb 15
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
Hi, I was unable to find a bug report for this with a cursory search, but would like clarification if this is intended or unavoidable behaviour: ```{r} # Create example data.frames parents <- data.frame(name=c("Sarah", "Max", "Qin", "Lex"), sex=c("F", "M", "F", "M"), age=c(41, 43, 36, 51)) children <- data.frame(parent=c("Sarah", "Max", "Qin"), name=c("Oliver", &...
2015 Apr 01
3
[LLVMdev] why we assume malloc() always returns a non-null pointer in instruction combing?
...ns, >> unless we know we will link std library only at link-time. >> > > If programmers want to do this, they need to compile their program with > -ffreestanding. > > >> >> Thanks, >> -Jiangning >> >> >> 2015-03-31 17:51 GMT+08:00 Kevin Qin <kevinqindev at gmail.com>: >> >>> Yes, I classified `new (std::nothrow)` to be a malloc like allocation. >>> See the next sentence. >>> >>> >>> 2015-03-31 17:48 GMT+08:00 mats petersson <mats at planetcatfish.com>: >>> >&gt...
2004 Dec 08
3
How to change x axes' range
...quot;) Instead of have typical x axes' range as "1, 2, 3, and 4" for each column, I need to indicate "11 Vars, 10 Vars, 6Vars, and 4Vars" or "A, B, C, and D" Does anybody know anything about it? I appreciate if you could help me out. Thank you very much indeed. Qin
2015 Apr 01
2
[LLVMdev] why we assume malloc() always returns a non-null pointer in instruction combing?
...are special functions, but programmers can still define their own versions by not linking std library, so we must assume malloc/free always have side-effect like other common functions, unless we know we will link std library only at link-time. Thanks, -Jiangning 2015-03-31 17:51 GMT+08:00 Kevin Qin <kevinqindev at gmail.com>: > Yes, I classified `new (std::nothrow)` to be a malloc like allocation. See > the next sentence. > > > 2015-03-31 17:48 GMT+08:00 mats petersson <mats at planetcatfish.com>: > >> > I think we can do such optimization with operator...
2014 Jul 31
3
[LLVMdev] Should we enable Partial unrolling and Runtime unrolling on AArch64?
...also huge regression on others. The proportion of improvement and regression varies in different Benchmark. Also, code size is increased for two both. I will show more information before this be changed. Here I just want to know more backgrounds of two unrolling methods. -- Best Regards, Kevin Qin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140731/07e44ae1/attachment.html>
2015 Mar 11
2
[LLVMdev] How to run two loop passes non-interleaved if they are registered one by one?
...ass is already used for this kind of purpose(though there's also a fixme saying it's hacking). I think it's a good idea to use this pass here. Thanks, Kevin 2015-03-11 17:05 GMT+08:00 Hal Finkel <hfinkel at anl.gov>: > ----- Original Message ----- > > From: "Kevin Qin" <kevinqindev at gmail.com> > > To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> > > Sent: Wednesday, March 11, 2015 3:47:35 AM > > Subject: [LLVMdev] How to run two loop passes non-interleaved if they > are registered one by one? > >...
2008 Mar 03
7
help for the first poster- a simple question
Hi, there, I cannot get accurate value for calculation. for example: ld<-sqrt(1*0.05*0.95*0.05*0.95) 0.05*0.95-ld=-6.938894e-18 0.05*0.95-ld==0 is False. I met this problem in my program, how can I handle it. Thanks. xj.
2015 Mar 31
2
[LLVMdev] why we assume malloc() always returns a non-null pointer in instruction combing?
...does rely on the constructor being > called, and the bug here is probably [as I'm not familiar with the > workings of the compiler in enough detail] that it doesn't recognize > that the constructor has side-effects. > > -- > Mats > > On 31 March 2015 at 10:24, Kevin Qin <kevinqindev at gmail.com> wrote: >> Hi, >> >> >> When looking into the bug in https://llvm.org/bugs/show_bug.cgi?id=21421, I >> found a regression test in Transforms/InstCombine/malloc-free-delete.ll >> against me to directly fix it. The test is, >>...
2004 Feb 23
2
outputs of KNN prediction
...8775 7.65396918 8.831127635 7.912056888 6.381816017 7.211556733 276 levels ............ Then I tried to calculate a formula:(actual-pred)/actual, which includes pred values. However, I cannot do this even I convert the factors in pred to vectors. Can anybody help?? Thank you very much indeed, Qin
2016 Dec 15
0
How to actively reclaim stack memory
On 15 Dec 2016, at 07:26, haifeng.qin at wellintech.com via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > For help: > > for loop lead to stack overflow, want to actively reclaim stack memory of alloc instruction. > > How to actively reclaim stack memory ? This sounds as if you’re putting the alloca inside...
2004 Apr 27
0
newbie question about using rsync for backups
Hi all, I'm wanting to make weekly backups of host qin to host elijah. I set a crontab to run a script that effectually executes this rsync command: rsync -ave ssh --exclude-from=excludes.txt --delete / elijah:/home/backup/qin host qin is running gentoo linux with rsync version 2.5.6. host elijah is running debian linux (stable) with rsync version...
2018 Feb 17
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...unable to find a bug report for this with a cursory search, but > would > > like clarification if this is intended or unavoidable behaviour: > > > > ```{r} > > # Create example data.frames > > parents <- data.frame(name=c("Sarah", "Max", "Qin", "Lex"), > > sex=c("F", "M", "F", "M"), > > age=c(41, 43, 36, 51)) > > children <- data.frame(parent=c("Sarah", "Max", "Qin"), > >...
2014 Jul 10
2
[LLVMdev] Help!!!!Help!!!! " LLVM ERROR: Cannot select: 0x9fc9680: i32 = fp32_to_fp16 0x9fc0750 [ID=16] " problem!!!!!!!!!!!!!!!!!!
...IMD Architecture) is enabled but even then scalar half-precision is not currently supported."  Could you give me some official link or some evidence? Thank you very much. Robin yalong at multicorewareinc.com  From: Daniel SandersDate: 2014-07-09 02:05To: yalong at multicorewareinc.com; Kevin QinCC: llvmdevSubject: RE: [LLVMdev] Help!!!!Help!!!! " LLVM ERROR: Cannot select: 0x9fc9680: i32 = fp32_to_fp16 0x9fc0750 [ID=16] " problem!!!!!!!!!!!!!!!!!! Hi,   NEON is an ARM feature and is therefore not supported by MIPS so I assume you are trying to achieve the same effect. As f...
2016 May 06
2
Is it possible to increase MAX_NUM_DLLS in future R releases?
...ated with that package when the user?s done using it? I?m a little nervous about this because this seems to be OS dependent and previous versions of my app are running on both windows and macs. Any suggestions would be appreciated, and I?d appreciate if the MAX_NUM_DLLS can be increased. Thanks, Qin > On May 4, 2016, at 9:17 AM, Martin Morgan <martin.morgan at roswellpark.org> wrote: > > > > On 05/04/2016 05:15 AM, Prof Brian Ripley wrote: >> On 04/05/2016 08:44, Martin Maechler wrote: >>>>>>>> Qin Zhu <qinzhu at outlook.com> >&g...
2016 Apr 23
2
RFC: EfficiencySanitizer Cache Fragmentation tool
...e also other issues like how to count union of two struct types. I want to collect good enough information with minimized overhead, so I need evaluate overhead and quality of the profile for each approach. Maybe the simple field counting approach is good enough. We need implement and evaluate. -- Qin On Fri, Apr 22, 2016 at 8:38 PM, Hal Finkel <hfinkel at anl.gov> wrote: > > > ------------------------------ > > *From: *"Hal Finkel" <hfinkel at anl.gov> > *To: *"Hal Finkel" <hfinkel at anl.gov> > *Cc: *"llvm-dev" <llvm-de...
2014 Jul 28
1
Re: [PATCH] launch: Close file descriptors after fork (RHBZ#1123007).
...estfs >= 1.26.6 & libguestfs >= 1.27.24. I feel that version is too high. Now RHEL 7.0 runs libguestfs-1.22.6, RHEL 6.6 alpha and 6.5 runs libguestfs-1.20.11. Is that possible to backport this patch, in order to make this problem fixed in RHEL 7.0, 6.6, and 6.5? Thanks & Best Regards Qin Zhao (赵钦) China System and Technology Lab, IBM Tel: 86-10-82452339 From: "Richard W.M. Jones" <rjones@redhat.com> To: libguestfs@redhat.com, Cc: ptoscano@redhat.com, berrange@redhat.com, Qin Zhao/China/IBM@IBMCN Date: 2014/07/25 21:06 Subject: [PATCH] launch: Close fi...