-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Hello,
I would like to ask whether/how Aries supports having multiple tasks within the same file, that I can handle them individually.
I’ve successfully followed the provided examples and tutorials to run multiple GEMM operations in a single file. However, I’m interested in managing each operation independently, particularly with regard to custom scheduling parameters. Specifically, I’d like to apply different parallelization strategies to each GEMM operation. Is this currently supported by Aries?
As far as I have understood, with my current flow all GEMM operations map to the same AIEs resources, while what I would like to do, is have different AIEs allocated per GEMM task. I’ve attempted to achieve this by defining multiple functions using the @task_tile decorator, but I consistently encounter compilation errors when running the Python script.
This also extends to supporting different AIE kernels in the same file. With a simple example in which I try to have two diverse GEMM AIE kernels, the compilation fails.
Best regards