search for: commensurable

Displaying 20 results from an estimated 70 matches for "commensurable".

2017 Sep 30
4
Converting SAS Code
On 9/29/2017 3:37 PM, Rolf Turner wrote: > On 30/09/17 07:45, JLucke at ria.buffalo.edu wrote: > > <SNIP> > >> >> The conceptual paradigm for R is only marginally commensurate with >> that of >> standard statistical software. >> You must immerse yourself in R to become proficient. > > Fortune nomination. For newer list members wondering what
2009 Sep 16
2
[LLVMdev] FYI: Phoronix GCC vs. LLVM-GCC benchmarks
...GCC :). Lots of people use > -O2 and -Os, so comparing against other compiler's -O2 and -Os levels > is just as interesting as comparing -O3 vs -O3. > My thinking was that, for instance, -02 for GCC and -02 for LLVM(-GCC) do not necessarily mean the same thing, they may be not /commensurable/. But perhaps, my ignorance, you are saying that they _are_, that LLVM assigns the same types of optimizations as GCC to the different levels. Regards, Stefano
2017 Sep 29
2
Converting SAS Code
I wish to second this approach to learning R. I tried for several years to translate other stat programs or provide parallel analyses with R. This dabbling-in-R approach did not work . When a transferred to a research unit that could ill afford commercial software, I devoted my entire time to doing everything in R. This was a difficult learning process, but I eventually became proficient
2012 Feb 23
1
[PATCH] Support 56kHz to 19.2kHz gain analysis (Patch v4)
This implementation uses decimation to generate an estimate of the required ReplayGain adjustment for tracks sampled at high rates. This approach avoids having to generate filters with commensurately more taps, and also the subsequent effect on performance as these additional taps are evaluated for high sample rate tracks. Filter table entries with coefficients that are unchanged are marked /*
2020 Sep 09
1
more Matrix weirdness
Am I being too optimistic in expecting this (mixing and matching matrices and Matrices) to work? If x is a matrix and m is a Matrix, replacing a commensurately sized sub-matrix of x with m throws "number of items to replace is not a multiple of replacement length" ... x <- matrix(0,nrow=3,ncol=10, dimnames=list(letters[1:3],LETTERS[1:10])) rr <-
2017 Sep 29
0
Converting SAS Code
On 30/09/17 07:45, JLucke at ria.buffalo.edu wrote: <SNIP> > > The conceptual paradigm for R is only marginally commensurate with that of > standard statistical software. > You must immerse yourself in R to become proficient. Fortune nomination. cheers, Rolf -- Technical Editor ANZJS Department of Statistics University of Auckland Phone: +64-9-373-7599 ext. 88276
2009 Sep 16
0
[LLVMdev] FYI: Phoronix GCC vs. LLVM-GCC benchmarks
...>> use -O2 and -Os, so comparing against other compiler's -O2 and -Os >> levels is just as interesting as comparing -O3 vs -O3. > > My thinking was that, for instance, -02 for GCC and -02 for LLVM(- > GCC) do not necessarily mean the same thing, they may be not / > commensurable/. > But perhaps, my ignorance, you are saying that they _are_, that LLVM > assigns the same types of optimizations as GCC to the different > levels. Right, we want them to be roughly comparable. O0 -> best debug experience, fastest compile times. O2 -> optimize without bloating...
1999 Jun 25
0
ACLs and least surprise (was Samba vs. NetAppliance)
...ot; when an NFS user finds that she can't > execute a file because one of the DOS bits was flipped on by a Windows user? Methinks "least surprise" is really only applicable to things which are very close in behavior. The is a principle of "no surprise" applicable to commensurable things: if one of the services' operations is a proper subset of the other, then one can argue for no or least surprise. If one has no overlap between the two things' behaviors, everything is a surprise! And between the two comes a muddy middle, full of execute and "hidden&qu...
2014 Mar 05
2
[LLVMdev] A "backend" is ... ?
I haven't run out of popcorn watching the "Upstreaming PNaCl's IR simplification passes" thread but one thing struck me that I would really like clarified. It feels like a tangential issue so I thought I'd ask it separately. In the very same message, I see this: >>>> Some background:  There are two related use cases for these >>>> IR simplification
2010 May 16
4
ISDN config: LBO values
Hi all, When configuring Asterisk with an ISDN card, it will at one point become necessary to select the LBO (Line Build-Out) value. This is an integer (0-7) that is determined by the length of the cable and is selected from the following table. Many of us are familiar with it: CSU (dB) DSX-1 (feet) ------------------------------- 0 0 0?133 1
2019 Apr 29
1
R 3.6.0 for Debian buster
On 29 April 2019 at 15:03, Kurt Hornik wrote: | >>>>> Johannes Ranke writes: | | > Am Montag, 29. April 2019, 13:44:03 CEST schrieb Kurt Hornik: | >> >>>>> Johannes Ranke writes: | >> Thanks. You may have seen that with current gfortran in | >> testing/unstable, there are problems with the R BLAS/LAPACK API entries | >> using a Fortran
2002 Oct 08
3
status of CRAN
Dear List the other day, I had my yearly staff interview with my Head of Department. Under my list of publications, I included a document which I wrote (R-and-octave.txt) that ended up in the "contributed docs" section of CRAN. Unfortunately, neither my HoD nor the personnel person were terribly impressed with it, even though its preparation time was commensurate with many of my (co
2014 Mar 05
4
[LLVMdev] Upstreaming PNaCl's IR simplification passes
On Tue, Mar 4, 2014 at 6:17 PM, Chandler Carruth <chandlerc at google.com>wrote: > On Tue, Mar 4, 2014 at 1:04 PM, Mark Seaborn <mseaborn at chromium.org>wrote: > >> The PNaCl project has implemented various IR simplification passes that >> simplify LLVM IR by lowering complex features to simpler features. We'd >> like to upstream some of these IR passes
2005 Nov 15
1
An optim() mystery.
I have a Master's student working on a project which involves estimating parameters of a certain model via maximum likelihood, with the maximization being done via optim(). A phenomenon has occurred which I am at a loss to explain. If we use certain pairs of starting values for optim(), it simply returns those values as the ``optimal'' values, although they are definitely not
2013 Jul 17
0
[LLVMdev] [RFC] Add warning capabilities in LLVM.
On Tue, Jul 16, 2013 at 9:34 PM, Bob Wilson <bob.wilson at apple.com> wrote: > > On Jul 16, 2013, at 5:51 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > > On Tue, Jul 16, 2013 at 5:21 PM, Quentin Colombet <qcolombet at apple.com> > wrote: > > ** Advices Needed ** > > 1. Decide whether or not we want such capabilities (if we do not we may >
2009 Sep 16
0
[LLVMdev] FYI: Phoronix GCC vs. LLVM-GCC benchmarks
On Sep 16, 2009, at 6:46 AM, Stefano Delli Ponti wrote: > Olivier Meurant: >> I have run the john the ripper test. >> I have used the official archive (same version as phoronix) from >> http://www.openwall.com/john/g/john-1.7.3.1.tar.bz2 >> >> To build with llvm-gcc, replace the line CC = gcc with CC = llvm-gcc. >> I have used the following command to build
2016 Feb 27
0
[JOB] Job opportunity for compiling DSLs and automatic differentiation in finance
Greetings, My team at Numerix LLC (www.numerix.com) is spinning up what I expect to be a long term effort using LLVM to generate fast code for calculations on financial instruments. One area we will apply apply LLVM is compiling instead of interpreting our domain specific language (DSL) that our customers use for modeling complex financial instruments to dramatically improve performance. A less
2017 Sep 30
0
Converting SAS Code
On 01/10/17 01:22, Robert Baer wrote: > > > On 9/29/2017 3:37 PM, Rolf Turner wrote: >> On 30/09/17 07:45, JLucke at ria.buffalo.edu wrote: >> >> <SNIP> >> >>> >>> The conceptual paradigm for R is only marginally commensurate with >>> that of >>> standard statistical software. >>> You must immerse yourself in R
2007 Jun 06
0
Job: R Package Developer / Consulting Statistician
R Package Developer / Consulting Statistician Burlington, Vermont Precision Bioassay is a small and growing statistical consulting firm specializing in the design and analysis of biological assays of pharmaceutical proteins and vaccines. We are building a turnkey software solution for cell culture bioassay that integrates optimal design of bioassay experiments, implementation of designs using
2009 Sep 08
0
Genentech Nonclinical Biostatistics Position in South San Francisco
Nonclinical Biostatistics position at Genentech, South San Francisco September 3, 2009 Genentech has an opening for a full time position in its Nonclinical Biostatistics group, located in South San Francisco, CA. The nonclinical group currently consists of ten MS and PhD level statisticians and mathematicians, plus one programmer, who work with approximately 1,000 scientists, engineers, and