MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / top

Method top

python/mod_cvcuda/nvcv/StreamStack.cpp:36–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36std::shared_ptr<Stream> StreamStack::top()
37{
38 std::unique_lock lk(m_mtx);
39 if (!m_stack.empty())
40 {
41 return m_stack.top().lock();
42 }
43 else
44 {
45 return nullptr;
46 }
47}
48
49StreamStack &StreamStack::Instance()
50{

Callers 4

Stream.cppFile · 0.45
ExportMethod · 0.45
TESTFunction · 0.45
~ObjectBagMethod · 0.45

Calls 1

emptyMethod · 0.45

Tested by 1

TESTFunction · 0.36