Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
halide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sander Mathijs van Veen
halide
Commits
b25b1173
Commit
b25b1173
authored
Feb 22, 2015
by
Sander Mathijs van Veen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit of a Halide Docker container
parents
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
Dockerfile
Dockerfile
+13
-0
install_halide.sh
install_halide.sh
+14
-0
makefile
makefile
+4
-0
No files found.
Dockerfile
0 → 100644
View file @
b25b1173
FROM
ubuntu:14.10
MAINTAINER
smvv@kompiler.org
RUN
apt-get update
\
&&
apt-get
install
-y
\
clang
\
libtbb-dev
\
llvm-3.5-dev
\
wget
ADD
install_halide.sh /root/install_halide.sh
RUN
/root/install_halide.sh
install_halide.sh
0 → 100755
View file @
b25b1173
#!/bin/bash -ex
cd
/root/
wget https://github.com/halide/Halide/releases/download/release_2014_10_09/halide_Linux_64_trunk_c62501f68ab9033d99ae0cc6d0d415646840f303_2014_10_09.tgz
tar
xvf halide_Linux_64_trunk_c62501f68ab9033d99ae0cc6d0d415646840f303_2014_10_09.tgz
rm
/root/halide_Linux_64_trunk_c62501f68ab9033d99ae0cc6d0d415646840f303_2014_10_09.tgz
mkdir
-p
/usr/local/include /usr/local/lib
cp
halide/bin/
*
/usr/local/lib/
cp
halide/include/
*
/usr/local/include/
rm
-rf
halide
makefile
0 → 100644
View file @
b25b1173
DOCKER
?=
docker
image
:
$(DOCKER)
build
-t
smvv/halide_2014_10_09 .
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