search for: tid

Displaying 20 results from an estimated 1247 matches for "tid".

Did you mean: id
2010 May 20
1
sqldf: issues with natural joins
...39;m having trouble discovering what's going wrong with my use of natural joins via sqldf. Following the instructions under 4i at http://code.google.com/p/sqldf/, which discusses creating indices to speed joins, I have been only unreliably able to get natural joins to work. For example, > Tid <- c('AES 01-01-02 10:58:00', 'AES 01-01-02 11:53:00', 'AES 01-01-05 10:58:00', 'AES 01-01-11 12:30:00') > A <- data.frame(Tid, dfName = 'a') > B <- data.frame(Tid = Tid[2:4], dfName = 'b') > C <- data.frame(Tid = Tid[1:3], dfName...
2015 Dec 02
2
clang only spawns one thread
Hi, I am using LLVM 3.6.1 to test the following code: #include <omp.h> #include <stdio.h> #include <stdlib.h> int main() { int tid, nthreads; #pragma omp parallel sections private(nthreads, tid) { #pragma omp section { tid = omp_get_thread_num(); printf("Hello, tid = %d\n ", tid); } #pragma omp section { tid = omp_get_thread_num(); printf("Hello, tid = %d\n ", tid); } }...
2009 Sep 17
3
dtrace predicat
Hi, I''m a nub in dtrace, could you please help me to find the mistake? I need to implement the logic: - if PID and TID are defined, fire the probe for the particular thread of particular process; - if only PID is defined, fire the probe for the process including all threads. The predicat [i]syscall:::entry / (pid == PID && tid == TID )[/i] / works ok and return syscall for PID/TID process only. Then I se...
2018 Jun 07
2
XRay TID mismatch when forking
Hello, There seems to be a bug with the value of the thread ID (TID) that is generated by XRay when calling fork(). The value of the TID of the child has the same TID as its parent (this is seen in the “thread: “ field of the YAML output produced by the llvm-xray tool). This is a problem as the trace generated contains the same TID for the parent and children proce...
2007 Aug 10
2
jinfo, jboss and ExtendedDTraceProbes
...Configuration details: JDK 1.6.0_02-b05 SunOS t2k-ems-dev3 5.10 Generic_118833-36 sun4v sparc SUNW,Sun-Fire-T200 JBoss 4.0.3 SP1 Thread dump: Full thread dump Java HotSpot(TM) Server VM (1.6.0_02-b05 mixed mode): "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon prio=10 tid=0x008b8000 nid=0x2d waiting on condition [0xed27f000..0xed27faf0] java.lang.Thread.State: TIMED_WAITING (sleeping) at java.lang.Thread.sleep(Native Method) at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1546) at java.lan...
2009 May 04
2
FW: Oracle 9204 installation on linux x86-64 on ocfs
...ould help me to understand if I am doing something wrong. Thanks in advance. --------------------------------------------------cm.log file ---------------------------- oracm, version[ AMD64.9.2.0.4.0.00 ] started {Mon May 4 05:34:38 2009 } >TRACE: Can't read registry value for HeartBeat, tid = main:182895169120 file = unixinc.c, line = 1077 {Mon May 4 05:34:38 2009 } >TRACE: Can't read registry value for PollInterval, tid = main:182895169120 file = unixinc.c, line = 1077 {Mon May 4 05:34:38 2009 } >TRACE: Can't read registry value for WatchdogTimerMargin, tid = ma...
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...Enable all malloc(3) randomisations and checks TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" diff --git a/regress/localenvmod.sh b/regress/localenvmod.sh new file mode 100644 index 0000000..c986816 --- /dev/null +++ b/regress/localenvmod.sh @@ -0,0 +1,210 @@ +# Placed in the Public Domain. + +tid="localenvmod" + +cp $OBJ/ssh_proxy $OBJ/ssh_proxy.tmpl +echo 'PermitLocalCommand yes' >>$OBJ/ssh_proxy.tmpl + +cat <<EOI | sed -e 's/<SP>/ /g' >localenvmods.in +FOO=foo +FOO=<SP>foo +FOO<SP>=foo +FOO<SP>=<SP>foo +FOO=foo<SP&g...
2014 Apr 19
4
[LLVMdev] [NVPTX] Eliminate common sub-expressions in a group of similar GEPs
...compilers, leading to many similar GEPs for array accesses. e.g., a 2-level loop like __shared__ float a[32][32]; unroll for (int i = 0; i < 2; ++i) { unroll for (int j = 0; j < 2; ++j) { ... ... = a[threadIdx.x + i][threadIdx.y + j]; ... } } will be unrolled to: gep a, 0, tid.x, tid.y; load gep a, 0, tid.x, tid.y + 1; load gep a, 0, tid.x + 1, tid.y; load gep a, 0, tid.x + 1, tid.y + 1; load The NVPTX backend currently doesn't handle many similar multi-dimensional GEPs well enough. It emits PTX code that literally computes the pointer address of each GEP, wasting t...
2012 Oct 08
0
recurrent event data generation in r
Dear R users, Kindly help me to look into the following problem. I have a dataset like the following dat <- data.frame(id = seq(1:5), trt=c(0,0,1,1,1),tid=c(0,0,0,0,0),                   ntid=c(0,0,0,0,0)) I want to create waiting times using   B <- rexp(1) f1 <- (1/phi)+ ntid; f2 <- abs(1+phi*delta*tid*exp(beta*trt)) f3 <- phi*delta*exp(beta*trt) wait <- ((exp((B/f1)+log(f2))-1)/f3)-tid} for each subject. When the waiting time is co...
2008 Oct 30
2
[LLVMdev] Target description flags for instructions which may trap
...led the MachineLICM pass and it's causing a miscompilation by hoisting a divide by zero instruction out of the loop. Clearly this pass needs to be made aware that this is not safe. The current test in the MachineLICM is as follows: // Ignore stuff that we obviously can't hoist. if (TID.mayStore() || TID.isCall() || TID.isReturn() || TID.isBranch() || TID.hasUnmodeledSideEffects()) return false; Setting hasSideEffects = 1 seems to work, but I'm not sure if that's the intended use of this flag. I notice that divide / remainder instructions for other architectur...
2014 Apr 21
2
[LLVMdev] [NVPTX] Eliminate common sub-expressions in a group of similar GEPs
...2]; > > unroll for (int i = 0; i < 2; ++i) { > > unroll for (int j = 0; j < 2; ++j) { > > ... > > ... = a[threadIdx.x + i][threadIdx.y + j]; > > ... > > } > > } > > > > > > will be unrolled to: > > > > > > gep a, 0, tid.x, tid.y; load > > gep a, 0, tid.x, tid.y + 1; load > > gep a, 0, tid.x + 1, tid.y; load > > gep a, 0, tid.x + 1, tid.y + 1; load > > > > > > The NVPTX backend currently doesn't handle many similar > > multi-dimensional GEPs > > well enough. It em...
2001 Jun 26
1
Remote/Local X differences
...pletely diverges. I don't expect anyone to figure it out from all this; I would simply like a little advice-- Where do I go from here? There must be a clue that I'm missing. Thanks for listening. - Tony Remote: 08067e10:RET ifrcm60.942: simfr() retval = 00000000 ret=5df63905 tid=08067e10 08067e10:CALL ifrcm60.38: iccsrl(40ec8f50,443adb84 "GJAPCTL") ret=5df63913 08067e10:RET ifrcm60.38: iccsrl() retval = 443adb84 ret=5df63913 tid=08067e10 08067e10:CALL ifrcm60.622: itbtas(40ec8f50,00000004,00000023,405c6484,405c6460) ret=5def5f25 08067e10:CALL uirem60.390: utbn...
2003 Jun 06
2
ALSA driver problems
I want to try ALSA driver since the sound quality of OSS driver is not so good (a little choppy but bearable when playing Diablo). After changing my .wine/config to [WinMM] ; Uncomment the "Drivers" line matching your sound setting. ;"Drivers" = "wineoss.drv" ; default for most common configurations ;"Drivers" = "winearts.drv" ; for KDE
2018 Jun 28
2
XRay feature – pid reporting
I'm still somewhat unclear about what you mean by "metadata record entry at the beginning of the block". I understand that I can make a MetadataRecord that contains the pid/tid since a metadata record contains 16 bytes. However, I don't understand what do you mean by the "beginning of the block". Do you mean right after the file header? My understanding is that at initialization, the generated log file should contain: [File header with pid][metadata record...
2009 Nov 17
2
src/dst TIDs static @ 69 ?
At times our tftp servers are quite busy. Our network folk are rebuilding, and are anxious to tighten security. They hope to only allow tftp traffic on port 69, coming and going. This would bypass the RFC1350 client TID=ephemeral and server ACK TID=!69. Is there any chance tftpd-hpa would do this with "-R 69:69", or would this require tftpd-hpa to threaded, with a hairier connection lookup? Can the syslinux client be constrained to send tftp from port 69? [ googling, R'ing TFM, and even glancing br...
2012 Mar 22
2
Order of terms in formula changes aov() results
Hello, This one is very perplexing. I have teacher observation data, with factors teacher ID, observer ID, component, grade and subject. When I do this, aov(data=ratings.prin.22, rating ~ obsid.f + tid.f + subject.f + grade.f + comp.f) I get this: Terms: obsid.f tid.f grade.f comp.f Residuals Sum of Squares 306.23399 221.38173 1.70000 14.52831 279.05780 Deg. of Freedom 74 87 2 9 1406 This looks right. There are about 82 observer...
2009 Dec 08
6
conditionally merging adjacent rows in a data frame
Hi, I have a data frame and want to merge adjacent rows if some condition is met. There's an obvious solution using a loop but it is prohibitively slow because my data frame is large. Is there an efficient canonical solution for that? > head(d) rt dur tid mood roi x 55 5523 200 4 subj 9 5 56 5523 52 4 subj 7 31 57 5523 209 4 subj 4 9 58 5523 188 4 subj 4 7 70 4016 264 5 indic 9 51 71 4016 195 5 indic 4 14 The desired result would have consecutive rows with the same roi value merged. dur values should be added and x...
2013 Oct 29
1
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"
..."ggmap", "RColorBrewer"), dependencies = TRUE) Creo recordar que en el bar S10 *no* hay wifi, mejor llevarlos instalados desde casa. ¡Nos vemos esta tarde! -- Pedro Concejero BigData - Analytics @ Telefónica I+D<http://www.tid.es/es/Paginas/default.aspx> Part of Telefónica Digital<http://www.telefonica.com/es/digital/html/home/home.shtml> / Telefónica Digital Hub (english)<http://blog.digital.telefonica.com/> E-mail: pedro.concejero@tid.es<mailto:pedro.concejero@tid.es> skype: pedro.concejero twitter...
2013 Dec 10
3
gplots y alternativas
...necesita LaTex. ¿Conocéis alguna librería además de gplots que permita mezclar texto -p.ej. un summary- y gráficos en un único pdf? ¿Se puede hacer que ggplot2 combine en un único pdf salida en forma de texto y tablas? Gracias! -- Pedro Concejero BigData - Analytics @ Telefónica I+D<http://www.tid.es/es/Paginas/default.aspx> Part of Telefónica Digital<http://www.telefonica.com/es/digital/html/home/home.shtml> / Telefónica Digital Hub (english)<http://blog.digital.telefonica.com/> E-mail: pedro.concejero@tid.es<mailto:pedro.concejero@tid.es> skype: pedro.concejero twitter...
2013 Jun 26
1
Resumen de R-help-es, Vol 52, Envío 33
...nes de la sesión sobre ecuaciones estructurales (SEM) así como los vídeos -como ya anunció Carlos ayer- están subidos a la página del Grupo de Madrid: http://r-es.org/Grupo+de+Inter%C3%A9s+Local+de+Madrid+-+GIL+Madrid Saludos! -- Pedro Concejero BigData - Analytics @ Telefónica I+D<http://www.tid.es/es/Paginas/default.aspx> Part of Telefónica Digital<http://www.telefonica.com/es/digital/html/home/home.shtml> / Telefónica Digital Hub (english)<http://blog.digital.telefonica.com/> E-mail: pedro.concejero@tid.es<mailto:pedro.concejero@tid.es> skype: pedro.concejero twitter...