| 124 | } |
| 125 | |
| 126 | Output BoolInput(const Scope& scope, const string &device) { |
| 127 | return ConstructOp(scope, "BoolInput", device, {}); |
| 128 | } |
| 129 | |
| 130 | Output Combine(const Scope& scope, const string &device, Input a, Input b) { |
| 131 | return ConstructOp(scope, "Combine", device, {a, b}); |