search for: hanas

Displaying 20 results from an estimated 40 matches for "hanas".

Did you mean: anas
2013 Jan 12
0
Looking for Financial case study/scenario - Integration R with Highly powerful Database (SAP HANA)
Hi, I am working on a highly powerful analytical database system - SAP HANA. it can crunch a million records in a matter of micro seconds and supply the data (in the form of a table/dataframe) for any R algorithm/function. I am looking for specific scenarios/use cases/KPIs in the Finance/Insurance sector to bring together the the data crunching power of SAP HANA and functions available in HANA.
2016 Apr 12
0
R integration with SAP-HANA and SQLScripting
Dear R forum, I am seeking relevant material that discusses processes and methods of incorporating R code into SAP-HANA. I would greatly appreciate links to any relevant literature. Background research on my part has only found the SAP-HANA R Integration Guide, and several short examples. If the forum knows of any other sources of information, this would be greatly appreciated. Regards Mike
2010 Nov 22
3
Splitting 3D matrix from for loop to generate/save 2D matrices
Hi! I have a matrix called M with dimension (586,100,100). I would like to split and save this into 586 matrices with dimension 100 by 100. I have tried the following for loops but couldn't get it work.. l<-dim(M)[1] for (i in (1:l)){ save(M[i,,],file = "M_[i].img") } Can somebody help me with this? Thanks! Hana Lee [[alternative HTML version deleted]]
2016 Jun 20
3
Pre-built snapshots of trunk
On Mon, Jun 20, 2016 at 10:01 AM, Anton Korobeynikov via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > P.S.: On a similar note, are there any news regarding llvm.org/apt? > We are working on it. Note, however, that it seems that the majority > of bogus load seemed to come from CI systems, which pulled apt repo > for every and each downstream commit without any caching /
2023 Jun 23
1
[EXTERNAL] Re: Unable to authenticate to share using UPN
...ttributes defined sAMAccountName = m12345678 gecos = Zach Detest gidNumer = 12345678 uid = zach_detest uidNumer = 12345678 unixHomeDirectory = /home/m12345678 userPrincipalName = zach_destest at domain.tld The smb.conf on the server looks like this: [global] additional dns hostnames = dct-hanas-2.domain.tld debug class = Yes debug pid = Yes debug uid = Yes disable spoolss = Yes kerberos method = secrets and keytab load printers = No local master = No log file = /var/log/samba/log.%I max log size = 0 netbios na...
2009 May 08
1
Installing RGtk2 on Mac OS
I'm having trouble to install RGtk2 (from source) on Mac OS 10.4.11 (R 2.9.0). The GTK libraries (2.12.11) were installed into /sw/lib via fink. Even if I set the GTK_LIBS to that path, the installation program doesn't seem to find it (see below). libglade is there too but not found. If I install the package from binaries, it fails on load. Would anybody know how to make it work?
2016 Jun 19
3
Pre-built snapshots of trunk
Dear LLVM community, I would like to know whether it has already been discussed to provide pre-built snapshots of Clang/LLVM trunk available for download. This used to be available through llvm.org/apt, but since this is down I don't know of any alternative but to build it from source. My use case is to test the Boost.Hana library against Clang trunk on Travis, where building from source is
2013 Dec 12
7
[LLVMdev] Making LLVM safer in out-of-memory situations
Hello, Philipp Becker and me, Vaidas Gasiunas, are developers at SAP and part of a team developing a C-like domain-specific language for the SAP HANA in-memory database. We use LLVM as a backend to translate our language to native code, primarily on x86-64 platforms. Our programs are created dynamically, compiled and optimized in a running database. As a result of that we have special
2012 Feb 17
3
portable parallel seeds project: request for critiques
I've got another edition of my simulation replication framework. I'm attaching 2 R files and pasting in the readme. I would especially like to know if I'm doing anything that breaks .Random.seed or other things that R's parallel uses in the environment. In case you don't want to wrestle with attachments, the same files are online in our SVN
2019 Jan 26
2
Prospective GSoC projects - 2019
Hi all I'm a master's student from India. I'm very much interested in compilers and infrastructure toolchains. I have been following llvm for past few months, I like the scope of LLVM project and community behind it. I'm hoping to participate in Google Summer of Code 2019 at LLVM. I have intermediate knowledge of modern c++, boost libraries (proto, hana) and basic knowledge
2013 Jan 23
3
How to construct a valid seed for l'Ecuyer's method with given .Random.seed?
Dear expeRts, I struggle with the following problem using snow clusters for parallel computing: I would like to specify l'Ecuyer's random number generator. Base R creates a .Random.seed of length 7, the first value indicating the kind fo random number generator. I would thus like to use the components 2 to 7 as the seed for l'Ecuyer's random number generator. By doing so, I
2014 Oct 29
0
CEBA-2014:1719 CentOS 6 tuned BugFix Update
CentOS Errata and Bugfix Advisory 2014:1719 Upstream details at : https://rhn.redhat.com/errata/RHBA-2014-1719.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: e1f83fb08bd6ce7fb83156ba7edb9fcfea7acd7cc315959cecd93bae9396dad9 tuned-0.2.19-13.el6_6.1.noarch.rpm
2013 Dec 13
0
[LLVMdev] Making LLVM safer in out-of-memory situations
On 12/12/13 4:25 AM, Gasiunas, Vaidas wrote: > Hello, > > Philipp Becker and me, Vaidas Gasiunas, are developers at SAP and part of a team developing a C-like domain-specific language for the SAP HANA in-memory database. We use LLVM as a backend to translate our language to native code, primarily on x86-64 platforms. Our programs are created dynamically, compiled and optimized in a
2013 Dec 13
4
[LLVMdev] Making LLVM safer in out-of-memory situations
Hi Philip, Thanks for the positive response from all of you! > One question: How are you handling EOM? Error return? Custom region allocator? When running into an Out-of-memory situation we're currently only doing an error return, i.e. the compilation fails, but does so without crashing the process in which the compilation/jitting occurs. It is ok for us if llvm returns with a
2013 Dec 13
0
[LLVMdev] Making LLVM safer in out-of-memory situations
----- Original Message ----- > From: "Philipp Becker" <philipp.becker at sap.com> > To: "Philip Reames" <listmail at philipreames.com>, "LLVM Dev" <llvmdev at cs.uiuc.edu> > Sent: Friday, December 13, 2013 6:55:59 AM > Subject: Re: [LLVMdev] Making LLVM safer in out-of-memory situations > > Hi Philip, > > Thanks for the
2018 Nov 01
0
Read CPU Performance Statistics
Hi, I am in need for a help for how to use libvirt in python to read the the guest VMs performance statistics like cache hit and miss rates , I have KVM- Qemu as a virtual machine manager , I am looking for a sample code or the instructions needed to help me read these statistics . Thanks, hana
2015 May 06
0
CEEA-2015:0951 CentOS 6 resource-agents Enhancement Update
CentOS Errata and Enhancement Advisory 2015:0951 Upstream details at : https://rhn.redhat.com/errata/RHEA-2015-0951.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 73d3f2924f5fada52153c6410c26b05304ed345be0ce15068a7623b26990bf28 resource-agents-3.9.5-12.el6_6.5.i686.rpm x86_64:
2015 Jun 10
0
CEBA-2015:1084 CentOS 6 resource-agents BugFix Update
CentOS Errata and Bugfix Advisory 2015:1084 Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-1084.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 2321c7c8e4606cbba5f1b4b7cd6d6fba377c82501df1264a06394b226616eb31 resource-agents-3.9.5-12.el6_6.6.i686.rpm x86_64:
2015 Jun 24
0
CEBA-2015:1181 CentOS 6 resource-agents BugFix Update
CentOS Errata and Bugfix Advisory 2015:1181 Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-1181.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 830df3099492595e440c9f82527dfd40a6a4e2441bde09957fac4ea41dff86db resource-agents-3.9.5-12.el6_6.7.i686.rpm x86_64:
2015 Nov 10
0
CEBA-2015:1995 CentOS 6 resource-agents BugFix Update
CentOS Errata and Bugfix Advisory 2015:1995 Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-1995.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 3c472be555c009e17a1800d947156ef0e0880e8af354c387e0caab86f5b6331b resource-agents-3.9.5-24.el6_7.1.i686.rpm x86_64: