dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: "Christian König" <christian.koenig@amd.com>,
	dri-devel@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	intel-xe@lists.freedesktop.org, Dave Airlie <airlied@redhat.com>
Subject: Re: [PATCH 1/3] drm/suballoc: Introduce a generic suballocation manager
Date: Fri, 17 Feb 2023 14:51:43 +0100	[thread overview]
Message-ID: <1ca4881b-c470-1f59-03c9-edcddbaa7a6a@linux.intel.com> (raw)
In-Reply-To: <728a932c-d65e-9777-de50-6dd8fe9f5708@amd.com>


On 2/17/23 14:18, Christian König wrote:
> Am 17.02.23 um 14:10 schrieb Thomas Hellström:
>> [SNIP]
>>>>>>
>>>>>> Any chance you could do a quick performance comparison? If not, 
>>>>>> anything against merging this without the amd / radeon changes 
>>>>>> until we can land a simpler allocator?
>>>>>
>>>>> Only if you can stick the allocator inside Xe and not drm, cause 
>>>>> this seems to be for a different use case than the allocators 
>>>>> inside radeon/amdgpu.
>>>>
>>>> Hmm. No It's allocating in a ring-like fashion as well.  Let me put 
>>>> together a unit test for benchmaking. I think it would be a failure 
>>>> for the community to end up with three separate suballocators doing 
>>>> the exact same thing for the same problem, really.
>>>
>>> Well exactly that's the point. Those allocators aren't the same 
>>> because they handle different problems.
>>>
>>> The allocator in radeon is simpler because it only had to deal with 
>>> a limited number of fence timelines. The one in amdgpu is a bit more 
>>> complex because of the added complexity for more fence timelines.
>>>
>>> We could take the one from amdgpu and use it for radeon and others 
>>> as well, but the allocator proposed here doesn't even remotely 
>>> matches the requirements.
>>
>> But again, what *are* those missing requirements exactly? What is the 
>> pathological case you see for the current code?
>
> Well very low CPU overhead and don't do anything in a callback.

Well, dma_fence_wait_any() will IIRC register callbacks on all affected 
fences, although admittedly there is no actual allocator processing in them.

>
>>
>> From what I can tell the amdgpu suballocator introduces excessive 
>> complexity to coalesce waits for fences from the same contexts, 
>> whereas the present code just frees from the fence callback if the 
>> fence wasn't already signaled.
>
> And this is exactly the design we had previously which we removed 
> after Dave stumbled over tons of problems with it.

So is the worry that those problems have spilled over in this code then? 
It's been pretty extensively tested, or is it you should never really 
use dma-fence callbacks?

>
>> The fence signalling code that fires that callback is typcally always 
>> run anyway on scheduler fences.
>>
>> The reason we had for not using the amdgpu suballocator as originally 
>> planned was that this complexity made it very hard for us to 
>> undertand it and to fix issues we had with it.
>
> Well what are those problems? The idea is actually not that hardware 
> to understand.

We hit memory corruption, and we spent substantially more time trying to 
debug it than to put together this patch, while never really 
understanding what  happened, nor why you don't see that with amdgpu.

>
> We could simplify it massively for the cost of only waiting for the 
> oldest fence if that helps.

Let me grab the latest version from amdgpu and give it a try again, but 
yes I think that to make it common code we'll need it simpler (and my 
personal wish would be to separate the allocator functionality a bit 
more from the fence waiting, which I guess should be OK if the fence 
waiting is vastly simplified).

/Thomas


>
>
> Regards,
> Christian.
>
>>
>> Regards,
>>
>> Thomas
>

  reply	other threads:[~2023-02-17 13:51 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-16 14:48 [PATCH 0/3] drm, drm/amd, drm/radeon: Introduce a generic suballocator Thomas Hellström
2023-02-16 14:48 ` [PATCH 1/3] drm/suballoc: Introduce a generic suballocation manager Thomas Hellström
2023-02-17 11:00   ` Christian König
2023-02-17 11:21     ` Thomas Hellström
2023-02-17 11:28       ` Christian König
2023-02-17 12:24         ` Thomas Hellström
2023-02-17 12:28           ` Christian König
2023-02-17 13:10             ` Thomas Hellström
2023-02-17 13:18               ` Christian König
2023-02-17 13:51                 ` Thomas Hellström [this message]
2023-02-22 11:00                   ` [Intel-xe] " Thomas Hellström
2023-02-22 11:39                     ` Christian König
2023-02-22 13:54                       ` Thomas Hellström
2023-02-22 14:20                         ` Christian König
2023-02-22 15:58                           ` Thomas Hellström
2023-02-16 14:48 ` [PATCH 2/3] drm/amd: Convert amdgpu to use suballocation helper Thomas Hellström
2023-02-16 14:48 ` [PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation Thomas Hellström

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=1ca4881b-c470-1f59-03c9-edcddbaa7a6a@linux.intel.com \
    --to=thomas.hellstrom@linux.intel.com \
    --cc=airlied@redhat.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    /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