❗ This guide will become obsolete very soon! |
---|
During the 11th Patatrack Hackathon, the PixelTracksAlpaka CMSSW fork was created in order to pool the changes towards the final porting of Pixel-local GPU reconstruction
#!/bin/bash | |
""":" | |
python_cmd="python" | |
python3 -V >/dev/null 2>&1 && python_cmd="python3" | |
echo Using $python_cmd, running ${python_cmd} $0 ${1+"$@"} | |
exec ${python_cmd} $0 ${1+"$@"} | |
""" | |
print("Hello from Python") |
# Build with: sudo docker build . -t dqmgui:latest --build-arg DMWM_VERSION=<any dmwm/deployment tag> | |
# Run with: sudo docker run --detach --publish 8060:8060 -t dqmgui:latest | |
FROM gitlab-registry.cern.ch/linuxsupport/cc7-base:latest | |
ARG ARCH=slc7_amd64_gcc630 | |
ARG DMWM_VERSION=HG2307a | |
WORKDIR /dqmgui |
import os | |
import argparse | |
import pprint | |
def load_data_from_debug_file(filename): | |
data = {} | |
is_in_block = False | |
block_name = None | |
# print(f"Opening '{filename}'") |
git cms-init --upstream-only | |
#git remote remove origin | |
git remote add origin https://github.com/borzari/cmssw.git | |
git remote add common https://github.com/PixelTracksAlpaka/cmssw.git | |
git fetch -a origin | |
git fetch -a common | |
git checkout -b PixelTrack_Alpaka --track origin/PixelTrack_Alpaka |
❗ This guide will become obsolete very soon! |
---|
During the 11th Patatrack Hackathon, the PixelTracksAlpaka CMSSW fork was created in order to pool the changes towards the final porting of Pixel-local GPU reconstruction