Matches a node with op `op`.
| 438 | |
| 439 | // Matches a node with op `op`. |
| 440 | impl::NodeMatcherProperties Op(string op) { |
| 441 | impl::NodeMatcherProperties props; |
| 442 | props.set_op(std::move(op)); |
| 443 | return props; |
| 444 | } |
| 445 | |
| 446 | // Matches a node with assigned device `assigned_device`. |
| 447 | impl::NodeMatcherProperties AssignedDevice(string assigned_device) { |