Skip to content

Commit

Permalink
Simplification of variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
VourMa committed Jul 30, 2024
1 parent d378a59 commit 67c2376
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 54 deletions.
2 changes: 1 addition & 1 deletion RecoTracker/LSTCore/src/alpaka/Event.dev.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ lst::TripletsBuffer<DevHost>* lst::Event<Acc3D>::getTriplets() {
alpaka::memcpy(queue, tripletsInCPU->zHi_buf, tripletsBuffers->zHi_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->zLoPointed_buf, tripletsBuffers->zLoPointed_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->zHiPointed_buf, tripletsBuffers->zHiPointed_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->lstCut_buf, tripletsBuffers->lstCut_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->dPhiCut_buf, tripletsBuffers->dPhiCut_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->betaInCut_buf, tripletsBuffers->betaInCut_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->rtLo_buf, tripletsBuffers->rtLo_buf, nMemHost);
alpaka::memcpy(queue, tripletsInCPU->rtHi_buf, tripletsBuffers->rtHi_buf, nMemHost);
Expand Down
36 changes: 18 additions & 18 deletions RecoTracker/LSTCore/src/alpaka/PixelTriplet.h
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ namespace lst {
unsigned int secondMDIndex,
unsigned int thirdMDIndex,
unsigned int fourthMDIndex) {
float dPhi, betaIn, betaOut, pt_beta, zLo, zHi, zLoPointed, zHiPointed, lstCut, betaOutCut;
float dPhi, betaIn, betaOut, pt_beta, zLo, zHi, zLoPointed, zHiPointed, dPhiCut, betaOutCut;

bool isPS_OutLo = (modulesInGPU.moduleType[outerInnerLowerModuleIndex] == lst::PS);

Expand Down Expand Up @@ -1249,14 +1249,14 @@ namespace lst {

float drt_InSeg = rt_InOut - rt_InLo;

const float lstThetaMulsF2 =
const float thetaMuls2 =
(kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InUp) / 50.f) * (r3_InUp / rt_InUp);
const float lstMuls2 = lstThetaMulsF2 * 9.f / (ptCut * ptCut) * 16.f;
const float muls2 = thetaMuls2 * 9.f / (ptCut * ptCut) * 16.f;

float dzErr = (drt_OutLo_InUp * drt_OutLo_InUp) * (etaErr * etaErr) * cosh2Eta;
dzErr += 0.03f * 0.03f; // Approximately account for IT module size
dzErr *= 9.f; // 3 sigma
dzErr += lstMuls2 * (drt_OutLo_InUp * drt_OutLo_InUp) / 3.f * cosh2Eta;
dzErr += muls2 * (drt_OutLo_InUp * drt_OutLo_InUp) / 3.f * cosh2Eta;
dzErr += zGeom * zGeom;
dzErr = alpaka::math::sqrt(acc, dzErr);

Expand All @@ -1272,8 +1272,8 @@ namespace lst {
if ((z_OutLo < zLoPointed) || (z_OutLo > zHiPointed))
return false;

const float lstPVoff = 0.1f / rt_OutLo;
lstCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, lstMuls2 + lstPVoff * lstPVoff);
const float pvOffset = 0.1f / rt_OutLo;
dPhiCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, muls2 + pvOffset * pvOffset);

//no dphipos cut
float midPointX = 0.5f * (x_InLo + x_OutLo);
Expand All @@ -1284,7 +1284,7 @@ namespace lst {

dPhi = lst::deltaPhi(acc, midPointX, midPointY, diffX, diffY);

if (alpaka::math::abs(acc, dPhi) > lstCut)
if (alpaka::math::abs(acc, dPhi) > dPhiCut)
return false;

//lots of array accesses below this...
Expand Down Expand Up @@ -1380,7 +1380,7 @@ namespace lst {

float min_ptBeta_ptBetaMax = alpaka::math::min(
acc, alpaka::math::abs(acc, pt_beta), lst::kPt_betaMax); //need to confirm the range-out value of 7 GeV
const float dBetaMuls2 = lstThetaMulsF2 * 16.f / (min_ptBeta_ptBetaMax * min_ptBeta_ptBetaMax);
const float dBetaMuls2 = thetaMuls2 * 16.f / (min_ptBeta_ptBetaMax * min_ptBeta_ptBetaMax);
const float alphaInAbsReg =
alpaka::math::max(acc,
alpaka::math::abs(acc, alpha_InLo),
Expand Down Expand Up @@ -1442,7 +1442,7 @@ namespace lst {
unsigned int secondMDIndex,
unsigned int thirdMDIndex,
unsigned int fourthMDIndex) {
float dPhi, betaIn, betaOut, pt_beta, rtLo, rtHi, lstCut, betaOutCut;
float dPhi, betaIn, betaOut, pt_beta, rtLo, rtHi, dPhiCut, betaOutCut;

bool isPS_OutLo = (modulesInGPU.moduleType[outerInnerLowerModuleIndex] == lst::PS);

Expand Down Expand Up @@ -1484,9 +1484,9 @@ namespace lst {
float zpitch_OutLo = (isPS_OutLo ? kPixelPSZpitch : kStrip2SZpitch);
float zGeom = zpitch_InLo + zpitch_OutLo;

const float lstSlope =
const float slope =
alpaka::math::asin(acc, alpaka::math::min(acc, rt_OutLo * k2Rinv1GeVf / ptCut, kSinAlphaMax));
const float dzDrtScale = alpaka::math::tan(acc, lstSlope) / lstSlope; //FIXME: need approximate value
const float dzDrtScale = alpaka::math::tan(acc, slope) / slope; //FIXME: need approximate value

const float dLum = alpaka::math::copysign(acc, kDeltaZLum, z_InUp);
bool isOutSgInnerMDPS = modulesInGPU.moduleType[outerInnerLowerModuleIndex] == lst::PS;
Expand All @@ -1511,14 +1511,14 @@ namespace lst {
const float cosh2Eta = 1.f + (pz * pz) / (ptIn * ptIn);
const float multDzDr2 = (dzOutInAbs * dzOutInAbs) * cosh2Eta / ((cosh2Eta - 1.f) * (cosh2Eta - 1.f));
const float r3_InUp = alpaka::math::sqrt(acc, z_InUp * z_InUp + rt_InUp * rt_InUp);
const float lstThetaMulsF2 =
const float thetaMuls2 =
(kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InUp) / 50.f) * (r3_InUp / rt_InUp);
const float lstMuls2 = lstThetaMulsF2 * 9.f / (ptCut * ptCut) * 16.f;
const float muls2 = thetaMuls2 * 9.f / (ptCut * ptCut) * 16.f;

float drtErr = (etaErr * etaErr) * multDzDr2;
drtErr += 0.03f * 0.03f; // Approximately account for IT module size
drtErr *= 9.f; // 3 sigma
drtErr += lstMuls2 * multDzDr2 / 3.f * cosh2Eta;
drtErr += muls2 * multDzDr2 / 3.f * cosh2Eta;
drtErr = alpaka::math::sqrt(acc, drtErr);
const float drtDzIn = alpaka::math::abs(acc, ptIn / pz);

Expand All @@ -1537,8 +1537,8 @@ namespace lst {

const float alpha1GeV_OutLo =
alpaka::math::asin(acc, alpaka::math::min(acc, rt_OutLo * k2Rinv1GeVf / ptCut, kSinAlphaMax));
const float lstPVoff = 0.1f / rt_OutLo;
lstCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, lstMuls2 + lstPVoff * lstPVoff);
const float pvOffset = 0.1f / rt_OutLo;
dPhiCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, muls2 + pvOffset * pvOffset);

float midPointX = 0.5f * (x_InLo + x_OutLo);
float midPointY = 0.5f * (y_InLo + y_OutLo);
Expand All @@ -1549,7 +1549,7 @@ namespace lst {
dPhi = lst::deltaPhi(acc, midPointX, midPointY, diffX, diffY);

// Cut #5: deltaPhiChange
if (alpaka::math::abs(acc, dPhi) > lstCut)
if (alpaka::math::abs(acc, dPhi) > dPhiCut)
return false;

float alpha_InLo = __H2F(segmentsInGPU.dPhiChanges[innerSegmentIndex]);
Expand Down Expand Up @@ -1640,7 +1640,7 @@ namespace lst {

float min_ptBeta_ptBetaMax = alpaka::math::min(
acc, alpaka::math::abs(acc, pt_beta), lst::kPt_betaMax); //need to confirm the range-out value of 7 GeV
const float dBetaMuls2 = lstThetaMulsF2 * 16.f / (min_ptBeta_ptBetaMax * min_ptBeta_ptBetaMax);
const float dBetaMuls2 = thetaMuls2 * 16.f / (min_ptBeta_ptBetaMax * min_ptBeta_ptBetaMax);

const float alphaInAbsReg =
alpaka::math::max(acc,
Expand Down
48 changes: 24 additions & 24 deletions RecoTracker/LSTCore/src/alpaka/Quintuplet.h
Original file line number Diff line number Diff line change
Expand Up @@ -1400,10 +1400,10 @@ namespace lst {
float coshEta = dr3_InSeg / drt_InSeg;
float dzErr = (zpitch_InLo + zpitch_OutLo) * (zpitch_InLo + zpitch_OutLo) * 2.f;

float lstThetaMulsF2 =
float thetaMuls2 =
(kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InLo) / 50.f) * (r3_InLo / rt_InLo);
float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
dzErr += lstMuls2 * drt_OutLo_InLo * drt_OutLo_InLo / 3.f * coshEta * coshEta;
float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
dzErr += muls2 * drt_OutLo_InLo * drt_OutLo_InLo / 3.f * coshEta * coshEta;
dzErr = alpaka::math::sqrt(acc, dzErr);

// Constructing upper and lower bound
Expand All @@ -1418,12 +1418,12 @@ namespace lst {
if ((z_OutLo < zLoPointed) || (z_OutLo > zHiPointed))
return false;

float lstPVoff = 0.1f / rt_OutLo;
float lstCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, lstMuls2 + lstPVoff * lstPVoff);
float pvOffset = 0.1f / rt_OutLo;
float dPhiCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, muls2 + pvOffset * pvOffset);

float deltaPhiPos = lst::phi_mpi_pi(acc, mdsInGPU.anchorPhi[fourthMDIndex] - mdsInGPU.anchorPhi[secondMDIndex]);
// Cut #3: FIXME:deltaPhiPos can be tighter
if (alpaka::math::abs(acc, deltaPhiPos) > lstCut)
if (alpaka::math::abs(acc, deltaPhiPos) > dPhiCut)
return false;

float midPointX = 0.5f * (mdsInGPU.anchorX[firstMDIndex] + mdsInGPU.anchorX[thirdMDIndex]);
Expand All @@ -1434,7 +1434,7 @@ namespace lst {
float dPhi = lst::deltaPhi(acc, midPointX, midPointY, diffX, diffY);

// Cut #4: deltaPhiChange
if (alpaka::math::abs(acc, dPhi) > lstCut)
if (alpaka::math::abs(acc, dPhi) > dPhiCut)
return false;

// First obtaining the raw betaIn and betaOut values without any correction and just purely based on the mini-doublet hit positions
Expand Down Expand Up @@ -1549,7 +1549,7 @@ namespace lst {

float min_ptBeta_maxPtBeta = alpaka::math::min(
acc, alpaka::math::abs(acc, pt_beta), lst::kPt_betaMax); //need to confimm the range-out value of 7 GeV
const float dBetaMuls2 = lstThetaMulsF2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);
const float dBetaMuls2 = thetaMuls2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);

const float alphaInAbsReg = alpaka::math::max(
acc,
Expand Down Expand Up @@ -1673,23 +1673,23 @@ namespace lst {
float kZ = (z_OutLo - z_InLo) / dzSDIn;
float drtErr =
zGeom1_another * zGeom1_another * drtSDIn * drtSDIn / dzSDIn / dzSDIn * (1.f - 2.f * kZ + 2.f * kZ * kZ);
const float lstThetaMulsF2 =
const float thetaMuls2 =
(kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InLo) / 50.f) * (rIn / rt_InLo);
const float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
drtErr += lstMuls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta;
const float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
drtErr += muls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta;
drtErr = alpaka::math::sqrt(acc, drtErr);

//Cut #3: rt-z pointed
if ((kZ < 0) || (rtOut < rtLo) || (rtOut > rtHi))
return false;

const float lstPVoff = 0.1f / rt_OutLo;
float lstCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, lstMuls2 + lstPVoff * lstPVoff);
const float pvOffset = 0.1f / rt_OutLo;
float dPhiCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, muls2 + pvOffset * pvOffset);

float deltaPhiPos = lst::phi_mpi_pi(acc, mdsInGPU.anchorPhi[fourthMDIndex] - mdsInGPU.anchorPhi[secondMDIndex]);

//Cut #4: deltaPhiPos can be tighter
if (alpaka::math::abs(acc, deltaPhiPos) > lstCut)
if (alpaka::math::abs(acc, deltaPhiPos) > dPhiCut)
return false;

float midPointX = 0.5f * (mdsInGPU.anchorX[firstMDIndex] + mdsInGPU.anchorX[thirdMDIndex]);
Expand All @@ -1699,7 +1699,7 @@ namespace lst {

float dPhi = lst::deltaPhi(acc, midPointX, midPointY, diffX, diffY);
// Cut #5: deltaPhiChange
if (alpaka::math::abs(acc, dPhi) > lstCut)
if (alpaka::math::abs(acc, dPhi) > dPhiCut)
return false;

float sdIn_alpha = __H2F(segmentsInGPU.dPhiChanges[innerSegmentIndex]);
Expand Down Expand Up @@ -1802,7 +1802,7 @@ namespace lst {

float min_ptBeta_maxPtBeta = alpaka::math::min(
acc, alpaka::math::abs(acc, pt_beta), lst::kPt_betaMax); //need to confirm the range-out value of 7 GeV
const float dBetaMuls2 = lstThetaMulsF2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);
const float dBetaMuls2 = thetaMuls2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);

const float alphaInAbsReg = alpaka::math::max(
acc,
Expand Down Expand Up @@ -1914,14 +1914,14 @@ namespace lst {
float multDzDr = dzOutInAbs * coshEta / (coshEta * coshEta - 1.f);

float kZ = (z_OutLo - z_InLo) / dzSDIn;
float lstThetaMulsF2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InLo) / 50.f);
float thetaMuls2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rt_OutLo - rt_InLo) / 50.f);

float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;

float drtErr = alpaka::math::sqrt(
acc,
lst::kPixelPSZpitch * lst::kPixelPSZpitch * 2.f / (dzSDIn * dzSDIn) * (dzOutInAbs * dzOutInAbs) +
lstMuls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta);
muls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta);

float drtMean = drtSDIn * dzOutInAbs / alpaka::math::abs(acc, dzSDIn);
float rtWindow = drtErr + rtGeom;
Expand All @@ -1937,12 +1937,12 @@ namespace lst {
return false;
}

float lstPVoff = 0.1f / rtOut;
float lstCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, lstMuls2 + lstPVoff * lstPVoff);
float pvOffset = 0.1f / rtOut;
float dPhiCut = alpha1GeV_OutLo + alpaka::math::sqrt(acc, muls2 + pvOffset * pvOffset);

float deltaPhiPos = lst::phi_mpi_pi(acc, mdsInGPU.anchorPhi[fourthMDIndex] - mdsInGPU.anchorPhi[secondMDIndex]);

if (alpaka::math::abs(acc, deltaPhiPos) > lstCut)
if (alpaka::math::abs(acc, deltaPhiPos) > dPhiCut)
return false;

float midPointX = 0.5f * (mdsInGPU.anchorX[firstMDIndex] + mdsInGPU.anchorX[thirdMDIndex]);
Expand All @@ -1953,7 +1953,7 @@ namespace lst {
float dPhi = lst::deltaPhi(acc, midPointX, midPointY, diffX, diffY);

// Cut #5: deltaPhiChange
if (alpaka::math::abs(acc, dPhi) > lstCut)
if (alpaka::math::abs(acc, dPhi) > dPhiCut)
return false;

float sdIn_alpha = __H2F(segmentsInGPU.dPhiChanges[innerSegmentIndex]);
Expand Down Expand Up @@ -2043,7 +2043,7 @@ namespace lst {

float min_ptBeta_maxPtBeta = alpaka::math::min(
acc, alpaka::math::abs(acc, pt_beta), lst::kPt_betaMax); //need to confirm the range-out value of 7 GeV
const float dBetaMuls2 = lstThetaMulsF2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);
const float dBetaMuls2 = thetaMuls2 * 16.f / (min_ptBeta_maxPtBeta * min_ptBeta_maxPtBeta);

const float alphaInAbsReg = alpaka::math::max(
acc,
Expand Down
22 changes: 11 additions & 11 deletions RecoTracker/LSTCore/src/alpaka/Triplet.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace lst {
Buf<TDev, float> zHi_buf;
Buf<TDev, float> zLoPointed_buf;
Buf<TDev, float> zHiPointed_buf;
Buf<TDev, float> lstCut_buf;
Buf<TDev, float> dPhiCut_buf;
Buf<TDev, float> betaInCut_buf;
Buf<TDev, float> rtLo_buf;
Buf<TDev, float> rtHi_buf;
Expand Down Expand Up @@ -116,7 +116,7 @@ namespace lst {
zHi_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
zLoPointed_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
zHiPointed_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
lstCut_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
dPhiCut_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
betaInCut_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
rtLo_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue)),
rtHi_buf(allocBufWrapper<float>(devAccIn, maxTriplets, queue))
Expand Down Expand Up @@ -317,9 +317,9 @@ namespace lst {
float coshEta = dr3_InSeg / drt_InSeg;
float dzErr = (zpitchIn + zpitchOut) * (zpitchIn + zpitchOut) * 2.f;

float lstThetaMulsF2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rtOut - rtIn) / 50.f) * (r3In / rtIn);
float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
dzErr += lstMuls2 * drt_OutIn * drt_OutIn / 3.f * coshEta * coshEta;
float thetaMuls2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rtOut - rtIn) / 50.f) * (r3In / rtIn);
float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
dzErr += muls2 * drt_OutIn * drt_OutIn / 3.f * coshEta * coshEta;
dzErr = alpaka::math::sqrt(acc, dzErr);

// Constructing upper and lower bound
Expand Down Expand Up @@ -435,9 +435,9 @@ namespace lst {
const float kZ = (zOut - zIn) / dzSDIn;
float drtErr =
zGeom1_another * zGeom1_another * drtSDIn * drtSDIn / dzSDIn / dzSDIn * (1.f - 2.f * kZ + 2.f * kZ * kZ);
const float lstThetaMulsF2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2 * (rtOut - rtIn) / 50.f) * (rIn / rtIn);
const float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
drtErr += lstMuls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta;
const float thetaMuls2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2 * (rtOut - rtIn) / 50.f) * (rIn / rtIn);
const float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
drtErr += muls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta;
drtErr = alpaka::math::sqrt(acc, drtErr);

//Cut #3: rt-z pointed
Expand Down Expand Up @@ -545,14 +545,14 @@ namespace lst {
float multDzDr = dzOutInAbs * coshEta / (coshEta * coshEta - 1.f);

float kZ = (zOut - zIn) / dzSDIn;
float lstThetaMulsF2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rtOut - rtIn) / 50.f);
float thetaMuls2 = (kMulsInGeV * kMulsInGeV) * (0.1f + 0.2f * (rtOut - rtIn) / 50.f);

float lstMuls2 = lstThetaMulsF2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;
float muls2 = thetaMuls2 * 9.f / (lst::ptCut * lst::ptCut) * 16.f;

float drtErr = alpaka::math::sqrt(
acc,
lst::kPixelPSZpitch * lst::kPixelPSZpitch * 2.f / (dzSDIn * dzSDIn) * (dzOutInAbs * dzOutInAbs) +
lstMuls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta);
muls2 * multDzDr * multDzDr / 3.f * coshEta * coshEta);

float drtMean = drtSDIn * dzOutInAbs / alpaka::math::abs(acc, dzSDIn);
float rtWindow = drtErr + rtGeom;
Expand Down

0 comments on commit 67c2376

Please sign in to comment.