search for: lib1

Displaying 15 results from an estimated 15 matches for "lib1".

Did you mean: lib
2009 Aug 21
2
Lightweight 'package' idea.
...assign("__path__",dir,envir=e) reloadDir(e) e } reloadDir <- function(e){ path = get("__path__",e) files = list.files(path,".R$",full.names=TRUE,recursive=TRUE,ignore.case=TRUE) for(f in files){ sys.source(f,envir=e) } } Usage is something like: lib1 = loadDir("/foo/bar/baz/lib1/") - it creates a new environment on the search path and sources any .R it finds in there into that environment. If you edit anything in that directory, just do reloadDir(lib1) and the updated definitions are loaded. It's like python's "import f...
2013 Jan 17
4
[LLVMdev] Migrate Project Build system to LLVM BitCode
...to modify 'Makefile' accordingly. I read on some forums about GoldPlugin but I don't know exactly if it would be useful here: Original Makefile- Object Files based Build/Link Steps: clang -g -O2 -o .libs/mergedexe file1.o file2.o file3.o -pthread -Wl,--export-dynamic .libs/lib1.a -lssl -ldl -pthread .libs/lib2.so Proposed Makefile- LLVM Bitcode based Build/Link Steps: 1. llvm-link -o .libs/mergedbc.bc file1.bc file2.bc file3.bc 2. opt -o optmerged.bc -load /path/to/Mypass.so -mypass < mergedbc.bc 3. llc -o .libs/mergedbc.s .libs/...
2013 Jan 17
0
[LLVMdev] Migrate Project Build system to LLVM BitCode
...dPlugin. If you are building a large project, then it will be simpler to use GoldPlugin. The steps you are using seem right. You can possibly combine the last two steps (3&4) using only 1 clang command. clang -g -O2 -o .libs/mergedexe .libs/mergedbc.bc -pthread -Wl,--export-dynamic .libs/lib1.a -lssl -lcrypto –ldl –pthread .libs/lib2.so -Swarup. ________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] on behalf of Hassan, Ahmad [ahmad.hassan at sap.com] Sent: Thursday, January 17, 2013 7:56 AM To: llvmdev at cs.uiuc.edu Subject: [LLVMdev...
2003 Dec 12
0
Synchronizing to multiple locations on a single destination serve r
...remote server. The catch here is, that the libraries must go in multiple locations (and not all the locations have all the libraries). rsync is ivoked with an +ACI-update-only+ACI- option, so no libraries that do not exist in the target directory are copied. So, the source is something like this: lib1.jar, lib2.jar, lib3.jar, lib4.jar, lib5.jar Destination 1: lib1.jar, lib2.jar, lib3.jar Destination 2: lib1.jar, lib4.jar Destinaton 3: lib4.jar So, lib1 must be updated in d1, d2, d3 (of course, only if required - +ACo-I cannot assume, that all three version are the same before the synchro...
2002 Jan 26
1
Trouble with contrasts
Greetings, I have a nagging problem with contrasts and I can't seem to resolve it. A factor exists with four levels (lib1, lib2, con1, con2) and when I check the contrasts or set the contrasts to any of the prespecified ones, I do not get the exact contrasts necessary to test the theoretically relevant ones. I need orthogonal contrasts that look just like this matrix: con1 con2 con3 lib1 1 0...
2006 Mar 13
1
Help on interfacing C++ with R
...lib4R::testDoubleMultiplication(double a, double b) { return a*b; } int lib4R::getID() { return this->ID; } void lib4R::setID(int ID) { this->ID = ID; } int main(int argc, char* argv[]) { cout << "Entering main()" << endl; lib4R lib1; cout << "testIntDivision(4,2) = " << lib1.testIntDivision(4,2) << endl; return 0; } } // extern C I am working on Windows. I use these to compile the dll with Visual C++: cl /MT /c lib4R.cpp link /dll /out:lib4R.dll /export:testIntDivision /export:...
2014 Dec 08
0
libgfapi disk locking in virtlockd not working
...g fine, no locks. my revelant xml section: <disk type='network' device='disk'> <driver name='qemu' type='raw' cache='writethrough' iothread='1'/> <source protocol='gluster' name='pool_test/gentoo-virtio-lib1-sys.img'> <host name='X.X.X.X' port='24007' transport='rdma'/> </source> <target dev='vda' bus='virtio'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x04' fun...
2013 Jan 17
0
[LLVMdev] Migrate Project Build system to LLVM BitCode
...accordingly. I read on some forums about > GoldPlugin but I don’t know exactly if it would be useful here: > > *Original Makefile- Object Files based Build/Link Steps: * > > clang -g -O2 –o .libs/mergedexe file1.o file2.o file3.o -pthread > -Wl,--export-dynamic .libs/lib1.a -lssl –ldl –pthread .libs/lib2.so > > *Proposed Makefile- LLVM Bitcode based Build/Link Steps:* > > 1.llvm-link -o .libs/mergedbc.bc file1.bc file2.bc file3.bc > > 2.opt –o optmerged.bc -load /path/to/Mypass.so -mypass < mergedbc.bc > > 3.llc -o .libs/mer...
2011 Feb 11
3
Writing R packages in an easier way?
Dear R colleagues, is there an easier way to write R packages for the own use - without RTools and TeX? With R versions < 2.10.0 it was very easy to write a package. Under the path with the package name you wrote a description file and built some directories like "help", "html" and "R" with the special files in a "hand-operated" way. In the next step
2020 Sep 15
2
[ELF] String literals don't obey -fdata-sections
...etLoweringObjectFileImpl.cpp#L799. [1] I came across the following GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=192 where they have fixed the issue back in 2015. Any reason not to do so in LLVM? My code example: - static library 1 : expose functions api1() and api3() > #include "lib1.h" > > static char *test = "Test"; > static char *unused = "Unused"; > > void api1(){ > printf(test); > } > > void api3(){ > printf(unused); > } - shared library : use only function api1() from static library 1 > #include "li...
2012 Jul 18
3
Subsetting problem data
Hello, I need to subset my data to only look at the parts that have "holes" in it. I already have a formula to get rid of inconsistencies, but now I need to look only at the problem data to reconfigure it. In my data set where there are multiple "cycles" per "patient," and I want to highlight the patients who have a variable was not measured every cycle. Here's a
2013 Jan 17
1
[LLVMdev] Migrate Project Build system to LLVM BitCode
Hi Duncan, > 4.gcc -g -O2 -o .libs/mergedexe .libs/mergedbc.s -pthread > -Wl,--export-dynamic .libs/lib1.a -lssl -lcrypto -ldl -pthread .libs/lib2.so >if you pass -O4 rather than -O2 to clang I think it will in essence do this all >for you already. It might even do the link time optimization for you at -O2 >even, I'm not sure. No, if I use clang for producing executable then I get se...
2006 Apr 28
0
trouble with make/VPATH
I've got a tough to track down problem that seems to be samba related. I've got a directory structure like this: topdir/ lib1/src lib1/include lib2/src lib2/include etc. Each src directory has a makefile in it. VPATH is set to ../include. I'm running cygwin bash and make. In some directories, make can't find files in ../include. In other directories, make finds everything fine. The same makefiles work...
2013 Jul 18
2
Help building OPUS library using FIXED_POINT option
...schur64_FIX.c [exec] Compile x86 : 1 <= schur_FIX.c [exec] Compile x86 : 1 <= solve_LS_FIX.c [exec] Compile x86 : 1 <= vector_ops_FIX.c [exec] Compile x86 : 1 <= warped_autocorrelation_FIX.c [exec] StaticLibrary : lib0.a [exec] StaticLibrary : lib1.a [exec] StaticLibrary : lib0.a [exec] StaticLibrary : lib1.a [exec] StaticLibrary : lib0.a [exec] StaticLibrary : lib1.a [exec] SharedLibrary : libdmt_opus.so [exec] SharedLibrary : libdmt_opus.so [exec] SharedLibrary : libdmt_opus.so [exec] C:/androi...
2003 Dec 15
0
Synchronizing to multiple locations on a single destination s erve r
...; over to one common directory and either symlink or hard-link them from > the > final destinations. > > For example, on the destination server: > > /opt/app-name/lib/: > contains all 4 libraries needed > > /opt/app1/lib/: > contains symlinks to /opt/app-name/lib/lib1.jar, > /opt/app-name/lib/lib2.jar, etc. > > If you want to avoid the mess of symlinks, you could just copy the files > from the /opt/app-name/lib area out to the respective individual > destinations-- avoiding the extra rsyncs. > > -- Steve > Hello Steve, thanks for the re...