search for: zheng

Displaying 20 results from an estimated 605 matches for "zheng".

Did you mean: zhang
2007 Mar 19
1
Wile: Error when executing "make" in SimplyMepis 3.4.3
Hello, I got the following error message when I executed "make". Can anyone help me on this issue? Thanks! Mike make[1]: Entering directory `/home/zheng/Desktop/wine-0.9.28/tools' make[1]: `makedep' is up to date. make[1]: Leaving directory `/home/zheng/Desktop/wine-0.9.28/tools' make[1]: Entering directory `/home/zheng/Desktop/wine-0.9.28/libs' make[2]: Entering directory `/home/zheng/Desktop/wine-0.9.28/libs/port' make[2]: Not...
2010 May 18
4
[LLVMdev] DEBUG INFO at the bytecode level
Thanks Edwin. I found DebugInfo.cpp may be useful. Could you tell me which function I should call inorder to know the source file name and the line number for a particular instruction? Cheers, Zheng 2010/5/18 Török Edwin <edwintorok at gmail.com>: > On 05/18/2010 01:26 PM, Zheng Wang wrote: >> Hello, >> >> Could I get some debug info at the byte code level? I am writing a >> passer and if will be nice if I can know which line in the source an >> instruct...
2012 Nov 16
2
[LLVMdev] Trouble starting private llvm buildbot master.
Hi, I had cloned zorg from https://llvm.org/svn/llvm-project/zorg/trunk, then I try to start the buildbot master located in buildbot/osuosl/master (the absolute path is /nfs/home/hongbin.zheng/buildbot/zorg/buildbot/osuosl/master) by simply typing "buildbot start" And I get something like this from my twistd.log: --- <exception caught here> --- File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 545, in _runCallbacks curre...
2018 Dec 18
2
should we do this time-consuming transform in InstCombine?
...abs and there is no select, %res = OP i32 %b, %a %sub = sub i32 0, %b %res2 = OP i32 %sub, %a theoretically, we can still do the following transform for the above pattern: %res2 = OP i32 %sub, %a ==> %res2 = sub i32 0, %res Not sure whether we can do it in instCombine. Thanks. BRS// Chen Zheng Power Compiler Backend Developer From: Roman Lebedev <lebedev.ri at gmail.com> To: Zheng CZ Chen <czhengsz at cn.ibm.com> Cc: llvm-dev at lists.llvm.org Date: 2018/12/18 03:45 PM Subject: Re: [llvm-dev] should we do this time-consuming transform in InstCombine? On Tue...
2012 Nov 16
0
[LLVMdev] Trouble starting private llvm buildbot master.
...39;buildbot', 'osuosl', 'master') if path not in sys.path: sys.path.append(path) path = os.path.join(os.environ.get('HOME'), 'zorg') if path not in sys.path: sys.path.append(path) 'zorg' is expected to be located on $(HOME)/zorg. 2012/11/16 Hongbin Zheng <etherzhhb at gmail.com>: > Hi, > > I had cloned zorg from https://llvm.org/svn/llvm-project/zorg/trunk, > then I try to start the buildbot master located in buildbot/osuosl/master > (the absolute path is > /nfs/home/hongbin.zheng/buildbot/zorg/buildbot/osuosl/master) by sim...
2017 Mar 05
3
can we override "if" in R?
On Sun, Mar 5, 2017 at 2:50 PM, Michael Lawrence <lawrence.michael at gene.com> wrote: > > > On Sat, Mar 4, 2017 at 12:36 PM, Da Zheng <zhengda1936 at gmail.com> wrote: >> >> In my case, I create a new type of matrices and override matrix >> operations in R for these matrices. >> My goal is to make the system as transparent as possible, which means >> my system should execute the existing R code...
2010 Apr 21
1
[LLVMdev] Performing my own pass with a single command line?
Hi John, Are there any documents about how to add a pass into LTO? Cheers, Zheng On 19 April 2010 15:11, John Criswell <criswell at uiuc.edu> wrote: > Dear Zheng Wang, > > You have a few options: > > 1) You can add your pass to the set of passes that llvm-gcc runs when it > optimizes code.  This requires re-compiling llvm-gcc; it also means that > yo...
2017 May 09
3
[PATCH v2 5/5] ACPI: button: Obselete acpi_lid_open() invocations
...ange nouveau_connector.c user using a simple way now. So this patch only marks acpi_lid_open() as deprecated to accelerate this process by indicating this change to the nouveau developers. Cc: <intel-gfx at lists.freedesktop.org> Cc: <nouveau at lists.freedesktop.org> Signed-off-by: Lv Zheng <lv.zheng at intel.com> --- drivers/acpi/button.c | 7 ++++++- drivers/gpu/drm/i915/intel_lvds.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 7ff3a75..50d7898 100644 --- a/drivers/acpi/button.c +++ b/dr...
2017 Mar 04
5
can we override "if" in R?
...t;- function(a,b,c) base::`if`(a, b, c) > ? `if.foo` <- function(a, b, c) FALSE > ? a <- structure(42, class = "foo") > > ? if (a) TRUE else FALSE > [1] FALSE > > ? if (1) TRUE else FALSE > [1] TRUE > > Gabor > > On Sat, Mar 4, 2017 at 5:47 PM, Da Zheng <zhengda1936 at gmail.com> wrote: >> Thanks. >> Can I override it for a specific class? >> I can do that for operators such as "!". For example, "!.fm" works for >> objects of the class "fm". >> It seems I can't do the same for &...
2010 Apr 06
2
[LLVMdev] Get the loop trip count variable
...(a,b,c); i++) then I should rewrite it as: tmp_var = foo(a,b,c); dumpInfo(...) for (int i=0; i<tmp_var; i++) { ... tmp_var=foo(a,b,c); } This looks quite complicated! Does anyone has any ideal about how easy to insert some basic blocks and to rewrite the loop header in LLVM? Cheers, Zheng On 6 April 2010 17:27, Zakk <zakk0610 at gmail.com> wrote: > Hi, you should run some loop transformation passes(loop rotate, loop > simplify, -indvar), and then get TripCount. > loopinfo.h > /// getTripCount - Return a loop-invariant LLVM value indicating the number > of >...
2010 May 18
0
[LLVMdev] DEBUG INFO at the bytecode level
Thanks Edwin, I will check it out. Cheers, Zheng 2010/5/18 Török Edwin <edwintorok at gmail.com>: > On 05/18/2010 02:13 PM, Zheng Wang wrote: >> Got it. >> >> I am using LLVM 2.6. I guess  bool getLocationInfo(const Value *V, >> std::string &DisplayName,...) has everything I need.\ > > Yes, for variable...
2022 Oct 29
3
[PATCH] drm/nouveau/mmu: fix use-after-free bug in nvkm_vmm_pfn_map
If it failed in kzalloc, vma will be freed in nvkm_vmm_node_merge. The later use of vma will casue use after free. Reported-by: Zheng Wang <hackerzheng666 at gmail.com> Reported-by: Zhuorao Yang <alex000young at gmail.com> Fix it by returning to upper caller as soon as error occurs. Signed-off-by: Zheng Wang <zyytlz.wz at 163.com> --- drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmm.c | 3 +-- 1 file changed, 1 in...
2006 Jun 12
9
Several issues in ChangeSet 10319
We found several issues in ChangeSet 10319. ChangeSet 10314 should work according to our test log. 1, xen0 can not be compiled for IA-32/IA-32pae host since ChangeSet 10318. We tried gcc 3.4.2 and 4.1.0 but both failed. 2. On IA32e host, VMX can not be created. "xm cr" complains: Error: Not an HVM capable platform, we stop creating. 3, On IA32e host, "reboot" can not
2010 May 18
3
[LLVMdev] DEBUG INFO at the bytecode level
...at the byte code level? I am writing a passer and if will be nice if I can know which line in the source an instruction (or value) corresponds to. I found a document online: http://llvm.org/docs/SourceLevelDebugging.html, but I can't find an example of doing it at the byte code level. Cheers, Zheng
2010 Apr 19
2
[LLVMdev] Performing my own pass with a single command line?
...to use 'as' to compile the assembly code to an object file, and finally I can use gcc to generate an executable program. *****My question is*****, is there any way to automatically evoke the pass manager, such as: llvm-gcc -c test.c and in such a way my own pass will be evoked? Cheers, Zheng
2009 May 29
4
R's documentation
...h R's documentation. It seems the documents is not maintained and updated well. Anyone has similar feeling? I don't mean to offend anyone. I hope R would get better and better. But documentation is really one very important factor which could attract people coming or drive people away. Xin Zheng [[alternative HTML version deleted]]
2017 Apr 26
2
Store unswitch
...ive source order. In unswitch2() they have been permuted, and the algorithm cannot deal with this. This requires some kind of value numbering to do efficiently. The GVNSink pass that I really should get around to updating should solve this, eventually! James On Wed, 26 Apr 2017 at 08:19 Hongbin Zheng via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Looks like this do not work: > > // Type your code here, or load an example. > int a[10]; > > void unswitch2(int i, int x, int y0, int y1) { > if (x) { > a[i] = y0; > a[i + 1] = y1; > } else { >...
2010 Apr 06
1
[LLVMdev] Get the loop trip count variable
Hi Eli, Could you tell me how to extract the variable name? The reason I want to do it at the IR level is because I have more information at this stage, such as, constant propagation and back edges. Cheers, Zheng On 5 April 2010 21:51, Eli Friedman <eli.friedman at gmail.com> wrote: > On Mon, Apr 5, 2010 at 1:19 PM, Zheng Wang <jason.wangz at gmail.com> wrote: >> Hello, >> >> I am wondering whether I can get the variable name of loop trip count in LLVM? >> >> Fo...
2004 Nov 16
5
openssh porting
Hi All, I want port the openssh on an embedded system based on powerPC. Is there any document that can guide me to start? Thanks in advance, Mike Zheng __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2017 Mar 04
2
can we override "if" in R?
...ess data in my own vectors and matrices directly. Does this sound reasonable? Best, Da On Sat, Mar 4, 2017 at 3:22 PM, Michael Lawrence <lawrence.michael at gene.com> wrote: > I'm curious as to precisely why someone would want to do this. > > On Sat, Mar 4, 2017 at 11:49 AM, Da Zheng <zhengda1936 at gmail.com> wrote: >> >> I'm just curious. Why making "if" generic is even more dangerous? >> >> Best, >> Da >> >> On Sat, Mar 4, 2017 at 1:22 PM, G?bor Cs?rdi <csardi.gabor at gmail.com> >> wrote: >> &gt...