this post was submitted on 17 Sep 2024
-31 points (14.0% liked)

Technology

58115 readers
4389 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

A great boost to see the full potential of Apple Intelligence.

top 10 comments
sorted by: hot top controversial new old
[–] [email protected] 9 points 1 day ago (1 children)

It's supposed to have an article somewhere here?

ads cover the entire screen except a single sentence

[–] [email protected] 2 points 1 day ago

On this phone (secondary, work only) i decided to live without AdBlock to remind me how cancerous are some websites

Or maybe I'm just masochistic

[–] [email protected] 16 points 2 days ago* (last edited 2 days ago)

So 4gb accessible ram and a 4gb LLM in ram at all time?

[–] [email protected] 10 points 2 days ago

I've been on the Android ecosystem for 15 years, I literally thought this was an onion article.

[–] [email protected] 5 points 2 days ago

That article reads like the AI wrote it

[–] [email protected] 4 points 2 days ago (3 children)

decision to incorporate 8GB of RAM on all iPhone 16 models

Does it mean, their top models also have only 8?

In 2024, if you buy a new phone with only 8GB RAM, then this is more like a poor man's phone.

[–] [email protected] 4 points 1 day ago

And yet, I’ve never run into RAM problems on iPhones, both as a user and as a developer. On iOS an app can use almost all the RAM if needed, as long as your app is running in the foreground. Android by contrast is much stingier with RAM, especially with Java/Kotlin apps. There are some hard limits on how much RAM you can actually use and it’s a small fractIon of the total amount. The actual limit is set by the manufacturer and differs per device, Android itself only guarantees a minimum of 16MB per app.

The reason is probably because Android is much more lenient with letting stuff run in the background so it needs to limit the per-app memory usage.

Those apps also use more RAM than an equivalent iOS app, simply because they run on a garbage-collected runtime. With a GC there is a trade-off between performance and memory usage. A GC always wastes memory, as memory isn’t freed immediately once no longer in use. It’s only freed when the GC runs. If you run it very often you waste little RAM at the cost of performance (all the CPU cycles used by the GC) if you run it at large intervals you waste a lot of RAM (because you let a lot of ‘garbage’ accumulate before cleaning it up). In general, to achieve similar performance to non-GC’d code you need to tune it so it uses about 4 times as much RAM. The actual overhead depends on how Google tuned the GC in ART combined with the behavior of specific apps.

Note that this only applies to apps running in ART, many system components like the web browser are written in C++ and don’t suffer from this inefficiency. But it does mean Android both uses more RAM than iOS while at the same time giving apps less RAM to actually use.

It basically comes down to different architectural choices made by Google and Apple.

[–] [email protected] 6 points 2 days ago (1 children)

But 8GB on iOS is like having at least 32GB on Android don't you know!

[–] [email protected] 3 points 2 days ago

Depends on your requirements. The faiphone 5 has 8GB of RAM, which is more than enough for what I'm doing with a smartphone.

Oh course I totally understand what you are talking about though, for many users (mobile gamers, people who don't mind google/apple telemetry, etc.) 8GB is a bare minimum.