RNNSharp icon indicating copy to clipboard operation
RNNSharp copied to clipboard

Using the library from .Net Core

Open gabrielkotev opened this issue 7 years ago • 3 comments

I am struggling porting the library to .Net core. Is there something to keep in mind while doing so (adding some dependencies, etc )? Thanks for the help!

gabrielkotev avatar May 29 '17 21:05 gabrielkotev

Hi @gabrielkotev

The only external dependency is System.Vectors for SIMD instruction. Actually, this lib is a part of .Net core, so it won't be a problem for your migration.

But I know some APIs maybe different between .Net framework and .Net Core, such as Stream classes, you may modify some code for it, but I think it's very easy to deal with them.

Thanks Zhongkai Fu

zhongkaifu avatar May 29 '17 21:05 zhongkaifu

Hi @zhongkaifu Thanks for the quick answer! I have an compile issue inside the AdvUtils, the reason is the class ParallelOptions. Do you have any suggestions how to overcome it ? Thanks for your help!

gabrielkotev avatar May 30 '17 18:05 gabrielkotev

AdvUtils is an open source project as well, you can modify it as your needs. For ParallelOptions, currently, I set its value explicitly, but you can delete it and let it use default value.

zhongkaifu avatar May 30 '17 19:05 zhongkaifu