STT-tensorflow/tensorflow/go
A. Unique TensorFlower 7e2854c26c Go: Update generated wrapper functions for TensorFlow ops.
PiperOrigin-RevId: 361078865
Change-Id: I0790f291eb9beb47ea6f5a3b9a0759229758be1f
2021-03-04 22:52:08 -08:00
..
genop Only read *.pbtxt files in api_def/*_api directories when generating Go API. 2020-11-25 13:39:48 -08:00
op Go: Update generated wrapper functions for TensorFlow ops. 2021-03-04 22:52:08 -08:00
android.go
attrs_test.go
attrs.go
BUILD Add SignatureDefs to Go SavedModel API. 2019-11-22 11:52:37 -08:00
context_test.go Add Go wrapper around Eager C API's Context. 2018-12-17 10:49:30 -08:00
context.go Add Go wrapper around Eager C API's Context. 2018-12-17 10:49:30 -08:00
doc.go Update doc.go 2019-05-22 14:46:47 -07:00
example_inception_inference_test.go Fix several issues with go fmt and go lint 2017-09-24 15:32:45 +00:00
graph_test.go go: Add input mapping option when importing Graph 2020-05-01 11:12:54 -05:00
graph.go fix typos in go directory 2020-10-29 03:29:14 +03:00
lib.go Go: Some cleanup possible now that TensorFlow 1.1 has been released. 2017-05-16 13:25:07 -07:00
operation_test.go [Go]: Support device annotations when constructing graphs. 2018-07-11 18:21:08 -07:00
operation.go [Go]: Support device annotations when constructing graphs. 2018-07-11 18:21:08 -07:00
README.md Merge pull request from Molkree:typos_in_go_dir 2020-10-30 08:36:05 -07:00
saved_model_test.go Go: fix handling empty tags-set for loading saved model 2020-03-10 01:07:31 +00:00
saved_model.go [BUILD] Create a separate BUILD file for "tensorflow/core/protobuf"`. 2020-05-12 13:51:52 -07:00
session_test.go Avoid memory 'leak' in Go with multple inputs 2020-06-24 15:52:58 +01:00
session.go Avoid memory 'leak' in Go with multple inputs 2020-06-24 15:52:58 +01:00
shape_test.go
shape.go Fix shape.go's Size function. 2017-06-16 11:21:29 -07:00
signature_test.go [BUILD] Create a separate BUILD file for "tensorflow/core/protobuf"`. 2020-05-12 13:51:52 -07:00
signature.go [BUILD] Create a separate BUILD file for "tensorflow/core/protobuf"`. 2020-05-12 13:51:52 -07:00
status.go
tensor_handle_test.go
tensor_handle.go [Go]: Allow code in the "master" branch to work against the latest C library 2019-01-11 03:09:13 -08:00
tensor_test.go Fix bug in Tensor.Reshape. 2020-12-08 11:58:07 -08:00
tensor.go Go: Deallocate large TF_TString on Tensor finalization 2021-01-19 21:53:46 +02:00
test.sh Force overriding a symbolic link for Go testing, 2019-05-22 14:46:39 -07:00
util_test.go differentiate package description and license 2017-03-27 14:17:22 +08:00
version.go

TensorFlow in Go

Construct and execute TensorFlow graphs in Go.

GoDoc

Warning

: The API defined in this package is not stable and can change without notice. The same goes for the package path: (github.com/tensorflow/tensorflow/tensorflow/go).

Quickstart

Refer to Installing TensorFlow for Go

Building the TensorFlow C library from source

If the "Quickstart" instructions above do not work (perhaps the release archives are not available for your operating system or architecture, or you're using a different version of CUDA/cuDNN), then the TensorFlow C library must be built from source.

Prerequisites

Build

  1. Download the source code

    go get -d github.com/tensorflow/tensorflow/tensorflow/go
    
  2. Build the TensorFlow C library:

    cd ${GOPATH}/src/github.com/tensorflow/tensorflow
    ./configure
    bazel build -c opt //tensorflow:libtensorflow.so
    

    This can take a while (tens of minutes, more if also building for GPU).

  3. Make libtensorflow.so and libtensorflow_framework.so available to the linker. This can be done by either:

    a. Copying it to a system location, e.g.,

    sudo cp ${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow/libtensorflow.so /usr/local/lib
    sudo cp ${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow/libtensorflow_framework.so /usr/local/lib
    

    OR

    b. Setting environment variables:

    export LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    # Linux
    export LD_LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    # OS X
    export DYLD_LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    
  4. Build and test:

    go generate github.com/tensorflow/tensorflow/tensorflow/go/op
    go test github.com/tensorflow/tensorflow/tensorflow/go
    

Generate wrapper functions for ops

Go functions corresponding to TensorFlow operations are generated in op/wrappers.go. To regenerate them:

Prerequisites:

go generate github.com/tensorflow/tensorflow/tensorflow/go/op

Support

Use Stack Overflow and/or GitHub issues.

Contributions

Contributions are welcome. If making any signification changes, probably best to discuss on a GitHub issue before investing too much time. GitHub pull requests are used for contributions.