1// This file is MACHINE GENERATED! Do not edit.
2
3#ifndef TENSORFLOW_CC_OPS_USER_OPS_H_
4#define TENSORFLOW_CC_OPS_USER_OPS_H_
5
6// This file is MACHINE GENERATED! Do not edit.
7
8#include "tensorflow/cc/framework/ops.h"
9#include "tensorflow/cc/framework/scope.h"
10#include "tensorflow/core/framework/tensor.h"
11#include "tensorflow/core/framework/tensor_shape.h"
12#include "tensorflow/core/framework/types.h"
13#include "tensorflow/core/lib/gtl/array_slice.h"
14
15namespace tensorflow {
16namespace ops {
17
18/// @defgroup user_ops User Ops
19/// @{
20
21/// Output a fact about factorials.
22///
23/// Args:
24/// * scope: A Scope object
25///
26/// Returns:
27/// * `Output`: The fact tensor.
28class Fact {
29 public:
30 Fact(const ::tensorflow::Scope& scope);
31 operator ::tensorflow::Output() const { return fact; }
32 operator ::tensorflow::Input() const { return fact; }
33 ::tensorflow::Node* node() const { return fact.node(); }
34
35 Operation operation;
36 ::tensorflow::Output fact;
37};
38
39/// @}
40
41} // namespace ops
42} // namespace tensorflow
43
44#endif // TENSORFLOW_CC_OPS_USER_OPS_H_
45