-
Notifications
You must be signed in to change notification settings - Fork 131
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
Automation of the detection system for vcredist. #90
base: master
Are you sure you want to change the base?
Conversation
The solution has been tested on my own project. The execution time of the function varies between 0 and 1ms.
Sorry but I don't see that as an alternative this is the same logic as using the registry I search for a completely different approach. |
Improved detection with a view to making it more automatic
I understand, I modified the function again to match the idea of automatic detection. |
The check on the WOW6432Node i a bad idea. The WOW6432Node is used for 32bit software. Yolo require the 64bit version of C++. https://en.wikipedia.org/wiki/WoW64 |
The 32b and 64b version information is contained in WOW6432Node so I think any computer in 64b has this part of the registry with the version information we're looking for. |
@Mrproex , if can you resolve the conflicts i will accept the PR |
Hi, so i wasn't able to edit the previous pull request, here is the new file with my detection system in it ! |
@SpiRaiL The previous maintainer of this package left the company, see #143. Also created a nuget package: https://www.nuget.org/packages/Yolo.Net/3.0.6-alpha.1 Feel free to create PRs in my repository. @ZPiDER666 : It seems that this repository is not maintained anymore by Alturos, this is why I created a new repository. Of course I'll try to make everything acccording the MIT license, "Alturos Destinations" is written on the LICENSE.md file. If you find any legal problem, please let me know, and I'll try to solve it. But I still hope that one time you will merge the 2 repositories. You can freely merge it any time without my approval. |
Hi I am trying to use the 3.0.6 alpha 2 version with cuda 10.2 and cudnn 7.6.5 in vs 2019 and getting the following error. System.BadImageFormatException I am using x64 as target platform. What can be the issue ? |
Are you sure that all of the native dlls you use are 64bit? Badimageformat exception usually means that you are loading 32 bit dll in 64 bit appication or otherwise. |
Thanks a lot for the indication. I could resolve the problem. Everything works fine. 🙏 |
What did you do? |
Nothing much actually... just started a new project and installed zgabi/Yolo.Net and all other necessary packages. I was having problem in using GPU but in the new project this got resolved too. Even in muti-threading it works fine. I am really thankful. |
The solution has been tested on my own project.
The execution time of the function varies between 0 and 1ms.