Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[13_0_X] Pixel Alpaka Migration: Modification to Existing Modules [I] #41283

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Geometry/CommonTopologies/interface/SimplePixelTopology.h
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ namespace pixelTopology {
using tindex_type = uint32_t; // for tuples
using cindex_type = uint32_t; // for cells

static constexpr uint32_t maxNumberOfHits = 256 * 1024;
static constexpr uint32_t maxCellNeighbors = 64;
static constexpr uint32_t maxCellTracks = 302;
static constexpr uint32_t maxHitsOnTrack = 15;
Expand Down Expand Up @@ -382,6 +383,7 @@ namespace pixelTopology {
using tindex_type = uint16_t; // for tuples
using cindex_type = uint32_t; // for cells

static constexpr uint32_t maxNumberOfHits = 48 * 1024;
static constexpr uint32_t maxCellNeighbors = 36;
static constexpr uint32_t maxCellTracks = 48;
static constexpr uint32_t maxHitsOnTrack = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
#include "Geometry/CommonTopologies/interface/SimplePixelTopology.h"

#include "storeTracks.h"
#include "CUDADataFormats/Common/interface/HostProduct.h"

#include "CUDADataFormats/Track/interface/TrackSoAHeterogeneousHost.h"
#include "CUDADataFormats/Track/interface/TrackSoAHeterogeneousDevice.h"
Expand Down
4 changes: 2 additions & 2 deletions RecoPixelVertexing/PixelTriplets/plugins/CAStructures.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef CUDADataFormats_TrackerGeometry_CAStructures_h
#define CUDADataFormats_TrackerGeometry_CAStructures_h
#ifndef RecoPixelVertexing_PixelTriplets_CAStructures_h
#define RecoPixelVertexing_PixelTriplets_CAStructures_h

#include "HeterogeneousCore/CUDAUtilities/interface/SimpleVector.h"
#include "HeterogeneousCore/CUDAUtilities/interface/VecArray.h"
Expand Down