Searched refs:stream0 (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/libs/fiber/examples/cuda/ |
D | multiple_streams.cu | 38 cudaStream_t stream0, stream1; in main() local 39 cudaStreamCreate( & stream0); in main() 62 … cudaMemcpyAsync( dev_a0, host_a + i, size * sizeof( int), cudaMemcpyHostToDevice, stream0); in main() 64 … cudaMemcpyAsync( dev_b0, host_b + i, size * sizeof( int), cudaMemcpyHostToDevice, stream0); in main() 66 … vector_add<<< size / 256, 256, 0, stream0 >>>( dev_a0, dev_b0, dev_c0, size); in main() 68 … cudaMemcpyAsync( host_c + i, dev_c0, size * sizeof( int), cudaMemcpyDeviceToHost, stream0); in main() 71 auto results = boost::fibers::cuda::waitfor_all( stream0, stream1); in main() 73 … BOOST_ASSERT( stream0 == std::get< 0 >( result) || stream1 == std::get< 0 >( result) ); in main() 86 cudaStreamDestroy( stream0); in main()
|
/third_party/boost/libs/fiber/examples/hip/ |
D | multiple_streams.cpp | 37 hipStream_t stream0, stream1; in main() local 38 hipStreamCreate( & stream0); in main() 61 … hipMemcpyAsync( dev_a0, host_a + i, size * sizeof( int), hipMemcpyHostToDevice, stream0); in main() 63 … hipMemcpyAsync( dev_b0, host_b + i, size * sizeof( int), hipMemcpyHostToDevice, stream0); in main() 65 …hipLaunchKernel( vector_add, dim3(size / 256), dim3(256), 0, stream0, dev_a0, dev_b0, dev_c0, size… in main() 67 … hipMemcpyAsync( host_c + i, dev_c0, size * sizeof( int), hipMemcpyDeviceToHost, stream0); in main() 70 auto results = boost::fibers::hip::waitfor_all( stream0, stream1); in main() 72 … BOOST_ASSERT( stream0 == std::get< 0 >( result) || stream1 == std::get< 0 >( result) ); in main() 85 hipStreamDestroy( stream0); in main()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspconnection.c | 157 GIOStream *stream0; member 482 newconn->stream0 = stream; in gst_rtsp_connection_create_from_socket() 600 if (G_IS_TLS_CONNECTION (conn->stream0)) { in gst_rtsp_connection_get_tls() 602 result = G_TLS_CONNECTION (conn->stream0); in gst_rtsp_connection_get_tls() 606 g_tls_server_connection_new (conn->stream0, NULL, error); in gst_rtsp_connection_get_tls() 608 g_object_unref (conn->stream0); in gst_rtsp_connection_get_tls() 609 conn->stream0 = G_IO_STREAM (result); in gst_rtsp_connection_get_tls() 610 conn->input_stream = g_io_stream_get_input_stream (conn->stream0); in gst_rtsp_connection_get_tls() 611 conn->output_stream = g_io_stream_get_output_stream (conn->stream0); in gst_rtsp_connection_get_tls() 1039 g_return_val_if_fail (conn->stream0 == NULL, GST_RTSP_EINVAL); in gst_rtsp_connection_connect_with_response_usec() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl3cTransformFeedbackOverflowQueryTests.cpp | 1173 …void verifyQueryResults(GLboolean any, GLboolean stream0, GLboolean stream1, GLboolean stream2 = G… in verifyQueryResults() argument 1185 result &= verifyQueryResult(m_stream_overflow_query[0], stream0); in verifyQueryResults()
|