Speed optimizations#39
Conversation
Fixed RGB/LAB unit test
Draft release v1.3.0 rc1
Using slicing and indexing to extract the L, a, and b channels from the input array, and perform the necessary operations using broadcasting. This allows eliminating the need for explicit loops, improving the performance of the function.
|
Hi, thanks for your contribution. I updated the workflows in the main branch (they were using a deprecated version of ubuntu). Can you update your branches with the correct workflows so that I can run the unit tests? |
Use Ubuntu 20.04 for CIs
|
@carloalbertobarbano this PR now runs CIs with |
|
I had forgotten to use |
|
I have synced my fork! Sorry for the delay. |
@ajinkya-kulkarni No worries. You have to sync the individual branches as well, not just the main branch. Thats what my PRs to your fork do. |
|
All checks passed. Merging into development |
Using slicing and indexing to extract the L, a, and b channels from the input array, and perform the necessary operations using broadcasting. This allows eliminating the need for explicit loops, improving the performance of the function.