Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Kingcoherent

macrumors regular
Original poster
I’ve had my Macbook Pro M5 Max now for a couple of days and thought I would share some initial thoughts with regards to the positives and negatives. Would be interested to know how it compares with others and hopefully at least one person find it useful if they’re weiging up an upgrade now or waiting for an as of yet unannounced alternative.

Spec-wise I have the top end M5 Max 18 core cpu and 40 core GPU, 128GB RAM and 4TB ssd. My primary usage is for coding and data science. I do sequence modelling on it (e.g. human languages, DNA sequences). I also have a couple of side projects in the computer vision and 3d modelling space.

General thoughts - performance

First off, this thing is fast. I’m yet to notice a problem with thermal throttling under extreme load (some reviewers found the thermal treatment was dodgy in some early deliveries affecting performance on extensive benchmarks - although I’ve not actually run the same benchmarks yet so cannot rule it our). Compilation is fast, and while Xcode is still a steaming pile of 💩 it is at least snappy and large projects build in seconds (Xcode itself feels like it’s in perpetual beta, and each update breaks as much as it fixes - but this is a software issue).

I don’t really game, but I loaded up Civilisation VI and it performs amazingly at the high res of the screen. The game is exceptionally poorly optimised and I kind of think it’s a shame machines are so powerful and developers are just able to get away with writing slow code, but from a user perspective at least we don’t need to put up with slow software.

General thoughts - hardware

Coming from a Macbook Air, and having previously used a touch bar intel Macbook Pro, the immediate thing to jump out is the quality of the speakers. It’s pleasant to listen to music on, bass is deep and mids clear even when the volume is pushed. When travelling I do sometimes use my laptop to watch videos and there will be a huge improvement here (almost worth the extra heft). The fan doesn’t come on often, but there can be some clicking when it engages and if I’m not playing music it is audible. When I work alone in the room I have music playing through the speakers and in a room with others I have headphones on. You won’t find it too distracting (as compared to a Lenovo I have for the odd windows task which sounds like a vacuum cleaner even when idle).

So far I couldn’t be happier. I need to travel to client offices a bit more to see how I get on with the larger mass of the laptop. I was close to getting the 14 but was really worried about thermal throttling, this is the unfortunate tradeoff and the big benefit is those lovely speakers.

AI - the good

The new hardware shaders (from the m4?) and neural accelerators in the M5 are a huge step up from those on my M2. Local LLM performance can be really fast, certainly sufficient for a lot of the tasks I’m working on at the moment (for example, creating knowledge graphs from a collection of academic papers). The memory bandwidth is really good and the large amount of memory allows several big models to be loaded into memory concurrently.

Image classification, depth mapping, pose detection, segmentation are all blazingly fast. Opens up some really useful new possibilities.

I’ve a few personal projects that utilise Apple intelligence and I notice a hige improvement running on the new machine compared to, say, my old M2 Air and my M4 ipad (the latter has improved shader performance so for very small models is much faster than my M2 Air).

The SSD speed make a huge difference, especially when loading in large models.

AI - the bad

The hardware shaders don’t support fp8. For image/video generation this is a bit of a pain as a lot of new models are distributed in fp8 only (some enterprising individuals have written scripts to convert them back to fp16 so that they will run, however the loss when quantised isn’t reversed, you just end up with a slower/larger model). Fingers crossed Apple adds fp8 support in the M6 - this will be enough to get me to upgrade again within a year. If you want a good example of how frustrating this can be, download latest comfy ui desktop and try running some of the supplied templates. I’ve run a few pytorch and MLX based models in fp16 and they are much faster than before, but this is still an area where Apple is lagging behind nvidia. For some AI workloads unfortunately Nvidia GPU still really a hard requirement (I just spin up an AWS VM for these cases, but if you regularly need it then don’t spend the money on a Max).

How about other people? Have you bought one, made a decision to wait?
 
Nice review. I have a 16" M5 Max, 18cpu/40gpu, 128gb, 2TB SSD ordered and was to be delivered yesterday - it's seems to be lost in shipping or taking a tour. I do a lot of video work and I currently have a 14" M3 Max, 64gb. I decided I wanted the 16" for the heat dissipation improvement. I was glad to see your review as it provided me with incite to what I can expect.
 
I have 16 inch M5 Max, 128GB ram, 2TB ssd.

I run Google latest open-source AI - Gemma 4, it works wonderful. in my test, open-source Gemma 4 could reach to 80% of Chatgpt 5.4's answer,
100 tokens/seconds in most of questions, I try some hard math questions, it could still maintian 90 tokens/seconds.
All is far more better than I estimated.

It runs LLM model just like running a simple excel sheet in windows.
MBP fans almost never starts and MBP is so cool down that I feel it is cooler than my hand's temperature.

while I run Gemma 4 in my Dell xps with 3050Ti, which is a little old. And Dell XPS fan are noise with heat increasing quickly
 
Last edited:
AI - the bad

The hardware shaders don’t support fp8. For image/video generation this is a bit of a pain as a lot of new models are distributed in fp8 only (some enterprising individuals have written scripts to convert them back to fp16 so that they will run, however the loss when quantised isn’t reversed, you just end up with a slower/larger model). Fingers crossed Apple adds fp8 support in the M6 - this will be enough to get me to upgrade again within a year. If you want a good example of how frustrating this can be, download latest comfy ui desktop and try running some of the supplied templates. I’ve run a few pytorch and MLX based models in fp16 and they are much faster than before, but this is still an area where Apple is lagging behind nvidia. For some AI workloads unfortunately Nvidia GPU still really a hard requirement (I just spin up an AWS VM for these cases, but if you regularly need it then don’t spend the money on a Max).

How about other people? Have you bought one, made a decision to wait?


Python:
import torch

device = "mps" if torch.backends.mps.is_available() else "cpu"

def to_mps_safe(t: torch.Tensor, prefer=torch.float16):
    # If it's float8, cast to float16/bfloat16 first (MPS can't take float8)
    if t.dtype in (torch.float8_e4m3fn, torch.float8_e5m2):
        t = t.to(prefer)
    return t.to("mps")

# Example
x = torch.randn(1024, 1024, device="cpu").to(torch.float16)
x = x.to("mps")
print(x)

have to conver float8 to float16
If you must run FP8 today, the reliable route is still NVIDIA CUDA ONLY (local or remote box).
you need `Razer Blade 16 with 5090` or 'Nvidia DGX Spark' and M5 Max Macbook pro
 
Last edited:
  • Like
Reactions: Kingcoherent
I’ve had my Macbook Pro M5 Max now for a couple of days and thought I would share some initial thoughts with regards to the positives and negatives. Would be interested to know how it compares with others and hopefully at least one person find it useful if they’re weiging up an upgrade now or waiting for an as of yet unannounced alternative.

Spec-wise I have the top end M5 Max 18 core cpu and 40 core GPU, 128GB RAM and 4TB ssd. My primary usage is for coding and data science. I do sequence modelling on it (e.g. human languages, DNA sequences). I also have a couple of side projects in the computer vision and 3d modelling space.

General thoughts - performance

First off, this thing is fast. I’m yet to notice a problem with thermal throttling under extreme load (some reviewers found the thermal treatment was dodgy in some early deliveries affecting performance on extensive benchmarks - although I’ve not actually run the same benchmarks yet so cannot rule it our). Compilation is fast, and while Xcode is still a steaming pile of 💩 it is at least snappy and large projects build in seconds (Xcode itself feels like it’s in perpetual beta, and each update breaks as much as it fixes - but this is a software issue).

I don’t really game, but I loaded up Civilisation VI and it performs amazingly at the high res of the screen. The game is exceptionally poorly optimised and I kind of think it’s a shame machines are so powerful and developers are just able to get away with writing slow code, but from a user perspective at least we don’t need to put up with slow software.

General thoughts - hardware

Coming from a Macbook Air, and having previously used a touch bar intel Macbook Pro, the immediate thing to jump out is the quality of the speakers. It’s pleasant to listen to music on, bass is deep and mids clear even when the volume is pushed. When travelling I do sometimes use my laptop to watch videos and there will be a huge improvement here (almost worth the extra heft). The fan doesn’t come on often, but there can be some clicking when it engages and if I’m not playing music it is audible. When I work alone in the room I have music playing through the speakers and in a room with others I have headphones on. You won’t find it too distracting (as compared to a Lenovo I have for the odd windows task which sounds like a vacuum cleaner even when idle).

So far I couldn’t be happier. I need to travel to client offices a bit more to see how I get on with the larger mass of the laptop. I was close to getting the 14 but was really worried about thermal throttling, this is the unfortunate tradeoff and the big benefit is those lovely speakers.

AI - the good

The new hardware shaders (from the m4?) and neural accelerators in the M5 are a huge step up from those on my M2. Local LLM performance can be really fast, certainly sufficient for a lot of the tasks I’m working on at the moment (for example, creating knowledge graphs from a collection of academic papers). The memory bandwidth is really good and the large amount of memory allows several big models to be loaded into memory concurrently.

Image classification, depth mapping, pose detection, segmentation are all blazingly fast. Opens up some really useful new possibilities.

I’ve a few personal projects that utilise Apple intelligence and I notice a hige improvement running on the new machine compared to, say, my old M2 Air and my M4 ipad (the latter has improved shader performance so for very small models is much faster than my M2 Air).

The SSD speed make a huge difference, especially when loading in large models.

AI - the bad

