Skip to content

Commit 93beddc

Browse files
committed
add the CPU backend
1 parent 7742e68 commit 93beddc

21 files changed

+4194
-2893
lines changed

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ ebsynth -style <style.png> -guide <source.png> <target.png> -output <output.png>
2828
-pyramidlevels <number>
2929
-searchvoteiters <number>
3030
-patchmatchiters <number>
31+
-backend [cpu|cuda]
3132
```
3233

3334
## Download
@@ -129,10 +130,6 @@ equalized to match the luminance of the source painting.
129130

130131
--------------------------------------------------------------------------
131132

132-
## Requirements
133-
134-
`ebsynth` needs a CUDA-capable gpu in order to run. Besides CUDA, there are no other external dependencies. A cpu-only version that doesn't require CUDA will be released later.
135-
136133
## License
137134

138135
The code is released into the public domain. You can do anything you want with it.

build-linux-cpu+cuda.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
nvcc -arch compute_30 src/ebsynth.cpp src/ebsynth_cpu.cpp src/ebsynth_cuda.cu -I"include" -DNDEBUG -D__CORRECT_ISO_CPP11_MATH_H_PROTO -O6 -std=c++11 -w -Xcompiler -fopenmp -o bin/ebsynth

build-linux-cpu_only.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
g++ src/ebsynth.cpp src/ebsynth_cpu.cpp src/ebsynth_nocuda.cpp -DNDEBUG -O6 -fopenmp -I"include" -std=c++11 -o bin/ebsynth

build-linux.sh

-2
This file was deleted.

build-win32-cpu+cuda.bat

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
setlocal ENABLEDELAYEDEXPANSION
3+
4+
for %%V in (15,14,12,11) do if exist "!VS%%V0COMNTOOLS!" call "!VS%%V0COMNTOOLS!..\..\VC\vcvarsall.bat" x86 && goto compile
5+
6+
:compile
7+
nvcc -m32 -arch compute_30 src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_cuda.cu -DNDEBUG -O6 -I "include" -o "bin\ebsynth.exe" -Xcompiler "/openmp /fp:fast" -Xlinker "/IMPLIB:dummy.lib" -w || goto error
8+
nvcc -m32 -arch compute_30 src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_cuda.cu -DNDEBUG -O6 -I "include" -o "bin\ebsynth.dll" -Xcompiler "/openmp /fp:fast" -Xlinker "/IMPLIB:lib\ebsynth.lib" -shared -DEBSYNTH_API=__declspec(dllexport) -w || goto error
9+
del dummy.lib;dummy.exp 2> NUL
10+
goto :EOF
11+
12+
:error
13+
echo FAILED
14+
@%COMSPEC% /C exit 1 >nul

build-win32-cpu_only.bat

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
setlocal ENABLEDELAYEDEXPANSION
3+
4+
for %%V in (15,14,12,11) do if exist "!VS%%V0COMNTOOLS!" call "!VS%%V0COMNTOOLS!..\..\VC\vcvarsall.bat" x86 && goto compile
5+
6+
:compile
7+
cl src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_nocuda.cpp /DNDEBUG /O2 /openmp /EHsc /nologo /I"include" /Fe"bin\ebsynth.exe" || goto error
8+
cl src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_nocuda.cpp /DNDEBUG /O2 /openmp /EHsc /nologo /I"include" /Fe"bin\ebsynth.dll" /DEBSYNTH_API="__declspec(dllexport)" /link /IMPLIB:"lib\ebsynth.lib" || goto error
9+
del ebsynth.obj;ebsynth_cpu.obj;ebsynth_nocuda.obj 2> NUL
10+
goto :EOF
11+
12+
:error
13+
echo FAILED
14+
@%COMSPEC% /C exit 1 >nul

build-win32.bat

-12
This file was deleted.

build-win64-cpu+cuda.bat

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
setlocal ENABLEDELAYEDEXPANSION
3+
4+
for %%V in (15,14,12,11) do if exist "!VS%%V0COMNTOOLS!" call "!VS%%V0COMNTOOLS!..\..\VC\vcvarsall.bat" amd64 && goto compile
5+
6+
:compile
7+
nvcc -arch compute_30 src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_cuda.cu -DNDEBUG -O6 -I "include" -o "bin\ebsynth.exe" -Xcompiler "/openmp /fp:fast" -Xlinker "/IMPLIB:dummy.lib" -w || goto error
8+
nvcc -arch compute_30 src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_cuda.cu -DNDEBUG -O6 -I "include" -o "bin\ebsynth.dll" -Xcompiler "/openmp /fp:fast" -Xlinker "/IMPLIB:lib\ebsynth.lib" -shared -DEBSYNTH_API=__declspec(dllexport) -w || goto error
9+
del dummy.lib;dummy.exp 2> NUL
10+
goto :EOF
11+
12+
:error
13+
echo FAILED
14+
@%COMSPEC% /C exit 1 >nul

build-win64-cpu_only.bat

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
setlocal ENABLEDELAYEDEXPANSION
3+
4+
for %%V in (15,14,12,11) do if exist "!VS%%V0COMNTOOLS!" call "!VS%%V0COMNTOOLS!..\..\VC\vcvarsall.bat" amd64 && goto compile
5+
6+
:compile
7+
cl src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_nocuda.cpp /DNDEBUG /O2 /openmp /EHsc /nologo /I"include" /Fe"bin\ebsynth.exe" || goto error
8+
cl src\ebsynth.cpp src\ebsynth_cpu.cpp src\ebsynth_nocuda.cpp /DNDEBUG /O2 /openmp /EHsc /nologo /I"include" /Fe"bin\ebsynth.dll" /DEBSYNTH_API="__declspec(dllexport)" /link /IMPLIB:"lib\ebsynth.lib" || goto error
9+
del ebsynth.obj;ebsynth_cpu.obj;ebsynth_nocuda.obj 2> NUL
10+
goto :EOF
11+
12+
:error
13+
echo FAILED
14+
@%COMSPEC% /C exit 1 >nul

build-win64.bat

-12
This file was deleted.

0 commit comments

Comments
 (0)