()
| 161 | |
| 162 | @def_function.function |
| 163 | def mod(): |
| 164 | with ops.device('/device:GPU:0'): |
| 165 | a = constant_op.constant(1.0) |
| 166 | b = constant_op.constant(1.0) |
| 167 | return math_ops.mod(a, b) |
| 168 | |
| 169 | config.set_soft_device_placement(True) |
| 170 | self.assertEqual(config.get_soft_device_placement(), True) |
no test coverage detected