similar to: R: error while loading shared libraries: libRblas.so:

Displaying 20 results from an estimated 3000 matches similar to: "R: error while loading shared libraries: libRblas.so:"

2018 Sep 23
1
libRblas.so: cannot open shared object file: No such file or directory
Thanks Dirk.? That is what I thought, and sessionInfo() returns: Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/atlas/libblas.so.3.10.3 LAPACK: /usr/lib/x86_64-linux-gnu/atlas/liblapack.so.3.10.3 locale: ?[1] LC_CTYPE=en_US.UTF-8?????? LC_NUMERIC=C ?[3] LC_TIME=en_US.UTF-8??????? LC_COLLATE=en_US.UTF-8 ?[5] LC_MONETARY=en_US.UTF-8??? LC_MESSAGES=en_US.UTF-8 ?[7]
2018 Sep 22
0
libRblas.so: cannot open shared object file: No such file or directory
On 22 September 2018 at 16:08, Steve Gutreuter wrote: | R 3.5.1 is installed under Linux Mint 19 from binaries r-base and | r-base-dev from ubuntu bionic-cran35.? Mysteriously, packages using | libRblas cannot be compiled.? I get: libRblas.so: cannot open shared | object file: No such file or directory.? And indeed, I find no libRblas.so. | | Any ideas about how to fix this? What does
2018 Sep 23
2
libRblas.so: cannot open shared object file: No such file or directory
For example, install.packages("emplik") is failing with: libRblas.so: cannot open shared object file: No such file or directory As Dirk pointed out, this is likely an error in the emplik package, Steve On 09/23/2018 09:57 AM, Ista Zahn wrote: > On Sat, Sep 22, 2018 at 4:08 PM Steve Gutreuter <sgutreuter at gmail.com> wrote: >> R 3.5.1 is installed under Linux Mint
2011 Jan 22
0
libRblas.so: undefined reference to `xerbla_' ?
Hi all, i am trying to compile a test, calling from C code R Lapack shared libraries. In particular, i am calling simple LAPACK driver dposv for solving linear equation system A*x=B with positive definite A. My code looks like the following in solve.c ========================== #include<stdio.h> #include <R_ext/BLAS.h> #include <R_ext/Lapack.h> int main(){
2018 Sep 22
4
libRblas.so: cannot open shared object file: No such file or directory
R 3.5.1 is installed under Linux Mint 19 from binaries r-base and r-base-dev from ubuntu bionic-cran35.? Mysteriously, packages using libRblas cannot be compiled.? I get: libRblas.so: cannot open shared object file: No such file or directory.? And indeed, I find no libRblas.so. Any ideas about how to fix this? Thanks, Steve
2010 Mar 03
1
why no libRblas.so in ubuntu packages on CRAN?
Hi, everybody. I notice debian packages for Ubuntu on CRAN are missing "libRblas.so" and I'm trying to find out why. Why do I care? We are working in an hpc project in a CentOS Linux cluster. That led me to the question of "which BLAS is fastest?" Dirk E referred me this morning to the R admin manual. The standard R compilation creates a shared blas library libRblas.so
2010 Dec 16
1
'libRblas.so' missing in R 2.12.1
Dear R developers, I just compiled the latest version of R (2.12.1) and noticed that 'libRblas.so' is missing in the '/x86_64/src/extra/blas' subdirectory of my R-installation. Did I miss ongoing discussions on the Mailinglist about this or might it be a local problem? Thanks for this brilliant software. Best Christian -- Christian Kohler Institute of Functional Genomics ~
2010 Aug 16
1
R-2.11.1 Download: missing libRblas.so library
Hello, I've been trying to use R-2.11.1 but I get the following error when trying to run R on linux: "error while loading shared libraries: libRblas.so: cannot open shared object file: No such file or directory" How can I solve this problem? Best, Katy
2018 Sep 23
0
libRblas.so: cannot open shared object file: No such file or directory
On 23 September 2018 at 10:09, Steve Gutreuter wrote: | For example, | | install.packages("emplik") | | is failing with: libRblas.so: cannot open shared object file: No such | file or directory | | As Dirk pointed out, this is likely an error in the emplik package, I made one educated guess. Now we have more information and can update: - this is a CRAN package so everybody can
2012 Apr 27
2
[LLVMdev] Problem in accessing Loops in other Functions Problem in accessing Loops in other Functions problem in accessing the Loops in other functions
Hi, I am using Loop pass ( runOnLoop() function ) In this function I want to access all the Loops in all the functions in the current Module the LoopInfo Pass only gives the Loops in the function where the current Loop resides :-( Is there any other Pass by which I can access the Loops in others functions as well ? ...... Regards, Shanmukha Rao -------------- next part -------------- An HTML
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
Hi, I am using LLVM for implementing LoopFission pass. I am using LoopPass. I know that for checking circular dependency in loop I have to use LoopDependenceAnalysis This is what i want to do. for(int i = 0; i< n ; i++){ s1 : a[i] = a[i] + x[i]; s2 : x[i] = x[i+1] + i*2 ; } /**there is no dependence from s2 to s1/ so after distribution(it
2012 Apr 27
0
[LLVMdev] Problem in accessing Loops in other Functions Problem in accessing Loops in other Functions problem in accessing the Loops in other functions
On 4/27/12 2:05 PM, shanmuk rao wrote: > Hi, > I am using Loop pass ( runOnLoop() function ) > In this function I want to access all the Loops in all the functions > in the current Module > > the LoopInfo Pass only gives the Loops in the function where the > current Loop resides :-( > > Is there any other Pass by which I can access the Loops in others > functions
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
Shanmukha Rao wrote: > I am using LLVM for implementing LoopFission pass. > I am using LoopPass. > I know that for checking circular dependency in loop I have to use LoopDependenceAnalysis > > This is what i want to do. >         for(int i = 0; i< n ; i++){ > s1 : a[i] = a[i] + x[i]; > s2 : x[i] = x[i+1] + i*2 ; > } > >
2005 Jan 06
1
arrays emerging from tapply
The code below illustrates some points about results from tapply that I find strange. I wonder if they are intended and if so why it is so. 1) When you make a table the dimnames is a *named* list, tapply returns an unnamed list. 2) data.frame behaves differently on an array and a table. Is this an intended feature? 3) For tables class(TAB) and attr(TAB,"class") both return
2002 Mar 15
1
Wine dummy-spitting
I've got a real problem with the debian (unstable) wine 0.0.200202228-1 Whenever I try to run a windows executable - of any sort, although it's Jeskola Buzz in the example I've attached - wine cheerfully spits the dummy. I realise that the DRIVE_Init warnings are ignorable, but #warn:dosfs:DOSFS_FindUnixName 'config\system' not found in ... #warn:dosfs:DOSFS_FindUnixName
2011 Feb 22
1
S3 classes and building a package
Hi List! Suppose I have the following, please: > setClass("buzz",representation(x="numeric"),S3methods=TRUE) [1] "buzz" > x <- rnorm(10) > class(x) <- "buzz" > plot.buzz <- function(x,y,...) { + plot.default(x,type="l",col="blue") + } > f <- function(x) { + return(x^2) + } >
2004 Apr 23
0
Adtran TA750 Noise - Email found in subject
Rich, Thanks a bunch, totally understand now and that actually makes total sense. (no need for schematics). This also explains why I used an TA750 to go into a Nortel MICS system, using FXO and no buzz. Totally balanced load from the analog ports on the Nortel across the 5 feet of CAT5 to the FXO on the adtran. Now I need to get rid of some Adtrans --- Anyone lookin to buy? :) Thanks
2010 Jun 07
1
Compiling R-2.11.1 patched on Ubuntu 10.04 with Optimized GotoBLAS2 libraries
I've attempted to use the optimized GotoBLAS2 library with a freshly compiled R-2.11.1 patched on 64-bit Ubuntu 10.4. (See details below). When I run this version of R, the timings are not different than the original install, and only one core is used in test computations. Can someone point out my error? Thanks. --Dale Details ... I'm running the 64-bit version of Ubuntu 10.04 on my 2
2004 Apr 22
2
Adtran TA750 Noise
All, I need help. I have an (actually 2) Adtran TA750's with 8 FXO ports. I get a terrible buzz on every FXO port. If I unplug the Adtran and put an analog phone on each incoming line, I have no buzz. I also have 2 Carrier Access Access Bank I's with 12 FXO ports. When I plug the same analog lines into either one of those, no noise or buzz whatsoever. I went so far as to move the TA750
2004 Nov 24
1
Horrible BUZZZZ noise when sounds/music play on SIP phone?
Hi, I've recently set Asterisk up, 1.0.2 version. With 1 x X100P card and 1 SIP phone. I've noticed some horrible buzz/rasping type of sounds! These seem to occur when * is trying to play back some audio or sound to me? E.g. If I have an exten rule which plays one of the music on hold files when I dial 800 lets say, I get a really loud buzz for about 2 seconds and then the music plays.