search for: gans

Displaying 20 results from an estimated 65 matches for "gans".

Did you mean: gains
2011 Dec 02
0
[LLVMdev] tbaa
Can you post the source code of your test case? Gan On Fri, Dec 2, 2011 at 1:44 PM, <liyi at cs.toronto.edu> wrote: > Hi, > > Could anyone tell me how exactly do I use "Type Based Alias Analysis"? > > I compiled the C program with Clang, and verified that there is tbaa > metadata in the IR code. > > But then when I use "opt -tbaa input.c.bc
2023 Mar 29
1
[fdo] Fwd: Your account has been deactivated
...hopefully someone else was able to help out with this? If not let me know and I'll look into re-activating it. I certainly think I would have remembered de-activating you myself if you had done something wrong, so I have no idea what happened here. On Fri, 2023-02-24 at 17:58 -0800, Michael de Gans wrote: > My freedesktop gitlab account?was deactivated and I can't fathom why. I > can't log in and can't reset my credentials. If possible, I'd like to have > it reactivated since I make an occasional contribution to GStreamer. > Apologies if this isn't the place to...
2011 Dec 02
5
[LLVMdev] tbaa
Hi, Could anyone tell me how exactly do I use "Type Based Alias Analysis"? I compiled the C program with Clang, and verified that there is tbaa metadata in the IR code. But then when I use "opt -tbaa input.c.bc -aa-eval" to check the results, it always gives 100% may aliasing no matter what input. Am I using "tbaa" correctly? Thanks. Yi
2011 Nov 03
1
[LLVMdev] Alias Analysis Problem in LICM
Hi John, Thank you for your reply! Please see my other questions below: > DSA is a unification-based points-to analysis.  The interface to use it as > an AliasAnalysis pass was removed since no one was using it and it was > probably buggy. - When you say "it was probably buggy", what is buggy? the "interface", or the AliasAnalysis? I'm so surprise that no one
2008 Nov 20
2
Reformatting a table
Hi !            I am new to R. Can somebody help me in reformatting huge output files ,i.e, rearranging sets of columns in specific order. For example: I have data for three compunds 1, 2 and 3 file1: ID CA1 CA3 CA2 MA2 MA1 MA3 1 14 15 13 7 12 3 2 19 7 12 10 14 5 3 21 12 19 6 8 9   to File 2:   ID CA1 CA2 CA3 MA1 MA2 MA3 1 14 13 15 12 7 3 2 19 12 7 14 10 5 3 21 19 12 8 6 9   or File3: ID
2006 Feb 20
2
Write pure sine to *.ogg directly?
Hello, I am author of a Morse code training software written in Perl at http://starling.ws/morse Currently I output to *.wav and, if on Unix, convert to *.ogg. And that's okay for a trainer. But I have desire to upgrade the project to a real-time communication tool...or at least a Morse code audio mail routine. And I should like to avoid *.wav. I'd like some means of writing a pure
2003 Nov 25
0
samba on macintosh
Hi all. New to this list so ... sorry if this is old, but I have searched honest. I have been asked to install samba on some (60) macintoshes. The macs run OSX10.2. I have the developer tools and samba 3.0.0. Configure works but make crashes out with libsmb/clikrb5.c139: #error UNKNOWN_GET_ENCTYPES_FUNCTIONS followed by 4 more errors ((caused by the first?). I cant see any ref to this or options
2011 Nov 08
2
[LLVMdev] Alias Analysis Problem in LICM
> Yes.  The current TBAA implementation is conservative, with the idea that it > can become more aggressive (and with TBAA, this fundamentally means > "more dangerous") with incremental steps. Dan, Could you disclose more details about how to implement the "incremental steps" to handle more complicated alias cases? For example, differentiate different pointers that
2011 Nov 03
4
[LLVMdev] Alias Analysis Problem in LICM
Hi, I met an alias analysis problem in the LICM phase. I am using the following piece of code to present this problem. 1 int size; 2 int ** AAA; 3 void * xalloc(int); 4 5 void foo(void) 6 { 7 int i; 8 AAA = (int**) xalloc(size * sizeof(int*)); 9 10 for (i=0; i<size; i++) 11 AAA[i] = 0; 12 } This code tries to
2003 May 15
5
Session and open files
Hi, Hi I'm using redhat 9 I've got samba working and I have users onj the system accessing the shares, Can anyone recomend a programme that can tell me whch users have got files open on my samba box Thanks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Iwan Davies Server Support and Development Technician Cyngor Sir Ceredigion County Council IT Section Finance iwandav@ceredigion.gov.uk
2011 Nov 09
0
[LLVMdev] Alias Analysis Problem in LICM
On Nov 7, 2011, at 10:17 PM, Gan wrote: >> Yes. The current TBAA implementation is conservative, with the idea that it >> can become more aggressive (and with TBAA, this fundamentally means >> "more dangerous") with incremental steps. > > Dan, > > Could you disclose more details about how to implement the "incremental steps" > to handle more
2011 Dec 07
1
[LLVMdev] tbaa
Dan, Thanks for clarifying. This makes perfect sense. Gan >> Makes sense. In that case, it would give the expected answers if >> clang was enhanced to properly deal with similar/dissimilar pointer >> types, instead of giving all pointer types the "everything" tag :) > > No, you've confused pointer types with pointee types. That "any pointer"
2003 Apr 24
1
duplicate password prompt
I'm running samba 2.2.8a on a redhat 9 box, everything works great, but ever since I playd with the system-auth I now have to enter a password in twice when I logon to the console. Any one got any ideas ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Iwan Davies Server Support and Development Technician Cyngor Sir Ceredigion County Council IT Section Finance iwandav@ceredigion.gov.uk
2011 Nov 03
0
[LLVMdev] Alias Analysis Problem in LICM
On 11/3/11 4:07 PM, Gan wrote: > Hi, > > [snip] > > Since the "Anderson" alias analysis code is already moved out from > LLVM, we can only count > on BasicAA and TBAA for all alias analysis problems at this moment. > But these two piece of code > can only do very limited alias analysis and would become a big > performance bottleneck to > other
2009 Jun 02
1
plot 4th variable contour lines on filled.contour
Hello, I have a dataset with 4 variables, each consisting of a vector, all with the same length. I start by interpolating the first three variables using the function "interp", and plot the interpolation successfully using "filled.contour". I then interpolate the first two variables and a fourth using "interp" again, but when I try to overlay the contour lines
2011 Nov 04
2
[LLVMdev] Alias Analysis Problem in LICM
On 11/4/2011 3:29 AM, Nick Lewycky wrote: > I suspect that GCC is doing option 2, or something else I haven't > thought of (TBAA? if so, why doesn't our TBAA do as well?). Nick, The problem is that LLVM's implementation of TBAA does not distinguish between these two types: i32*** @AAA and i32** %arrayidx. We believe that type based alias analysis should, in general, be able
2011 Nov 04
0
[LLVMdev] Alias Analysis Problem in LICM
On Nov 4, 2011, at 8:37 AM, Anshuman Dasgupta wrote: > On 11/4/2011 3:29 AM, Nick Lewycky wrote: >> I suspect that GCC is doing option 2, or something else I haven't >> thought of (TBAA? if so, why doesn't our TBAA do as well?). > > Nick, > > The problem is that LLVM's implementation of TBAA does not distinguish > between these two types: i32*** @AAA
2011 Dec 06
0
[LLVMdev] tbaa
On Mon, Dec 5, 2011 at 11:08 PM, <liyi at cs.toronto.edu> wrote: >> On Dec 5, 2011, at 6:04 PM, Daniel Berlin wrote: >>> >>> Yet, aa-eval still says otherwise. >> >> The problem is with aa-eval. It collects all the pointer values in a >> function, and then just makes a bunch of raw pointer queries, rather than >> considering dereferences. TBAA
2011 Dec 06
0
[LLVMdev] tbaa
On Dec 5, 2011, at 9:32 PM, Daniel Berlin wrote: > On Mon, Dec 5, 2011 at 11:01 PM, Dan Gohman <gohman at apple.com> wrote: >> On Dec 5, 2011, at 6:04 PM, Daniel Berlin wrote: >>> >>> Yet, aa-eval still says otherwise. >> >> The problem is with aa-eval. It collects all the pointer values in a >> function, and then just makes a bunch of raw
2020 Apr 23
0
[PATCH 40/70] x86/sev-es: Setup per-cpu GHCBs for the runtime handler
On Wed, Apr 22, 2020 at 06:33:13PM -0700, Bo Gan wrote: > On 4/15/20 8:53 AM, Joerg Roedel wrote: > > Hi Mike, > > > > On Tue, Apr 14, 2020 at 07:03:44PM +0000, Mike Stunes wrote: > > > set_memory_decrypted needs to check the return value. I see it > > > consistently return ENOMEM. I've traced that back to split_large_page > > > in