Unary op expecting OK.
| 101 | |
| 102 | // Unary op expecting OK. |
| 103 | Tensor SymGrad(const string& op, const Tensor& x) { |
| 104 | Tensor ret; |
| 105 | TF_CHECK_OK(Unary(op, x, &ret)); |
| 106 | return ret; |
| 107 | } |
| 108 | |
| 109 | Tensor SymCastGrad(const Tensor& x, const DataType dst) { |
| 110 | Tensor ret; |
nothing calls this directly
no test coverage detected