search for: xla

Displaying 20 results from an estimated 27 matches for "xla".

Did you mean: xl
2012 Oct 26
2
Interpreting and visualising lme results
Dear R users, I have used the following function (in blue) aiming to find the linear regression between MOE and XLA and nesting my data by Species. I have obtained the following results (in green). model4<-lme(MOE~XLA, random = ~ XLA|Species, method="ML")summary(model4) Linear mixed-effects model fit by maximum likelihood Data: NULL         AIC     BIC   logLik  -1.040187 8.78533 6.520094 Random eff...
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); return *TTI; which isn...
2017 Dec 15
4
RFC: Exposing TargetTransformInfo factories from TargetMachine
...articularly useful. I might do even a simpler form of the patch though -- instead of returning a function pointer from TargetMachine, just add a virtual function to TargetMachine that creates the TargetTransformInfo directly from a Function. -- Sanjoy > > -Hal > >> >> [0]: XLA is a machine learning focussed linear algebra compiler >> https://www.tensorflow.org/performance/xla/ that uses LLVM for its CPU >> and GPU backends. >> >> -- Sanjoy >> _______________________________________________ >> LLVM Developers mailing list >> llvm-...
2019 Dec 26
2
[Job Ad]Alibaba Group is hiring deep learning compiler engineers
...ustry-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 about 20% - 40%. And we are trying to make it even faster and support more computational backends by exploring MLIR, XLA, TVM and the like. We’d love to hear from anyone interested in the following position: Company: Alibaba. Location: Hangzhou or Beijing in China. Language: Chinese is preferred. Job Description: You will be working on MNN with a team of enthusiastic, energetic, talented and hard-working engin...
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 Silva On Thu, May 3, 2018, 6:14 PM Saleem Abdulrasool via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hello LLVM community, > > We have been working hard on a new domai...
2005 Feb 02
1
Oplock errors in 2.2.8a
...rsions? 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 lotus/data/WeightedAverageFunction.xla (dev = 3996f31, inode = 66801, file_id = 197). [2005/01/24 09:13:48, 0] smbd/oplock.c:oplock_break(869) oplock_break: client failure in oplock break in file lotus/data/WeightedAverageFunction.xla ************************************************************** This message, including any attachm...
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
2011 Jun 07
0
WNetGetUniversalNameW error with Office 2000
...ot;C:\\users\\labbe\\Application Data\\Microsoft\\Word", 0x00000001, 0x33c244, 0x33c668): stub Code: $ wine EXCEL.EXE fixme:storage:create_storagefile Storage share mode not implemented. fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files\\Microsoft Office\\Office\\Macrolib\\EUROTOOL.XLA", 0x00000001, 0x33a65c, 0x33aa80): stub fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files\\Microsoft Office\\Office\\Macrolib\\EUROTOOL.XLA", 0x00000001, 0x33a65c, 0x33aa80): stub fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files\\Microsoft Office\\Office\\Macrolib\\EUROTO...
2008 Oct 05
1
Excel Solver Add-In / Alternatives
...ver' 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 then '400'. Initially I got a msgbox with squares in it - this was fixed by adding dcom98 with winetricks. I would like to simply know whether someone has been able to successfully use this ('tools' -> 'solver...' after enabling it in 'tools'->'add-in...
2019 Mar 16
3
[RFC] Making space for a flush-to-zero flag in FastMathFlags
..., which means we can't vectorize instructions when compiling for Neon unless we know the user is okay with FTZ. Today we pretend that the "fast" variant of FastMathFlags implies FTZ (https://reviews.llvm.org/rL266363), which is not ideal. Moreover (this is the immediate reason), for XLA CPU I'm trying to generate FP instructions without nonan and noinf, which breaks vectorization on ARM Neon for this reason. An explicit bit for FTZ will let me generate FP operations tagged with FTZ and all fast math flags except nonan and noinf, and still have them vectorize on Neon. -- Sanj...
2006 May 18
3
share with no authentication
...guest account = www username map = /usr/local/samba/private/usersmap log file = /usr/local/samba/var/log.%m max log size = 50 announce version = 3.0 dns proxy = No wins server = 146.17.1.1, 146.14.1.1 [indicaf$] comment = Fichier template XLA path = /data01/www/websphere/5.0/webapps/IndicAffaire.ear/IndicAffaire.war/excel guest only = Yes guest ok = Yes follow symlinks = No Fabien LIOU (THALES SERVICES) THALES COMMUNICATIONS (LAND & JOINT SYSTEMS) TS/IOS/IMS/HO 160 Boulevard de Valmy 92...
2019 Mar 18
2
[RFC] Making space for a flush-to-zero flag in FastMathFlags
...instructions when compiling >> for Neon unless we know the user is okay with FTZ. Today we pretend >> that the "fast" variant of FastMathFlags implies FTZ >> (https://reviews.llvm.org/rL266363), which is not ideal. Moreover >> (this is the immediate reason), for XLA CPU I'm trying to generate FP >> instructions without nonan and noinf, which breaks vectorization on >> ARM Neon for this reason. An explicit bit for FTZ will let me >> generate FP operations tagged with FTZ and all fast math flags except >> nonan and noinf, and still h...
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
2003 Jan 09
0
Installing R-Excel Interface - Help requested (long)
...I get one of two errors upon attempting to invoke the R-Excel interface within Excel. 1. If the Rserver box is ticked within Tools / Addins upon launching Excel, I get "invalid picture error (error 481)". If I click OK within the error dialog box it takes me to RserverVBAlib (Rserver.xla) Modules Rinterface and highlights the statement: Dim My_R As StatConnector 2. If I open Excel without the Rserver box ticked within Tools / Addins, Excel opens normally, but then when I tick the R Interface box within Toos / Addins I get "error in loading DLL (error 48)". The vb...
2019 Aug 01
2
[RFC] A new multidimensional array indexing intrinsic
...n really do SoA to AoS transformations without truly heroic work (e.g. like my phd thesis :). The places I’ve seen higher level transformations be successful in the LLVM context are in places like Poly (and MLIR) which have higher level abstractions, or in higher level IRs that lower to LLVM (e.g. XLA, SIL, and many many other domain specific examples). This is why I ask whether its makes sense to add this to LLVM IR: If you want HPC style loop transformations, I don’t think that LLVM IR itself will ever be great, even with this. This might make some narrow set of cases slightly better, but t...
2000 Dec 08
0
COM server for RExcel
Hum hum... I've tried to install the R addin for Excel yesterday and since then Excel refuses to start (fatal exception)... I think I've done all the manipulations properly (running the server prior to loading Excel, loading the .xla file in the tool>addins menu...). Any help welcome. Bye! Vincent. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in...
1999 Oct 04
0
New Version of R Server
...ion ight forecast, the systen was running about 8 hours without any problems. win95+excel97 i have to start testing in excel2000 now. i dod some very simple first tetst, and so far, no problems. uninstalling might be a a problem. a relatively secure way of uninstalling found is: first delete the xla file, with excel NOT running. then start excel, it will complain about the missing addin. then go to teh addin menu, and click on the missing but still displayed addin. you will get the choice of completely removing it. please try this once and tell me if the problems persist. your excel2000 stat...
2019 Mar 18
3
[RFC] Making space for a flush-to-zero flag in FastMathFlags
...instructions when compiling >> for Neon unless we know the user is okay with FTZ. Today we pretend >> that the "fast" variant of FastMathFlags implies FTZ >> (https://reviews.llvm.org/rL266363), which is not ideal. Moreover >> (this is the immediate reason), for XLA CPU I'm trying to generate FP >> instructions without nonan and noinf, which breaks vectorization on >> ARM Neon for this reason. An explicit bit for FTZ will let me >> generate FP operations tagged with FTZ and all fast math flags except >> nonan and noinf, and still h...
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