Displaying 20 results from an estimated 559 matches for "morten".
Did you mean:
marten
2002 Feb 28
4
pexp.c (PR#1335)
Full_Name: M Welinder
Version: 1.4
OS: (src)
Submission from: (NULL) (192.5.35.38)
It seems to me that pexp can be improved in the lower_tail=TRUE and log_p=FALSE
case by using expm1. Something like
-expm1 (-x / scale);
I think.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2004 Apr 11
3
pcauchy precision (PR#6756)
Full_Name: Morten Welinder
Version: snapshot
OS:
Submission from: (NULL) (65.213.85.129)
Two things are wrong.
1. There is nan test outside IEEE_754.
2. The meat part of the function should really be something like...
if (!lower_tail)
x = -x;
if (fabs (x) > 1) {
double temp = atan (1 / x)...
2007 May 02
13
RSpec 0.8.2 pain, missing spec/rails?
...s". I''ve noticed that "spec/rails" is
part of the rspec plugin, but I''m using the gem and cannot find
spec/rails.rb (it''s required in spec_helper.rb). I''m stuck and banging
my head against the walls. Things fall out.
Any tips much appreciated.
Morten
white:~/svn/novalis morten$ rake spec
(in /Users/morten/svn/novalis)
/opt/local/bin/ruby
-I"/opt/local/lib/ruby/gems/1.8/gems/rspec-0.8.2/lib"
"/opt/local/lib/ruby/gems/1.8/gems/rspec-0.8.2/bin/spec"
"spec/controllers/account_controller_spec.rb"
"spec/control...
2005 May 27
1
qcauchy accuracy (PR#7902)
Full_Name: Morten Welinder
Version: 2.1.0
OS: src only
Submission from: (NULL) (216.223.241.212)
Now that pcauchy has been fixed, it is becoming clear that qcauchy suffers from
the same problems.
qcauchy(pcauchy(1e100,0,1,FALSE,TRUE),0,1,FALSE,TRUE)
should yield 1e100 back, but I get 1.633178e+16. The code...
2004 Oct 22
3
pgamma discontinuity (PR#7307)
Full_Name: Morten Welinder
Version: 2
OS: Solaris/space/gcc2.95.2
Submission from: (NULL) (65.213.85.217)
I changed src/nmath/standalone/test.c to read:
---------------------------------------------------------------------------------
#define MATHLIB_STANDALONE 1
#include <Rmath.h>
#include <stdio.h>...
2002 Sep 23
3
Newbie: Subsets of data frame
....
I assume there is some simpe way of extracting subsets of the data frame for
analysing the time series for just one of the location, but how? I have
tried using various variants of extract, [] and subset, but obiously, I have
missed something, for I have not managed to get out what I want.
--
Morten Sickel
Norwegian Radiation Protection Authority
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body"...
2016 Feb 05
2
MCJit Runtine Performance
Hi Lang,
> MCJIT does not compile lazily (though it sounds like that's not an
issue here?)
That is not an issue here since the code JIT's once (a few secs) and
then run the generated machine code for hours.
> Morten - Can you share any test cases that demonstrate the slowdown.
I'd love to take a look at this.
The code is massive so not practical. However I will try and extract an
example function that demonstrates the difference (as per previous email).
On 05/02/16 11:52, Lang Hames wrote:
> These a...
2016 Feb 05
4
MCJit Runtine Performance
Hi Morten,
Something else just occurred to me: can you share your EngineBuilder configuration lines? (http://llvm.org/docs/doxygen/html/classllvm_1_1EngineBuilder.html)
In particular - are you explicitly setting the optimization level? The old JIT may have had a different default.
- Lang.
Sent from my...
2016 Feb 05
6
MCJit Runtine Performance
----- Original Message -----
> From: "Keno Fischer via llvm-dev" <llvm-dev at lists.llvm.org>
> To: "Morten Brodersen" <Morten.Brodersen at constrainttec.com>
> Cc: "llvm-dev" <llvm-dev at lists.llvm.org>
> Sent: Thursday, February 4, 2016 6:05:29 PM
> Subject: Re: [llvm-dev] MCJit Runtine Performance
>
>
>
> Yes, unfortunately, this is very much known....
2006 Mar 01
6
Same CID on multiple users(friends9 in SIP.conf
...this because we got multiple companies on this Asterisk box.
Company A's internal numbers:
CID: User:
1000 - User 1
2000 - User 2
3000 - User 3
4000 - User 4
Company B's internal numbers:
CID: User:
1000 - User 5
2000 - User 6
3000 - User 7
4000 - User 8
Is this allowed?
Regards
Arne Morten Johansen
2005 Oct 23
7
Which imapd?
Hi. What imapd can you recommend for minimum configuration and
maintenance (no Cyrus)? This is for a small shop, so no hard performance
requirements.
I'd prefer one where I don't have to build my own packages (no Courier,
unless packages exist).
Thanks.
Morten
2007 Nov 11
5
undefined method `add''
...14/vendor/plugins/acts_as_ferret/lib/remote_index.rb:31:in
`<<''
/data/releases/20071111152414/vendor/plugins/acts_as_ferret/lib/instance_methods.rb:73:in
`ferret_create''
I''m running the latest stable version of AAF. Any tips or work arounds
much appreciated.
Morten
2007 Nov 11
6
Reducing dependency on remote ferret process
...e FerretDrb for search. If the ferret process is down, our entire
application comes down the moment we try to save a model which is indexed.
Is there a way to decouple this relationship such that we can somehow
resume normal operations despite ferret being down and not index the model?
Thanks.
Morten
2002 Feb 28
1
pweibull.c (PR#1334)
Full_Name: M Welinder
Version: 1.4
OS: (src)
Submission from: (NULL) (192.5.35.38)
It seems to me that pweibull can be improved in the lower_tail=TRUE and
log_p=FALSE
case by using expm1. Something like
-expm1(-pow(x / scale, shape)),
I think.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read
2016 Feb 05
2
MCJit Runtine Performance
Can you build the code with llc? Try with the large code model. I
think that is the default for MCJIT and can be less efficient.
Cheers,
Rafael
On 4 February 2016 at 22:26, Morten Brodersen via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> Hi Hal,
>
> We are using the default register allocator. I assume the greedy one is
> default?
>
> As for other target machine optimizations:
>
> I have tried:
>
> llvm::TargetMachine* tm = ...;
>
&g...
2016 Feb 05
2
MCJit Runtine Performance
...iling code as part of the generated IR. We
use it for identifying performance bottlenecks in the higher level
(before IR) optimizing stages.
So I think it would be possible for me to identify a function that runs
much slower in 3.7.1. than in 3.5.2. And extract the IR.
Would that help?
Cheers
Morten
On 05/02/16 13:46, Lang Hames wrote:
> Hi Morten,
>
> > Here are the results (for a small but representational run):
>
> That suggests an optimization quality issue, rather than compile-time
> overhead. That's good news - I'd take it as a good sign that the MC
> a...
2011 Dec 05
5
Spec'ing a block
...es off a new process (and set uid to username).
It seems that this won''t catch FileUtils.chmod_R:
FileUtils.should_receive(:chmod_R).with(0755, "#{@domain.directory}/*")
I guess that is because it is passed in the block and fired off in a seperate process (Process.fork).
Mvh
Morten M?ller Riis
2010 Oct 06
2
ggplot2 barplot in decreasing frequency
...b", "cc", "bb")
v3 = c(8, 10, 11, 9, 9, 10)
df = data.frame(v1=v1, v2=v2, v3=v3)
# How can I tell ggplot to sort the bars?
# First bar = "bb" (3), second bar "cc" (2) and third bar "aa" (1)
p = gplot(df)
p + aes(v2) + geom_bar()
Thank you,
Morten
--
View this message in context: http://r.789695.n4.nabble.com/ggplot2-barplot-in-decreasing-frequency-tp2964511p2964511.html
Sent from the R help mailing list archive at Nabble.com.
2012 Feb 12
4
Dovecot 2.0.18 build error with pigeonhole
Hi,
It is probably a problem with pigeonhole 0.2.5.
...
make[3]: *** [managesieve-proxy.o] Error 1
make[3]: *** Waiting for unfinished jobs....
Here is my build log:
http://oss.imt-systems.com/mstevens/temp/build.log
Someone an idea?
Best regards,
Morten
2007 Mar 26
1
Network freezes - possibly yum?
...:00
addons 100% |=========================| 951 B
00:00
extras 100% |=========================| 1.1 kB
00:00
Reading repository metadata in from local files
And here everything stops. Any tips on troubleshooting? According to
nmap port 80 is open.
white:~ morten$ nmap -p 80 213.150.40.246
Starting Nmap 4.10 ( http://www.insecure.org/nmap/ ) at 2007-03-26 18:53
CEST
Interesting ports on 213.150.40.246:
PORT STATE SERVICE
80/tcp open http
Nmap finished: 1 IP address (1 host up) scanned in 0.134 seconds
But no HTTP traffic:
white:~ morten$ wget 213.15...