From: siddhartha@kenip.in
To: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: Dev Jain <dev.jain@arm.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
mgorman@suse.de
Subject: Re: [PATCH] mm: limit THP alignment – performance gain observed in AI inference workloads
Date: Tue, 01 Jul 2025 18:53:47 +0530 [thread overview]
Message-ID: <dd370f92e9100e785aeafdc4d31f8cb5@kenip.in> (raw)
In-Reply-To: <5c3d307f-d303-48c3-b730-99a83d4815ec@lucifer.local>
On 2025-07-01 18:09, Lorenzo Stoakes wrote:
> On Tue, Jul 01, 2025 at 05:45:51PM +0530, siddhartha@kenip.in wrote:
>> 🧩 1. Does the patch cause VMAs to be merged eventually?
>> You're correct: VMA merging only happens at mmap() time (via
>> __mmap_region()). What the patch affects is the behavior of
>> thp_get_unmapped_area_vmflags() before the mmap is placed.
>
> [...]
>
>>
>> 📐 2. Why aren’t the VMAs mergeable before the patch?
>> Great question. Even if the VMA flags are identical, gaps introduced
>> by
>> forced alignment from get_unmapped_area() break the precondition for
>> merging:
>
> [...]
>
>> 💡 4. Why this patch complements Rik’s rather than contradicts it:
>
> I'm really perplexed as to why you felt the need to (seemingly via LLM)
> reply with the explanation I've already provided here?...
>
> There's errors in things you say here too.
>
> With respect, please don't do this.
>
> (I'm the co-maintainer of pretty much all the relevant code here and
> wrote
> the VMA merge logic you're referring to.)
>
>>
>> 🤖 3. How does this impact AI workloads like Hugging Face Transformers?
>> Tokenization and dynamic batching create non-deterministic memory
>> allocation
>> patterns:
>>
>> Models like BERT and T5 dynamically allocate intermediate buffers per
>> token-length, batch size, and attention window.
>>
>> Hugging Face + ONNX Runtime uses multiple small-ish anonymous mmap()s,
>> often
>> 512KB–1.8MB.
>>
>> These allocations come in bursts — but due to forced alignment, the
>> kernel
>> was placing them with artificial gaps, defeating THP eligibility
>> entirely.
>>
>> By not force-aligning non-PMD-sized mappings, we avoid injecting gaps.
>> The
>> result is that:
>>
>> a. VMAs remain adjacent → mergeable
>>
>> b. Physical memory is contiguous → eligible for khugepaged collapse
>>
>> c. THP utilization increases → fewer TLB misses → lower latency →
>> higher
>> throughput
>>
>
> This is very useful information and it's appreciated! Let's not drown
> this
> out with restatements of stuff already covered.
>
>>
>> ⚙️ 5. mTHP note
>> Although this patch doesn’t target mTHP directly, I believe a similar
>> logic
>> tweak could apply there too — especially with shmem-backed workloads
>> (common
>> in model servers using shared tensor memory). I’d be happy to help
>> test any
>> changes proposed there to derive the consequent results.
>
> Dev - could we hold off on any effort to do something like this until
> I've
> had a chance to refactor THP somewhat? This is already a mess and I'd
> like
> to avoid us piling on more complexity.
>
> We can revisit this at a later stage.
>
>>
>> Thanks again for the detailed discussion. Let me know if you’d like a
>> trace
>> or VMA map from a Hugging Face benchmarked run (happy to generate one
>> locally).
>>
>
> Thanks! Much appreciated.
>
> Cheers, Lorenzo
Hi Lorenzo,
Thanks for your clarification, and I appreciate your patience —
especially given your role in maintaining and designing the VMA merge
logic.
I understand now that my earlier phrasing may have repeated your
explanation for VMA adjacency, and I regret unintentionally restating
it.
I’ll make sure to be more careful and direct going forward.
As for the THP alignment condition now being `IS_ALIGNED(len,
PMD_SIZE)`, I agree this resolves the regressions by removing alignment
for non-aligned sizes, which was exactly what broke workloads like
cactusBSSN or some AI inference loads.
Thanks again for the guidance — I’m learning a lot from this thread.
Best Regards,
Siddhartha Sharma
next prev parent reply other threads:[~2025-07-01 13:23 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-27 10:39 siddhartha
2025-06-27 10:45 ` siddhartha
2025-06-27 15:30 ` Lorenzo Stoakes
2025-06-28 3:49 ` Dev Jain
2025-06-30 0:43 ` siddhartha
2025-06-30 5:25 ` Dev Jain
2025-06-30 5:28 ` Dev Jain
2025-06-30 10:54 ` Lorenzo Stoakes
2025-06-30 11:48 ` siddhartha
2025-07-01 5:23 ` Dev Jain
2025-07-01 5:28 ` Lorenzo Stoakes
2025-07-01 5:45 ` Dev Jain
2025-07-01 5:53 ` Lorenzo Stoakes
2025-07-01 6:30 ` Dev Jain
2025-07-01 6:50 ` Lorenzo Stoakes
2025-07-01 6:58 ` Dev Jain
2025-07-01 12:15 ` siddhartha
2025-07-01 12:39 ` Lorenzo Stoakes
2025-07-01 13:23 ` siddhartha [this message]
2025-07-01 13:28 ` Lorenzo Stoakes
2025-07-01 14:20 ` siddhartha
2025-07-01 16:20 ` Dev Jain
2025-07-01 18:49 ` Zi Yan
2025-07-07 8:56 ` Vlastimil Babka
[not found] ` <57c50dbbccf38a97e6e9cbb3f2f75f01@kenip.in>
2025-07-28 11:00 ` Vlastimil Babka
2025-07-01 15:40 ` Yang Shi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dd370f92e9100e785aeafdc4d31f8cb5@kenip.in \
--to=siddhartha@kenip.in \
--cc=dev.jain@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lorenzo.stoakes@oracle.com \
--cc=mgorman@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®