The hardware shaders don’t support fp8. For image/video generation this is a bit of a pain as a lot of new models are distributed in fp8 only (some enterprising individuals have written scripts to convert them back to fp16 so that they will run, however the loss when quantised isn’t reversed, you just end up with a slower/larger model). Fingers crossed Apple adds fp8 support in the M6 - this will be enough to get me to upgrade again within a year. If you want a good example of how frustrating this can be, download latest comfy ui desktop and try running some of the supplied templates. I’ve run a few pytorch and MLX based models in fp16 and they are much faster than before, but this is still an area where Apple is lagging behind nvidia. For some AI workloads unfortunately Nvidia GPU still really a hard requirement (I just spin up an AWS VM for these cases, but if you regularly need it then don’t spend the money on a Max).

How about other people? Have you bought one, made a decision to wait?
Did you try running Wan 2.1/2.2 in Comfy UI or Z-Image Turbo as very keen to see how they perform vs 5090 which I have now?
 
Did you go for the 16" or 14" The main complaint about the thermal throttling was for the 18 core version in the 14" body
 
I want to learn more about local AI, how to connect to Xcode, learn more about prompt engineering, and chaining multiple models together to work on one prompt/solution.

Where would I go to start learning about this? Are there any great stepping off websites for these topics?
 
For that kind of question I’d ask ChatGPT or your preferred AI based search engine. Gemini or Copilot might give you what you need as well. There are so many different ways you can learn about it that it’s hard to direct you to a specific source or set of sources.
 
good news, macOS supports eGPUs for AI workloads on Apple silicon Macs via newly approved drivers, that means we could also use Nvidia RTX or AMD for AI with Macbook pro
 
  • Like
  • Wow
Reactions: Basic75 and rb2112
What are the thermals like on the M5 Max? I’ve heard they run pretty hot, but maybe it’s more of an issue with the 14 inch?
I've had problems with my electricity supply this week and have otherwise been on site with clients. Consequently I've focussed on lighter tasks (which will change this weekend). The zircon had broken at one of my clients and the office was more than a little warmer than is comfortable - fans were on almost constant.

I have also noticed the fan coming on when the laptop is "mostly" idle - this is the 16inch. I'm running Teams (🤢), Safari and Cursor (closed Xcode as even when idle it would periodically hit high energy impact per activity monitor). I'm going to check thermal throttling very carefully when I get round to more ComfyUI testing at the weekend. It would be a massive PITA if I have to return it to get it fixed. I haven't turned off all the Liquid Glass crap yet, as I'm still seeing if I can get used to it. Teams and Safari are periodically hitting high energy use and this is enough for the fans to come on. TBH coming from a MacBook Air I probably never noticed it get hot every so often. I also noticed Cursor and OpenClaw hit high every usage (although not llama.cpp unless working on something significant). Perhaps there's an optimisation problem with Node?
 
What are the thermals like on the M5 Max? I’ve heard they run pretty hot, but maybe it’s more of an issue with the 14 inch?
I don't do any AI so I have no info on that but I do a lot of video work. Today I worked on a one hour video that I was adding overlays to in different sections. Those overlays had to be created using other pieces of video requiring using multi-camera from four cameras then added to the original video. Rendering is blazing fast. I was also working on two other projects using Photoshop. I also had three 27" 4K monitors attached plus various other externals. I use TG Pro to monitor heat and fans. Never seen or heard the fans spin up - which I would on my 14" M3. Temps in some of the cores hit 110 degrees Fahrenheit which is not bad but otherwise it idles in the low 80's.
 
  • Like
Reactions: Kingcoherent
I think I have problems with the thermal paste treatment of this Macbook. The fans come on even with light load (e.g. safari and teams). Today I was running a test: image generation trying to max out the GPU. The laptop presumably overheated: the screen kept going black and the laptop unresponsive until it cooled down.

I will have to take it to apple for proper diagnostics (the rep I spoke to seemed to indicate it wasn't an unexpected issue with some of the early M5 Max models). Hopefully they won't take too long, being a custom job it may take them a while to source a replacement if this isn't solely a software issue (which seems likely).

(apologies for taking so long to provide ComfyUI benchmarks, it's difficult to run enough jobs to get reliable numbers - however it's probably more useful to test on a non-broken MBP).
 
  • Like
Reactions: Matt2012
I try my best to make my mbp with m5 max thermal, but it could handle all my requirement easily
I didn't hear fan kick off with 40 degree only or a little warmer than my hand

1. build lots of big open source projects at same time. CPU usage could reach to 100%, RAM is almost full.
for example, Pytorch 7000 cpp source code, FFMpeg source code, Linux Kernel on VM, gcc source code, OpenJDK source code.
Many Big Java projects, Hadoop, Spark, Spring, Spring Boot, Spring Security, Apache Camel and so on
Front end React source code and so on.
2. play game, GPU usage 50%. those game could make my old pc, old mac super hot, but it is nothing for new MBP. again I didn't hear fan kick off.

3. Local LLM, GPU usage 30% most of time

4. docker and vm
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.