Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hep-workloads-GPU
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HEP-Benchmarks
hep-workloads-GPU
Merge requests
!3
An error occurred while fetching participants.
Adding pocl version of the simpletrack container
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding pocl version of the simpletrack container
simpletrack-pocl
into
master
Overview
0
Commits
1
Pipelines
0
Changes
3
Merged
Olga Vladimirovna Datskova
requested to merge
simpletrack-pocl
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
cd08c99e
1 commit,
4 years ago
3 files
+
51
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
lhc/simpletrack/Dockerfile.pocl
0 → 100644
+
22
−
0
Options
FROM debian:latest
ARG LLVM_VERSION=7
ENV OCL_ICD_VENDORS=/pocl/build/ocl-vendors
ENV POCL_BUILDING=1
ENV PARTICLES 20000
ENV TURNS 15
ENV DEVICE "0.0"
RUN apt update && apt upgrade -y \
&& apt-get install -y build-essential ocl-icd-libopencl1 cmake git gcc g++ libhwloc5 pkg-config python3-pip libclang-${LLVM_VERSION}-dev clang-${LLVM_VERSION} llvm-${LLVM_VERSION}-dev make ninja-build ocl-icd-libopencl1 ocl-icd-dev ocl-icd-opencl-dev libhwloc-dev zlib1g zlib1g-dev clinfo
RUN git clone https://github.com/pocl/pocl.git \
&& cd pocl && mkdir build && cd build && cmake -G Ninja .. \
&& ninja
RUN mkdir /.cache && chmod -R 777 /.cache/ \
&& git clone https://github.com/rdemaria/simpletrack.git \
&& cd simpletrack && pip3 install pyopencl && pip3 install -e .
ENTRYPOINT [ "/bin/bash", "-c", "cd /simpletrack/examples/lhc/ && python3 benchmark_opencl.py -p $PARTICLES -t $TURNS -d $DEVICE" ]
Loading