charan-003

Results 23 comments of charan-003

@hkaiser this looks interesting, i have little idea on pthreads. Any tips on where to start or existing code to reference? Any guidance or pointers to relevant examples would be...

Hi! I'm interested in working on this enhancement. From what I understand, the current CPU complex matmul is implemented via a custom op-based approach, and this issue suggests switching to...

Thanks for the clarification that makes a lot of sense! I'm very interested in learning how MLX's Metal backend works. While I'm new to Metal and the MLX internals, I'm...

> @charan-003 thank you for trying to contribute to CCCL! Could you pleaes focus on one algorithm at a time, so we have an easier time reviewing? Thx! @gonidelis @bernhardmgruber...

i think [here](https://github.com/NVIDIA/cccl/blob/82d70a70f259a3c2ff3d8a4166800d95b4d65ef8/thrust/thrust/system/omp/detail/scan.h#L109) as what i understand it is `unsigned int{}` which gets initialized to 0 producing an error. maybe, if we use first element as the init value instead,...

@dkolsen-pgi thanks for the reply. I made few changes in this [PR](https://github.com/NVIDIA/cccl/pull/6560/files),I tested both test cases from the issue, and they're passing: **Test 1:** ```cpp #include #include #include #include constexpr...

@dkolsen-pgi @bernhardmgruber Thanks for the detailed feedback! I've added tests covering all the cases you mentioned. Added: - inclusive_scan and exclusive_scan (with and without init) - transform_inclusive_scan and transform_exclusive_scan -...

Hi @hkaiser, I’m interested in contributing to HPX for GSoC and found this issue intriguing. I have been learning HPX and parallel computing, and I would like to work on...

hello @hkaiser I’m planning to implement P2079 by creating hpx::parallel_scheduler to wrap hpx::threads, with a schedule() returning a sender, tying into HPX’s sender/receiver model. Does that sound good?

For tests, should I start fresh or extend existing ones? Any specific scheduler code I should look at? Thanks!