I have a function written in python. I want to know if a code inside that function is parallelizable, can I somehow parallelize the code inside that function without making dask API calls inside that function?
I was thinking of whether dask.delayed could help me in this. But I think it parallelizes the multiple executions of a function, but I want to parallelize the inner contents of a function. Is it even possible using dask?