Add a folder for numpy API

PiperOrigin-RevId: 312374580
Change-Id: Ic8be81b738659668814e956d7fd4da7972944257
This commit is contained in:
A. Unique TensorFlower 2020-05-19 16:13:13 -07:00 committed by TensorFlower Gardener
parent f0eb6dff6f
commit db573482f4
2 changed files with 35 additions and 0 deletions
tensorflow/python/ops/numpy

View File

@ -0,0 +1,16 @@
# TF numpy API
package(
default_visibility = [
"//tensorflow:internal",
],
licenses = ["notice"], # Apache 2.0
)
py_library(
name = "numpy",
srcs = [
"__init__.py",
],
srcs_version = "PY2AND3",
)

View File

@ -0,0 +1,19 @@
# 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.
# ==============================================================================
"""Tensorflow numpy API."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function