aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/user_ops/user_ops.py
blob: 0562d084db24c739f617fc53b5d7d4d49a4f0849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""All user ops."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

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()