@return GPU memory cost */
| 1139 | |
| 1140 | /** @return GPU memory cost */ |
| 1141 | static size_t gpu_memory_demand() { |
| 1142 | size_t demand = 0; |
| 1143 | demand += decltype(random)::gpu_memory_demand(kRandBatchSize); |
| 1144 | return demand; |
| 1145 | } |
| 1146 | }; |
| 1147 | |
| 1148 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected