MCPcopy Create free account
hub / github.com/NVIDIA/DALI / recursive_helper

Function recursive_helper

dali/test/python/operator_1/test_operator_origin_trace.py:194–200  ·  view source on GitHub ↗
(n=2)

Source from the content-addressed store, hash-verified

192 op_mode = test_mode
193
194 def recursive_helper(n=2):
195 if n:
196 return recursive_helper(n - 1)
197 else:
198 # using list comprehension or similar will give slightly different results in AG
199 # We can revisit and maybe tune the filtering/remapping?
200 return origin_trace()
201
202 def pipe():
203 if 0:

Callers 1

pipeFunction · 0.85

Calls 1

origin_traceFunction · 0.85

Tested by

no test coverage detected