Add a folder for numpy API
PiperOrigin-RevId: 312374580 Change-Id: Ic8be81b738659668814e956d7fd4da7972944257
This commit is contained in:
parent
f0eb6dff6f
commit
db573482f4
tensorflow/python/ops/numpy
16
tensorflow/python/ops/numpy/BUILD
Normal file
16
tensorflow/python/ops/numpy/BUILD
Normal 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",
|
||||
)
|
19
tensorflow/python/ops/numpy/__init__.py
Normal file
19
tensorflow/python/ops/numpy/__init__.py
Normal 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
|
Loading…
Reference in New Issue
Block a user