search for: gor

Displaying 20 results from an estimated 128 matches for "gor".

Did you mean: for
2006 Aug 04
3
Help with short time series
Dear R-list, I have a statistical problem with the comparison of two short time-series of density data in an ecological framework. I have to compare two short time series (5 years, one value for each year) of species density data (it is the density of fish in two different streams) to test if the two means of the five densities are significantly different, so basically if the two mean
2020 Feb 24
0
Encrypted container on CentOS VPS
...this simply like a separate file that is LUKS-encrypted and I would then mount it for remote access? If so, what would prevent the hosting company - which I presume is the root user - from also accessing it? That's that precisely, very easy. a) use dd to create a a file, eg.: dd if=/dev/zero of=gor.loop bs=1M count=2000 b) luks encrypt it: cryptsetup luksFormat gor.loop c) dev mapper mount it: cryptsetup luksOpen gor.loop luks-gor.loop d) fs it: mkfs.ext4 /dev/mapper/luks-gor.loop e) mount it:? mount /dev/mapper/luks-gor.loop $PWD/gor.rootfs.encrypted f) use it (to simplify I'd put cryptO...
2007 Nov 26
1
boot is stopping in the system log gor status for a while
Hi all The system is stopping in the system log gor status. what is next? how do I check thank you ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs
2020 Feb 23
4
Encrypted container on CentOS VPS
On 02/17/2020 05:03 AM, lejeczek via CentOS wrote: > On 16/02/2020 15:18, H wrote: >> I wonder if it is possible to set up an encrypted "file container" on a CentOS VPS? I am the root user of the VPS but the hosting company also has access to the VPS and thus all files. Is it possible to create a LUKS-container on the VPS and those files only be accessible by me? IOW, most of
2009 Jun 22
21
Build 115 fresh install.XVM crashes on boot.
Completely fresh,virgin install of b115 SXCE ,zero modifications done. If select XVM from boot menu,it comes all the way till "Starting Desktop login on Display:0..." and reboots. Regular Solaris(not XVM) boots fine. Intel XEON CPU,8G RAM Intel S3210SHLX motherboard(http://www.intel.com/Products/Server/Motherboards/Entry-S3200SH/Entry-S3200SH-overview.htm) Please help and thanks a lot
2011 Mar 16
2
Numeric vector converted mysteriously to characters in data frame?
...1854,55848,45857,30584,25475,20574) region <- "North East" test1 <- as.data.frame(cbind(region,ageband,agenames,popcount)) region <- "North West" test2 <- as.data.frame(cbind(region,ageband,agenames,popcount)) test <- rbind(test1,test2) names(test) <- c("GOR","Band","AgeBand","Persons") # When I plot my numeric data from the df it is treated as character vector... hg1 <- barchart(AgeBand ~ Persons | GOR, data=test, origin=0, layout=c(2,1), reference=TRUE, xlab="Count (...
2016 Jun 10
2
[RFC] LLVM Coroutines
...t block at coro.suspend, new block becomes the resume label X 2. RAUW coro.suspend with 0 in f.resume and 1 in f.destroy 3. Replace coro.suspend with 'br %suspend' coro.end expands as before: in f => no-op in f.resume/f.destroy => ret void (+ fancy things in landing pads) Gor On Thu, Jun 9, 2016 at 4:50 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Thu, Jun 9, 2016 at 2:33 PM, Gor Nishanov <gornishanov at gmail.com> wrote: >> >> Lowering of coro.suspend number X: >> >> 1) split block at coro.suspend, new block becomes j...
2016 Jun 12
2
[RFC] LLVM Coroutines
...loper may have a queue of suspended coroutines that is processed by a scheduler, so a coroutine can queue its handle on suspension either into a global queue or thread_local queue. If there are no destructors to run for parameters, the return block would be simply: return: ret void Cheers, Gor
2016 Jul 15
4
RFC: Coroutine Optimization Passes
...ctions that are faster to scan for coroutine intrinsics then to scan potentially longer list of coroutine intrinsics users. BTW, Do you have a preference on how to restart CGSCC pipeline? One of the four options I listed (repeated in P.S), or even some better way I did not think about? Thank you, Gor P.S. Option 1: https://reviews.llvm.org/D21569 (no longer relevant, since we are removing AttrKind::Coroutine) Option 2: https://reviews.llvm.org/D21570 (bool& Devirt in runSCC) Option 3: https://reviews.llvm.org/D21572 (virtual bool restatedRequeste...
2016 Jun 15
2
[RFC] LLVM Coroutines
...hat kind of coroutine user is trying to build, it should take a conservative approach. LLVM should not introduce writes or reads to a coroutine frame in the return block if they weren't there, but, if frontend put them there, LLVM should not replace them with `@llvm.traps` and `undef`s either. Gor On Tue, Jun 14, 2016 at 1:25 PM, Sanjoy Das <sanjoy at playingwithpointers.com> wrote: > Hi Gor, > > On Sun, Jun 12, 2016 at 6:40 PM, Gor Nishanov <gornishanov at gmail.com> wrote: >> Quick answer: folding %val to 10 is OK, but, I would prefer it to be 'undef' &g...
2016 Jun 14
2
Calling a null pointer. How undefined it is?
...} bool IsDone() { return Fn == nullptr; } }; Fn field serves two purposes: * Cheap check for done. What can be better than compare with zero! * Guard against programmer mistake: accidentally calling Go() when in a Stopped state. Is it an appropriate use of undefined behavior? Thank you, Gor P.S. This iassumes -O3 with no ubsan. Sanitizer can, of course, add a null check in Go() prior to an indirect call.
2016 Jun 09
2
[RFC] LLVM Coroutines
...block becomes jump point for resumption X 2) RAUW coro.suspend with i1 true in resume clone i1 false in destroy clone 3) replace coro.suspend with br %return.block in 'f', 'ret void' in clones Scratch the proposed corosuspend instruction. I think the intrinsic will work just fine! Gor
2016 Jun 13
3
[RFC] LLVM Coroutines
...pass that runs at EP_EarlyAsPossible extension point, we can replace: %val = *%t with %val = undef (used after coro.fork() returned true) and free(%mem) (*%t) = 20 with @llvm.trap() ; used after frame is destroyed --Gor
2016 Jul 21
2
RFC: LLVM Coroutine Representation, Round 2
cc llvm-dev On Thu, Jul 21, 2016 at 9:57 AM, Vadim Chugunov <vadimcn at gmail.com> wrote: > Hi Gor, > Does you design support resumption with parameter(s)? (such as Python's > generator.send(x)). I suppose the "promise" could be used for passing data > both ways, but if that's the plan, please mention this explicitly in the > design doc. > Also, how is loading/...
2009 Jun 27
4
Bult-in XVM VNC Server - How to enable multiple sessions ?
I noticed only one connection at a time is supported.Is it possible to make it accept multiple viewer sessions simultaneously ? Thanks. -- This message posted from opensolaris.org
2016 Jun 09
6
Fwd: [RFC] LLVM Coroutines
...last parameter to refer to that constant. Other questions --------------- I have more questions about the best way of plugging in coroutine optimization passes into the PassManager, but, I will defer those for later discussion. All the feedback and comments is greatly appreciated!!! Thank you, Gor References: =========== [1] http://open-std.org/JTC1/SC22/WG21/docs/papers/2016/p0057r4.pdf [2] http://llvmweekly.org/issue/95 (Coroutine support added to clang) [3] http://www.boost.org/doc/libs/1_61_0/libs/coroutine/doc/html/index.html Review Links: ============= doc/Coroutines.rst: http://re...
2012 Feb 07
2
Weighted mad
...time=pool$ym),weighted.mean,w=pool$wght) Error in weighted.mean.default(X[[1L]], ...) : 'x' and 'w' must have the same length Apparently the grouping does not work on the additional argument. I am using weighted mean here just to be explicit and avoid supplying a custom function gor weighted MAD, which is not difficult to write by itself. It's making it work with aggreagte that is the problem. > aggregate function (x, ...) UseMethod("aggregate") <environment: namespace:stats> Does not show anything... Stephen B
2016 Jun 09
2
Fwd: [RFC] LLVM Coroutines
...r" is still part of the f, but nicely delineated with corobegin and coro.end. corobegin to label %coro.start suspend label %retblock corosuspend [final] [save %token] resume label %resume cleanup label %cleanup call void @llvm.coro.end(); Does it look better? Gor On Thu, Jun 9, 2016 at 1:33 AM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Wed, Jun 8, 2016 at 10:57 PM, Gor Nishanov via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> >> Hi all: >> >> Below is a proposal to add experimental coroutine support...
2020 Apr 17
2
[PATCH V2] vhost: do not enable VHOST_MENU by default
...bogend at alpha.franken.de> >> Cc: Benjamin Herrenschmidt<benh at kernel.crashing.org> >> Cc: Paul Mackerras<paulus at samba.org> >> Cc: Michael Ellerman<mpe at ellerman.id.au> >> Cc: Heiko Carstens<heiko.carstens at de.ibm.com> >> Cc: Vasily Gorbik<gor at linux.ibm.com> >> Cc: Christian Borntraeger<borntraeger at de.ibm.com> >> Reported-by: Geert Uytterhoeven<geert at linux-m68k.org> >> Signed-off-by: Jason Wang<jasowang at redhat.com> > I rebased this on top of OABI fix since that > seems mo...
2020 Apr 17
2
[PATCH V2] vhost: do not enable VHOST_MENU by default
...bogend at alpha.franken.de> >> Cc: Benjamin Herrenschmidt<benh at kernel.crashing.org> >> Cc: Paul Mackerras<paulus at samba.org> >> Cc: Michael Ellerman<mpe at ellerman.id.au> >> Cc: Heiko Carstens<heiko.carstens at de.ibm.com> >> Cc: Vasily Gorbik<gor at linux.ibm.com> >> Cc: Christian Borntraeger<borntraeger at de.ibm.com> >> Reported-by: Geert Uytterhoeven<geert at linux-m68k.org> >> Signed-off-by: Jason Wang<jasowang at redhat.com> > I rebased this on top of OABI fix since that > seems mo...