We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a2cb3 commit 37ebc63Copy full SHA for 37ebc63
src/main/java/ai/nets/samj/models/AbstractSamJ.java
@@ -81,7 +81,8 @@ public abstract class AbstractSamJ implements AutoCloseable {
81
protected static String UPDATE_ID_CONTOUR = "FOUND_CONTOUR_" + UUID.randomUUID().toString();
82
83
protected static final boolean IS_APPLE_SILICON = PlatformDetection.isMacOS()
84
- && PlatformDetection.getArch().equals(PlatformDetection.ARCH_ARM64);
+ && (PlatformDetection.getArch().equals(PlatformDetection.ARCH_ARM64)
85
+ || PlatformDetection.isUsingRosseta());
86
87
public interface BatchCallback {
88
0 commit comments