Displaying 20 results from an estimated 1000 matches similar to: "Are there any digital phones that runon asteriskyet?"
2004 Nov 05
1
Error message from vignette strucchange-intro example
Hello,
I am just studying the following example from vignette:
strucchange-intro,
contineousely ending up in an error.
This is the given code:
1. library(strucchange)
2. data(USIncExp)
3. if (!"package:stats" %in% search()) library(ts)
4. USIncExp2 <- window(USIncExp, start = c(1985, 12))
A.Modelling:
coint.res <- residuals(lm(expenditure ~ income, data = USIncExp2))
2008 Dec 04
0
[LLVMdev] optimization whith call of Intrinsics
On Thu, Dec 4, 2008 at 7:38 AM, Julien Schmitt <jschmitt at dibcom.fr> wrote:
> Dear LLVMer ;
>
> i'm trying to use LLVM for a specific target, using different memory banks.
> I have written the frontend to generate a valid IR and want to use the
> existing passes (as defined in tool opt) to optimize the code.
>
> The target has specific instructions, so following
2008 Dec 04
2
[LLVMdev] optimization whith call of Intrinsics
Dear LLVMer ;
i'm trying to use LLVM for a specific target, using different memory banks.
I have written the frontend to generate a valid IR and want to use the
existing passes (as defined in tool opt) to optimize the code.
The target has specific instructions, so following advices given in
documentation, I created an intrinsic function, with attribute
[IntrReadArgMem].
My test case is
2005 Aug 16
1
Fwd: Documenting data sets with many variables
Hi,
since nobody answered to my first message, I try to explain my problem more
clearly and more general this time:
I have a data set in my R package "micEcon", which has many variables (82).
Therefore, I would like to avoid to describe all variables in the "\format"
section of the documentation (.Rd file). However, doing this lets "R CMD
check" complain about
2017 Nov 03
1
Maria 10 breaks unixodbc mysql connector
I think the solution may exist.
The compatibility of mysql-connector-odbc with maria may just means the
driver can access the mariadb - but my experience suggests not live on the
same host.
maria has its own connector:
https://downloads.mariadb.org/connector-odbc/
it does not look like this is in the sig, so I'll have to turn to the maria
repo.
I'll try replacing the driver first, then
2018 Nov 13
2
Re: [collectd] collectd leaks SIGCHLD == SIG_IGN into plugins
Hi,
thank you very much for reporting this! Sounds like a bug in the exec plugin –
it never ceases to amaze me how many issues a single plugin can have ;)
> > > This means that any plugin that does the usual pattern of:
> > >
> > > pid = fork ();
Note that the exec plugin is the *only* plugin that does this. All other
plugins are forbidden to fork(), popen() or
2009 Jan 24
1
Patch to always install libupsclient-config
Hi,
when building with the WITH_DEV conditional, either `libupsclient.pc'
*or* `libupsclient-config' is installed. This is annoying when linking
with libupsclient, because you basically have to do the check twice,
once using `pkg-config' and once using `libupsclient-config'.
Please consider the attached patch, which changes the behavior of
`lib/Makefile.am' to install
2003 Apr 10
1
regchrome causes segfault during Mozilla build
>Submitter-Id: current-users
>Originator: Dr. Otacon
>Organization: Skimask Ninjas
>Confidential: no
>Synopsis: regchrome causes segfault during Mozilla build
>Severity: critical
>Priority: high
>Category: ports
>Class: sw-bug
>Release: FreeBSD 4.8-STABLE i386
>Environment:
System: FreeBSD octo.sytes.net 4.8-STABLE FreeBSD 4.8-STABLE #4: Wed Apr 9 14:48:08 MDT
2012 Jul 31
3
Help with NaN when 0 divided by 0
Hi All,
I have some data where I am doing fairly simple calculations, nothing more
than adding, subtracting, multiplying and dividing.
I’m running into a problem when I divide one variable by another and when
they’re both 0 I get NaN. I realize that if you divide a non-zero by 0 then
you get Inf, which is, of course, correct. But in my case I never get Inf,
just NaN because of the structure
2007 Sep 04
2
Unresolved variable in `libupsclient-config'
Tags: patch, upstream
Hi,
when configuring nut 2.2.0 the variable/symbol `@SSL_LDFLAGS@' is not
resolved by the libupsclient-config script. The attached patch changes
`@SSL_CFLAGS@' to `@LIBSSL_CFLAGS@'
`@SSL_LDFLAGS@' to `@LIBSSL_LDFLAGS@'
which should solve this issue.
Regards,
-octo
--
Florian octo Forster
Hacker in training
GnuPG: 0x91523C3D
http://verplant.org/
2005 May 04
1
Double hurdle model in R
I am interested in utilizing this so called "double hurdle" model
in my study. We can write the model in the following way:
if (z'a + u > 0 & x'b + e > 0) y = x'b + e, else y = 0
In the model, consumption y is the (left-) censored dependent variable. e
and u are the normally distributed error terms. z'a is the participation
equation and x'b is the
2011 Jul 26
2
[LLVMdev] XOR Optimization
Hi-
> I haven't seen a machine in which OR is faster than ADD nor more energy-efficient. They're all done by the same ALU circuitry which delays the pipeline by its worstcase path timing. So, for modern processor hardware purposes, OR is exactly equal ADD. Transforming ADD to OR isn't strenght reduction at all. Maybe this is benefical only if you have a backend generating circuitry
2005 Feb 12
1
What quad/octo BRI cards are best/stable for EuroISDN and Asterisk ?
Hi,
I'm currently deciding on what card to pruchase for octo/quad BRI card to
use with Asterisk on EuroISDN lines.
I'm aware of at least two options (Junghanns or Beronet), but don't know how
stable and well supported they are. Which ones are better supported ? Any
experiences? Any advice ? How tos ?
What would you buy ?
Thanks in advance,
Regards,
Rob.
2011 Jul 26
0
[LLVMdev] XOR Optimization
Hi,
On Tue, Jul 26, 2011 at 11:32 AM, Matt Johnson
<johnso87 at crhc.illinois.edu>wrote:
> Hi Daniel,
>
> > Hi folks,
> >
> > I couldn't find a specific XOR (OR and AND) optimization on llvm, and
> > therefore I am about to implement it.
> > But first I would like to check with you guys that it really does not
> exist.
> >
> > For a
2008 Dec 04
1
[LLVMdev] optimization whith call of Intrinsics
Thanks Eli.
I will try your solution, but then, what is the difference between
[IntrReadArgMem] and
[IntrReadMem] when specifying an intrinsic ? It seems that both options
specify that a function is 'readonly'
(maybe the difference is not well supported for then moment ?)
Julien
> Dead store elimination is that pass that could do the optimizations in
> question. The second
2018 Nov 13
0
Re: [collectd] collectd leaks SIGCHLD == SIG_IGN into plugins
A quick glance shows that the exec plugin actually is clearing the signal mask:
https://github.com/collectd/collectd/blob/master/src/exec.c#L526
Can you give some more context when this problem comes up? Ideally in a Github
issue (hint, hint ;).
--
Florian octo Forster
Hacker in training
GnuPG: 0x0C705A15
http://octo.it/
2011 Jul 26
0
[LLVMdev] XOR Optimization
"The fact that the loop is unrolled explains why the XORs, SHLs, and ORs are
not folded into 1."
I dont see why the unrolling explains it.
"I think he is trying to say this expression generated by unrolling by a
factor of 4 can indeed be folded into a single XOR, SHL and OR. "
Precisely. The code generated by unrolling can be folded into a single XOR
and SHL. And even if it
2007 Oct 16
0
Help with repeated measures!
Hello all,
I'm an R novice, recently trying to implement R in my research. Using the
data frame below, I want to construct a repeated measures model, with energy
expenditure (kjday) as dependent of treatment (code)
using mass as a covariate.
ind mass kjday code
79 15.8 45.216 3
42 16.5 44.64 3
10 14.85 45.216 3
206 15.75 45.216 3
23 12.15 42.336 3
5 14.6 51.264 3
....
79 16.9
1998 Oct 08
0
Premium CABLE TV .......No Monthly Bills!
This is really cool!
PREMIUM CHANNELS........Descrambled!
EASY to assemble plans for only $7.00 !
YOU WILL BE WATCHING all your FAVORITE PAY STATIONS
featuring MOVIES, SPORTS. Adult entertainment,
and any other scrambled signal NEXT WEEK!
You can EASILY assemble a cable descrambler in less
2017 Oct 31
4
Maria 10 breaks unixodbc mysql connector
Thanks for each of your inputs.
It was not a configuration issue as odbcinst.ini does not reference the
mysql subdirectory.
Rather than use Alexander's url, I ran:
yum -y install centos-release-openstack-ocata
yum -y install mariadb-server
...the cloud repository provides the properly pathed file.
# repoquery -l mariadb-server mariadb-libs | grep lib64 | grep
libmysqlclient