| 525 | } |
| 526 | |
| 527 | unsigned int CUDARTAPI __cudaPushCallConfiguration(dim3 gridDim, |
| 528 | dim3 blockDim, |
| 529 | size_t sharedMem, |
| 530 | cudaStream_t stream) |
| 531 | { |
| 532 | Runtime::callConfigs.push_back({gridDim, blockDim, sharedMem, stream}); |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | cudaError_t CUDARTAPI __cudaPopCallConfiguration(dim3* gridDim, |
| 537 | dim3* blockDim, |
nothing calls this directly
no outgoing calls
no test coverage detected