Show HN: CodeGPT.nvim – ChatGPT plugin for Neovim
github.com228 pointsby dpayne47 comments
mac >> clang++ -O3 -march=native main.cpp
mac >> ./a.out
3.1415926545880506
total time taken is: 4.3861569999999999s
Twice as slow as the fastmath version but still faster than the go version. mac >> go run main.go
approximating pi with 1000000000 iterations.
3.1415926545880506
total time taken is: 9.706911232s
mac >> clang++ -O3 -ffast-math -march=native main.cpp
mac >> ./a.out
3.1415926545864963
total time taken is: 2.14196s
You can get your API key here https://platform.openai.com/account/api-keys.