Post

Replies

Boosts

Views

Activity

Reply to Openmp
These kinds of questions are like drivebys. Provide us with more information like what is OpenMP, did it worked on previous versions of Xcode, and what specifically is not working as depicted by examples. In the absence of the above I would suggest to ask the maintainers of openmp https://mac.r-project.org/openmp/
Oct ’23
Reply to Support for complex numbers
When I run the snippet below: import jax import jax.numpy as jnp def return_complex(x): return x*1+1.0j x = jnp.ones((10)) print(return_complex(x)) I get no errors. https://colab.research.google.com/notebooks/welcome.ipynb#scrollTo=VpzLDQeWxgyY&line=8&uniqifier=1
Topic: Machine Learning & AI SubTopic: General Tags:
Oct ’23
Reply to Openmp
These kinds of questions are like drivebys. Provide us with more information like what is OpenMP, did it worked on previous versions of Xcode, and what specifically is not working as depicted by examples. In the absence of the above I would suggest to ask the maintainers of openmp https://mac.r-project.org/openmp/
Replies
Boosts
Views
Activity
Oct ’23
Reply to How does "xcrun simctl runtime add <path>" command work?
If Apple wanted us to know, they would have open-sourced the platform or documented it.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Running tests that doesn't use SwiftData with iOS 16
You will need to perform conditional compilations. #if canImport(SwiftData) import SwiftData #endif import UIKit #if swift(>=5.9) // Do swift 5.9 things #else // Do things before swift 5.9 #endif
Replies
Boosts
Views
Activity
Oct ’23
Reply to Support for complex numbers
When I run the snippet below: import jax import jax.numpy as jnp def return_complex(x): return x*1+1.0j x = jnp.ones((10)) print(return_complex(x)) I get no errors. https://colab.research.google.com/notebooks/welcome.ipynb#scrollTo=VpzLDQeWxgyY&line=8&uniqifier=1
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Flutter app is crashing in production due to a segmentation fault
Apple is not the forum for debugging and solving flutter issues. Please try the Google flutter development forums for all flutter related issues.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Chronic issues with Xcode 15 perpetually saying preparing or attaching to the phone
File a bug report via the feedback app. Run "System Report" via Settings General & About and attach them to the feedback report.
Replies
Boosts
Views
Activity
Oct ’23
Reply to App crash that build with xcode 15 on ios 13.7, errror #3 0x000000010e5508d4 in ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) ()
What is your C++ code doing?
Replies
Boosts
Views
Activity
Oct ’23
Reply to Inquiry Regarding the Production-Readiness of the app-store-server Library
You're asking the wrong people. We are third-party developers.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Can we get a list of system shortcuts set by the User or reserved by the OS in ios/ipados?
Research and implement.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Macbook Pro M2 overheating and fast battery drain whilst using flutter and emulators
Did your Macbook come with a power cord?
Replies
Boosts
Views
Activity
Oct ’23
Reply to SwiftUI Sheet never releases object from memory on iOS 17
Init once @State var sheetVM = SheetVM() the state will remain singular due to the instance and self capture taking place in button
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Macbook Pro M2 overheating and fast battery drain whilst using flutter and emulators
Did the laptop come with a power cord?
Replies
Boosts
Views
Activity
Oct ’23
Reply to IOS 17 UserDefaults doesnt work as intented sharing data beetween app and widgetkit
Use the keychain sharing. Userdefaults no longer supports sharing like this.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to MacOS Sonoma Login Screen not helpful for visually impaired
Please post your concerns in the customer-facing forums below this area is reserved specifically for third party developers and not developers employed by Apple: https://discussions.apple.com/welcome
Replies
Boosts
Views
Activity
Sep ’23
Reply to Crash on iOS 16 when built with Xcode 15 in release mode only - Symbol not found: _$s10Foundation13__DataStorageC12replaceBytes2in4with6lengthySnySiG_SVSgSitF
Are you using 3rd party frameworks, pods, or swift packages? If so, scan the sources of the latter two pods & packages. Are you using append(contentsOf:) or replaceSubrange() anywhere in your source code for any Data or String types?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’23