Home
last modified time | relevance | path

Searched refs:capture_end (Results 1 – 20 of 20) sorted by relevance

/external/pytorch/torch/cuda/
Dgraphs.py75 def capture_end(self): member in CUDAGraph
84 super().capture_end()
186 self.cuda_graph.capture_end()
/external/pytorch/aten/src/ATen/cuda/
DCUDAGraph.h34 void capture_end();
DCUDAGraph.cpp153 void CUDAGraph::capture_end() { in capture_end() function in at::cuda::CUDAGraph
/external/pytorch/torch/csrc/cuda/
DGraph.cpp58 torch::wrap_pybind_function_no_gil(&at::cuda::CUDAGraph::capture_end)) in THCPGraph_init()
/external/pytorch/test/
Dtest_cuda.py1578 g.capture_end()
1594 g.capture_end()
1665 g.capture_end()
1695 graph.capture_end()
1771 g.capture_end()
1785 g.capture_end()
1813 g.capture_end()
1868 g.capture_end()
1944 g.capture_end()
2065 g.capture_end()
[all …]
/external/clang/lib/AST/
DExprCXX.cpp948 LambdaExpr::capture_iterator LambdaExpr::capture_end() const { in capture_end() function in LambdaExpr
953 return capture_range(capture_begin(), capture_end()); in captures()
975 return capture_end(); in implicit_capture_end()
DExpr.cpp3021 E = LE->capture_end(); I != E; ++I) in HasSideEffects()
/external/clang/include/clang/AST/
DStmt.h2141 return capture_range(capture_begin(), capture_end()); in captures()
2144 return capture_const_range(capture_begin(), capture_end()); in captures()
2153 capture_iterator capture_end() const { in capture_end() function
DDecl.h3584 capture_const_iterator capture_end() const { return captures().end(); } in capture_end() function
DExprCXX.h1629 capture_iterator capture_end() const;
/external/clang/lib/Sema/
DSemaTemplateVariadic.cpp183 E = Lambda->capture_end(); in TraverseLambdaExpr()
DTreeTransform.h10154 CEnd = E->capture_end(); in TransformLambdaExpr()
10251 CEnd = E->capture_end(); in TransformLambdaExpr()
DSemaDeclCXX.cpp142 if (Lambda->capture_begin() == Lambda->capture_end()) in VisitLambdaExpr()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp209 auto CE = BD->capture_end(); in VisitBlockExpr()
/external/pytorch/docs/source/notes/
Dcuda.rst975 :meth:`CUDAGraph.capture_end<torch.cuda.CUDAGraph.capture_end>` calls.
/external/clang/lib/CodeGen/
DCGBlocks.cpp342 (block->capture_end() - block->capture_begin())); in computeBlockInfo()
DCodeGenFunction.h188 E = S.capture_end(); in Kind()
DCGOpenMPRuntime.cpp5727 CE = CS.capture_end(); in emitTargetCall()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp326 Record.push_back(std::distance(S->capture_begin(), S->capture_end())); in VisitCapturedStmt()
/external/pytorch/torch/_C/
D__init__.pyi.in2014 def capture_end(self) -> None: ...