| 62 | namespace compute { |
| 63 | |
| 64 | ExecContext* default_exec_context() { |
| 65 | static ExecContext default_ctx; |
| 66 | return &default_ctx; |
| 67 | } |
| 68 | |
| 69 | ExecContext* threaded_exec_context() { |
| 70 | static ExecContext threaded_ctx(default_memory_pool(), GetCpuThreadPool()); |
no outgoing calls