| 25 | namespace { |
| 26 | |
| 27 | TEST(TensorPoolAllocatorTest, SmallAllocationWithAlignment32B) { |
| 28 | TensorPoolAllocator allocator; |
| 29 | void* p = allocator.AllocateRaw(32, 100); |
| 30 | EXPECT_TRUE(p != nullptr); |
| 31 | allocator.DeallocateRaw(p); |
| 32 | } |
| 33 | |
| 34 | TEST(TensorPoolAllocatorTest, SmallAllocationWithAlignment8B) { |
| 35 | TensorPoolAllocator allocator; |
nothing calls this directly
no test coverage detected