You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AddOption(nnClusterizerBatchedMode, unsignedint, 1, "", 0, "(int, default = 1) If >1, the NN is evaluated on batched input of size specified in this variable")
317
317
AddOption(nnClusterizerVerbosity, int, -1, "", 0, "(int, default = -1) If >0, logging messages of the clusterizer will be displayed")
318
318
AddOption(nnClusterizerBoundaryFillValue, int, -1, "", 0, "Fill value for the boundary of the input to the NN")
319
+
AddOption(nnClusterizerApplyCfDeconvolution, int, 0, "", 0, "Applies the CFDeconvolution kernel before the digits to the network are filled")
319
320
AddOption(nnClassificationPath, std::string, "network_class.onnx", "", 0, "The classification network path")
320
321
AddOption(nnClassThreshold, float, 0.5, "", 0, "The cutoff at which clusters will be accepted / rejected.")
321
322
AddOption(nnRegressionPath, std::string, "network_reg.onnx", "", 0, "The regression network path")
Copy file name to clipboardExpand all lines: GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizer.cxx
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -108,16 +108,16 @@ bool GPUTPCNNClusterizer::isBoundary(int row, int pad, int global_shift, const G
108
108
{
109
109
if (pad < 0 || row < 0) { // Faster short-circuit
110
110
returntrue;
111
-
} elseif (row <= 62) {
112
-
if (pad < 0 || pad > geo.NPads(row)) {
111
+
} elseif (row <63) {
112
+
if (pad >= geo.NPads(row)) {
113
113
returntrue;
114
114
} else {
115
115
returnfalse;
116
116
}
117
-
} elseif (row <= 62 + global_shift) { // to account for the gap between IROC and OROC. Charge will be set to -1 in order to signal boundary to the neural network
117
+
} elseif (row < (63 + global_shift)) { // to account for the gap between IROC and OROC. Charge will be set to -1 in order to signal boundary to the neural network
0 commit comments