| 955 | } |
| 956 | |
| 957 | TEST_F(OpTest, Abs) { |
| 958 | Repeatedly([this]() { |
| 959 | auto type = Choose<DataType>({DT_INT32, DT_FLOAT, DT_COMPLEX64}); |
| 960 | return ExpectTfAndXlaOutputsAreClose( |
| 961 | OpTestBuilder("Abs").RandomInput(type).Attr("T", type)); |
| 962 | }); |
| 963 | } |
| 964 | |
| 965 | TEST_F(OpTest, Acosh) { |
| 966 | Repeatedly([this]() { |
nothing calls this directly
no test coverage detected