python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to compose XlaComputation?
How do I use an XlaComputation when building another XlaComputation? For example, I want to build Add into a computation, which I'm trying to do as
xla::XlaBuilder add_builder("Add");
auto o...

joel
Votes: 0
Answers: 0
Does the TensorFlows XLA compiler optimise matrix chains as a part of its graph optimisation?
A matrix chain is a chain of matrix matrix product. I consider the following matrix chain:
ABC; where A and B are of size 3000x3000 and C is of size 3000x600
There are two ways to evaluate the abov...
Aravind Sankaran
Votes: 0
Answers: 0
How to construct an XlaOp?
There are a number of functions for creating XlaOps from native C++ values. I'm trying to figure out how to use each to construct a graph. I've gone through xla_builder.h and picked out some candidate...

joel
Votes: 0
Answers: 0
How to return pointer to `GlobalData`?
I'm writing a pure C FFI layer to XLA and want to return a pointer to GlobalData, as produced by xla::LocalClient.TransferToServer(...). I've tried to create a new GlobalData on the free store and, si...

joel
Votes: 0
Answers: 1