Changes: - Updates to docs - Several changes for Python 3 compatibility - Added license headers Base CL: 108710566
30 lines
1.2 KiB
OpenEdge ABL
30 lines
1.2 KiB
OpenEdge ABL
/* Copyright 2015 Google Inc. 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.
|
|
==============================================================================*/
|
|
|
|
/* SWIG wrapper for all of TensorFlow native functionality.
|
|
* The includes are intentionally not alphabetically sorted, as the order of
|
|
* includes follows dependency order */
|
|
|
|
%include "tensorflow/python/util/port.i"
|
|
|
|
%include "tensorflow/python/lib/core/status.i"
|
|
%include "tensorflow/python/lib/core/status_helper.i"
|
|
|
|
%include "tensorflow/python/lib/io/py_record_reader.i"
|
|
%include "tensorflow/python/lib/io/py_record_writer.i"
|
|
%include "tensorflow/python/client/events_writer.i"
|
|
|
|
%include "tensorflow/python/client/tf_session.i"
|