Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
stitchEm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Franco (nextime) Lanza
stitchEm
Commits
23f12069
Commit
23f12069
authored
Feb 03, 2020
by
jerem
Committed by
jeremad
Feb 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(opencl): add openCL ci
parent
45cdaf3c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
3 deletions
+20
-3
build.yml
.github/workflows/build.yml
+12
-3
ci-cuda.dockerfile
docker/ci-cuda.dockerfile
+0
-0
ci-opencl.dockerfile
docker/ci-opencl.dockerfile
+8
-0
No files found.
.github/workflows/build.yml
View file @
23f12069
...
...
@@ -9,7 +9,7 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
docker build . --file docker/ci.dockerfile --tag stitchem-cuda8:latest --build-arg version=8
run
:
docker build . --file docker/ci
-cuda
.dockerfile --tag stitchem-cuda8:latest --build-arg version=8
-
name
:
Build
run
:
docker run stitchem-cuda8:latest
...
...
@@ -18,7 +18,7 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
docker build . --file docker/ci.dockerfile --tag stitchem-cuda9:latest --build-arg version=9
run
:
docker build . --file docker/ci
-cuda
.dockerfile --tag stitchem-cuda9:latest --build-arg version=9
-
name
:
Build
run
:
docker run stitchem-cuda9:latest
...
...
@@ -27,10 +27,19 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
docker build . --file docker/ci.dockerfile --tag stitchem-cuda10:latest --build-arg version=10
run
:
docker build . --file docker/ci
-cuda
.dockerfile --tag stitchem-cuda10:latest --build-arg version=10
-
name
:
Build
run
:
docker run stitchem-cuda10:latest
LinuxOpenCL
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
docker build . --file docker/ci-opencl.dockerfile --tag stitchem-opencl:latest
-
name
:
Build
run
:
docker run stitchem-opencl:latest
MacOpenCL
:
runs-on
:
macos-latest
steps
:
...
...
docker/ci.dockerfile
→
docker/ci
-cuda
.dockerfile
View file @
23f12069
File moved
docker/ci-opencl.dockerfile
0 → 100644
View file @
23f12069
ARG version
FROM stitchem/stitchem-base:latest
ADD . stitchEm
WORKDIR stitchEm
WORKDIR build
RUN cmake -DCMAKE_BUILD_TYPE=Release -DGPU_BACKEND_CUDA=OFF -DGPU_BACKEND_OPENCL=ON -DDISABLE_OPENCL_SPIR=ON -G Ninja ..
CMD ninja
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment