aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/platform/resource_loader.py
blob: a0e6546c28eb56b946a41a8a0f7d767ae117959e (plain)
1
2
3
4
5
6
7
8
9
10
"""Load a file resource and return the contents."""
# pylint: disable=unused-import
# pylint: disable=g-import-not-at-top
# pylint: disable=wildcard-import
import control_imports
import tensorflow.python.platform
if control_imports.USE_OSS:
  from tensorflow.python.platform.default._resource_loader import *
else:
  from tensorflow.python.platform.google._resource_loader import *