search for: elina

Displaying 11 results from an estimated 11 matches for "elina".

Did you mean: elena
2005 Jun 10
2
winbind and pam on FC3
I cant get a login from an FC3 setup unless the user has a local account. Jun 10 11:53:12 fc3 login(pam_unix)[12082]: check pass; user (elina) unknown Jun 10 11:53:12 fc3 login(pam_unix)[12082]: authentication failure; logname=LOGIN uid=0 euid=0 tty=tty1 ruser= rhost= user=elina Jun 10 11:53:12 fc3 pam_winbind[12082]: user 'elina' granted access Jun 10 11:53:12 fc3 login(pam_unix)[12082]: could not identify user (from getpwnam...
2009 Sep 29
1
How to parsing data like this in R
Hi, R-users, I met a problem: Items:[Anna 'moi =) akku loppu joskus 4ltä. Kestää kauan nää..'\tAmer, Tuusula (0:20)\t20\t12\t16\t00\t00\t11]/Anne 'Ei jakoa,uus päivä muistio et 4n niin peruin. Hups'\t (0:16)\t0\t12\t18\t00\t00\t11/Elina 'Konsertissa. En tod. vastaa teille'\tEtu-Töölö, Helsinki (2:40)\t24\t12\t18\t00\t00\t11 I want to parsing the above data into the below according to each "/": [Anna 'moi =) akku loppu joskus 4ltä. Kestää kauan nää..'\tAmer, Tuusula (0:20)\t20\t12\t16\t00\t00\t11]...
2006 Apr 27
1
SOAP service - perl server, ruby consumer incompatability
...f; } sub set_sql() { my $self = shift(@_); my $sql = shift(@_) || "Select * from stock_master"; return "" if !($sql =~ /^select/i); $self->{sql} = $sql; } 1; === end module file === *Client Side* The third file is the client. === client script - on /Users/elinalaw/src/odbcBridgeClient.rb === require ''soap/rpc/driver'' begin ENDPOINT = ''http://elina/cgi-bin/misc/OdbcBridgeServer.pl'' NAMESPACE = ''http://elina/cgi-bin/misc/OdbcBridgeServer'' ob = SOAP::RPC::Driver.new(ENDPOINT, NAMESPACE) o...
2018 Jan 23
1
Inclusion of Polly and isl into core LLVM
...ins, on all larger benchmarks. In fact, in many >> cases our analysis terminates in seconds where prior code runs out of >> memory or times out after 4 hours. > > They compared against PPL and ELISA. Gah, my mistake - they compared against NewPolka and PPL, and _their_ work was ELINA.
2018 Jan 23
0
Inclusion of Polly and isl into core LLVM
On Mon, 15 Jan 2018 22:44:45 +0100, Tobias Grosser via llvm-dev wrote: <snip> > * How stable/fast/… is Polly today > * We build all of AOSP with rather restrictive compile-time limits > * Bootstrapping time of clang is regressed by 6% (at most) > * Removal of scalar dependences is today very generic and must be > sped up in the future > * Polly still
2016 Aug 05
3
enabling interleaved access loop vectorization
Hi Michael, Sometime back I did some experiments with interleave vectorizer and did not found any degrade, probably my tests/benchmarks are not extensive enough to cover much. Elina is the right person to comment on it as she already experienced cases where it hinders performance. For interleave vectorizer on X86 we do not have any specific costing, it goes to BasicTTI where the costing is not appropriate(WRT X86). It consider cost of extracts & inserts for extracting ele...
2006 May 21
3
Sending mail times out (ActionMailer)
Hi! I''m on debian. Sending a mail from Rails times out: Timeout::Error (execution expired): /usr/local/lib/ruby/1.8/timeout.rb:54:in `new'' /usr/local/lib/ruby/1.8/net/protocol.rb:206:in `old_open'' /usr/local/lib/ruby/1.8/timeout.rb:56:in `timeout'' /usr/local/lib/ruby/1.8/timeout.rb:76:in `timeout''
2016 Aug 05
2
enabling interleaved access loop vectorization
...] enabling interleaved access loop vectorization > > > > Hi Michael, > > > > Sometime back I did some experiments with interleave vectorizer and did > not found any degrade, > > probably my tests/benchmarks are not extensive enough to cover much. > > > > Elina is the right person to comment on it as she already experienced > cases where it hinders performance. > > > > For interleave vectorizer on X86 we do not have any specific costing, it > goes to BasicTTI where the costing is not appropriate(WRT X86). > > It consider cost of ex...
2018 Jan 15
3
Inclusion of Polly and isl into core LLVM
[add subject] Dear LLVM community, hope all of you had a good start into 2018 and a quiet branching of LLVM 6.0. With the latest LLVM release out of the way and a longer development phase starting, we would like to restart the process of including Polly and isl into core LLVM to bring changes in early on before the next LLVM release. Short summary: * Today Polly is already part of each LLVM
2012 Mar 26
0
Pareto frontier plots in three dimensions
...onstructing the Pareto frontier. Moreover is is straightforward to generate this frontier using the 'rgl' package. And this is what I do. LITERATURE Three-dimensional Pareto frontier visualization is reported in the literature. For instance (not paywalled -- thanks guys!): Madetoja, Elina, Henri Ruotsalainen, Veli-Matti M?nkk?nen, Jari H?m?l?inen, and Kalyanmoy Deb. 2008. Visualizing multi-dimensional Pareto-optimal fronts with a 3D virtual reality system. IEEE Proceedings. ISBN-13 978-83-60810-14-9. Madetoja etal (2008) also cite earlier papers, published in 200...
2016 May 26
2
enabling interleaved access loop vectorization
Interleaved access is not enabled on X86 yet. We looked at this feature and got into conclusion that interleaving (as loads + shuffles) is not always profitable on X86. We should provide the right cost which depends on number of shuffles. Number of shuffles depends on permutations (shuffle mask). And even if we estimate the number of shuffles, the shuffles are not generated in-place. Vectorizer