Brad Larson

Results 79 comments of Brad Larson

A first possibility for the crash: are you running this on macOS? We know that the XLA ComputationClient crashes on that platform for certain model types. We haven't fully tracked...

The LazyTensorBarrier() crash sounds exactly like the problems we've seen before on macOS. The loop-related crash is most likely related to the size of the trace. Regarding the timing of...

When testing performance on tight loops, you might see differences between XLA on the CPU side and our current GPU implementation, due to some dispatching overhead in the latter. There...

As examples of how these mappings are defined at the command line, here's how you would expose both the CPU and GPU as selectable devices (assuming a single CPU and...

Thank you for the detailed feedback. Hearing specific points we can improve in the documentation is always really appreciated, because when you've been working on something for a while, it's...

If you try to use [a toolchain from Swift.org](https://swift.org/download/) to build your application and ignore the TensorFlow bits for now, does that work? There may have been some significant changes...

I believe this might be due to issue [SR-8690](https://bugs.swift.org/browse/SR-8690), which impacts Swift in general on Ubuntu. It [has been suggested](https://forums.swift.org/t/error-running-swift-5-0-repl-on-ubuntu-18-04-2/22110) that removing libc6-dbg will resolve this, but I can't verify...

Coming at this from a different direction: it looks like you're interested in support for TensorBoard summaries. If we were able to add the ability to write summaries without the...

Have you tried using this from a recent Swift.org nightly toolchain, or one of our nightly Ubuntu toolchains? It is possible that the old releases using the `tensorflow` branch might...

One thing to check is that you're building for the correct architecture. I hit this same issue when accidentally using `-DLLVM_TARGETS_TO_BUILD="X86"` on an M1 Mac. Switching to `-DLLVM_TARGETS_TO_BUILD="AArch64"` built cleanly....