| 240 | }; |
| 241 | |
| 242 | void AllocatePMatrix(Allocator* allocator, PMatrix* packed) { |
| 243 | packed->data = allocator->AllocateBytes(DataSize(*packed)); |
| 244 | packed->sums = allocator->AllocateBytes(SumsSize(*packed)); |
| 245 | } |
| 246 | |
| 247 | int GetThreadCount(Context* context, int rows, int cols, int depth) { |
| 248 | // Empirically determined rule for reasonable number of |
no test coverage detected