News from GPU parameter tuning

Real PbPb results

Each time is the average time per event in seconds

GPU Event 1 Event 2 Event 3
AMD MI300X

1.07 s

1.19 s 1.21 s
AMD Radeon Pro W7900 2.08 s 2.38 s

2.41 s

Nvidia H100 NVL 94GB 0.95 s 1.07 s

1.07 s

 

Sim PbPb results

GPU Time per event [ms]
AMD Radeon Pro W7900 1.87 s
Nvidia H100 NVL 94GB 0.86 s

 

New GPU parametrization

Clang-format wants to change from this:

    "GPUTPCNeighboursFinder": {
      "default":  256,
      "MI100":    [192, 8],
      "VEGA":     [960, 8],
      "AMPERE":   [640, 1],
      "TURING":   [640, 1]
    },   

To this:
    "GPUTPCNeighboursFinder": {
      "default": 256,
      "MI100": [
        192,
        8
      ],
      "VEGA": [
        960,
        8
      ],
      "AMPERE": [
        640,
        1
      ],
      "TURING": [
        640,
        1
      ]
    },

Is there a way to suppress clang-format for that specific file?