whisper.cpp icon indicating copy to clipboard operation
whisper.cpp copied to clipboard

Windows build

Open ggerganov opened this issue 3 years ago • 28 comments

Would be nice if someone can help and provide build instructions for Windows.

I think the only thing that might need an update is the pthread dependency in ggml.c. The rest of the code should build successfully.

Probably a .bat script to download the models would also be nice since no Bash on Windows.

ggerganov avatar Sep 30 '22 07:09 ggerganov

Would love this!! I want to run whisper on my ancient i7-5500U and right now with OpenAI's version on Windows 10, I can only transcribe 100 minutes in 24 hours. ☹️

kevin01881 avatar Sep 30 '22 22:09 kevin01881

Here is my recommendation, for x86 windows and multiple targets at once in a single binary format with zero to minimal changes: https://github.com/jart/cosmopolitan

For a demo of what is possible with this: https://redbean.dev/

Info here:

https://justine.lol/cosmopolitan/ https://justine.lol/ape.html

I have used it for small internal projects. And works fine. Basically this is how it works:

Here's how simple it is to get started:

gcc -g -O -static -fno-pie -no-pie -mno-red-zone -nostdlib -nostdinc -o hello.com hello.c \
  -Wl,--oformat=binary -Wl,--gc-sections -Wl,-z,max-page-size=0x1000 -fuse-ld=bfd -gdwarf-4 \
  -Wl,-T,[ape.lds](https://justine.lol/cosmopolitan/ape.lds) -include [cosmopolitan.h](https://justine.lol/cosmopolitan/cosmopolitan.h) [crt.o](https://justine.lol/cosmopolitan/crt.o) [ape.o](https://justine.lol/cosmopolitan/ape.o) [cosmopolitan.a](https://justine.lol/cosmopolitan/cosmopolitan.a)
In the above one-liner, we've basically reconfigured the stock compiler on Linux so it outputs binaries that'll run on MacOS, Windows, FreeBSD, OpenBSD, and NetBSD too. They also boot from the BIOS. Please note this is intended for people who don't care about desktop GUIs, and just want stdio and sockets without devops toil.

Doesn't work if you use libc functions that are not implemented, most are. If you get issues, this is your safe way to mitigate missing headers etc: https://github.com/fabriziobertocci/cosmo-include

Here are more resources to get you started:

https://github.com/shmup/awesome-cosmopolitan

Wish you good fun! I'm sure you'll love it.

Oh by the way. If you have real issues: https://github.com/jart/cosmopolitan/issues the crew is really cool and made up wizards / ex googlers, helpful - they respond quick, try to resolve issues soon.

Cheers

trholding avatar Oct 02 '22 17:10 trholding

PS. If you go the cosmopolitan way, you could also think of using redbean to encapsulate it and provide a web ui - would be cool.

trholding avatar Oct 02 '22 17:10 trholding

Thanks for the ideas - cosmopolitan sounds like an interesting option! Will give it a thought

ggerganov avatar Oct 03 '22 16:10 ggerganov

@ggerganov for Windows there is a POSIX threads API for Windows from - pthreads4w pthreads4w working for VisualStudio projects

I tried compiling ggml.c in VisualStudio 2017 with pthreads4w, but it didn't work for me :(

CHERTS avatar Oct 03 '22 19:10 CHERTS

Hi, i created pull request for adding windows support with build in Visual Studio 2022

@ggerganov please, see my pull request, thank's

CHERTS avatar Oct 05 '22 14:10 CHERTS

This project has support for the MSVC compiler, so you are able to compile it with Visual Studio. You should use the 2017-2022 versions to ensure compatibility. The "Desktop development with C++" should provide most of the stuff we need to compile.

Launch Developer Command Prompt for whatever version of your VS, then use cmake to build a VS project. In the root directory of the repo, execute this command:

cmake -S . -B ./build

This will tell cmake to take the current directory as a source and generate a VS project inside the build folder. Then, open the solution and Build Solution to build a binary file.

Screenshots

image image

minhngoc25a avatar Oct 17 '22 02:10 minhngoc25a

This project has support for the MSVC compiler, so you are able to compile it with Visual Studio. You should use the 2017-2022 versions to ensure compatibility. The "Desktop development with C++" should provide most of the stuff we need to compile.

Launch Developer Command Prompt for whatever version of your VS, then use cmake to build a VS project. In the root directory of the repo, execute this command:

cmake -S . -B ./build

This will tell cmake to take the current directory as a source and generate a VS project inside the build folder. Then, open the solution and Build Solution to build a binary file.

Screenshots

image image

it seems not support VS2017, when I build this with VS2017, many errors display. but It can build succeed on VS2022,Thanks! But when running it, I had this error: Assertion failed:rc==0,file ****\ggml.c,line 6522, I checked the ggml.c,found it failed when create multi thread. any one had the same issue and any idea that can fix it?

john0909 avatar Oct 17 '22 06:10 john0909

Has anyone encountered this problem: image

john0909 avatar Oct 17 '22 07:10 john0909

This project has support for the MSVC compiler, so you are able to compile it with Visual Studio. You should use the 2017-2022 versions to ensure compatibility. The "Desktop development with C++" should provide most of the stuff we need to compile.

Launch Developer Command Prompt for whatever version of your VS, then use cmake to build a VS project. In the root directory of the repo, execute this command:

cmake -S . -B ./build

This will tell cmake to take the current directory as a source and generate a VS project inside the build folder. Then, open the solution and Build Solution to build a binary file.

Screenshots

image image

Trying to get this working with Visual Studio 2022 on Windows as well, but I seem to be stuck on this error when building the solution:

image

Do you have any possible pointers? I'm not very familiar with building C on Windows.

chidiwilliams avatar Oct 22 '22 10:10 chidiwilliams

Do you have any possible pointers? I'm not very familiar with building C on Windows.

Disclaimer: I'm in the same boat as you being unfamiliar with this build process. I don't know what I'm doing with it.

I found that if I open the main.vcxproj file that Visual Studio 2022 created when I initially opened the whisper.cpp folder in the Visual Studio, there are instances of m.lib in there.

I did a find and replace to remove each m.lib (and its semi-colon), and then I was able to get Visual Studio to build whisper.cpp. (I don't know if Visual Studio auto-reloads changes to this file, so I closed it before editing the file.)

I do get an error trying to run an audio file through whisper.cpp after compiling, but it's the same error I had previously when I managed to hobble together a Windows build previously, so I don't know whether removing references to m.lib from the project file causes this error or not. (The error is Assertion failed: rc == 0. I haven't posted an issue about it because I figured it was due to the way I badly made the build process work previously.)

ChristopherFritz avatar Oct 23 '22 17:10 ChristopherFritz

Seems like some commits after the commit that adds MSVC support (https://github.com/ggerganov/whisper.cpp/pull/42) broke the compilation. I'm no expert at C++, but you can try to look at the changes or checkout your git to that earlier commit so that you can compile successfully.

minhngoc25a avatar Oct 23 '22 19:10 minhngoc25a

I ran into the same issue with Assertion failed: rc == 0. I was able to get it working by setting the number of threads to 1 .\main.exe audio.wav -t 1 But its quite slow though...took about a minute to transcribe a 20sec clip.

obyrnemj avatar Oct 24 '22 02:10 obyrnemj

Hi

I found an error in CMakeLists.txt, the /arch:AVX2 and _CRT_SECURE_NO_WARNINGS options are not set in the MSVC project for the compiler and the __AVX2__ option must also be need added.

Also, there is no FindSDL2.cmake module in CMake for Windows, you can verify this if you download the official installer v3.24.2

CHERTS avatar Oct 27 '22 07:10 CHERTS

Is anyone able to build as shared library on Windows? I get the following error when calling from Python:

Current thread 0x0000434c (most recent call first):
  File "C:\Users\willi\Documents\src\buzz\whispercpp_test.py", line 18 in <module>
Windows fatal exception: access violation

Current thread 0x0000434c (most recent call first):
  File "C:\Users\willi\Documents\src\buzz\whispercpp_test.py", line 18 in <module>
Windows fatal exception: access violation

Current thread 0x0000434c (most recent call first):
  File "C:\Users\willi\Documents\src\buzz\whispercpp_test.py", line 18 in <module>
Windows fatal exception: stack overflow

Full description: https://github.com/ggerganov/whisper.cpp/issues/9#issuecomment-1295765482

chidiwilliams avatar Oct 29 '22 08:10 chidiwilliams

Hi @chidiwilliams, I'm really bad with Windows and I don't even have a machine to try on, so I won't be able to help with the build. The original idea was to be able to build the project on Windows using CMake and @ibob implemented it a few days ago and it worked, but I guess it broke somewhere along the way.

ggerganov avatar Oct 29 '22 10:10 ggerganov

@ggerganov hi, this commit is broken.

AVX not working, please revert change!

image

CHERTS avatar Oct 30 '22 10:10 CHERTS

@ggerganov hi, this commit is broken.

AVX not working, please revert change!

image

Is it impossible for you to check out an earlier commit?

minhngoc25a avatar Oct 30 '22 11:10 minhngoc25a

Is it impossible for you to check out an earlier commit?

I fixed AVX support in this commit (need adding defenition __AVX2__)

CHERTS avatar Oct 30 '22 13:10 CHERTS

@CHERTS This page says that adding the /arch:AVX2 compiler option should already define the preprocessor symbol __AVX2__ - that is why I decided that it is not needed to define it again:

https://learn.microsoft.com/en-us/cpp/build/reference/arch-x64?view=msvc-170

If someone else can confirm that it does not work for them too, then I will add it back, but for now I will assume it is likely something wrong in your environment.

ggerganov avatar Oct 30 '22 15:10 ggerganov

@ggerganov

I didn't find the /arch:AVX2 option in the generated *.vcxproj files.

I think it's a challenge set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /arch:AVX2") in CMakeLists.txt doesn't work as it should.

CHERTS avatar Oct 30 '22 17:10 CHERTS

with the latest version afte I update, the multi thread's issue is fixed,now I can get this worked on win10 with VS2022, thanks very much for all of you. I think boolemancer's commit fix it. image

john0909 avatar Nov 10 '22 01:11 john0909

Hello, I'm using Visual Studio 2022 to compile the whisper.cpp/examples/main project, and this compilation error as shown in the figure below appears. Excuse me, how should I solve and check it? I don't know much about this.

image image

wxbool avatar Nov 11 '22 13:11 wxbool

Hello, I'm using Visual Studio 2022 to compile the whisper.cpp/examples/main project, and this compilation error as shown in the figure below appears. Excuse me, how should I solve and check it? I don't know much about this.

image image

我也遇到同样的问题,这是由于utf-8编码导致的。 用sublime text(或其他文本编辑器) 打开 examples/main/main.cpp 保存为UTF-8 with BOM即可 just save examples/main/main.cpp with "UTF-8 with BOM"

makao007 avatar Nov 15 '22 08:11 makao007

Hello, I'm using Visual Studio 2022 to compile the whisper.cpp/examples/main project, and this compilation error as shown in the figure below appears. Excuse me, how should I solve and check it? I don't know much about this. image image

我也遇到同样的问题,这是由于utf-8编码导致的。 用sublime text(或其他文本编辑器) 打开 examples/main/main.cpp 保存为UTF-8 with BOM即可 just save examples/main/main.cpp with "UTF-8 with BOM"

感谢,我也找到这个原因了

wxbool avatar Nov 15 '22 08:11 wxbool

with the latest version afte I update, the multi thread's issue is fixed,now I can get this worked on win10 with VS2022, thanks very much for all of you. I think boolemancer's commit fix it. image

Is it possible to share main executable? I have no success on run avx2=1. Very slow when compared with GPU

RYucel avatar Nov 17 '22 13:11 RYucel

If you want to build windows files on github, you can make a simple rule to build them.

    windows:
        runs-on: windows-latest
        steps:
            - name: Clone
              uses: actions/checkout@v1

            - name: Add msbuild to PATH
              uses: microsoft/setup-msbuild@v1

            - name: CMake
              shell: powershell
              run: cmake -S . -B ./build

            - name: MSBuild
              run: |
                cd ./build
                msbuild INSTALL.vcxproj /t:build

tamo avatar Nov 20 '22 07:11 tamo

image

Replacing "’" with "\u2019" would fix it without a BOM.

-                ::replace_all(txt_bg, "'", "’");
+                ::replace_all(txt_bg, "'", "\u2019");

tamo avatar Nov 23 '22 00:11 tamo

We now have automated Window builds + produced binaries + instructions for cross-compiling from Linux to Windows using MinGW. The README is updated with appropriate links. I think we can finally close this issue. Thanks to everyone that helped!

ggerganov avatar Nov 24 '22 16:11 ggerganov

I tried VS Studio 2022 for build x64 locally on two windows machine after cmake and I got this error in both. How can I fix this? image

RYucel avatar Nov 30 '22 10:11 RYucel