Commit f0fce7c1 authored by Robert Schmidt's avatar Robert Schmidt
Browse files

Merge branch 'integration_2025_w08' into 'develop'

Integration: `2025.w08`

Closes #772

See merge request oai/openairinterface5g!3273

* !3263 Free ITTI message after receiving it at MAC from RRC
* !3268 Upgrade SIMDe commit
* !3269 chore(ci): change image rentention from 4weeks to 3weeks
* !3227 fix(nrLDPC_coding): timers in DL encoding, fix(ldpctest): Confusion in sizes
* !3270 Update of gNB-N300-Timing-Phytest threshold
* !3272 Fix: write NSSAI info of F1AP Cell Info struct
* !3259 UE DCI no candidates
* !3264 Fix "Received Nack" log for Msg4/MsgB and minor improvement in RA logs
* !3228 Add option to use global noise power for all RX channels in RFSimulator
* !2725 Use 5G-S-TMSI as UE identity in RRCSetupRequest
parents 6d9c2c35 e03c15e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -315,9 +315,9 @@ class Cluster:

		# delete old images by Sagar Arora <sagar.arora@openairinterface.org>:
		# 1. retrieve all images and their timestamp
		# 2. awk retrieves those whose timestamp is older than 4 weeks
		# 2. awk retrieves those whose timestamp is older than 3 weeks
		# 3. issue delete command on corresponding istags (the images are dangling and will be cleaned by the registry)
		delete_cmd = "oc get istag -o go-template --template '{{range .items}}{{.metadata.name}} {{.metadata.creationTimestamp}}{{\"\\n\"}}{{end}}' | awk '$2 <= \"'$(date -d '-4weeks' -Ins --utc | sed 's/+0000/Z/')'\" { print $1 }' | xargs --no-run-if-empty oc delete istag"
		delete_cmd = "oc get istag -o go-template --template '{{range .items}}{{.metadata.name}} {{.metadata.creationTimestamp}}{{\"\\n\"}}{{end}}' | awk '$2 <= \"'$(date -d '-3weeks' -Ins --utc | sed 's/+0000/Z/')'\" { print $1 }' | xargs --no-run-if-empty oc delete istag"
		response = self.cmd.run(delete_cmd)
		logging.debug(f"deleted images:\n{response.stdout}")

+7 −7
Original line number Diff line number Diff line
@@ -9,14 +9,14 @@ ColNames :
Ref : 
  feprx : 150.0
  feptx_prec : 0.0
  feptx_ofdm : 65.0
  feptx_total : 177.0
  L1 Tx processing : 700.0
  DLSCH encoding : 226.0
  L1 Rx processing : 640.0
  PUSCH inner-receiver : 400.0
  feptx_ofdm : 60.0
  feptx_total : 150.0
  L1 Tx processing : 530.0
  DLSCH encoding : 220.0
  L1 Rx processing : 530.0
  PUSCH inner-receiver : 360.0
  Schedule Response : 3.0
  DL & UL scheduling timing : 15.0
  DL & UL scheduling timing : 17.0
  UL Indication : 3.0
  Slot Indication : 17.0
DeviationThreshold :
+8 −8
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@ ColNames :
  - Average; Max; Count
  - Average vs Reference Deviation (Reference Value; Acceptability Deviation Threshold)
Ref :
  feprx : 46.0
  feprx : 40.0
  feptx_prec : 15.0
  feptx_ofdm : 35.0
  feptx_total : 50.0
  L1 Tx processing : 260.0
  DLSCH encoding : 160.0
  L1 Rx processing : 420.0
  PUSCH inner-receiver : 170.0
  feptx_ofdm : 30.0
  feptx_total : 45.0
  L1 Tx processing : 205.0
  DLSCH encoding : 140.0
  L1 Rx processing : 345.0
  PUSCH inner-receiver : 150.0
  Schedule Response : 3.0
  DL & UL scheduling timing : 8.0
  DL & UL scheduling timing : 7.0
  UL Indication : 3.0
  Slot Indication : 8.0
DeviationThreshold :
+7 −7
Original line number Diff line number Diff line
@@ -7,18 +7,18 @@ ColNames :
  - Average; Max; Count
  - Average vs Reference Deviation (Reference Value; Acceptability Deviation Threshold)
Ref : 
  feprx : 84.0
  feprx : 75.0
  feptx_prec : 14.0
  feptx_ofdm : 35.0
  feptx_total : 100.0
  L1 Tx processing : 400.0
  DLSCH encoding : 177.0
  feptx_ofdm : 30.0
  feptx_total : 80.0
  L1 Tx processing : 315.0
  DLSCH encoding : 155.0
  L1 Rx processing : 345.0
  PUSCH inner-receiver : 200.0
  PUSCH inner-receiver : 155.0
  Schedule Response : 3.0
  DL & UL scheduling timing : 13.0
  UL Indication : 3.0
  Slot Indication : 15.0
  Slot Indication : 12.0
DeviationThreshold :
  feprx : 0.25
  feptx_prec : 0.25
+7 −7
Original line number Diff line number Diff line
@@ -7,17 +7,17 @@ ColNames :
  - Average; Max; Count
  - Average vs Reference Deviation (Reference Value; Acceptability Deviation Threshold)
Ref : 
  feprx : 43.0
  feprx : 40.0
  feptx_prec : 13.0
  feptx_ofdm : 33.0
  feptx_total : 50.0
  L1 Tx processing : 200.0
  feptx_ofdm : 30.0
  feptx_total : 45.0
  L1 Tx processing : 160.0
  DLSCH encoding : 100.0
  L1 Rx processing : 330.0
  PUSCH inner-receiver : 120.0
  L1 Rx processing : 290.0
  PUSCH inner-receiver : 115.0
  Schedule Response : 3.0
  DL & UL scheduling timing : 6.0
  UL Indication : 3.0
  UL Indication : 2.0
  Slot Indication : 7.0
DeviationThreshold :
  feprx : 0.25
Loading