(self)
| 1067 | class EagerTensorCacheTest(test_util.TensorFlowTestCase): |
| 1068 | |
| 1069 | def setUp(self): |
| 1070 | super(EagerTensorCacheTest, self).setUp() |
| 1071 | configure_virtual_cpus() |
| 1072 | |
| 1073 | def testCacheSkipsTensorsTooLarge(self): |
| 1074 | cache = context._EagerTensorCache(max_items=100, max_tensor_size=3) |
nothing calls this directly
no test coverage detected