Displaying 20 results from an estimated 62 matches for "giacomo".
2013 May 09
2
[LLVMdev] LoopPass symbol error
Thanks,
Also, every method inherited by LoopBase causes the same error, while Loop
methods go smooth.
On 9 May 2013 01:05, Andrew Trick <atrick at apple.com> wrote:
>
> On May 8, 2013, at 7:43 PM, Giacomo Tagliabue <giacomo.tag at gmail.com>
> wrote:
>
> Hello,
> I am building a loop pass following these instructions:
> http://llvm.org/docs/WritingAnLLVMPass.html
> Everything works fine, I did it many times for Function Passes, but in the
> runOnLoopmethod, whenever I cal...
2013 May 09
0
[LLVMdev] LoopPass symbol error
Wow, commenting those two lines worked out fine for me, thanks!
On 9 May 2013 09:34, Giacomo Tagliabue <giacomo.tag at gmail.com> wrote:
> Thanks,
> Also, every method inherited by LoopBase causes the same error, while Loop
> methods go smooth.
>
>
> On 9 May 2013 01:05, Andrew Trick <atrick at apple.com> wrote:
>
>>
>> On May 8, 2013, at 7:43...
2013 May 09
2
[LLVMdev] LoopPass symbol error
...ese instructions:
http://llvm.org/docs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the
runOnLoopmethod, whenever I call a method of the loop L passed as argument,
for example L->begin(), I get the following error:
opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so:
> undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
Where Acsl is the name of the loadable module. If I remove all the
instructions from runOnPass but a debug print, it works fine (it prints
it), so the problem is not the module.
Does a...
2013 May 09
0
[LLVMdev] LoopPass symbol error
On May 8, 2013, at 7:43 PM, Giacomo Tagliabue <giacomo.tag at gmail.com> wrote:
> Hello,
> I am building a loop pass following these instructions: http://llvm.org/docs/WritingAnLLVMPass.html
> Everything works fine, I did it many times for Function Passes, but in the runOnLoopmethod, whenever I call a method of the lo...
2013 May 01
1
[LLVMdev] undefined symbol for LoopPass
...se instructions:
http://llvm.org/docs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the
runOnPass method, whenever I call a method of the loop L passed as
argument, for example L->begin(), I get the following error:
opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so:
> undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
Where Acsl is the name of the loadable module. If I remove all the
instructions from runOnPass but a debug print, it works fine (it prints
it), so the problem is not the module.
Does a...
2013 Jan 15
4
Use of CentOS name and logo
Hi.
my name is Giacomo Sanchietti and I'm working for a company called Nethesis.
We are working on a CentOS derived distribution like SME Server.
It's a minimal CentOS with a software layer on top to add a web
configuration interface.
The CD iso, it's a CentOS minimal CD with some extras packages from
cen...
2019 Jan 21
2
assertion failed: (srcleft <= CHARSET_MAX_PENDING_BUF_SIZE)
I've just enabled core dumps on the involved FreeBSD system. Let's see if
it dumps something..
Il giorno dom 20 gen 2019 alle ore 19:16 Stephan Bosch <stephan at rename-it.nl>
ha scritto:
> Hi Giacomo,
>
> Op 21/12/2018 om 16:16 schreef Giacomo:
> > The bug happens not very often, it might need a week to get a core file.
>
> Any luck getting a core file?
>
> Regards,
>
> Stephan.
> >
> >
> > Il giorno ven 21 dic 2018 alle ore 15:18 Aki Tuomi
> &...
2006 Apr 14
4
how to count the columns of a data.frame
Hi,
I would like to count the columns of a data.frame. I know how to count the rows, but not the columns.
Can someone tell me how to do it?
My best regards,
Giacomo Moro
---------------------------------
[[alternative HTML version deleted]]
2019 Feb 11
1
assertion failed: (srcleft <= CHARSET_MAX_PENDING_BUF_SIZE)
Op 9-2-2019 om 19:27 schreef Giacomo via dovecot:
> I got a core file this morning.
>
> opening it with gdb I get this:
>
> (gdb) core imap.core
> Core was generated by `dovecot/imap'.
> Program terminated with signal 6, Aborted.
> #0? 0x0000000011c1347a in ?? ()
> (gdb) bt
> #0? 0x0000000011c1347a in...
2005 Sep 26
1
create trend variable in a regression using R
Hi,
my name is Giacomo.
I would like to know how to create a Trend variable in a regression using R.
Thank you for your help.
My best regards,
Giacomo
---------------------------------
[[alternative HTML version deleted]]
2004 Nov 12
2
Simple operation on a subset of data
...file)
attach(data)
Say x=1,2 and y=4,5 I want to summarize z only if x=1 & y=4. I thought
that the way to do that would be to
write if((x=1) & (y=4)) summary(z)
butwhen I do this the result I get is for the whole data (irrespective
of the conditions imposed). Can anyone help?
Thanks
Giacomo
[[alternative HTML version deleted]]
2005 Oct 15
2
regression using a lagged dependent variable as explanatory variable
...iable in this way: ly<-lag(y, -1)
Now if I do the following regression lm (y ~ x + ly) the results I obtain are not correct.
Can someone tell me the code to use in R in order to perform a regression using as explanatory variable a lagged dependent variable?
My best regards,
Giacomo
---------------------------------
[[alternative HTML version deleted]]
2013 Apr 05
1
[LLVMdev] Z3 and loadable optimization
I think I am in the first case, but I don't understand something, the -load
option during which command? opt? and which file should I load? libz3.so?
On 5 April 2013 15:32, John Criswell <criswell at illinois.edu> wrote:
> On 4/5/13 3:16 PM, Giacomo Tagliabue wrote:
>
> I created a loadable optimization following the tutorial at
> http://llvm.org/docs/WritingAnLLVMPass.html. I want to use the Z3
> library, installed in my system, in my optimization. When I include z3++.h
> (the name of the library) in the code and use its classe...
2013 Apr 05
2
[LLVMdev] Z3 and loadable optimization
...torial at
http://llvm.org/docs/WritingAnLLVMPass.html. I want to use the Z3 library,
installed in my system, in my optimization. When I include z3++.h (the name
of the library) in the code and use its classes, it compiles well, but when
I try to run it it says:
> opt: symbol lookup error: /home/giacomo/llvm/Debug+Asserts/lib/Acsl.so:
> undefined symbol: Z3_mk_config
>
What's the issue?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130405/bdb9cbee/attachment.html>
2018 Dec 21
2
assertion failed: (srcleft <= CHARSET_MAX_PENDING_BUF_SIZE)
The bug happens not very often, it might need a week to get a core file.
Il giorno ven 21 dic 2018 alle ore 15:18 Aki Tuomi <
aki.tuomi at open-xchange.com> ha scritto:
>
> On 21.12.2018 14.49, Giacomo wrote:
> > I'm running the following:
> >
> > # 2.3.4 (0ecbaf23d): /usr/local/etc/dovecot/dovecot.conf
> > # OS: FreeBSD 11.2-RELEASE-p4 amd64
> > # FS: ZFS
> >
> > auth_mechanisms = plain login
> > auth_username_format = %Ln
> > listen = *...
2018 Nov 29
4
samba_dnsupdate REFUSED between Samba4 AD DC and Win 2008r2
Il 29/11/2018 15:22, Rowland Penny via samba ha scritto:
> On Thu, 29 Nov 2018 15:03:03 +0100
> "L.P.H. van Belle via samba" <samba at lists.samba.org> wrote:
>
>> You dns keytab looks strange, my be due to manual changes..
> It looks strange because there is one of these missing:
>
> 1 DNS/mysamba4dc.mydomain.com at MYDOMAIN.COM
>
> Could be cut &
2004 Feb 17
1
LDAP configuration
...also noticed that if I try connecting to an account that doesn't contain
a real maildir (es. maildir:%h/.mail, but .mail doesn't exist), the imap
segv's.
I suppose it would be cool to ship a maildirmake program and have imap use
it whenever necessary, if a flag allows it to do so.
Giacomo Cariello, jwk at bug.it
KeyID: 3072/1024/0x409C9044
Fingerprint: 7984 10FD 0460 4202 BF90 3881 CDE4 D78E 409C 9044
"Put that mic in my hand and let me kick out the jams!" - MC5
2008 Oct 27
7
Fujitsu Siemens PRIMERGY RX300
...ot the xvm kernel on this hardware.
I added the -k option in grub, but the system hangs before the hostname line without any debug info.
I''ve tried snv from b94 to b99, with the same results.
If I install Debian with xen kernel I am able to use pvm and hvm guests.
What can I do ?
thanks
Giacomo
--
This message posted from opensolaris.org
2013 Apr 05
0
[LLVMdev] Z3 and loadable optimization
On 4/5/13 3:16 PM, Giacomo Tagliabue wrote:
> I created a loadable optimization following the tutorial at
> http://llvm.org/docs/WritingAnLLVMPass.html. I want to use the Z3
> library, installed in my system, in my optimization. When I include
> z3++.h (the name of the library) in the code and use its classes,...
2019 Feb 09
0
assertion failed: (srcleft <= CHARSET_MAX_PENDING_BUF_SIZE)
...?? ()
#1 0x0000000011c13444 in ?? ()
#2 0x0000000000018dee in ?? ()
#3 0x306db139575f3b0d in ?? ()
#4 0x00007fffffffc144 in ?? ()
#5 0x0000000000000000 in ?? ()
Doesn't look clean at all.
let me know if I should upload the file somewhere.
Thanks
Il giorno lun 21 gen 2019 alle ore 08:52 Giacomo <giacomo1989 at gmail.com> ha
scritto:
> I've just enabled core dumps on the involved FreeBSD system. Let's see if
> it dumps something..
>
> Il giorno dom 20 gen 2019 alle ore 19:16 Stephan Bosch <
> stephan at rename-it.nl> ha scritto:
>
>> Hi Giacomo,...