similar to: filenames

Displaying 20 results from an estimated 200 matches similar to: "filenames"

2016 Mar 24
4
attribute of intrinsic function
Hi, When I define an intrinsic function with memory write permission, my assumption is that we can either attach [IntrReadWriteArgMem] or [] to the intrinsic function. Based on the comment of the source code , "IntrReadWriteArgMem - This intrinsic reads and writes only from memory that one of its arguments points to, but may access an unspecified amount." "If no property is set,
2016 Mar 24
0
attribute of intrinsic function
> On Mar 24, 2016, at 12:45 PM, Xiangyang Guo via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi, > > When I define an intrinsic function with memory write permission, my assumption is that we can either attach [IntrReadWriteArgMem] or [] to the intrinsic function. Based on the comment of the source code , "IntrReadWriteArgMem - This intrinsic reads and writes
2016 Mar 24
0
attribute of intrinsic function
On 03/24/2016 12:45 PM, Xiangyang Guo via llvm-dev wrote: > Hi, > > When I define an intrinsic function with memory write permission, my > assumption is that we can either attach [IntrReadWriteArgMem] or [] to > the intrinsic function. Based on the comment of the source code , > "IntrReadWriteArgMem - This intrinsic reads and writes only from > memory that one of its
2016 Mar 25
1
attribute of intrinsic function
Thanks for your reply, Philip. You are right, when I use LLVM-3.8, the 'argmemonly' shows up. Previously, I use LLVM-3.7. I think idempotent is what I want. Can you tell me how to add idempotent attribute to the function? Thanks. Regards, Xiangyang 2016-03-24 14:30 GMT-07:00 Philip Reames <listmail at philipreames.com>: > > > On 03/24/2016 12:45 PM, Xiangyang Guo via
2010 Nov 10
3
create a pairwise coocurrence matrix
Hi all, I am trying to construct a pairwise coocurrence matrix for certain terms appearing in a number of documents. For example I have the following table with binary values showing the presence or absence of a certain term in a document: term1 term2 term3 term4 term5 doc1 1 1 0 0 1 doc2 1 1 0 1 1 doc3 1 0 0 0 1 And I want to have a matrix with the number of the pairwise coocurrencies. So,
2012 Oct 19
4
[LLVMdev] How to represent __attribute__((fastcall)) functions in the IL
Functions with __attribute__((fastcall)) pop their arguments and take up to two arguments in ecx and edx. Currently we represent them by just setting the x86_fastcallcc calling convention. The problem is that the ABI has some strange conventions on when a register is used or not. For example: void __attribute__((fastcall)) foo1(int y); will take 'y' in ecx, but struct S1 { int x; };
2013 Aug 27
1
Interconnect Radio units using asterisk
Hi all, This my first mail in the community. My name is Manolo. I'm new in Asterisk. My objective is to control some radio using Asterisk via web. In google I could see that the application app_rpt had this goal, but currently is not in the new Asterisk 1.8 or higher. Thinking in future, I thought the easer way to do that is to buy some RoIP unit and do the communication with
2012 Jul 17
1
problem with function
Dear list, I have a problem with defining a function (see below) to read my testfile (see testfile). My function only returns mydata I wish to work with attr(mydata, 'fc') as well (for labelling a plot). Principally it works if I do not insist on this function but it would be much easer if it is possible to return mydata AND attr(mydata, 'fc') by using a function. 1) testfile:
2007 Jun 07
2
[LLVMdev] How to call native functions from bytecode run in JIT?
Hello, can anyone help me calling native functions from LLVM-Bytecode functions run in the JIT? I have a program which creates an LLVM execution engine and adds modules and functions to it on the fly. I need to call some native functions of my program from bytecode functions which causes some troubles as it appears not to be documented. My test scenario works like the following: I have
2002 Dec 17
3
flac with ogg metadata to ogg vorbis transcode, new release of vorbis-tools?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hi Is there any tool out there wich allows you to use a flac file with ogg metadata as an the file of origin and converts its to an ogg.vorbis file without losing any of the metadata tag, I know there is a perl script wich does something similar but it keeps the metadata in separate files, basicly what I am asking is if there is any application that
2002 Dec 17
3
flac with ogg metadata to ogg vorbis transcode, new release of vorbis-tools?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hi Is there any tool out there wich allows you to use a flac file with ogg metadata as an the file of origin and converts its to an ogg.vorbis file without losing any of the metadata tag, I know there is a perl script wich does something similar but it keeps the metadata in separate files, basicly what I am asking is if there is any application that
2011 Nov 09
0
Revolutions Blog: October Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of October: The creator of the ggplot2 package, Hadley Wickham, shares details on some forthcoming big-data graphics
2009 Dec 21
26
Questions on qcow, qcow2 versus LVM
I''ve been using lvm under centos to create the backing store for domUs and although the performance seems acceptable it has some shortcomings. The biggest of which is the LVM bug which prevents me from removing an lv (it says it is still mounted and it definitely isnt). I thought this was just a centos bug but it appears to be evident in debian and ubuntu too and I really can''t
2020 Mar 21
4
questionabout loop rotation
Hi Stefanos, Thanks for your comments. I added both as reviewer. > One question though. Are you sure that this: > This helps with LICM when instructions inside a conditional is loop invariantĀ  > is not achieved with the current LoopRotate pass? Because AFAIK, it does. Basically it inserts > a guard (that branches to the preheader) and then passes like LICM hoist invariant
2010 May 21
3
SSH service not getting restarted
Hi, I have this in my sshdconfig module''s init.pp but the service is not getting restarted even though at first connect the file sshd_config is getting modified with the Banner entry. Can someone please help? class sshdconfig { file { "/etc/ssh/sshd_config": path => "/etc/ssh/sshd_config", owner => root,
2010 Apr 24
4
assign value between different type: Double vs Integer
Dear list, just to put it in a simple way: i read.csv from csv file to create a gdata then, create array gdata34 however, when making a loop for assigning gdata34[1,m]<-gdata[m,4], this is what happen gdata[1,4] 's real value is 10354, however, the gdata34[1,4] turns to be 883 then i checked the type: gdata[1,4] is integer, while gdata34[1,4] is double. Can any one give me some help
2004 Jun 11
5
Re: FW: problems installing wxruby
Jeremy Stell-Smith wrote: > Thanks a lot for the help, guys. I''m up and running with 2.4.2, but I > did have a few questions. Excellent. > So first, a friend and I basically have this month to dedicate to trying > to get a ruby ide pilot built on top of wxRuby. So, no, I really can''t > wait a few weeks to start. Any chance you could commit changes into cvs
2013 Aug 13
1
[Bug 843] New: ipset swap doesn't behave as expected
https://bugzilla.netfilter.org/show_bug.cgi?id=843 Summary: ipset swap doesn't behave as expected Product: ipset Version: unspecified Platform: All OS/Version: All Status: NEW Severity: minor Priority: P5 Component: default AssignedTo: netfilter-buglog at lists.netfilter.org ReportedBy:
2013 Mar 26
1
Possible memory leak in qemu-dm when Xen USB Passthrough is used
Hello, [please CC me] Recently I have reported a Debian bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703430 Possible memory leak in qemu-dm when Xen USB Passthrough is used I wonder if somebody encountered such behaviour or how can I debug it farther ? Best Regards, T
2008 May 08
5
Debian....0.9.61.... and crooked hands
Because from times of 0.9.58 version nobody makes packages for Debian, I decided to compile 61st ver myself... Compiling passed smoothly. But there are no Russian fonts. In place of the Russian letters there are rectangles. Amount of startable programs diminished notedly... Can you explain how to manage with fonts.... What libraries are needed for complete wine compilation?... And why