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

[xcode15] Bump Xcode 15 to Beta 6 #18668

Merged
merged 3 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Make.config
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_

# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=15.0
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15_beta_4.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.0.0-beta4.app/Contents/Developer
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15_beta_6.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.0.0-beta6.app/Contents/Developer
XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2)

# We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ bool ExecuteUnsafe ()
arguments.Add ("clang++");
// check if needs to be removed: https://github.com/xamarin/xamarin-macios/issues/18556
arguments.Add ("-Xlinker");
arguments.Add ("-ld64");
arguments.Add ("-ld_classic");

var hasEmbeddedFrameworks = false;

Expand Down
10 changes: 10 additions & 0 deletions src/cloudkit.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.ComponentModel;
using ObjCRuntime;
using Foundation;
using CoreLocation;
Expand Down Expand Up @@ -83,8 +84,17 @@ interface CKUserIdentity : NSSecureCoding, NSCopying {
}

[MacCatalyst (13, 1)]
[DisableDefaultCtor]
[BaseType (typeof (NSObject))]
interface CKShareMetadata : NSCopying, NSSecureCoding {

#if !XAMCORE_5_0
[EditorBrowsable (EditorBrowsableState.Never)]
[Obsolete ("Get them from 'CKFetchShareMetadataOperation' or platform-specific scene / app delegate callbacks.")]
[Export ("init")]
NativeHandle Constructor ();
#endif

[Export ("containerIdentifier")]
string ContainerIdentifier { get; }

Expand Down
12 changes: 12 additions & 0 deletions system-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,18 @@ function download_xcode_platforms ()
$SUDO "$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild" -runFirstLaunch
log "Executed '$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -runFirstLaunch'"

# This is a workaround for a bug in Xcode 15 where we need to open the platforms panel for it to register the simulators.
log "Executing 'open xcpref://Xcode.PreferencePane.Platforms'"
log "Killing Xcode"
pkill -9 "Xcode" || log "Xcode was not running."
log "Opening Xcode preferences panel"
open xcpref://Xcode.PreferencePane.Platforms
log "waiting 10 secs for Xcode to open the preferences panel"
sleep 10
log "Killing Xcode"
pkill -9 "Xcode" || log "Xcode was not running."
log "Executed 'open xcpref://Xcode.PreferencePane.Platforms'"

log "Executed '$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -downloadAllPlatforms'"
}

Expand Down
2 changes: 1 addition & 1 deletion tests/monotouch-test/Foundation/UrlSessionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void CreateDataTaskAsync ()
TestRuntime.AssertXcodeVersion (5, 0);

