STT-tensorflow/tensorflow/python/pywrap_tensorflow_internal.cc
TensorFlower Gardener 0277e80375 Merge pull request #38328 from perfinion:systemlibs-pybind
PiperOrigin-RevId: 305598649
Change-Id: I0a7845b01a7d0cb078d72e481ce640fc84977e9e
2020-04-08 18:48:06 -07:00

22 lines
910 B
C++

/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "pybind11/pybind11.h"
// This logic allows Python to import _pywrap_tensorflow_internal.so by
// creating a PyInit function and exposing it. It is required in opensource
// only.
PYBIND11_MODULE(_pywrap_tensorflow_internal, m){};