Displaying 20 results from an estimated 10000 matches similar to: "Package compiler - efficiency problem"
2018 Aug 16
3
Package compiler - efficiency problem
Dear Thomas,
thank you for prompt response and taking interest in this issue. I really
appreciate your compiler project and efficiency gains in usual case. I am
aware of limitations of interpreted languages too and because of that even
when writing my first mail I had a hunch that it is not that easy to
address this problem. As you mentioned optimisation of compiler for
handling non-standard
2018 Aug 17
0
Package compiler - efficiency problem
Dear Karol,
I don't understand the models behind these function, but I can tell that
the code generated is very inefficient. The AST interpreter will be very
inefficient performing each scalar computation with all boxing,
allocations, function calls. The byte-code compiler removes some of the
boxing and allocation. While it could certainly compile faster, it will
always be taking long
2018 Aug 13
0
Package compiler - efficiency problem
Dear Karol,
thank you for the report. I can reproduce that the function from you
example takes very long to compile and I can see where most time is
spent. The compiler is itself written in R and requires a lot of
resources for large functions (foo() has over 16,000 lines of code,
nearly 1 million of instructions/operands, 45,000 constants). In
particular a lot of time is spent in garbage
2020 Jul 17
4
nouveau regression with 5.7 caused by "PCI/PM: Assume ports without DLL Link Active train links in 100 ms"
On Fri, Jul 17, 2020 at 1:54 AM Bjorn Helgaas <helgaas at kernel.org> wrote:
>
> [+cc Sasha -- stable kernel regression]
> [+cc Patrick, Kai-Heng, LKML]
>
> On Fri, Jul 17, 2020 at 12:10:39AM +0200, Karol Herbst wrote:
> > On Tue, Jul 7, 2020 at 9:30 PM Karol Herbst <kherbst at redhat.com> wrote:
> > >
> > > Hi everybody,
> > >
> >
2020 Jul 16
3
nouveau regression with 5.7 caused by "PCI/PM: Assume ports without DLL Link Active train links in 100 ms"
On Tue, Jul 7, 2020 at 9:30 PM Karol Herbst <kherbst at redhat.com> wrote:
>
> Hi everybody,
>
> with the mentioned commit Nouveau isn't able to load firmware onto the
> GPU on one of my systems here. Even though the issue doesn't always
> happen I am quite confident this is the commit breaking it.
>
> I am still digging into the issue and trying to figure out
2005 Apr 13
2
easy question: obtaining rw1080.exe
Dear All,
Can anyone please tell me where I can obtain uncompiled binary
instalation files for R version 1.8. (i.e. rw1080.exe)?
I can only find the uncompiled source code on CRAN today.
Thank you,
Mary Wisz
msw@dmu.dk
[[alternative HTML version deleted]]
2012 May 21
15
[Bug 50175] New: [regression kernel 3.4] : nouveau detects internal laptop display as "disconnected" / screen is turned off
https://bugs.freedesktop.org/show_bug.cgi?id=50175
Bug #: 50175
Summary: [regression kernel 3.4] : nouveau detects internal
laptop display as "disconnected" / screen is turned
off
Classification: Unclassified
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version:
2005 Jan 25
1
Regex Crashing R (perl = TRUE) (PR#7564)
R-developers,
I've encountered another perl library regex bug that causes a
segmentation faults on my Linux/Windows R session. I reduced the script
to the snippet below. (Apologies if this was fixed with bug 7479, but
this bug seems quite different).
string <- paste(rep("=", 10000), collapse = " ")
crash <- function(x) {
for (i in 1:5) {
x <-
2024 Jun 16
2
slowness when I use a list comprehension
Dear RHelp-list,
?? I try to use the package comprehenr to replace a for loop by a list
comprehension.
?I wrote the code but I certainly miss something because it is very
slower compared to the for loops. May you please explain to me why the
list comprehension is slower in my case.
Here is my example. I do the calculation of the square difference
between the values of two vectors vec1 and
2015 Feb 12
2
Samba 4.2.0rc4 fails to start up
On Wed, Feb 11, 2015 at 05:18:27PM +0100, Volker Lendecke wrote:
> On Wed, Feb 11, 2015 at 10:04:03AM -0500, Thomas Schulz wrote:
> > > On Wed, Feb 11, 2015 at 11:13:42AM +0100, Volker Lendecke wrote:
> > > > On Tue, Feb 10, 2015 at 08:59:21PM -0800, Jeremy Allison wrote:
> > > > > Ah ok - I expected as much. snprintf seems to be
> > > > >
2015 Feb 11
3
Samba 4.2.0rc4 fails to start up
> On Wed, Feb 11, 2015 at 11:13:42AM +0100, Volker Lendecke wrote:
> > On Tue, Feb 10, 2015 at 08:59:21PM -0800, Jeremy Allison wrote:
> > > Ah ok - I expected as much. snprintf seems to be
> > > broken in that it's returning -1.
> > >
> > > Is this our snprintf or one from Solaris ? Can
> > > you try and track down why it's returning
2008 May 20
2
[LLVMdev] Making use of SSE intrinsics
Hi all,
I'd like to make use of some specific x86 Streaming SIMD Extension
instructions, but I don't know where to start. For instance the 'rcpps'
instructions computes a low precision but fast reciprocal. I've noticed that
LLVM supports intrinsics, but I couldn't find any information on how to use
them. I've tried digging through the LLVM-GCC code but it's just
2008 Apr 11
2
Help load a package into R
Dear R List,
I want to download kinship_1.2_S.tar.gz in http://mayoresearch.mayo.edu/mayo/research/biostat/splusfunctions.cfm
to R. Once save this file to C:\, how I could load into R? I am working in Windows XP. Usually what I do is, I go to "packages" and then "install packages from local zip files". This procedure fails for .tar.gz files. Can someone help here please....
2018 Jul 31
1
[PATCH] drm/nouveau: Fix potential memory access error in nouveau_debugfs_pstate_get()
nouveau_debugfs(drm) will never be NULL, because we're taking the value
of the potentially null device pointer and adding to it so it isn't 0x0.
So, check if drm is NULL instead.
Signed-off-by: Lyude Paul <lyude at redhat.com>
Cc: Karol Herbst <karolherbst at gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_debugfs.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
2024 Jun 16
1
slowness when I use a list comprehension
This can be vectorized. Try
ix <- seq_along(vec2)
S_diff2 <- sapply(seq_len(N1-(N2-1)*ratio_sampling), \(j)
sum((vec1[(ix-1)*ratio_sampling+j] - vec2[ix])**2))
On Sun, Jun 16, 2024 at 11:27?AM Laurent Rhelp <laurentRHelp at free.fr> wrote:
>
> Dear RHelp-list,
>
> I try to use the package comprehenr to replace a for loop by a list
> comprehension.
>
> I
2004 Oct 20
0
up and down shaping based on IP
Hello, i have a server (486sx and 16ram). It gives me this error :
NETDEVICE WATCHDOG eth1 : ...timeout.
I checked in many places for solutions. Even wrote to this mailinglist.
But lately i recived information, that too much upload
may mix my adsl modem up. So..... my question is how should my script
look while the situation is :
eth0 - connected to adsl modem and thus to internet
eth1 -
2010 Apr 08
2
xts off by one confusion or error
Hullo
I may have missed something blindingly obvious here. I'm using xts to
handle some timeseries data. I've got daily measurements for 100
years. If I try to reduce the error rate by taking means of each
month, I'm getting what at first sight appears to be conflicting
information. Here's a small subset to show the problem:
A small set of data:
> vv
x
2019 Jul 18
2
Eager compilation and relocatable dynamic linkable code-generation
Hi all,
I am following the LLVM JIT tutorial API based on:
https://llvm.org/docs/tutorial/BuildingAJIT1.html
I have 2 independent questions:
1. The tutorial mentions that "*will defer compilation of the module until
any of its definitions is looked up*".
Does that mean to force eager compilation, i have to keep track of all
functions added to the Module and do a lookup? I want the
2008 May 20
0
[LLVMdev] Making use of SSE intrinsics
On Tue, May 20, 2008 at 5:03 AM, Nicolas Capens <nicolas at capens.net> wrote:
> LoadInst *x = new LoadInst(ptr_x, "", false, basicBlock);
>
> // y = rcpps(x) // FIXME
> StoreInst *storeResult = new StoreInst(y, ptr_y, false, basicBlock);
Using an IRBuilder, something like the following (uncompiled, but it's
at least approximately right):
Value* x =
2010 Oct 16
1
Compiling from source - where is winecfg?
Hey all,
I've just switched distro to Linux Mint Debian Edition (LMDE) from LM9 Isadora. Some of you may be aware that the Wine Debian packages are extremely old (the repo the main page directs me to doesn't go above 1.1.4.2), so I compiled 1.3.4 from source, without installing.
That went fine, insofar as I tested with a previously-installed app and it ran, but now I want to install a