Displaying 20 results from an estimated 100 matches similar to: "Interpreting and visualising lme results"
2017 Dec 15
4
RFC: Exposing TargetTransformInfo factories from TargetMachine
On Fri, Dec 15, 2017 at 5:30 AM, Hal Finkel <hfinkel at anl.gov> wrote:
> Are there reasons why we might not want to do this? Other options we should
> consider?
It does make the TargetMachine -> TargetIRAnalysis path less abstract,
but given that all targets have the same pattern of instantiating a
TargetIRAnalysis with a Function->TargetTransformInfo hook, the
abstraction does
2017 Dec 15
2
RFC: Exposing TargetTransformInfo factories from TargetMachine
Hi all,
I'd like to be able to use TargetTransformInfo to make architecture
specific code generation decisions from the XLA LLVM IR emitter[0].
However, we don't have a great way to do this today --
TargetTransformInfo is wrapped in a TargetIRAnalysis and getting the
TargetTransformInfo out of it requires something like:
FunctionAnalysisManager DummyFAM;
TTI = TIRA.run(F, DummyFAM);
2019 Dec 26
2
[Job Ad]Alibaba Group is hiring deep learning compiler engineers
Hi,
I’m writing this email behalf of my manager in Alibaba. Our team is working on a deep learning engine called MNN. We open sourced it this May. (Github link here: https://github.com/alibaba/MNN ).
It has industry-leading blazing fast inference speed on mobile and it is tiny in size. In the internal experiments we ran, MNN outperforms other inference engines under almost all settings by
2018 May 04
2
Thank you from the Glow Developers
Hello LLVM community,
We have been working hard on a new domain specific optimizing compiler, and
we
are pleased to announce that we have recently open sourced the project! We
would like to introduce you to Glow, an optimizing compiler for neural
networks!
This new compiler is built on the hard work of this community and we would
like
to thank all of the contributors to the LLVM project. We
2018 May 05
0
Thank you from the Glow Developers
Very cool! The first thing that jumps out to me is how tidy and modular the
code structure is. The code feels very familiar (stylistically,
organizationally, etc.) to me as an LLVM developer.
One thing that wasn't at all clear to me is how this is different/similar
to TensorFlow XLA (previously mentioned on this list). Can you briefly
compare and contrast this with TensorFlow XLA?
-- Sean
2005 Feb 02
1
Oplock errors in 2.2.8a
Hi,
We are having connection timeout issues in Excel and Word. Was this an
issue that was resolved in post 3.0 versions? We are running 2.2.8a.
Below is the samba log file and I have attached a netmon output.
Thanks,
Domenic
[2005/01/24 09:13:48, 0] smbd/oplock.c:oplock_break(797)
oplock_break: receive_smb timed out after 30 seconds.
oplock_break failed for file
2019 Mar 16
3
[RFC] Making space for a flush-to-zero flag in FastMathFlags
Hi,
I need to add a flush-denormals-to-zero (FTZ) flag to FastMathFlags,
but we've already used up the 7 bits available in
Value::SubclassOptionalData (the "backing storage" for
FPMathOperator::getFastMathFlags()). These are the possibilities I
can think of:
1. Increase the size of FPMathOperator. This gives us some additional
bits for FTZ and other fastmath flags we'd want
2008 Oct 05
1
Excel Solver Add-In / Alternatives
Hi,
I can't seem to get any Excel Add-Ins to work. In particular, I need the 'Solver' for an assignment ...
I've tried with two office versions (2007/2003), which I've managed to install successfully (you have to enable the Solver add-in during installation), but it's the same every time.
When I try to start it up I get a message saying can't access SOLVER.XLA, and
2007 Dec 07
4
Using R function in Excel
Does anyone know a way that an function written in R can be called within a cell of an Excel spreadsheet. I would like to use the R function much as I use the native Excel functions, e.g. instead of using the excel function sum, =sum(A2,A6), I would like to use the function mysum written in R, e.g. =mysum(A2,A6).
Thanks,
John
John Sorkin M.D., Ph.D.
Chief, Biostatistics and Informatics
2019 Mar 18
2
[RFC] Making space for a flush-to-zero flag in FastMathFlags
On Sun, Mar 17, 2019 at 1:47 PM Craig Topper <craig.topper at gmail.com> wrote:
> Can we move HasValueHandle out of the byte used for SubClassOptionalData and move it to the flags at the bottom of value by shrinking NumUserOperands to 27?
I like this approach because it is less work for me. :)
But I agree with Sanjay below that this only kicks the can slightly
further down the road
2006 May 18
3
share with no authentication
Hello,
I got this problem:
I want to mount a directory without providing a login/password [indicaf$].
I thought that "guest ok = yes" would be sufficient.
But it not works.
What option is the right one to open a share to everyone without a login box in windows ?
Thanks.
This is my smb.conf (samab v3.0.7):
tccwebcom# more smb.conf
# Samba config file created using SWAT
# from
2019 Aug 01
2
[RFC] A new multidimensional array indexing intrinsic
On Jul 29, 2019, at 1:30 PM, Michael Kruse <llvmdev at meinersbur.de> wrote:
>> Have you been following what is happening on the MLIR side of the world? It directly supports multi-dimensional arrays with both value and buffer semantics (e.g. load, store, and DMA operations). It is specifically focused on solving these sorts of problems, and is the current proposed direction for the
2018 Jan 19
0
RFC: Import of Integer Set Library into LLVM source tree
On Mon, Jan 15, 2018 at 05:52:02PM +0100, Michael Kruse via llvm-dev wrote:
> * The library is named LLVMISL and contained in the lib/ISL folder to
> work best with LLVM's component system. The component's name "ISL" was
> chosen over "isl" as it matches the capitalization of other
> two/three-letter-acronym components.
Are the ISL sources themselve put
2019 Jul 28
2
[RFC] A new multidimensional array indexing intrinsic
On Jul 25, 2019, at 7:20 AM, Michael Kruse via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> Am Mi., 24. Juli 2019 um 16:13 Uhr schrieb Tim Northover
> <t.p.northover at gmail.com>:
…
Siddharth’s original RFC <https://github.com/bollu/llvm-multidim-array-indexing-proposal/blob/master/RFC.md>
...
>> Apart from all that, I'm pretty disappointed to see this as an
2019 Mar 18
3
[RFC] Making space for a flush-to-zero flag in FastMathFlags
We knew the day when we needed another FMF bit was coming back in:
https://reviews.llvm.org/D39304
...it was just a question of 'when'. :)
I'm guessing that an FTZ bit won't be the last new bit needed if we
consider permutations between strict FP and fast-math. Even without that,
denormals-as-zero (DAZ) might also be useful?
So rather than continuing to carve these out bit-by-bit,
2011 Jun 07
0
WNetGetUniversalNameW error with Office 2000
Hello,
OS: Ubuntu 10.04.2 LTS (lucid)
wine: wine-1.3.21 (AFAIK, that's the lastest)
After following the instruction from http://www.winehq.org/download/ubuntu, I cannot get Office2000 to run...
I get the following errors when running Word and Excel, then they hangs repeating the same message.
Code:
$ wine WINWORD.EXE
fixme:x11drv:X11DRV_GetDeviceCaps (0x530): CAPS1 is unimplemented, will
2020 Apr 08
6
RFC: a practical mechanism for applying Machine Learning for optimization policies in LLVM
TL;DR; We can improve compiler optimizations driven by heuristics by
replacing those heuristics with machine-learned policies (ML models).
Policies are trained offline and ship as part of the compiler. Determinism
is maintained because models are fixed when the compiler is operating in
production. Fine-tuning or regressions may be handled by incorporating the
interesting cases in the ML training
2020 Apr 09
3
RFC: a practical mechanism for applying Machine Learning for optimization policies in LLVM
+Yundi Qian <yundi at google.com> +Eugene Brevdo <ebrevdo at google.com> , our
team members from the ML side.
To avoid formatting issues, here is a link to the RFC
<https://docs.google.com/document/d/1BoSGQlmgAh-yUZMn4sCDoWuY6KWed2tV58P4_472mDE/edit?usp=sharing>,
open to comments.
Thanks!
On Wed, Apr 8, 2020 at 2:34 PM Mircea Trofin <mtrofin at google.com> wrote:
>
2020 Apr 08
2
RFC: a practical mechanism for applying Machine Learning for optimization policies in LLVM
It turns out it's me, sorry. Let me see how I can sort this out. In the
meantime, here is the csv:
SPEC2006 data:
binary,base -Oz size,ML -Oz size,ML size shrink by,,perf: base -Oz
scores,perf: ML -Oz scores,ML improvement by
400.perlbench,2054200,2086776,-1.59%,,2.9,2.9,0.00%
401.bzip2,1129976,1095544,3.05%,,6.4,6.2,-3.13%
403.gcc,4078488,4130840,-1.28%,,11.6,11.7,0.86%
2003 Jan 09
0
Installing R-Excel Interface - Help requested (long)
Dear All,
I have attempted to install the R-Excel Interface with poor results.
The version of R is 1.6.1, the version of R-Excel is 1.0, the version of COM
is 0.99. All of these were downloaded Monday, 6 January 2003. R (version
1.6.1) is installed on the machine and appears to run correctly on its own.
The computer is a Compaq Pentium 4 machine with 128 meg of RAM running
Windows 2000 and