Displaying 20 results from an estimated 100 matches similar to: "Similarity matching with probabilities"
2016 Jun 05
2
What kind of testcases should be required to test IPRA?
Hello Mehdi Amini,
Sorry for slow progress this week but it was due to interesting mistake of
mine. I had build llvm with ipra enable by default and that build files
were on my path ! Due to that next time I tried to build llvm it was
terribly slow (almost 1 hour for 10% build ). I spend to much time on
fixing this by playing around with environment variables, cmake options etc.
But I think this
2016 Jun 05
2
What kind of testcases should be required to test IPRA?
On Sun, Jun 5, 2016 at 8:56 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> > On Jun 4, 2016, at 7:56 PM, vivek pandya <vivekvpandya at gmail.com> wrote:
> >
> > Hello Mehdi Amini,
> >
> > Sorry for slow progress this week but it was due to interesting mistake
> of mine. I had build llvm with ipra enable by default and that build files
>
2016 Jun 05
2
What kind of testcases should be required to test IPRA?
On Sun, Jun 5, 2016 at 9:15 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> On Jun 4, 2016, at 8:32 PM, vivek pandya <vivekvpandya at gmail.com> wrote:
>
>
>
> On Sun, Jun 5, 2016 at 8:56 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>>
>> > On Jun 4, 2016, at 7:56 PM, vivek pandya <vivekvpandya at gmail.com>
>> wrote:
2015 Jul 07
4
procesamiento de textos con R
Buenos días,
quisiera saber si existe algún paquete en R para procesamiento de texto,
búsqueda de similitudes y ese tipo de cosas. He estado buscando pero no he
encontrado nada al respecto.
Gracias
Un saludo
[[alternative HTML version deleted]]
2016 Jun 02
2
What kind of testcases should be required to test IPRA?
Dear Mentors,
I will be writing test cases for IPRA for lit infrastructure.
Following 2 basic test cases I have identified :
Program that does not have recursive function call.
Program that does have recursive calls.
Please suggest some other test cases or provide some hints.
Sincerely,
Vivek
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2016 Jun 12
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
Dear Community,
The patch for Interprocedural Register Allocation has been committed now ,
thanks to Mehdi Amini for that. We would like you to play with it and let
us know your views and more importantly ideas to improve it.
The test-suite run has indicated some non trivial issue that results in run
time failure of the programs, we will be investigating it more. Here are
some stats :
2016 May 28
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
Dear community,
This is to brief you the progress of Interprocedural Register Allocation,
for those who are interested to see the progress in terms of code please
consider http://reviews.llvm.org/D20769
This patch contains simple infrastructure to propagate register usage
information of callee to caller in call graph. The code generation order is
changed to follow bottom up order on call graph ,
2016 Jun 15
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
On Wed, Jun 15, 2016 at 6:16 AM, Quentin Colombet <qcolombet at apple.com>
wrote:
> Hi Vivek,
>
> How much of the slow down on runtime comes from the different layout of
> the function in the asm file? (I.e., because of the dummy scc pass.)
>
> Hello Quentin,
Please do not consider previous results as there was a major bug in RegMask
calculation due to not considering
2007 Sep 28
0
DTM Cient on DomU Vista 64 and Vista 32 fails
Xen-system
AMD x64 2GB Memory installed with
Domain 0 Linux Fedora 7 + Xen 3.1 + 2.6.18-xen i386
Domain 0 Linux Fedora 7 + Xen 3.1 + 2.6.18-xen x64
HVM -
Vista 32 Ultimate + xenbus
Vista 64 Ultimate + xenbus
The DTM studio/controller was based on microsoft WLK 1.0c + update fileter
patch (MS logo kit filter update every day) for more detail please
2011 Oct 16
0
[LLVMdev] llvm and stream error
Here is the code of the functions:
int getStream()
{
int fd = _dup(fileno(stdout));
freopen("tmp","w",stdout);
return fd;
}
void freeStream(int fd)
{
_dup2(fd,fileno(stdout));
close(fd);
}
The code of main program:
printf(“start tets”);
int fd = getStream();
printf(“redirection”);
freeStream(fd);
This is a part of
2016 Jun 19
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
Dear Community,
Please find summary of work done during this week as follow:
Implementation:
============
During this week we have identified a bug in IPRA due to not considering
RegMask of function calls in given machine function. The same bug on
AArch64 has been reported by Chad Rosier and more detailed description can
be found at https://llvm.org/bugs/show_bug.cgi?id=28144 . To fix this bug
2013 Jan 10
1
Fixing corrupt flac files
Here you are:
soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ metaflac --list 02\
St?rtebecker.flac
METADATA block #0
type: 0 (STREAMINFO)
is last: false
length: 34
minimum blocksize: 4608 samples
maximum blocksize: 4608 samples
minimum framesize: 14 bytes
maximum framesize: 15637 bytes
sample_rate: 44100 Hz
channels: 2
bits-per-sample: 16
total samples: 5857656
2013 Jun 25
5
How can C++ read the R object written into socket with saveRDS or save
Hi, all,
Recently, I met one issue when using socket between R & C++ to transmit R
object. Would you pls help give me some suggestions? Many thanks!
[Background]:
I create a socket connection between R & C++ binary first, and then, want
to use saveRDS() or save() in R to save the object into connection
directly. So that the C++ binary can read the object, and send it to
another remote R.
2013 Jun 25
5
How can C++ read the R object written into socket with saveRDS or save
Hi, all,
Recently, I met one issue when using socket between R & C++ to transmit R
object. Would you pls help give me some suggestions? Many thanks!
[Background]:
I create a socket connection between R & C++ binary first, and then, want
to use saveRDS() or save() in R to save the object into connection
directly. So that the C++ binary can read the object, and send it to
another remote R.
2013 Jul 02
3
Ctrl+C in R will terminate the child process which is spawned by using "pipe"
Hi, all,
I pressed Ctrl+C in R process, and found that the child process which was
spawned by using "pipe" is terminated due to this.
Are there any way to work around it, so that the child process can run
happily without being terminated? Or can we block the signal for the child
process?
1. I used pipe to spawn one C++ process, which will running in a loop
without exiting immediately.
2005 Dec 22
2
Samba 3.0.21 + PANIC: internal error + lib/fault.c
Hi,
yesterday I compiled an installed samba 3.0.21 on a solaris 8 box (gcc
3.4.2). Since then I frequently see this error message in the log.
[2005/12/22 15:55:39, 0] lib/fault.c:fault_report(36)
===============================================================
[2005/12/22 15:55:39, 0] lib/fault.c:fault_report(37)
INTERNAL ERROR: Signal 10 in pid 27816 (3.0.21)
Please read the
2015 Jan 13
6
Request for help with UBSAN and total absense of CRAN response
CRAN has a package of mine in upload limbo because it failed UBSAN.
I am not entirely ignorant on the topic of sanitizers and SAN / ASAN / UBSAN;
we created not one but two Docker containers with ASAN and USBAN:
https://registry.hub.docker.com/u/rocker/r-devel-san/
https://registry.hub.docker.com/u/rocker/r-devel-ubsan-clang/
as well as predecessors to them in earlier Docker repos.
Yet I
2013 Jan 10
4
Fixing corrupt flac files
So, let's provide some information then :-)
----------------------------------------------------------------------------------------------
soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ flac -aF 02\
St?rtebecker.flac
flac 1.2.1, Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome
2006 Jul 30
1
PDF to HTML converter for Ruby?
Does anyone know of a good package that can convert a PDF into HTML?
Cross-platform compatible is a plus, but I can live with Linux-only if
it comes to that.
--
Posted via http://www.ruby-forum.com/.
2017 Jan 30
2
Fwd: Can somebody explain the file ownership of a
Hi All,
We're implementing a fully integrated Samba setup with the Active directory
on IBM AIX. From AIX level we have established the single sign on against
Windows AD 2012R2. Currently the following user accounts and groups exists
on the AD domain.
# cat /etc/samba/smb.conf
[global]
security = ADS
workgroup = PAPERCLIP
realm = PAPERCLIP.SC.NZ