Displaying 8 results from an estimated 8 matches for "20615".
Did you mean:
0615
2016 Oct 18
2
A use of RDF to extend register Remat
...t I think can be solved with RDF. But I am not able
>> to identify runtime complexity for this.
>> Consider following powerpc asm :
>> lis 3, 12414
>> ori 3, 3, 27470
>> sldi 3, 3, 32
>> oris 3, 3, 35809
>> ori 30, 3, 20615
>> here what I am looking for is that value in reg 30 is rematerilizable
>> (can be recalculated) because this whole sequence is using constants to
>> calculate the value that is in reg 30.
>> So this is how I think I can use RDFGraph here, for statement
>> ori 30, 3,...
2016 Sep 12
6
[RFC] Register Rematerialization (remat) Extension
...void bar() {
for (int i = 0; i < 1600; ++i)
foo(3494348345984503943);
}
$ clang -O3 -S -o - ~/tmp/tl.c -target powerpc64
...
# BB#0: # %entry
...
lis 3, 12414
ori 3, 3, 27470
sldi 3, 3, 32
oris 3, 3, 35809
ori 30, 3, 20615
...
.LBB0_1: # %for.body
mr 3, 30
bl foo
...
There is a sequence of instructions used to materialize the constant, the
first
one (the lis) is trivially rematerialiable, and the others depend only on
that one,
and have no side effects. If we otherwise...
2012 Feb 12
3
DF grouping
Hello Members,
I need to group a data.frame in a a specific way, like shown below,
DF raw is like this,
id col1 col2 score
1 A B 40
2 B C 55
3 C D 4000
4 D E 100
5 E F 300
I want the out put as
List
[1]
A B C
[2]
D E
[3]
F
Basically the split should be based on the DF$score > 200, and all the col1
and col2 values should be
2016 Mar 04
6
v2.2.22 release candidate released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.22.rc1.tar.gz
http://dovecot.org/releases/2.2/rc/dovecot-2.2.22.rc1.tar.gz.sig
There are some larger changes here, especially to doveadm to make it support HTTP API. There's still time to do smaller tweaks to the API, so let us know if you have some improvement ideas. Note that the API was designed to look mostly like JMAP, which we're
2016 Mar 04
6
v2.2.22 release candidate released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.22.rc1.tar.gz
http://dovecot.org/releases/2.2/rc/dovecot-2.2.22.rc1.tar.gz.sig
There are some larger changes here, especially to doveadm to make it support HTTP API. There's still time to do smaller tweaks to the API, so let us know if you have some improvement ideas. Note that the API was designed to look mostly like JMAP, which we're
2011 May 26
1
doveadm segfault
...on, I get the following in the dmesg :
[38041.387112] doveadm[20515]: segfault at 8 ip 000000000040f51d sp
00007fffb774c010 error 4 in doveadm[400000+2a000]
[38041.397966]
doveadm[20613]: segfault at 8 ip 000000000040f51d sp 00007fff953c1790
error 4 in doveadm[400000+2a000]
[38041.428206] doveadm[20615]: segfault
at 8 ip 000000000040f51d sp 00007ffffdce0cf0 error 4 in
doveadm[400000+2a000]
[38041.444879] doveadm[20619]: segfault at 8 ip
000000000040f51d sp 00007fffbb0668b0 error 4 in
doveadm[400000+2a000]
[38041.451815] doveadm[20622]: segfault at 8 ip
000000000040f51d sp 00007fff91d9b670 error 4...
2017 Jul 08
2
samba AD not working
...r/local/samba/sbin/samba
20610 ? S 0:00 /usr/local/samba/sbin/samba
20611 ? S 0:00 /usr/local/samba/sbin/samba
20612 ? S 0:01 /usr/local/samba/sbin/samba
20613 ? S 0:00 /usr/local/samba/sbin/samba
20614 ? S 0:00 /usr/local/samba/sbin/samba
20615 ? S 0:00 /usr/local/samba/sbin/samba
20616 ? Ss 0:00 /usr/local/samba/sbin/winbindd -D
--option=server role check:inhibit=yes --foreground
20617 ? S 0:00 /usr/local/samba/sbin/samba
20620 ? S 0:00 /usr/local/samba/sbin/smbd -D
--option=server role chec...
2006 Mar 09
1
Rails File Upload w/ Ajax Update?
I''m trying to upload a file, display the upload progress and then
update a table with the newly uploaded file. Is there a way to
specify a :success handler for form_tag_with_upload_progress such that
I have access to the request.response data (in the way I can with
link_to_remote)?
The :finish JavaScript is being executed but because there is no
request object, the table