aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/user_ops/user_ops.py
blob: 20e2604e05b3574f47956036cbb8ba8b9ea90c06 (plain)
1
2
3
4
5
6
7
8
9
10
"""All user ops."""

import tensorflow.python.platform
from tensorflow.python.ops import gen_user_ops
from tensorflow.python.ops.gen_user_ops import *


def my_fact():
  """Example of overriding the generated code for an Op."""
  return gen_user_ops._fact()