NSUrlSession session = NSUrlSession.SharedSession;
var url = new NSUrl ("https://www.microsoft.com");
var url = new NSUrl (NetworkResources.Httpbin.PostUrl);
var tmpfile = Path.GetTempFileName ();
File.WriteAllText (tmpfile, "TMPFILE");
var file_url = NSUrl.FromFilename (tmpfile);
Expand Down
4 changes: 1 addition & 3 deletions tests/monotouch-test/ObjCRuntime/CategoryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ public void NavigationControllerOverride ()
vc.View.BackgroundColor = UIColor.Green;
};
AppDelegate.PresentModalViewController (nc, 0.5);
if (TestRuntime.CheckXcodeVersion (15, 0)) {
Assert.That (category_invoked);
} else if (TestRuntime.CheckXcodeVersion (14, 0)) {
if (TestRuntime.CheckXcodeVersion (14, 0)) {
// The 'shouldAutorotate' selector isn't called anymore in iOS 16+ (this is documented in Xcode 14's release notes)
Assert.That (!category_invoked);
} else {
Expand Down
2 changes: 2 additions & 0 deletions tests/xtro-sharpie/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ $(XIOS_PCH): .stamp-check-sharpie
-exclude Matter \
-exclude MetalPerformanceShadersGraph \
-exclude NearbyInteraction \
-exclude WebKit \
-i ThreadNetwork/THClient.h \
$(CORETELEPHONY_HEADERS) \

Expand Down Expand Up @@ -104,6 +105,7 @@ $(XMACOS_PCH): .stamp-check-sharpie
-exclude GameController \
-exclude Matter \
-exclude MetalPerformanceShadersGraph \
-exclude WebKit \
$(CORETELEPHONY_HEADERS) \

XMACCATALYST_ARCH = x86_64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,3 +474,4 @@
!missing-type! AVCaptureReactionEffectState not bound
!missing-type! AVMetadataHumanFullBodyObject not bound
!missing-type! AVSampleBufferVideoRenderer not bound
!missing-field! AVCaptureDeviceTypeContinuityCamera not bound
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
!missing-protocol-conformance! ASPasswordCredentialIdentity should conform to ASCredentialIdentity
!missing-selector! +ASPasskeyAssertionCredential::credentialWithUserHandle:relyingParty:signature:clientDataHash:authenticatorData:credentialID: not bound
!missing-selector! +ASPasskeyCredentialIdentity::identityWithRelyingPartyIdentifier:userName:credentialID:userHandle:recordIdentifier: not bound
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
!missing-selector! +ASPasskeyRegistrationCredential::credentialWithRelyingParty:clientDataHash:credentialID:attestationObject: not bound
!missing-selector! +ASPasswordCredentialRequest::requestWithCredentialIdentity: not bound
!missing-selector! +ASSettingsHelper::openCredentialProviderAppSettingsWithCompletionHandler: not bound
Expand Down Expand Up @@ -43,7 +42,6 @@
!missing-selector! ASPasskeyCredentialIdentity::userHandle not bound
!missing-selector! ASPasskeyCredentialIdentity::userName not bound
!missing-selector! ASPasskeyCredentialRequest::clientDataHash not bound
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
!missing-selector! ASPasskeyCredentialRequest::setUserVerificationPreference: not bound
!missing-selector! ASPasskeyCredentialRequest::userVerificationPreference not bound
!missing-selector! ASPasskeyRegistrationCredential::attestationObject not bound
Expand All @@ -58,3 +56,34 @@
!missing-type! ASPasskeyRegistrationCredential not bound
!missing-type! ASPasswordCredentialRequest not bound
!missing-type! ASSettingsHelper not bound
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation not bound
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement not bound
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertion::largeBlob not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::largeBlob not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::setLargeBlob: not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistration::largeBlob not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::largeBlob not bound
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::setLargeBlob: not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::dataToWrite not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::initWithOperation: not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::operation not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::setDataToWrite: not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::didWrite not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::readData not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::initWithSupportRequirement: not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::setSupportRequirement: not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::supportRequirement not bound
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput::isSupported not bound
!missing-selector! ASCredentialProviderViewController::prepareCredentialListForServiceIdentifiers:requestParameters: not bound
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
!missing-selector! ASPasskeyCredentialRequest::supportedAlgorithms not bound
!missing-selector! ASPasskeyCredentialRequestParameters::allowedCredentials not bound
!missing-selector! ASPasskeyCredentialRequestParameters::clientDataHash not bound
!missing-selector! ASPasskeyCredentialRequestParameters::relyingPartyIdentifier not bound
!missing-selector! ASPasskeyCredentialRequestParameters::userVerificationPreference not bound
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput not bound
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput not bound
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput not bound
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput not bound
!missing-type! ASPasskeyCredentialRequestParameters not bound
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
!missing-enum! BAErrorCode not bound
!missing-field! BAErrorDomain not bound
1 change: 1 addition & 0 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-CallKit.todo
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
!missing-enum-value! CXErrorCodeIncomingCallError native value CXErrorCodeIncomingCallErrorFilteredDuringRestrictedSharingMode = 5 not bound
!extra-designated-initializer! CXSetMutedCallAction::initWithCallUUID:muted: is incorrectly decorated with an [DesignatedInitializer] attribute
32 changes: 26 additions & 6 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-CloudKit.todo
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,8 @@
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
Expand All @@ -98,12 +96,8 @@
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
!missing-selector! CKSyncEngineSendChangesContext::options not bound
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
Expand Down Expand Up @@ -152,3 +146,29 @@
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
!missing-type! CKSyncEngineWillSendChangesEvent not bound
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
!missing-type! CKSyncEngineFetchChangesContext not bound
!missing-type! CKSyncEngineFetchChangesScope not bound
!missing-type! CKSyncEngineSendChangesScope not bound
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
!missing-field! kCFURLFileProtectionCompleteWhenUserInactive not bound
!missing-field! kCFURLDirectoryEntryCountKey not bound
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
!missing-selector! CSSuggestion::score not bound
!missing-selector! CSSuggestion::suggestionDataSources not bound
!missing-selector! CSSearchableIndex::initWithName:protectionClass:bundleIdentifier:options: not bound
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
!missing-type! NSMorphologyPronoun not bound
!missing-type! NSTermOfAddress not bound
!missing-field! NSURLDirectoryEntryCountKey not bound
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@
!missing-selector! HKWorkoutSession::type not bound
!missing-selector! HKWorkoutSession::workoutConfiguration not bound
!missing-type! HKWorkoutSession not bound
!missing-enum-value! HKErrorCode native value HKErrorBackgroundWorkoutSessionNotAllowed = 14 not bound
5 changes: 5 additions & 0 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,8 @@
!missing-type! INMessageLinkMetadata not bound
!missing-type! INUnsendMessagesIntent not bound
!missing-type! INUnsendMessagesIntentResponse not bound
!missing-enum-value! INSearchForMessagesIntentResponseCode native value INSearchForMessagesIntentResponseCodeFailureRequiringInAppAuthentication = 8 not bound
!missing-enum-value! INSendMessageIntentResponseCode native value INSendMessageIntentResponseCodeFailureRequiringInAppAuthentication = 7 not bound
!missing-enum-value! INSendMessageRecipientUnsupportedReason native value INSendMessageRecipientUnsupportedReasonRequiringInAppAuthentication = 7 not bound
!missing-enum-value! INStartCallContactUnsupportedReason native value INStartCallContactUnsupportedReasonRequiringInAppAuthentication = 8 not bound
!missing-enum-value! INStartCallIntentResponseCode native value INStartCallIntentResponseCodeFailureRequiringInAppAuthentication = 13 not bound
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!missing-enum-value! LABiometryType native value LABiometryTypeOpticID = 4 not bound
54 changes: 54 additions & 0 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-MLCompute.todo
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
Loading