Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CPU/GPU Accelerating Hashing & Encryption #13

Open
chmichael opened this issue Jan 24, 2021 · 14 comments
Open

CPU/GPU Accelerating Hashing & Encryption #13

chmichael opened this issue Jan 24, 2021 · 14 comments

Comments

@chmichael
Copy link

Describe the solution you'd like
CPU/GPU Accelerating Hashing & Encryption

Additional context
On CPU using SSE/AVX Extensions and GPU using OpenCL/CUDA

@MHumm
Copy link
Owner

MHumm commented Jan 25, 2021

I can understand the desire to have this implemented. There are a few issues though which might lead to postphoning this a bit.

  1. I see speed as an important goal, but the library lacks some modern algorithms in some areas which should at least be added in a basic version first (e.g. implementing SHA3 most likely will still take some time as this is a bit tricky)
  2. While I took over this library and saved it from starvation I'm still no expert in cryptography (I learned quite some things already but am still no expert)
  3. I don't know ASM very well and AVX is most likely not natively supported by Delphi's compiler
  4. If implementing this it should most likely be based on the mormot works (if possible from the license) as they have at least an AVX version of the AES algorithm implemented. And I need an AVX capable CPU. I guess my i5 desktop CPU is too old for this and I'm not sure my newer i5 Laptop CPU supports this.
  5. Things tend to get quicker when I get help on implementing those.
  6. I don't know much about OpenCL/CUDA. One would need to find out first how that can be used from a Delphi app and what it brings means how to use it in a cryptographic algorithm.

=> I really would see value in such an implementation but I fear I cannot do that without help from somebody/people having knowledge in these areas.

@MHumm
Copy link
Owner

MHumm commented Jan 25, 2021

Oh, looking at your repository on GitHub just revealed, that you might be a good candidate for help ;-)
You seem to have knowledge. Just some notes:

  1. If done I don't want to depend on any other external libraries besides Delphi and FPC RTL/VCL/FMX
  2. It (AVX) needs to be implemented in such a way that it can be turned off or is only used when ASM define in DECOptions.inc is used and a compatible CPU is present, so it doesn't interfere with the cross platform compatibility goals of DEC.
  3. Oh, and any contributions need to be compatible with the APL 2.0 license used for DEC...

@chmichael
Copy link
Author

Hello,
Yes i know it's not easy but if you look at the eg. crypto miners they use GPU for hasing but unfortunately they are coded c++.
As far the UltraCode is something i want to start working as soons as i finish some stuff that i'm doing. (I do not have a time frame) I guess as soon this project start to kick off a lot of developers (i hope) will contribute so you can borrow knowledge from there.

Thank you

@MHumm
Copy link
Owner

MHumm commented Jan 26, 2021

If you leave GPL 3 as only license for your project I cannot borrow code from there as I don't want to make my library "viral". I've choosen APL 2.0 as license.

@MHumm
Copy link
Owner

MHumm commented Dec 29, 2021

Any news about that one?

@chmichael
Copy link
Author

Any news about that one?

Hello,
Nope still busy with my projects. I hope to find some time in 2022 to make the benchmarks in order to kickstart the project! :)

@MHumm
Copy link
Owner

MHumm commented Feb 25, 2022

Two good news for you about this one:

  1. in system.pas there is some CPUID code which might be used to detect whether AVX is available
  2. since Delphi 11.0 AVX/AVX2 ASM opcodes have been added to the built in ASM so you can write such ASM code. But when you start be please aware that DEC's minimum supported Delphi version is 10.1 starting with the V6.5 which is currently in development.

@chmichael
Copy link
Author

chmichael commented Feb 28, 2022

Since Delphi 11 has only AVX support I think we'll use NASM assembler.

@MHumm
Copy link
Owner

MHumm commented Mar 4, 2022

Why not? So just start with it, I'm not holding you up ;-)

@MHumm
Copy link
Owner

MHumm commented Dec 22, 2022

Any progress on this?

@MHumm
Copy link
Owner

MHumm commented Jan 28, 2023

Any progress on your side? Shall I create a branch for you for this?

@MHumm
Copy link
Owner

MHumm commented Dec 17, 2023

Any progress on this on your side?

@chmichael
Copy link
Author

Hello,
Well i was pretty busy but I am planning to start around next month so i hope to have something ready in the next couple months.

@MHumm
Copy link
Owner

MHumm commented Feb 9, 2024

Ok, next month is over. I'd politely like to ask about whether any work has already begun? If you like you can have a branch for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants