search for: doru

Displaying 6 results from an estimated 6 matches for "doru".

Did you mean: domu
2003 Jul 11
1
Reading data from the console
...egories:', '\n') k<-scan("",n=1, quiet=TRUE) N<-matrix(0,m,k) for(i in 1:m) for(j in 1:k) { N[i,j]<-scan("",n=1, quiet=TRUE) } scan will take m to be the next command rather than wait for me to introduce the number I want for m. Any ideas? Thanks a lot! Doru Cojoc
2010 Mar 29
18
please decrypt your manuals
I. most of ssh manual and all sshd manual present server and client as one machine, called host. All files mentioned are placed on one machine. This is incorrect, and makes the explanation unclear. For example, man sshd SSH_KNOWN_HOSTS FILE FORMAT suggests to copy keys from /etc/ssh/ssh_host_key.pub into /etc/ssh/ssh_known_hosts, as if those files are on the same machine. II. a general
2004 Aug 16
0
openssh for windows - bug ?
...en? v tomto e-mailu jsou ur?eny v?lu?n? pro pot?eby jeho adres?ta. Text nebo p??lohy mohou obsahovat utajovan? informace, informace pova?ovan? spole?nost? T-Mobile za obchodn? tajemstv?, p??padn? jin? informace podl?haj?c? ochran? dle p??slu?n?ch pr?vn?ch p?edpis?. Pokud V?m tento e-mail byl omylem doru?en, zdr?te se, pros?m, jak?koli manipulace s textem ?i p??lohami, jako je kop?rov?n?, p?esm?rov?n?, zp??stupn?n? dal?? osob? a podobn?. O chybn?m doru?en? informujte odes?latele a e-mail v?etn? p??loh vyma?te ze sv?ho po??ta?e. The information contained within this e-mail is intended only for the p...
2019 Jan 31
2
[RFC] Late (OpenMP) GPU code "SPMD-zation"
...uot;>Do you expect to write another LLVM pass which will transform the master-worker scheme + state machine into an SPMD scheme?</font><br><br><font size=2 face="sans-serif">Thanks,</font><br><br><font size=2 face="sans-serif">--Doru</font><br><br><br><font size=2 face="sans-serif"><br></font><br><br><br><br><font size=1 color=#5f5f5f face="sans-serif">From: </font><font size=1 face="sans-serif">"Doerfer...
2017 Aug 16
3
CUDA separate compilation
Clang currently doesn't support CUDA separate compilation and thus extern __device__ functions and variables cannot be used. Could someone give me any pointers where to look or what has to be done to support this? If at all possible, I'd like to see what's missing and possibly try to tackle it. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Jan 22
7
[RFC] Late (OpenMP) GPU code "SPMD-zation"
Where we are ------------ Currently, when we generate OpenMP target offloading code for GPUs, we use sufficient syntactic criteria to decide between two execution modes: 1) SPMD -- All target threads (in an OpenMP team) run all the code. 2) "Guarded" -- The master thread (of an OpenMP team) runs the user code. If an OpenMP distribute region is encountered,