Claude Code daily benchmarks for degradation tracking
351–360 of 372 posts
Re: Claude Code daily benchmarks for degradation tracking
#352Earlier quoted context omitted.
How about how Claude 2.1.x is "literally unusable" because it frequently completely hangs (requires kill -9) and uses 100% cpu? https://github.com/anthropics/claude-code/issues/18532
What OS? Does this happen randomly, after long sessions, after context compression? Do you have any plugins / mcp servers running? I used to have this same issue almost every session that lasted longer than 30 minutes. It seemed to be related to Claude having issues with large context windows. It stopped happening maybe a month ago but then I had it happen again last week. I realized it was due to a third-party mcp s…
Re: Claude Code daily benchmarks for degradation tracking
#353Earlier quoted context omitted.
If you don't do it that way then resizing the terminal corrupts what's on screen.
It's possible to handle resizes without all this machinery, most simply by clearing the screen and redrawing everything when a resize occurs. Some TUI libraries will automatically do this for you. Programs like top, emacs, tmux, etc are most definitely not implemented using this stack, yet they handle resizing just fine.
Re: Claude Code daily benchmarks for degradation tracking
#354Earlier quoted context omitted.
https://news.ycombinator.com/item?id=46819744
I'm not saying CC doesn't have issues and curious design decisions - but your terminal should only be rendering (at most) a single window of characters every frame no matter what. CC shouldn't be capable of making that take 10% of a modern GPU regardless of what CC does.
Re: Claude Code daily benchmarks for degradation tracking
#355Earlier quoted context omitted.
The primary (non malicious, non stupid) explanation given here is batching. But I think you would find looking at large-scale inference the batch sizes being ran on any given rig are fairly static - there is a sweet spot for any given model part ran individually between memory consumption and GPU utilization, and generally GPUs do badly at job parallelism. I think the more likely explanation is again with the extreme…
Why do you think batching has anything to do with the model getting dumber? Do you know what batching means?
Re: Claude Code daily benchmarks for degradation tracking
#356Earlier quoted context omitted.
You are funny. Anthropic refuses to issue refunds, even when they break things. I had an API token set via an env var on my shell, and claude code changed to read that env var. I had a $10 limit set on it, so found out it was using the API, instead of my subscription, when it stopped working. I filed a ticket and they refused to refund me, even though it was a breaking change with claude code.
Anthropic just reduced the price of the team plan and refunded us on the prior invoice. YMMV
Re: Claude Code daily benchmarks for degradation tracking
#357Earlier quoted context omitted.
Why do you think batching has anything to do with the model getting dumber? Do you know what batching means?
Well if you were to read the link you might just find out! Today is your chance to be less dumb than the model!
Re: Claude Code daily benchmarks for degradation tracking
#358Earlier quoted context omitted.
He doesn't: https://x.com/trq212/status/2014051501786931427
For those who don't want to visit X: Most people's mental model of Claude Code is that "it's just a TUI" but it should really be closer to "a small game engine". For each frame our pipeline constructs a scene graph with React then -> layouts elements -> rasterizes them to a 2d screen -> diffs that against the previous screen -> finally uses the diff to generate ANSI sequences to draw We have a ~16ms frame budget so w…
Re: Claude Code daily benchmarks for degradation tracking
#359Earlier quoted context omitted.
Interesting. On first glance that seems over engineered. I wonder what the reason is for doing it that way?
If you don't do it that way then resizing the terminal corrupts what's on screen.
Re: Claude Code daily benchmarks for degradation tracking
#360I store my prompts, so I know I often run the same task multiple times over weeks span.
After working with it for pas half a year I have to say the quality pf responses is steadily going down.
Feels like cost optimizations. Overall the worse it performs the more stuff I have to do myself, because I won’t waste time tweaking instructions every time it happens. It wpulf waste too much of that time.
So seems we are swinging back the pendulum.