-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from CNugteren/development
Update to version 2.4.0
- Loading branch information
Showing
12 changed files
with
209 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
environment: | ||
global: | ||
CLTUNE_ROOT: "%APPVEYOR_BUILD_FOLDER%\\bin\\cltune" | ||
OPENCL_REGISTRY: "https://www.khronos.org/registry/cl" | ||
OPENCL_ROOT: "%APPVEYOR_BUILD_FOLDER%\\bin\\opencl" | ||
|
||
platform: | ||
- x64 | ||
- x86 | ||
|
||
configuration: | ||
- Release | ||
|
||
init: | ||
- cmake --version | ||
- C:\"Program Files (x86)"\"Microsoft Visual Studio 14.0"\VC\vcvarsall.bat %PLATFORM% | ||
|
||
# Creates an OpenCL library to link against. Taken from clMathLibraries/clBLAS | ||
install: | ||
- ps: mkdir $env:OPENCL_ROOT | ||
- ps: pushd $env:OPENCL_ROOT | ||
- ps: $opencl_registry = $env:OPENCL_REGISTRY | ||
# This downloads the source to the Khronos ICD library | ||
- git clone --depth 1 https://github.com/KhronosGroup/OpenCL-ICD-Loader.git | ||
- ps: mv ./OpenCL-ICD-Loader/* . | ||
# This downloads all the opencl header files | ||
# The cmake build files expect a directory called inc | ||
- ps: mkdir inc/CL | ||
- git clone --depth 1 https://github.com/KhronosGroup/OpenCL-Headers.git inc/CL | ||
- ps: wget $opencl_registry/api/2.1/cl.hpp -OutFile inc/CL/cl.hpp | ||
# - ps: dir; if( $lastexitcode -eq 0 ){ dir include/CL } else { Write-Output boom } | ||
# Create the static import lib in a directory called lib, so findopencl() will find it | ||
- ps: mkdir lib | ||
- ps: pushd lib | ||
- cmake -G "NMake Makefiles" .. | ||
- nmake | ||
- ps: popd | ||
# Switch to OpenCL 1.2 headers | ||
- ps: pushd inc/CL | ||
- git fetch origin opencl12:opencl12 | ||
- git checkout opencl12 | ||
- ps: popd | ||
# Rename the inc directory to include, so FindOpencl() will find it | ||
- ps: ren inc include | ||
- ps: popd | ||
|
||
before_build: | ||
- ps: mkdir $env:CLTUNE_ROOT | ||
- ps: pushd $env:CLTUNE_ROOT | ||
- ps: mkdir install_dir | ||
- cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=install_dir -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DSAMPLES=ON %APPVEYOR_BUILD_FOLDER% | ||
|
||
build_script: | ||
- nmake | ||
- nmake install | ||
|
||
after_build: | ||
- ps: pushd $env:CLTUNE_ROOT | ||
- 7z a CLTune-Windows.zip .\install_dir\* | ||
- ps: mv CLTune-Windows.zip $env:APPVEYOR_BUILD_FOLDER | ||
|
||
artifacts: | ||
- path: '*.zip' | ||
name: release | ||
type: zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
build/ | ||
build | ||
.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.