Pilot Assignment Algorithms
Pilot Assignment as a Design Variable
Given that pilot contamination cannot be entirely avoided in multi-cell systems, a natural question is: can the assignment of pilot sequences to users be optimized to minimize contamination?
The severity of pilot contamination between two users depends critically on their spatial covariance matrices and . If the covariance matrices are nearly orthogonal (users are in very different angular directions), the SINR floor is high. If they are nearly collinear (users in similar directions from their respective base stations), the floor is low.
Pilot assignment asks: given a set of users with known covariance matrices, which users should share pilots to maximize system-level performance?
Definition: Pilot Contamination Metric
Pilot Contamination Metric
For users in cell 1 and in cell , define the inter-cell pilot contamination coefficient:
This measures the "overlap" between the two users' spatial covariance matrices. means orthogonal covariance subspaces (no contamination impact). means identical covariance structure (maximum contamination).
For the one-ring channel model, is large when users have similar angles of arrival at their respective base stations (similar angular windows).
Greedy Pilot Assignment Algorithm
Complexity:Greedy assignment is suboptimal in general but runs in polynomial time and gives good practical results. The optimal assignment minimizing total contamination is an NP-hard combinatorial optimization (related to graph coloring).
Graph-Coloring Pilot Assignment
Complexity: for graph construction, for coloringThe graph-coloring interpretation makes pilot assignment equivalent to proper graph coloring: users connected by high-contamination edges should receive different colors (pilot sequences). The chromatic number of the graph gives the minimum pilot pool size needed to avoid severe contamination.
Example: Pilot Assignment in a Three-Cell System
Three cells each have users. The contamination metrics are: (user 1 cell 1 and user 3 cell 2 are highly contaminated), (user 2 cell 1 and user 4 cell 2 are moderately contaminated), , (cell 3 causes little contamination). Available pilots: . Find the greedy assignment.
Build the contamination graph
Edges (with ): , . Users are isolated.
Apply greedy coloring
- User 1: assign pilot 1. User 3 (connected to 1): assign pilot 2.
- User 2: assign pilot 1. User 4 (connected to 2): assign pilot 2.
- User 5: assign pilot 1. User 6: assign pilot 1 (no conflict).
Check assignment
Pilot 1: , Pilot 2: . The high-contamination pairs and are on different pilots β contamination between them eliminated. The residual contamination is (intra-cell, always 0 by orthogonal intra-cell pilots in single-cell), β all small by assumption.
SINR vs. Pilot Reuse Factor
Compare per-user SINR for different pilot reuse strategies: universal reuse (all cells share the same pilot pool), partial reuse (pilot pools are partially disjoint), and fractional reuse. Tradeoffs appear between spectral efficiency per user and pilot overhead.
Parameters
Pilot Assignment Algorithm Comparison
| Method | Complexity | Optimality | Requires ? | Scalable? |
|---|---|---|---|---|
| Random | Poor | No | Yes | |
| Greedy (sum contamination) | Near-optimal in practice | Yes | Yes | |
| Graph coloring | Good structural guarantee | Yes (threshold) | Yes | |
| Optimal (exhaustive) | Optimal | Yes | No () | |
| Hungarian algorithm (matching) | Optimal for 2-cell | Yes | Moderate |
Common Mistake: Pilot Assignment Must Be Adaptive
Mistake:
Once pilots are assigned at system startup, they can remain fixed indefinitely.
Correction:
Optimal pilot assignment depends on the covariance matrices , which evolve as users move. A user who was at the cell edge (high contamination) may move to a region with a very different angular spectrum β changing its contamination profile with neighboring cells.
Pilot assignment should be updated whenever the large-scale fading coefficients change significantly, typically every 10β100 ms for pedestrian users and every 1β5 ms for vehicular users. In practice, 5G NR supports semi-persistent SRS configurations that can be updated by RRC reconfiguration, but the mechanism for dynamic pilot assignment based on covariance estimates is still an active research area.
SRS Resource Management in 5G NR
In 5G NR, the SRS (sounding reference signal) plays the role of uplink pilots for channel reciprocity estimation. The gNB assigns SRS resources (time-frequency location within the SRS occasion) to UEs via RRC configuration. Unlike the academic models studied here, 5G NR does not currently include a standardized algorithm for covariance-aware pilot (SRS) assignment β this is left to gNB implementation.
Commercial gNBs typically assign SRS resources based on cell load and UE scheduling priority rather than spatial covariance structure. Research shows 1β3 dB gain from covariance-aware assignment in dense urban scenarios, but this requires accurate covariance estimation and frequent updates.
- β’
5G NR SRS: up to 8 orthogonal SRS sequences per resource set (TS 38.211, Section 6.4.1.4.2)
- β’
Pilot reuse across cells not specified in 3GPP β implementation-specific
- β’
Covariance matrix dimensions scale as : at , storing costs 256 KB per user
Key Takeaway
Good pilot assignment can raise the contamination floor significantly. By assigning pilots so that users with heavily overlapping spatial covariance matrices receive orthogonal pilots, contamination is shifted to user pairs with nearly orthogonal spatial signatures. Greedy and graph-coloring algorithms provide practical, near-optimal assignment at polynomial cost. However, assignment alone cannot eliminate contamination entirely when the total user count exceeds the pilot pool β decontamination via covariance subspace structure (Section 5) is needed.