Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] LLVM"
2010 Apr 11
1
A Hebrew stemmer based on libhspell
Hello.
I'm interested in creating a Hebrew stemmer to use with Xapian. Hebrew is a
complicated language to stem, as it uses the semitic "root" system, rather
than prefixes and suffixes, and has many irregularities in accidence
(morphology).
Fortunately, two bright fellows from the Technion University in Israel have
already created a Hebrew morphological analyzer as part of their
2013 Feb 01
3
[LLVMdev] configure with new target
Hello everyone!
I've started to implement a ColdFire backend, but there are some troubles
during configuring:
$ ../llvm/configure --enable-targets=x86,x86_64,coldfire
...
...
...
checking whether byte ordering is bigendian... no
configure: error: Unrecognized target coldfire
configure: error: ../../../llvm/projects/sample/configure failed for
projects/sample
I've added ColdFire to :
1)
2000 Feb 16
2
Embedding samba...
Hi All,
I am working on a port of Samba to the uClinux/ColdFire system.
This is a port of Linux running on the Motorola ColdFire processors.
These processors have no MMU, so no virtual memory. It also means
that there is no true fork() call, only a vfork() type primitive
is supported. Other than this the fact that there is no MMU is
pretty transparent applications, it looks like any other Linux
2013 Feb 01
0
[LLVMdev] configure with new target
On Fri, Feb 01, 2013 at 04:43:59PM +0200, Vadim Khoptynets wrote:
> Hello everyone!
>
> I've started to implement a ColdFire backend, but there are some troubles
> during configuring:
>
> $ ../llvm/configure --enable-targets=x86,x86_64,coldfire
> ...
> ...
> ...
> checking whether byte ordering is bigendian... no
> configure: error: Unrecognized target
2013 Feb 01
1
[LLVMdev] configure with new target
On Fri, Feb 1, 2013 at 4:01 PM, Tom Stellard <tom at stellard.net> wrote:
> On Fri, Feb 01, 2013 at 04:43:59PM +0200, Vadim Khoptynets wrote:
>> Hello everyone!
>>
>> I've started to implement a ColdFire backend, but there are some troubles
>> during configuring:
>>
>> $ ../llvm/configure --enable-targets=x86,x86_64,coldfire
>> ...
>>
2009 Jun 21
0
Speex AEC for Coldfire
Hi Guys,
I'm attempting to use the libspeexdsp component with a Coldfire M5329. I've downloaded the speex-1.2beta3 and configured using the following:
./configure --host=m68k-uclinux --prefix=/home/uclinux/uClinux-dist --enable-fixed-point LDFLAGS='-Wl,-elf2flt'
The library builds fine (or appears to) an is placed in the subdir 'lib' of the prefix shown above; my routine
2007 Feb 15
0
error during make while installing Linphone-1.5.1
Hi All,
I am getting this error during make.
please help me./
speexec.c: In function `speex_ec_process':
speexec.c:112: syntax error before "noise"
cc1: warnings being treated as errors
speexec.c:133: warning: implicit declaration of function
`speex_echo_state_reset'
speexec.c:148: warning: passing arg 5 of `speex_echo_cancel' makes
pointer from integer without a cast
2013 Feb 13
1
[LLVMdev] Using MSVC _ftol2 runtime function for fptoui on Win32
Hi Joe & Michael,
In rev. 151382 you have changed the fptoui implementation of the x86 codegen for win32.
Before the change fptoui was lowered to
flds 16(%esp)
fisttpll 8(%esp)
movl 8(%esp), %eax
After the change fptoui is lowered to
flds 40(%esp)
calll _ftol2
Please note that the assumption that _ftol2 doesn't modify ECX isn't true on sandybridge platform.
2012 Oct 23
2
Data type in a data frame
Hi all,
How does R know to regard a variable as a factor and not a character?
For example, consider the following table:
Observation Gender Dosage
Alertness
1 m a
8
2 m a
12
3
2012 Oct 29
2
Two-way Random Effects with unbalanced data
Hi there,
I am looking to fit a two-way random effects model to an *unblalanced*
layout,
y_ijk = mu + a_i + b_j + eps_ijk,
i=1,...,R, j=1,...,C, k=1,...,K_ij.
I am interested first of all in estimates for the variance components,
sigsq_a, sigsq_b and sigsq_error.
In the balanced case, there are simple (MM, MLE) estimates for these; In the
unbalanced setup,
2011 Dec 13
1
Mac shortcut for running a script
Hi,
I wonder if there is a mac equivalent to ctrl+r shortcut for running a
script line..
(I am using MAC OS X 10.7.2). I saw this post
http://r.789695.n4.nabble.com/Shortcut-to-run-script-tp1016619p1016619.html
but couldn't find an answer...
Thanks a lot,
Asaf
--
View this message in context: http://r.789695.n4.nabble.com/Mac-shortcut-for-running-a-script-tp4190771p4190771.html
Sent from
2012 Nov 01
1
What does uniroot return when an error occurs
Hi,
I'm using the uniroot function, and would like to detect an error which
occurs, for instance, when the values at endpoints are not of opposite
signs. For example:
uniroot( function(x) x^2+1, lower=1, upper=2 ).
I want to say something like:
if "error in uniroot(...)" return NA else return uniroot$root
Thanks a lot!
Asaf
--
View this message in context:
2007 Feb 15
0
error during make while installing Linphone-1.5.1
Hi All,
I am getting this error during make.
please help me./
speexec.c: In function `speex_ec_process':
speexec.c:112: syntax error before "noise"
cc1: warnings being treated as errors
speexec.c:133: warning: implicit declaration of function
`speex_echo_state_reset'
speexec.c:148: warning: passing arg 5 of `speex_echo_cancel' makes
pointer from integer without a cast
2011 Nov 01
1
predict for a cv.glmnet returns an error
Hi there,
I am trying to use predict() with an object returned by cv.glmnet(), and get
the following error:
no applicable method for 'predict' applied to an object of class "cv.glmnet"
What's wrong?
my code:
x=matrix(rnorm(100*20),100,20)
y=rnorm(100)
cv.fit=cv.glmnet(x,y)
predict(cv.fit,newx=x[1:5,])
coef(cv.fit)
Thanks so much,
Asaf
--
View this message in context:
2005 Aug 03
2
Ogg Vorbis on DSP platform?
Hello,
I'd like to develop a codec for the Ogg Vorbis algorithm on a DSP
(controller?) hardware platform.
We've got 2 (3) main applications:
1) the codec should be used for 2 channel simultaneous message
recording/playback on flash EPROM.
2) the codec should be used for streaming audio over IP or Ethernet/intranet
networks.
3) for large system, the PC should serve as a storing device
We
2007 Apr 18
4
[Bridge] Is bridgeing possible with kernel 2.6.10
Hi
I didn't get bridgeing to work with Linux kernel 2.6.10 (coldfire 5485)
yet. When i try to configure bridgeing
with "brctl", everything seems to be ok, but i if i try to ping through
my bridge, i see ARP-Request arriving on the other side, but the
ARP-Responses do not go back through the bridge.
Now i could read in
2024 Jul 31
0
[merged] fsi-add-missing-module_description-macros.patch removed from -mm tree
The quilt patch titled
Subject: fsi: add missing MODULE_DESCRIPTION() macros
has been removed from the -mm tree. Its filename was
fsi-add-missing-module_description-macros.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
From: Jeff Johnson <quic_jjohnson at quicinc.com>
Subject: fsi: add
2010 Aug 21
1
dsync and active-active fault tolerance mail servers
I would like to set up an active-active fault tolerance couple of mail servers.
Is the following procedure correct?
Let's suppose I want to set up two servers for acme.com, mail1.acme.com and
mail2.acme.com
I declare both servers as MX in DNS configuration.
Mailbox are stored in maildir with a single UID/GID owner for all the maildir files
Userbase is MySQL, user tables are replicated
2013 Mar 03
2
[LLVMdev] trouble with AsmPrinter registration
Hello everyone!
Could somebody, advice me what's wrong with my AsmPrinter? I've created
ColdFireAsmPrinter.cpp file, and added initialization:
extern "C" void LLVMInitializeColdFireAsmPrinter() {
RegisterAsmPrinter<ColdFireAsmPrinter> X(TheColdFireTarget);
}
But, unfortunately, after build AsmPrinters.def doesn't contain
LLVM_ASM_PRINTER(ColdFire). Maybe I've
2007 May 22
2
Testing for 1.2beta2
Dan Everton a ?crit :
> Just one minor issue while building for ARM4 targets. The prototype for
> the normalize16 function hasn't been updated in filters_arm4.h. The
> attached patch should fix that.
Patch applied. Thanks. In case you're interested, there's plenty of ARM4
optimisations that need to be updated (since 1.1.12) :-)
> Apart from that, the 1.2beta2 release is