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

add string normalize method #1461

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

alinpahontu2912
Copy link
Member

@alinpahontu2912 alinpahontu2912 commented Mar 19, 2025

Updated hardcoded string matching to fix dll loading in different scenarios, most commonly when trying to use TorchSharp in a .NET Interactive Notebook.

@alinpahontu2912 alinpahontu2912 marked this pull request as ready for review March 19, 2025 15:59

var assembly = typeof(torch).Assembly;
var version = assembly.GetName().Version;
var torchSharpVersion = (version != null) ? version.ToString() : Path.GetFileName(torchsharpHome);
Copy link
Member Author

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.

@@ -54,6 +54,26 @@ public static partial class torch
static bool nativeBackendCudaLoaded = false;

public static string __version__ => libtorchPackageVersion;
private static string NormalizeNuGetVersion(string versionString)

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.

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

Successfully merging this pull request may close these issues.

2 participants