Skip to content

Commit

Permalink
clone tile specs used for layer distance map
Browse files Browse the repository at this point in the history
  • Loading branch information
trautmane committed Dec 19, 2023
1 parent 5834069 commit 784dedd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ public XYDistanceWeightFunction(final BlockData<?, ?> block, final double resolu
missingTileCount++;
} else {
foundTileCount++;
layerTiles.add(tileSpec);
// tile spec gets modified for layer distance map, so need to clone it
layerTiles.add(tileSpec.slowClone());
}
}
if (layerTiles.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@ public static void main(String[] args) {
"--owner", "hess_wafer_53",
"--project", "cut_000_to_009",
"--stack", "c009_s310_v01_mfov_08_test",
"--targetStack", "c009_s310_v01_mfov_08_test_ic",
"--targetStack", "c009_s310_v01_mfov_08_test_ic_3",
"--minX", "33400",
"--maxX", "54600",
"--minY", "400",
"--maxY", "18700",
"--minZ", "424",
"--maxZ", "460",
"--maxZ", "425",

"--blockSizeX", "7000",
"--blockSizeY", "6000",

"--completeTargetStack",

"--threadsWorker", "1",
"--threadsWorker", "2",
"--threadsGlobal", "5",

"--zDistance", "0",

"--alternatingRuns", "4"
"--alternatingRuns", "1"
};
}

Expand Down

0 comments on commit 784dedd

Please sign in to comment.