Questions tagged [xla]

.xla is the file extension for pre-Excel 2007 addins written using VBA. XLA Addins are a special type of workbook that contains VBA code or functions integrated into the Excel or VBA environment.

.xla is the file extension for pre-Excel 2007 addins written using . XLA addins are a special type of workbook that contains code or functions integrated into the Excel or VBA environment. This VBA code is meant to add or extend the built-in functionality provided by Excel.

XLA addins are created in Excel's VBA IDE. After inserting code into a VBA module, the workbook is saved in XLA format. This file may then be loaded by Excel to enhance existing or add new functionality which is integrated into the Excel frontend or development environment.

A common use for XLA addins is as a repository for often used VBA functions. The most frequently used user-defined functions () are placed into a separate workbook, which is saved as an Excel addin (.xla). These functions can then be used as native functions after installing the addin.

Related Tags:

Links: - Build an Excel Add-In

72 questions
1
vote
1 answer

In tensorflow 1.15, what's the difference of using explicit XLA compilation and Auto-clustering?

I'm trying to learn how to use XLA for my models. And I'm looking at the doc from official here: https://www.tensorflow.org/xla#enable_xla_for_tensorflow_models. It was documented that there are two methods to enable XLA: 1) Explicit compilation by…
StayFoolish
  • 531
  • 1
  • 12
  • 29
1
vote
1 answer

XLA on CPU -- where do the gains come from?

I understand that XLA performs automatic kernel fusion for a computational graph, which comes handy in reducing memory bandwidth usage on a GPU. What gains can one derive using XLA for a CPU? Is it the same principle, in fusing computations and not…
1
vote
0 answers

Why TensorFlow XLA needs many new xla op kernels?

In TensorFlow code about XLA, I see kernels about many OPs like compiler/tf2xla/kernels/concat_op. It seems like a repetition of core/kernels/concat_op. Why Ops like compiler/tf2xla/kernels/concat_op are needed? And why not just replace it with…
liym27
  • 31
  • 1
1
vote
1 answer

pytorch model saved from TPU run on CPU

I found interesting model - question generator, but can't run it. I got an error: Traceback (most recent call last): File "qg.py", line 5, in model =…
exelents
  • 83
  • 1
  • 5
1
vote
1 answer

XLA in TensorFlow2.0 - frozen model?

I was following the offcial guide for XLA AOT compilation (https://www.tensorflow.org/xla/tfcompile), and compiling the examples works just fine (inside aot/tests). But then I wanted to compile some slightly bigger models, and a problem arises: if…
SC94
  • 21
  • 4
1
vote
0 answers

Tensorflow XLA compiler - bazel build error - Could not find include file ".../hlo_ops_base.td"

I am trying to use XLA compiler from Tensorflow following the example provided at this page: https://gist.github.com/carlthome/6ae8a570e21069c60708017e3f96c9fd In short, it downloads a ResNet50 network and compiles it as library. During execution of…
1
vote
0 answers

create installer for windows which will install xla add-in onto windows machine for excel application

I want to create installer from the xla add-in which i created for windows excel. When I run the installer it should install the add-in for excel application onto targeted machine. Is there any way to achieve the intended task ? How can I make this…
Pavan Divekar
  • 449
  • 2
  • 14
1
vote
0 answers

tfcompile of tf.cond of constants errors

Using the following sample code to create a graph with cond: from __future__ import absolute_import import tensorflow as tf from tensorflow.compiler.tf2xla.tf2xla_pb2 import Config, Feed, Fetch, TensorId from…
1
vote
0 answers

Enabling XLA JIT with multi-gpu from tf.slim

I turned on xla at tf.slim with multi-gpu(2 titanXp) as below. (edit train_image_clasifier.py) jit_config = tf.ConfigProto() jit_level = tf.OptimizerOptions.ON_1 jit_config.graph_options.optimizer_options.global_jit_level = jit_level …
Sangjun
  • 11
  • 1
1
vote
2 answers

MS Power Query: Sharing Queries across workbooks and xlam?

In Power Query, is it possible to build a query in one workbook and access it from another? In particular, can I build a whole set of queries into some kind of library? I'm thinking of, say, an .xlam file and then have multiple .xlsx files load…
David T
  • 1,993
  • 10
  • 18
1
vote
1 answer

Building an XLA from Source Programmatically

I have a (version controlled) folder of exported components of a VBA addin (i.e. a lot of cls, frm, frx, bas and txt files). Can someone give me a build script (can be a VB script, or something more complicated) that takes the name of this folder…
Nicholas White
  • 2,702
  • 3
  • 24
  • 28
1
vote
0 answers

Add-in makes Excel crash when starting minimized

I start Excel from within my C# WinForms application using Process.Start(...) (this has a reason). I want to start it in background, without distracting the user, so I try to start it minimized or hidden. In both cases, I experience a very weird…
chiccodoro
  • 14,407
  • 19
  • 87
  • 130
1
vote
0 answers

how to see the source code in this excel5 .xla file

I want to know how to open the source code VBA of this file. It is a .xla file and it was created in Excel…
Weiwei
  • 55
  • 1
  • 8
1
vote
2 answers

Error while creating a table style in excel

I am using the following function to create a TableStyle: Public Function CreateTableStyle() ActiveWorkbook.Unprotect Dim objTS As TableStyle On Error Resume Next Set objTS = ActiveWorkbook.TableStyles("MyTableStyle") On Error GoTo…
Rashmi Pandit
  • 23,230
  • 17
  • 71
  • 111
1
vote
0 answers

Unable to delete a pivot table style from excel work book

I am using the follwowing code to delete a table style from an excel file: Set objTS = ActiveWorkbook.TableStyles("MyTableStyle") If Not objTS Is Nothing Then objTS.Delete End If I am able to delete it using a macro on my local excel sheet.…
Rashmi Pandit
  • 23,230
  • 17
  • 71
  • 111