-
Notifications
You must be signed in to change notification settings - Fork 3
150 lines (124 loc) · 5.69 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Build (Windows)
on:
push:
paths:
- 'CMakeLists.txt'
- 'source/*'
- 'rtc_source/*'
- 'sycl_source/*'
- '.github/workflows/windows.yml'
workflow_dispatch:
inputs:
tag:
description: 'which tag to upload to'
default: ''
jobs:
build-windows:
runs-on: windows-2022
defaults:
run:
shell: cmd
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Setup Ninja
run: pip install ninja
- name: Cache CUDA
id: cache-cuda
uses: actions/cache@v3
with:
path: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA
key: ${{ runner.os }}-cuda-11.8.0
- name: Setup CUDA
if: steps.cache-cuda.outputs.cache-hit != 'true'
run: |
curl -s -o cuda_installer.exe -L https://developer.download.nvidia.com/compute/cuda/11.8.0/network_installers/cuda_11.8.0_windows_network.exe
cuda_installer.exe -s nvcc_11.8 cudart_11.8 nvrtc_dev_11.8
- name: Download VapourSynth headers
run: |
curl -s -o vs.zip -L https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R57.zip
unzip -q vs.zip
mv vapoursynth-*/ vapoursynth/
- name: Configure (CUDA)
run: cmake -S . -B build -G Ninja -LA
-D CMAKE_BUILD_TYPE=Release
-D USE_NVRTC_STATIC=ON
-D CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded
-D VAPOURSYNTH_INCLUDE_DIRECTORY="%cd%\vapoursynth\include"
-D CMAKE_CXX_FLAGS="/fp:fast /arch:AVX"
-D CMAKE_CUDA_FLAGS="--threads 0 --use_fast_math --resource-usage -Wno-deprecated-gpu-targets"
-D CMAKE_CUDA_ARCHITECTURES="50;61-real;75-real;86-real;89-real"
env:
CUDA_PATH: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8
- name: Build (CUDA)
run: cmake --build build --verbose
- name: Install (CUDA)
run: cmake --install build --prefix install
- name: Cache SYCL
id: cache-sycl
uses: actions/cache@v3
with:
path: C:\Program Files (x86)\Intel\oneAPI
key: ${{ runner.os }}-dpcpp-2023.2.2
- name: Setup SYCL
if: steps.cache-sycl.outputs.cache-hit != 'true'
run: |
curl -J -o dpcpp_installer.exe https://registrationcenter-download.intel.com/akdlm/IRC_NAS/c08746d2-5669-4ef8-9fc8-1ec330b3ac3b/w_dpcpp-cpp-compiler_p_2023.2.2.49534_offline.exe
dpcpp_installer -s -a -s --eula accept
- name: Configure (SYCL)
run: |
call "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
cmake -S . -B build_sycl -G Ninja -LA ^
-D CMAKE_BUILD_TYPE=Release ^
-D ENABLE_CUDA=OFF ^
-D ENABLE_CUDA_RTC=OFF ^
-D ENABLE_SYCL=ON ^
-D VAPOURSYNTH_INCLUDE_DIRECTORY="%cd%\vapoursynth\include" ^
-D CMAKE_CXX_COMPILER=icx ^
-D CMAKE_CXX_FLAGS="-ffast-math -mavx2"
- name: Build (SYCL)
run: |
call "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
cmake --build build_sycl --verbose
- name: Install (SYCL)
run: cmake --install build_sycl --prefix install
- name: Upload
uses: actions/upload-artifact@v3
with:
name: BilateralGPU-Windows
path: install/bin/*.dll
- name: Compress artifact for release
if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag != ''
run: |
cd install
mkdir VapourSynth-BilateralGPU-${{ github.event.inputs.tag }}
echo f | xcopy bin\bilateralgpu.dll VapourSynth-BilateralGPU-${{ github.event.inputs.tag }}\BilateralGPU.dll /f
7z a -t7z -mx=9 ../VapourSynth-BilateralGPU-${{ github.event.inputs.tag }}.7z VapourSynth-BilateralGPU-${{ github.event.inputs.tag }}
mkdir VapourSynth-BilateralGPU_RTC-${{ github.event.inputs.tag }}
echo f | xcopy bin\bilateralgpu_rtc.dll VapourSynth-BilateralGPU_RTC-${{ github.event.inputs.tag }}\BilateralGPU_RTC.dll /f
7z a -t7z -mx=9 ../VapourSynth-BilateralGPU_RTC-${{ github.event.inputs.tag }}.7z VapourSynth-BilateralGPU_RTC-${{ github.event.inputs.tag }}
mkdir VapourSynth-BilateralSYCL-${{ github.event.inputs.tag }}
echo f | xcopy bin\bilateralsycl.dll VapourSynth-BilateralSYCL-${{ github.event.inputs.tag }}\BilateralSYCL.dll /f
7z a -t7z -mx=9 ../VapourSynth-BilateralSYCL-${{ github.event.inputs.tag }}.7z VapourSynth-BilateralSYCL-${{ github.event.inputs.tag }}
mkdir SYCL-Runtime-${{ github.event.inputs.tag }}
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\sycl6.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\pi_*.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f /i
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\redist\intel64_win\compiler\libmmd.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
7z a -t7z -mx=9 ../SYCL-Runtime-${{ github.event.inputs.tag }}.7z SYCL-Runtime-${{ github.event.inputs.tag }}
- name: Release
uses: softprops/action-gh-release@v1
if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag != ''
with:
tag_name: ${{ github.event.inputs.tag }}
files: |
VapourSynth-BilateralGPU-${{ github.event.inputs.tag }}.7z
VapourSynth-BilateralGPU_RTC-${{ github.event.inputs.tag }}.7z
VapourSynth-BilateralSYCL-${{ github.event.inputs.tag }}.7z
SYCL-Runtime-${{ github.event.inputs.tag }}.7z
fail_on_unmatched_files: true
generate_release_notes: false
prerelease: true