-
Notifications
You must be signed in to change notification settings - Fork 194
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
add string normalize method #1461
base: main
Are you sure you want to change the base?
Conversation
53cebf1
to
45c9c25
Compare
45c9c25
to
587fa88
Compare
|
||
var assembly = typeof(torch).Assembly; | ||
var version = assembly.GetName().Version; | ||
var torchSharpVersion = (version != null) ? version.ToString() : Path.GetFileName(torchsharpHome); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When taking the version string directly from the library it results in a 4 number version string: eg: 0.105.0.0, which needs to be normalized to remove last 0. I think it's better to have it taken straight from the dll that was loaded to the project than the nugget install folder.
src/TorchSharp/Torch.cs
Outdated
@@ -54,6 +54,26 @@ public static partial class torch | |||
static bool nativeBackendCudaLoaded = false; | |||
|
|||
public static string __version__ => libtorchPackageVersion; | |||
private static string NormalizeNuGetVersion(string versionString) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Such function would deserve some unit tests as a documentation of expected behavior and as a validation. This would mean making it public so it would be better to move it to a separate class.
Updated hardcoded string matching to fix dll loading in different scenarios, most commonly when trying to use TorchSharp in a .NET Interactive Notebook.