()
| 7 | |
| 8 | |
| 9 | def test_make_vector(): |
| 10 | x = tf.constant([[ |
| 11 | [[1, 1.1, 1.2], [2, 2.1, 2.2], [3, 3.1, 3.2]], |
| 12 | [[4, 4.1, 4.2], [5, 5.1, 5.2], [6, 6.1, 6.2]], |
| 13 | [[7, 7.1, 7.2], [8, 8.1, 8.2], [9, 9.1, 9.2]] |
| 14 | ]], 'float32') |
| 15 | y = _make_vector(x, 3) |
| 16 | return y |
| 17 | |
| 18 | |
| 19 | def test_make_displacement(): |
nothing calls this directly
no test coverage detected