Displaying 20 results from an estimated 48 matches for "setp".
Did you mean:
set
2004 Oct 23
2
Puzzled at a trivial function using Hmisc::setps
I have done:
library(Hmisc)
mysetps <- function(f) {setps(filename=f, w=4.5)}
Now when I set about doing
mysetps("a")
blah
mysetps("b")
blah
etc.
Problem: I find that only one file "f.ps" gets created.
My intent had been to create "a.ps", "b.ps", etc., all using the
a...
2001 Aug 20
1
Idletimeout patch, third attempt
...uot;use_ssh2_packet_format"));
@@ -383,6 +464,7 @@
packet_start2(type);
else
packet_start1(type);
+ idletimeout_check(type);
}
/* Appends a character to the packet data. */
@@ -708,20 +790,21 @@
/* If we got a packet, return it. */
if (type != SSH_MSG_NONE) {
xfree(setp);
+ idletimeout_check(type);
return type;
}
/*
* Otherwise, wait for some data to arrive, add it to the
* buffer, and try again.
*/
- memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
- sizeof(fd_mask));
- FD_SET(connection_in, setp);
-
- /* Wait for some data to...
2007 Oct 19
2
[LLVMdev] llvm_fcmp_ord and llvm_fcmp_uno and assembly code generation
..., double Y)
{
return llvm_fcmp_uno(X,Y);
}
int xx(double X, double Y)
{
return isunordered(X, Y);
}
$ gcc -std=c99 -O3 -S x.c -o x.gcc.s
$ llvm-gcc -std=c99 -O3 -S x.c -o x.llvm.s
x.gcc.s:
x:
.LFB7:
movl $1, %eax
ucomisd %xmm0, %xmm0
jne .L5
jp .L5
xorl %eax, %eax
ucomisd %xmm1, %xmm1
setp %al
.L5:
rep ; ret
.LFE7:
.size x, .-x
.p2align 4,,15
.globl xx
.type xx, @function
xx:
.LFB8:
xorl %eax, %eax
ucomisd %xmm1, %xmm0
setp %al
ret
x.llvm.s:
x:
pxor %xmm2, %xmm2
ucomisd %xmm2, %xmm0
setp %al
ucomisd %xmm2, %xmm1
setp %cl
orb %al, %cl
movzbl %cl, %eax
ret
.size x, .-...
2007 Oct 22
0
[LLVMdev] llvm_fcmp_ord and llvm_fcmp_uno and assembly code generation
...return isunordered(X, Y);
> }
>
> $ gcc -std=c99 -O3 -S x.c -o x.gcc.s
> $ llvm-gcc -std=c99 -O3 -S x.c -o x.llvm.s
>
> x.gcc.s:
> x:
> .LFB7:
> movl $1, %eax
> ucomisd %xmm0, %xmm0
> jne .L5
> jp .L5
> xorl %eax, %eax
> ucomisd %xmm1, %xmm1
> setp %al
> .L5:
> rep ; ret
> .LFE7:
> .size x, .-x
> .p2align 4,,15
> .globl xx
> .type xx, @function
> xx:
> .LFB8:
> xorl %eax, %eax
> ucomisd %xmm1, %xmm0
> setp %al
> ret
>
> x.llvm.s:
> x:
> pxor %xmm2, %xmm2
> ucomisd %xmm2, %xmm0
&g...
2014 Oct 24
3
[LLVMdev] IndVar widening in IndVarSimplify causing performance regression on GPU programs
...(a low-level assembly-like
language generated by NVPTX64) is:
BB0_2: // =>This Inner Loop Header:
Depth=1
mul.lo.s32 %r5, %r6, %r6;
st.u32 [%rd4], %r5;
add.s32 %r6, %r6, 3;
add.s64 %rd4, %rd4, 12;
setp.lt.s32 %p2, %r6, %r3;
@%p2 bra BB0_2;
in which %r6 is the induction variable i.
With widening, the loop body becomes:
BB0_2: // =>This Inner Loop Header:
Depth=1
mul.lo.s64 %rd8, %rd10, %rd10;
st.u32 [%rd9], %rd8;...
2013 Mar 01
4
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
...mov.f64 %fl5, %fl6;
> > BB1_1:
> > mul.f64 %fl6, %fl5, %fl5;
> > mul.f64 %fl7, %fl4, %fl4;
> > add.f64 %fl8, %fl6, %fl7;
> > setp.lt.f64 %p0, %fl8, 0d4010000000000000;
> > setp.lt.f64 %p1, %fl2, %fl0;
> > and.pred %p0, %p0, %p1;
> > @!%p0 bra BB1_3;
> > bra.uni BB1_2;
> > BB1_...
2007 Mar 14
1
sshd gets stuck: select() in packet_read_seqnr waits indefinitely
Dear OpenSSH Portable sshd developers,
I'm having a problem where sshd login sessions are occasionally
(as often as once a day) getting stuck indefinitely. I enabled debug
messages and got a backtrace of a stuck sshd, and I think I've found
the bug. I wanted to run it by the list once before filing.
sshd version:
OpenSSH_4.2p1 FreeBSD-20050903, OpenSSL 0.9.7e-p1 25 Oct 2004
2013 Mar 01
0
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
... %fl5, %fl6;
> > > BB1_1:
> > > mul.f64 %fl6, %fl5, %fl5;
> > > mul.f64 %fl7, %fl4, %fl4;
> > > add.f64 %fl8, %fl6, %fl7;
> > > setp.lt.f64 %p0, %fl8, 0d4010000000000000;
> > > setp.lt.f64 %p1, %fl2, %fl0;
> > > and.pred %p0, %p0, %p1;
> > > @!%p0 bra BB1_3;
> > > bra.uni BB1_2;...
2013 Mar 01
0
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
....f64 %fl5, %fl6;
>> > BB1_1:
>> > mul.f64 %fl6, %fl5, %fl5;
>> > mul.f64 %fl7, %fl4, %fl4;
>> > add.f64 %fl8, %fl6, %fl7;
>> > setp.lt.f64 %p0, %fl8, 0d4010000000000000;
>> > setp.lt.f64 %p1, %fl2, %fl0;
>> > and.pred %p0, %p0, %p1;
>> > @!%p0 bra BB1_3;
>> > bra.uni BB1_2...
2012 Jul 10
2
[LLVMdev] [NVPTX] CUDA inline PTX asm definitions scoping "{" "}" is broken
...and asm-scope. Here is an example:
> cat test.cu
__attribute__((device)) __attribute__((nv_linkonce_odr)) __inline__ int
__any(int a) {
int result;
asm __volatile__ ("{ \n\t"
".reg .pred \t%%p1; \n\t"
".reg .pred \t%%p2; \n\t"
"setp.ne.u32 \t%%p1, %1, 0; \n\t"
"vote.any.pred \t%%p2, %%p1; \n\t"
"selp.s32 \t%0, 1, 0, %%p2; \n\t"
"}" : "=r"(result) : "r"(a));
return result;
}
> clang -cc1 -emit-llvm -fcuda-is-device -triple ptx64-unknown-unkno...
2013 Mar 01
1
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
..., %fl6;
> >> > BB1_1:
> >> > mul.f64 %fl6, %fl5, %fl5;
> >> > mul.f64 %fl7, %fl4, %fl4;
> >> > add.f64 %fl8, %fl6, %fl7;
> >> > setp.lt.f64 %p0, %fl8, 0d4010000000000000;
> >> > setp.lt.f64 %p1, %fl2, %fl0;
> >> > and.pred %p0, %p0, %p1;
> >> > @!%p0 bra BB1_3;
> >> > bra.uni...
2001 Aug 02
0
patch: properly zeroing fd_set in clientloop
...-
--- channels.h~ Wed Jun 13 15:18:05 2001
+++ channels.h Thu Jul 12 08:31:58 2001
@@ -168,6 +168,13 @@
void channel_free(int channel);
/*
+ * Zero out a select file-descriptor set. Analogous to the FD_ZERO
+ * macro, but works with different-sized sets.
+ */
+void
+channel_zero_set(fd_set *setp, int maxfdp);
+
+/*
* Allocate/update select bitmasks and add any bits relevant to channels in
* select bitmasks.
*/
--- channels.c~ Wed Jun 13 15:18:05 2001
+++ channels.c Thu Jul 12 08:32:53 2001
@@ -1160,6 +1160,14 @@
}
void
+channel_zero_set(fd_set *setp, int maxfdp)
+{
+ u_int sz =...
2011 Jun 09
1
Trying to make code more efficient
I have a repetative task in R and i'm trying to find a more efficient way to
perform
the following task.
lst <- list(roots = c("car insurance", "auto insurance"),
roots2 = c("insurance"), prefix = c("cheap", "budget"),
prefix2 = c("low cost"), suffix = c("quote", "quotes"),
2013 Mar 01
2
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
...add.f64 %fl5, %fl5, %fl5;
mul.f64 %fl4, %fl5, %fl4;
add.f64 %fl4, %fl4, %fl3;
mov.f64 %fl5, %fl6;
BB1_1:
mul.f64 %fl6, %fl5, %fl5;
mul.f64 %fl7, %fl4, %fl4;
add.f64 %fl8, %fl6, %fl7;
setp.lt.f64 %p0, %fl8, 0d4010000000000000;
setp.lt.f64 %p1, %fl2, %fl0;
and.pred %p0, %p0, %p1;
@!%p0 bra BB1_3;
bra.uni BB1_2;
BB1_3:
mov.f64 func_retval0, %fl2;
ret;
}
// .globl examples_2E_mandelbrot_2F_calc_2...
2012 Jul 10
0
[LLVMdev] [NVPTX] CUDA inline PTX asm definitions scoping "{" "}" is broken
...> > cat test.cu
> __attribute__((device)) __attribute__((nv_linkonce_odr)) __inline__ int __any(int a) {
> int result;
> asm __volatile__ ("{ \n\t"
> ".reg .pred \t%%p1; \n\t"
> ".reg .pred \t%%p2; \n\t"
> "setp.ne.u32 \t%%p1, %1, 0; \n\t"
> "vote.any.pred \t%%p2, %%p1; \n\t"
> "selp.s32 \t%0, 1, 0, %%p2; \n\t"
> "}" : "=r"(result) : "r"(a));
> return result;
> }
>
> > clang -cc1 -emit-llvm -fcuda-is...
2007 Sep 28
6
Graphics and LaTeX documents with the same font
Dear All,
I know how to export graphics as pdf files and then how to include
them in LaTeX documents. However, I do not know how to do in order to
have the text of the graphics written with the font selected for the
LaTeX document. Is that possible?
Thanks in advance,
Paul
2012 Jul 10
1
[LLVMdev] [NVPTX] CUDA inline PTX asm definitions scoping "{" "}" is broken
...; > cat test.cu
> __attribute__((device)) __attribute__((nv_linkonce_odr)) __inline__ int
> __any(int a) {
> int result;
> asm __volatile__ ("{ \n\t"
> ".reg .pred \t%%p1; \n\t"
> ".reg .pred \t%%p2; \n\t"
> "setp.ne.u32 \t%%p1, %1, 0; \n\t"
> "vote.any.pred \t%%p2, %%p1; \n\t"
> "selp.s32 \t%0, 1, 0, %%p2; \n\t"
> "}" : "=r"(result) : "r"(a));
> return result;
> }
>
> > clang -cc1 -emit-llvm -fcuda-is-...
2015 May 20
2
Samba-4.1.18 romaing profile causes memory leak
....
I got memory leak when every account with profile path setting logout.
Every account with profile path setting eat almost 10mB memory so my samba
machine crash if there are many hundred account with profile setting in
domain.
Any option in smb.conf or operation can help ?
This is my reproduce setps:
1. create domain "testdom.ork"
2. create 10 accounts and set profile path in "share"
for example : profile path of "user1 " is "\\dc.testdom.ork\share\user1"
3. check MemFree in /proc/meminfo
4. login/logout 10 accounts created in step 2
5. check MemFre...
2013 Mar 01
0
[LLVMdev] NVPTX CUDA_ERROR_NO_BINARY_FOR_GPU
...聽 %fl4, %fl4, %fl3;
>聽 聽 聽 聽 聽 聽 聽 聽 mov.f64聽 聽 聽 聽 聽 聽 聽 聽 %fl5, %fl6;
> BB1_1:
>聽 聽 聽 聽 聽 聽 聽 聽 mul.f64聽 聽 聽 聽 聽 聽 聽 聽 %fl6, %fl5, %fl5;
>聽 聽 聽 聽 聽 聽 聽 聽 mul.f64聽 聽 聽 聽 聽 聽 聽 聽 %fl7, %fl4, %fl4;
>聽 聽 聽 聽 聽 聽 聽 聽 add.f64聽 聽 聽 聽 聽 聽 聽 聽 %fl8, %fl6, %fl7;
>聽 聽 聽 聽 聽 聽 聽 聽 setp.lt.f64聽 聽 聽 聽 %p0, %fl8, 0d4010000000000000;
>聽 聽 聽 聽 聽 聽 聽 聽 setp.lt.f64聽 聽 聽 聽 %p1, %fl2, %fl0;
>聽 聽 聽 聽 聽 聽 聽 聽 and.pred聽 聽 聽 聽 聽 聽 聽 %p0, %p0, %p1;
>聽 聽 聽 聽 聽 聽 聽 聽 @!%p0 bra聽 聽 聽 聽 聽 聽 BB1_3;
>聽 聽 聽 聽 聽 聽 聽 聽 bra.uni聽 聽 聽 聽 聽 聽 聽 聽 BB1_2;
> BB1_3:
>聽 聽 聽 聽 聽 聽 聽 聽 m...
2006 Dec 26
1
xyplot line colors
Hello,
I have a longitudinal data with about 30 subjects. I used xyplot() to plot
the longitudinal data. One problem is that xyplot() recycles the color of
auto.key so that every 7th subject has the same color (symbol if setps() was
used). Is there a way so that every subject will have a unique color or
symbol?
Thanks
Osman
--
Osman O. Al-Radi, MD, MSc, FRCSC
Fellow, Cardiovascular Surgery
The Hospital for Sick Children
University of Toronto, Canada
[[alternative HTML version deleted]]