search for: ntid

Displaying 8 results from an estimated 8 matches for "ntid".

Did you mean: nid
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 computed, it is added to the previous w...
2012 Nov 14
0
Generating autogressive model in R
Dear R users, Please help me with the following problem. I have a data set of the form ´dat´   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))   The function auto is used to generate the autoregressive model:   auto <- function(seed,delta,beta,maxt,dat){ set.seed(seed)  sp <- lapply(split(dat,dat$id),function(x){  while(x$tid < maxt){  lambda <- delta*exp(beta*x$trt +0.1*x$ntid)  wait <- rexp(1,lambda)  x$tid...
2003 Sep 17
1
WG: smbadduser problem
.... 10 packages, and then notice that glibc, and gcc needs upgrading too and I'd just land in rpm dependency hell) >> milhouse:/etc # smbadduser mr:test > smbadduser -a mrtest.... > mrtest must be a user on the system... milhouse:/etc # smbadduser -a mr:test ERROR: Must use unixid:ntid like -> zak:zakharoffm No such map passwd.byname. Reason: Request arguments bad ERROR: mr Not in passwd database SKIPPING... I do assume that you meant smbadduser -a unixid:ntid And also: the user `mr' in this case is a user on the system (I can log in as this user without a problem)
2020 Sep 23
2
Information about the number of indices in memory accesses
...of every load and store is a GEP instruction. For simple stuff i am getting the right answer but when the index expression becomes more complex multiple GEPs are introduced. For instance: *(A+2*(blockDim.x*blockIdx.x+threadIdx.x+1)+2+3) = 5; produces:   %6 = call i32 @llvm.nvvm.read.ptx.sreg.ntid.x()   %7 = call i32 @llvm.nvvm.read.ptx.sreg.ctaid.x()   %8 = mul i32 %6, %7,   %9 = call i32 @llvm.nvvm.read.ptx.sreg.tid.x()   %10 = add i32 %8, %9,   %11 = add i32 %10, 1,   %12 = mul i32 2, %11,   %13 = zext i32 %12 to i64,   %14 = getelementptr inbounds i32, i32* %0, i64 %13   %15 = g...
2003 Sep 17
0
AW: WG: smbadduser problem
...m glad to hear that, that's for sure ;) > > > >ooops... i read to fast, sorry... > >i never used the smbadduser command. > >the script smbadduser in my system (i have debian) just add a line in the > >usermap file so you cap 'map' a unixid (local user) as a ntid (an alias or > >mapped user) checking if exist a user in the localmachine matching the > >unixid or if there is already a user mapped in smbpasswd with it. > > >I can suggest to find the usermap file and check if it is included in the > >smb.config file, then try to do th...
2018 Jun 07
2
XRay TID mismatch when forking
..._syscall(uint64_t nr) { uint64_t retval; asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11", "memory", "cc"); return retval; } ///////////// int main() { printf("\nTID of parent: %lu\n", internal_syscall(SYSCALL(gettid))); for(int i = 0; i < 10; i++) { if(fork()) { } else...
2020 Oct 03
2
Information about the number of indices in memory accesses
...ng the right answer but when the index > > expression becomes more complex multiple GEPs are introduced. For > > instance: > > > > *(A+2*(blockDim.x*blockIdx.x+threadIdx.x+1)+2+3) = 5; > > > > produces: > > > > %6 = call i32 @llvm.nvvm.read.ptx.sreg.ntid.x() > > %7 = call i32 @llvm.nvvm.read.ptx.sreg.ctaid.x() > > %8 = mul i32 %6, %7, > > %9 = call i32 @llvm.nvvm.read.ptx.sreg.tid.x() > > %10 = add i32 %8, %9, > > %11 = add i32 %10, 1, > > %12 = mul i32 2, %11, > > %13 = zext i32 %12 to i64, &...
2020 Oct 03
2
Information about the number of indices in memory accesses
...ion becomes more complex multiple GEPs are introduced. For >>> > instance: >>> > >>> > *(A+2*(blockDim.x*blockIdx.x+threadIdx.x+1)+2+3) = 5; >>> > >>> > produces: >>> > >>> > %6 = call i32 @llvm.nvvm.read.ptx.sreg.ntid.x() >>> > %7 = call i32 @llvm.nvvm.read.ptx.sreg.ctaid.x() >>> > %8 = mul i32 %6, %7, >>> > %9 = call i32 @llvm.nvvm.read.ptx.sreg.tid.x() >>> > %10 = add i32 %8, %9, >>> > %11 = add i32 %10, 1, >>> > %12 = mul i32...