Skip to content
Snippets Groups Projects

loopy unpacking and multi packing

Merged Sevda Esen requested to merge sevda-loopy-unpacking3 into master
All threads resolved!
3 files
+ 72
33
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -322,10 +322,10 @@ class PersistRecoPacking(object):
# Relations are special, deal with others first
#if not name.endswith("Relations"):
alg = d.unpacker(
InputName=force_location(ploc),
OutputLevel=output_level,
ANNSvc=self.annsvc,
outputs={'OutputName': force_location(loc)},
InputName=force_location(ploc),
outputs= {'OutputName':force_location(loc)},
ExtraOutputs=[force_location(loc)],
ExtraInputs=[force_location(l) for l in extra_inputs])
algs[name] += [alg]
@@ -369,11 +369,10 @@ class PersistRecoPacking(object):
self.prefix)): #only location in the requested stream
alg = d.packer(
InputName=force_location(loc),
OutputLevel=output_level,
EnableCheck=enable_check,
outputs={'OutputName': force_location(ploc)},
ExtraOutputs=[force_location(ploc)],
InputName=force_location(loc),
outputs={'OutputName':force_location(ploc)},
ANNSvc=self.annsvc,
EncodingKey=encoding_key,
ContainerMap=cmap)
Loading