| 1135 | } |
| 1136 | |
| 1137 | hipError_t hipStreamBeginCapture(hipStream_t stream, hipStreamCaptureMode mode) { |
| 1138 | HIP_INIT_API(hipStreamBeginCapture, stream, mode); |
| 1139 | HIP_RETURN_DURATION(hipStreamBeginCapture_common(stream, mode)); |
| 1140 | } |
| 1141 | |
| 1142 | hipError_t hipStreamBeginCaptureToGraph(hipStream_t stream, hipGraph_t graph, |
| 1143 | const hipGraphNode_t* dependencies, |
no test coverage detected