Project
Loading...
Searching...
No Matches
GPUTPCCFClusterizer.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#include "GPUTPCCFClusterizer.h"
16
17#include "CfConsts.h"
18#include "CfUtils.h"
19#include "ClusterAccumulator.h"
20#if !defined(GPUCA_GPUCODE)
21#include "GPUHostDataTypes.h"
22#include "MCLabelAccumulator.h"
23#endif
24
25using namespace o2::gpu;
26using namespace o2::gpu::tpccf;
27
28#include "GPUTPCCFClusterizer.inc"
29
30template <>
31GPUdii() void GPUTPCCFClusterizer::Thread<0>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, GPUSharedMemory& smem, processorType& clusterer, int8_t onlyMC)
32{
33 Array2D<PackedCharge> chargeMap(reinterpret_cast<PackedCharge*>(clusterer.mPchargeMap));
34 CPU_ONLY(MCLabelAccumulator labelAcc(clusterer));
35
36 tpc::ClusterNative* clusterOut = (onlyMC) ? nullptr : clusterer.mPclusterByRow;
37
38 GPUTPCCFClusterizer::computeClustersImpl(get_num_groups(0), get_local_size(0), get_group_id(0), get_local_id(0), clusterer, clusterer.mPmemory->fragment, smem, chargeMap, clusterer.mPfilteredPeakPositions, clusterer.Param().rec, CPU_PTR(&labelAcc), clusterer.mPmemory->counters.nClusters, clusterer.mNMaxClusterPerRow, clusterer.mPclusterInRow, clusterOut, clusterer.mPclusterPosInRow);
39}
#define get_local_size(dim)
#define get_local_id(dim)
#define get_num_groups(dim)
#define get_group_id(dim)
GPUdii() void GPUTPCCFClusterizer
#define CPU_ONLY(x)
#define CPU_PTR(x)
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)