Parallelizing image convolution#

Learning Goals#

By the end of this tutorial, you will be able to:

  • Employ three parallelization libraries to speed up a serial process.

  • Calculate the speedup of the different approaches shown.

  • Evaluate which library is suited to your task.

Introduction#

This notebook shows how to speed up an image convolution task using these three libraries:

  • Ray: an open-source unified compute framework that makes it easy to scale AI and Python workloads.

  • Multiprocessing: part of the standard library; supports spawning processes using an API similar to the threading module; offers both local and remote concurrency, effectively side-stepping the Global Interpreter Lock by using subprocesses instead of threads.

  • Dask: developed to natively scale computational packages like numpy, pandas and scikit-learn, and the surrounding ecosystem, to multi-core machines and distributed clusters when datasets exceed memory.

Imports#

  • multiprocessing.Pool for multiprocessing using the standard library

  • time for timing the processes

  • dask.distributed.Client for making a local Dask cluster

  • numpy and scipy.signal for numerical work

  • psutil for finding the available processors on your machine

  • ray for scaling up Python tasks

from multiprocessing import Pool
import time

from dask.distributed import Client
import numpy as np
import psutil
import scipy.signal
import ray
2024-09-20 06:42:07,229	INFO util.py:154 -- Missing packages: ['ipywidgets']. Run `pip install -U ipywidgets`, then restart the notebook server for rich notebook output.

Find the cpus available#

Find and print the number of cpus (taken from https://towardsdatascience.com/10x-faster-parallel-python-without-python-multiprocessing-e5017c93cce1)

num_cpus = psutil.cpu_count(logical=True)
print(num_cpus)
4

Process serially using a conventional loop#

Use scipy.signal to convolve two 2-dimensional arrays and return a 5x5 downsampled result.

def fconv(image, random_filter):
    return scipy.signal.convolve2d(image, random_filter)[::5, ::5]
filters = [np.random.normal(size=(4, 4)) for _ in range(num_cpus)]

Process 100 iterations serially, then extrapolate to num_cpus*100

start = time.time()
num_iter = 100
image = np.zeros((3000, 3000))
for i in range(num_iter):
    result = fconv(image, filters[i % num_cpus])
duration_conv = time.time() - start
print("(scaled) conventional duration for {:d} iterations = {:.1f} seconds"
      .format(num_cpus*num_iter, duration_conv*num_cpus))
(scaled) conventional duration for 400 iterations = 148.4 seconds

Process in parallel using Ray#

Documentation for ray

The warning raised by ray.init only affects shared object usage, which is not an issue for this tutorial. It may harm performance in other scenarios.

ray.init(num_cpus=num_cpus)
2024-09-20 06:42:45,338	INFO worker.py:1786 -- Started a local Ray instance.

Use scipy.signal to convolve two 2-dimensional arrays and return a 5x5 downsampled result. To use Ray, we decorate the function that is doing the work.

@ray.remote
def fray(image, random_filter):
    return scipy.signal.convolve2d(image, random_filter)[::5, ::5]

In the following loop, ray.put places the image into shared memory. The call to ray.get retrieves the result.

start = time.time()
image = np.zeros((3000, 3000))
for _ in range(100):
    image_id = ray.put(image)
    ray.get([fray.remote(image_id, filters[i]) for i in range(num_cpus)])
duration_ray = time.time() - start
print("Ray duration = {:.1f}, speedup = {:.2f}"
      .format(duration_ray, duration_conv*num_cpus / duration_ray))
Ray duration = 86.0, speedup = 1.73
ray.shutdown()

Process in parallel using multiprocessing#

Documentation for multiprocessing

Use scipy.signal to convolve two 2-dimensional arrays and return a 5x5 downsampled result. The call to the function has a slightly different form than that for the serial loop.

def fmp(args):
    image, random_filter = args
    return scipy.signal.convolve2d(image, random_filter)[::5, ::5]

Use a multiprocessing pool with the number of cpus we found earlier.

pool = Pool(num_cpus)

Using pool.map is the closest analog in multiprocessing to the Ray API.

start = time.time()
image = np.zeros((3000, 3000))
for _ in range(100):
    pool.map(fmp, zip(num_cpus * [image], filters))
duration_mp = time.time() - start
print("Multiprocessing duration = {:.1f}, speedup = {:.2f}"
      .format(duration_mp, duration_conv*num_cpus / duration_mp))
Multiprocessing duration = 173.2, speedup = 0.86

Process using Dask#

Documentation for Dask

Define a Dask distributed client with number of workers set to the number of cpus we found earlier, and with one thread per worker.

client = Client(n_workers=num_cpus, threads_per_worker=1)
print(client)
<Client: 'tcp://127.0.0.1:39719' processes=4 threads=4, memory=15.62 GiB>

Dask recommends scattering the large inputs across the workers, though this makes little difference in execution time.

start = time.time()
image = np.zeros((3000, 3000))
for _ in range(100):
    for j in range(num_cpus):
        big_future = client.scatter((image, filters[j % num_cpus]))
        future = client.submit(fconv, big_future)
duration_dask = time.time() - start
print("Dask duration = {:.1f}, speedup = {:.2f}"
      .format(duration_dask, duration_conv*num_cpus / duration_dask))
Dask duration = 38.2, speedup = 3.88
2024-09-20 06:47:09,191 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4532a06ea15536dc9fbe0ca1c4d733be
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,286 - distributed.worker - ERROR - Compute Failed
Key:       fconv-490d8cf1b450658d4c2aaf35b3686138
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,388 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a87a9211c953b631e109fd80d063832c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,474 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b5be2ac6552f2c56056cfa2caf5680a8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,564 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c16c00110a932291847d078d99861703
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,667 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2f820ce529fabac5c4cfbbade53cc1d8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,764 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d65007ce2e0e018c866566057febc87a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,856 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d41daacb69d5ef0711a04442e74d5073
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:09,952 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7321da65ca21c3a88b00dc605b1b2153
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,051 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e0090e5c270363bb1238caed0dfda969
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,145 - distributed.worker - ERROR - Compute Failed
Key:       fconv-862f83634da63def63074035ee60dbdf
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,245 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f0aae513af98162db432347d27563eb7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,332 - distributed.worker - ERROR - Compute Failed
Key:       fconv-dd63fd8f0ef7d31f62f9d6af5020a74f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,430 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ba51a005430b2168ac7dd8d86359369b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,519 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8f59c3c316e16fa733b0b931f676896b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,616 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9d2abb85af901bf0995b2ca2d17ce5f3
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,707 - distributed.worker - ERROR - Compute Failed
Key:       fconv-91efd6841ad0dc32ccd4e915ae3fd052
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,802 - distributed.worker - ERROR - Compute Failed
Key:       fconv-700fb556f23a500f1bf45b9b26365136
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,897 - distributed.worker - ERROR - Compute Failed
Key:       fconv-24955be9c1cef20482732050acd68f6e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:10,988 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4cc51f4edcdc4162d06ad7bd7599985e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,088 - distributed.worker - ERROR - Compute Failed
Key:       fconv-69ee9fc3a53d97e4924a70760c67d5bf
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,189 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6e80d1aa0431732923f5f328661eb932
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,284 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2fe9b478b3fddf2cfc8e94be78017f15
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,377 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0c69e640b9ebc16c17ddc45344cc1913
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,469 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4f76ecba4617782430988b7acbd3dceb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,570 - distributed.worker - ERROR - Compute Failed
Key:       fconv-65ef3361663a6e4d79e104010a3f38da
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,664 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d776ffb9e97382f282e0d2cea10d6eb6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,755 - distributed.worker - ERROR - Compute Failed
Key:       fconv-405d2262777c414d94483ab26d79caba
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,849 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5be4cff26e17b331c744937c63ec1e8b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:11,942 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b934f3bf40bf982bd693a1bcb2cfea1d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,037 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f864b38bb0b2b57001bc19ed1f43dfc0
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,134 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2efe7e35a3d7e713e3020dcfa70dacde
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,232 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2ae60af316cfbae156c61ec8ce8abdcc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,324 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ff0b848287445037583d6cfefcd3a37a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,416 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0264ad87810ba46472bb12a68718b1da
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,511 - distributed.worker - ERROR - Compute Failed
Key:       fconv-da5648a63b57eca5eaed0d8e285bf501
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,605 - distributed.worker - ERROR - Compute Failed
Key:       fconv-744e266d7dd185676676730f4f4d0118
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,695 - distributed.worker - ERROR - Compute Failed
Key:       fconv-61aa66307ec474d80d841d58d70849d7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,798 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c6609ae7a42c177b982cfc2a4bebee10
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,889 - distributed.worker - ERROR - Compute Failed
Key:       fconv-66dd8d6c7b7116af5e4c5bd90589c8d4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:12,978 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a7d7cd7a52c1b2fd3b6faeb17b103338
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,078 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4d6c227a34b79089ab48204bc6cb438c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,180 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5403938b5b18ac74eb5f2295fdcdc5fb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,278 - distributed.worker - ERROR - Compute Failed
Key:       fconv-668f1aeb962e059525365ed8cf753184
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,366 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2b62fb7c5c47dddab80e21415def0b90
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,460 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a3ec06b5e67c34f72ec80a299e98e152
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,562 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5338c0ef3a7e1e31449b65c97905318c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,657 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bccfaecab16d03c567d2c2091c686a1d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,752 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8fcc70ce9a716b84cb116270dee0f4ae
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,846 - distributed.worker - ERROR - Compute Failed
Key:       fconv-97eaaa875d246af4e2992221e3401c11
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:13,943 - distributed.worker - ERROR - Compute Failed
Key:       fconv-344d3579627a5d9e8229e8dc594a4fea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,031 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c8f7f7469bb11778c36bf62e6def3e81
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,132 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fc532d296cc53fecae1005a4955829f6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,233 - distributed.worker - ERROR - Compute Failed
Key:       fconv-42cef2e89aca2355f4d79652f8547d1e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,331 - distributed.worker - ERROR - Compute Failed
Key:       fconv-34e22079dc2fcb29411e5787699eb0ae
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,424 - distributed.worker - ERROR - Compute Failed
Key:       fconv-160009f7387c25f8f5f1822dd2f02ad0
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,512 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b590390e9ab141ccec584028bcb7649c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,604 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fa6cba07e032ef8dd1129d0ed79999ba
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,700 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b223d4ed94002467b818263846769082
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,794 - distributed.worker - ERROR - Compute Failed
Key:       fconv-80b70f18b9320e2c100aef284a382181
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,889 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7617ad5a666b99f8e746be244cb733c8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:14,981 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f4cc14b2e1737091aa25727f9d03bd7c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,079 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7fefe4f2db1b729a39b5a59bc72e8bea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,172 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cb2f05e9607804688f989ef089f4f565
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,268 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9e78c4b0f58e20cbe9e2bdd4d605537b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,359 - distributed.worker - ERROR - Compute Failed
Key:       fconv-79d404f0581d6fb49f6d5b2f9dd9fb2b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,454 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2ce02d27534b739a0516a5548a12fca6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,548 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5de8f921428aba0336c25f0e487ae470
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,649 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8efe8d43434b1755223caa82ba2134ee
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,748 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7a14fc4730c074b054aab225edf6e0ce
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,840 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5ccbe8b9de106e5988ab874b7e2e18dc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:15,933 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b0fc83acf61b5e9e429de41fdf84aea5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,027 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5380aae592f9cc2fc45f9ed6e95a30a9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,127 - distributed.worker - ERROR - Compute Failed
Key:       fconv-28a0b6fba89359aead46f67c9a4f9c26
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,225 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1a1518f26d1a4cb3e896ef503d221ab8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,324 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1bb54ff1fd68fc17dc2cf636429a54c7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,418 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c3aa5162f3b4f1204db4452780874529
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,513 - distributed.worker - ERROR - Compute Failed
Key:       fconv-83668a313990834d93c008da92248131
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,606 - distributed.worker - ERROR - Compute Failed
Key:       fconv-427a8cbdcf8a27547671b79364488e47
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,705 - distributed.worker - ERROR - Compute Failed
Key:       fconv-949dba01e8ee34b57c8e66888bf186ad
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,797 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1c98104c5b9322c196db8fd193cf45c3
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,891 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e8b877509256d6e3b8d37dcb9f6d58b7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:16,987 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d166499a1eb636210f88809f74f16db6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,081 - distributed.worker - ERROR - Compute Failed
Key:       fconv-218657c38e62907009df03b41224cbd5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,174 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e0843213ab8054c199aaccdc8648357f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,272 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7687c3b6b7a331e2ee54e38072e84cc1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,366 - distributed.worker - ERROR - Compute Failed
Key:       fconv-42e8d522d23e08ae89d349feb01b4cd2
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,461 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fbc6204d9598112b4e19a51c0dac4f1b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,554 - distributed.worker - ERROR - Compute Failed
Key:       fconv-52cd46e811807db9bc5c048ab606c6a5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,651 - distributed.worker - ERROR - Compute Failed
Key:       fconv-74406cb065f3da96ee3325de9ce828ad
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,749 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2456c3e235feed4d8af42aa2775d401a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,842 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0a7b349ffa4a81661c761a10a5120cec
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:17,939 - distributed.worker - ERROR - Compute Failed
Key:       fconv-88bf27afe3d3981798ddf7bfedb42e0a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,031 - distributed.worker - ERROR - Compute Failed
Key:       fconv-00e5e566a7f2dd841c8f636d05f6143d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,133 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b403afbbf842527b64509d812ded497a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,229 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d5dd0418da12da52c19e29f30a789aae
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,325 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1613d83e73e0e5d5ed40859e34cda7ab
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,417 - distributed.worker - ERROR - Compute Failed
Key:       fconv-46459374393743b9b694a07e50268384
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,513 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b0ccc0f7514174432f9b9c1bfeeeda71
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,613 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6d42f3c5b741d8cf33ee09f2a590f7e1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,710 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a57a38c32c919f20bb27dd06987336c6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,799 - distributed.worker - ERROR - Compute Failed
Key:       fconv-744ddb555320a15721fbc0162fb0282e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,895 - distributed.worker - ERROR - Compute Failed
Key:       fconv-71e564ca723197a02021acb05eb9334a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:18,988 - distributed.worker - ERROR - Compute Failed
Key:       fconv-84d159d7281928635096e2a06a91ee9d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,083 - distributed.worker - ERROR - Compute Failed
Key:       fconv-5753b61960cc610c2c7900d45c7e566d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,178 - distributed.worker - ERROR - Compute Failed
Key:       fconv-99c3061a61f1dc752ab722b9b281654f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,267 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ddab3fe325a04a8a358c441e161fa0db
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,361 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c41cb55d7fc3206c23f7ef94e43492d8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,451 - distributed.worker - ERROR - Compute Failed
Key:       fconv-69ffae3302bf5a9bd6802f37b9dead23
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,545 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d8813f142d20da6273eb14a4eff5a0fc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,647 - distributed.worker - ERROR - Compute Failed
Key:       fconv-75d630a6a7decb4b3f937295814f6c2c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,740 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a951e54dcd4686fd645db408d53aa849
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,832 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e5e2c5df1ff6f5d4ff51c65443b380b2
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:19,928 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9023988cb01f0f4875e5737db1b3025b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,024 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f9f5757d862f2907164f8d73d369541f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,114 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3c69d11d61e8998767d3200d1efd4134
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,210 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a9baf063c9de950c1f3d38892badc28b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,304 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c8cf29e7982a4d2b3d2e8b2a0315b07d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,398 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3662ef116a3762f89ca3a0cadb1bc28e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,490 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b392637f28d1d9a6c71b7f6d5b48e3f9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,594 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d20432877487f848d2f6cf4fb6d3bc22
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,684 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e59e69005b22accea117baf4ff5dd873
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,782 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ce0b42ee8a098c30bc0e0b436cac056a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,874 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c1d6689c1bf20b24efc387612c6cde82
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:20,971 - distributed.worker - ERROR - Compute Failed
Key:       fconv-96f69617e75938c5eb74213ccdc64c71
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,067 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2f6d3c02728a0c868c0b05baf7fd4fa1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,161 - distributed.worker - ERROR - Compute Failed
Key:       fconv-722499a698580ccc6abbdba4d5450d2e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,254 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bec5f68d69b295978990642defe0f989
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,352 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a1fc011ee8b9334ce17b5a1d2625afbb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,445 - distributed.worker - ERROR - Compute Failed
Key:       fconv-05e31b4188d82db3d48107bc01b0d75b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,538 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ae130b1a79e55264790dcc026a7b34b1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,636 - distributed.worker - ERROR - Compute Failed
Key:       fconv-dc26f1a5aae3bced56eea23f57a7e993
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,738 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cbca4407feb73c9abbd2e1487034c887
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,827 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f667781b675dc31ceb486728ea177433
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:21,925 - distributed.worker - ERROR - Compute Failed
Key:       fconv-14c9aeedd51cd91242fac0495ba7200e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,017 - distributed.worker - ERROR - Compute Failed
Key:       fconv-39dcfec887a3556a2009ea9373025347
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,114 - distributed.worker - ERROR - Compute Failed
Key:       fconv-821ea6e40218ab46b3ca151375802fbe
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,204 - distributed.worker - ERROR - Compute Failed
Key:       fconv-eaaab7a51adbfb43acd11e2a01e40bef
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,299 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6ebfd86812fd0ce1b5fa8c0b06b4c078
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,397 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6c47cd7577be9d6075c17f681ad85f78
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,490 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8b82f5e0a75a639a0c371c3d5cd606b8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,586 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cbada78cc879d921c5befc57c26a19af
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,681 - distributed.worker - ERROR - Compute Failed
Key:       fconv-35e857848a79ed6bbd68ba29f455833b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,781 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1fe0d93b04ee7fa8b2738ed50e5ce440
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,873 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6bf786f2e611672637103204f45f8b2f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:22,966 - distributed.worker - ERROR - Compute Failed
Key:       fconv-57e773ed0f6c1be31fff7736ac1d299c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,061 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1bca96fdf094538009f5f3fd7412d829
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,156 - distributed.worker - ERROR - Compute Failed
Key:       fconv-22a3ac717454812548d2e3e7e006b184
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,249 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e8a408cae210c3c4bf6b40fbdeea7c5b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,344 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4b5257188f9787b0942cc2d2facb2a91
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,443 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4dbf47bacfffadd753c9ac9bf0223424
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,530 - distributed.worker - ERROR - Compute Failed
Key:       fconv-88e54a33fd28c5001f9dd9682904f726
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,632 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d63a169beea1f6eb0fad571d4b7a6643
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,729 - distributed.worker - ERROR - Compute Failed
Key:       fconv-244d0b1287a6b1c3b28b3afc9b73e0ad
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,822 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a6582656d38699059a501f43bfaaacfa
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:23,916 - distributed.worker - ERROR - Compute Failed
Key:       fconv-511edba24dc4193061cdbf76a016cb77
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,020 - distributed.worker - ERROR - Compute Failed
Key:       fconv-04ec2b6fd8d90f888813cfeb9c967562
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,112 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b6f246e934ba300cf2cf3038ff3682f5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,206 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fc348143c378101ab82df13016451bcc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,305 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7bdb61aa928cc3452a38643b2752e635
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,397 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0f891140cc1d5dbe69211d2c8264db88
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,488 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e0f004e3f1867f07ec8045e80c014864
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,579 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4872372203e75239013fb6cf86a7e2cc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,679 - distributed.worker - ERROR - Compute Failed
Key:       fconv-02fda707742ec0851830349e21ef7783
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,770 - distributed.worker - ERROR - Compute Failed
Key:       fconv-828ca7f79e91ba39e0e5b4f558d6745d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,869 - distributed.worker - ERROR - Compute Failed
Key:       fconv-97db7b6236d2f552193dc75349462ba6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:24,962 - distributed.worker - ERROR - Compute Failed
Key:       fconv-40ad304f143bd2143a46f0177be6ca85
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,057 - distributed.worker - ERROR - Compute Failed
Key:       fconv-327b8c74a068f62af4b8a1ce37491e23
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,157 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0b2d892aa59e89bcb89e9117fd05218d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,249 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9400f9457e4d422cb819c1af8e410d92
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,342 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e388b56721eb63a2bd931aa94d629f96
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,431 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fd6c718cdcbbc2746d0f362e76b74488
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,526 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7d9f17fd97b3e0fde5e36ef3aae4c39b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,628 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f1cb3214a5fd7d370db8f2ab9348d947
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,720 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3059b46a2a71853fc7cc71bfdcb97b46
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,817 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cdc37ae4ff37aea391a71d177791be72
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,908 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3c3e792a7c00e33a1f087da05159cce7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:25,996 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1787480ce4cedae02f6a95e8e0516e7b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,094 - distributed.worker - ERROR - Compute Failed
Key:       fconv-457985a913f4cfad57ef0e07f64d9238
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,191 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b373f0ffe37dd1bc406ccfe254b665f9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,283 - distributed.worker - ERROR - Compute Failed
Key:       fconv-58eac7a22c661dff0a8f18c89a0fa270
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,381 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e801d71e19733c7b3ce57bf273ae5b52
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,466 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1bb713494acbd37f21b88207ba5a6da8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,559 - distributed.worker - ERROR - Compute Failed
Key:       fconv-069c5ba1f76330d41c05441fc290846a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,655 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d7b2f0bf19ee9d3c16d69a9b2adb4cf9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,750 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e99abbda369d8511016db231e6d41dea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,848 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bad1e1617b71be1b29637ba149a95e9f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:26,942 - distributed.worker - ERROR - Compute Failed
Key:       fconv-082a553a60adde1d6c14d8774e93612c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,039 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0105247df312f6bd6e4828e21bc01b5a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,139 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f751c13981c17881e6a04c0b1fa21092
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,232 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e220740784c5407d898e0d6452220279
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,326 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f07f4f7612a50129aac9f5cfac60bf3f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,417 - distributed.worker - ERROR - Compute Failed
Key:       fconv-00b9d0596a5bbcd479ac7b89ebf96e23
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,515 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2219d5cb3be5207f618a55d6827162ad
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,615 - distributed.worker - ERROR - Compute Failed
Key:       fconv-932d4ed1a5355657beb5c46d0a20d454
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,706 - distributed.worker - ERROR - Compute Failed
Key:       fconv-86a90be32fb3fe26644d0311b6c1b987
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,802 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4b512dc64e6e7329a11611ca5b7224eb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,895 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8bd2a4e089df21a199fff0b1ba745fa4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:27,995 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8e3bdeebb850afb92bd8525476ef4a5c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,090 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fab9fe3f28ea7e4c86d5db2bdca64a8d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,188 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e321c1e7514466085fb33c19fe2b89e0
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,287 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d69acc438105680d075fc4701827d274
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,385 - distributed.worker - ERROR - Compute Failed
Key:       fconv-91dbe49a1459fd81b9a5e7d8efea627b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,473 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ba71bd6e8d3b10ec4db1f0836d8285b5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,569 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cd4729a64e84dac9037059e14a58c83c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,666 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f82ff5393858de185ef46092ba09a02e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,755 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3cd6768d74b4a3032d07b8a53ff3e535
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,848 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3abb273fd8063e4a0513782d385a3906
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:28,945 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e56839344cf832dfa889f94884b9e3e9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,042 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ade6b0c1f1a03ea514689da87387cdb7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,135 - distributed.worker - ERROR - Compute Failed
Key:       fconv-45d9e6b6f0f345200867d979e14c26af
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,227 - distributed.worker - ERROR - Compute Failed
Key:       fconv-da68c58850d4df4fe5546be56f374bbe
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,323 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cfe174ba7cc7d4dc1eb9a359f42db2c8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,417 - distributed.worker - ERROR - Compute Failed
Key:       fconv-783d4135c3afd605552baf5a6823421c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,514 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d23eb34373a3c140dce46f1a35b220c9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,615 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b4990706818d16686c71d8b344d6e124
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,708 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4f38c78c91ced13fa648fc6789cab835
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,892 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4aa60c0fb1bf75c5ad827d1d7f1dee2d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,912 - distributed.worker - ERROR - Compute Failed
Key:       fconv-87d2809dc79f1ea00c43e3fa3908c02d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:29,991 - distributed.worker - ERROR - Compute Failed
Key:       fconv-94abfab99c9a42f97550af23b3dfbe27
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,081 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0dc5690a4eb86fc9effa10c5c64242fe
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,174 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ac74340b2b46c753715039b96010c14f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,266 - distributed.worker - ERROR - Compute Failed
Key:       fconv-63bd3716dec65e1414b836217aeed37f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,358 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bd77562972bf39d9ceee0d161a1b804c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,456 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a62ea20fb5837fedc071f7ac3e6c7fbb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,550 - distributed.worker - ERROR - Compute Failed
Key:       fconv-74af20c19b9ab0849110739a79c50891
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,647 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3589850bc9d00c7f2e549801b621b1f9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,742 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b0d59bbfc4d00b62c25da2d5d8f14e40
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,830 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d9a7d583696d738fccdf20ec90775c1f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:30,923 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4b7a5e67d2a34e497fc69baf31bc500e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,014 - distributed.worker - ERROR - Compute Failed
Key:       fconv-dd5aceeec152fcae07f823e8ca401106
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,117 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4a9f35e845b3c2aff4fd7d888862dbba
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,206 - distributed.worker - ERROR - Compute Failed
Key:       fconv-165db0e27e262224675882a8b3abaf4b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,306 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1a6c254edd9b4cdf163a19147b1547cd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,403 - distributed.worker - ERROR - Compute Failed
Key:       fconv-828b73578a73598a9301079140f4754f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,494 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a5e898d706f33a81f50471c59f39f583
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,588 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b19f9c8daf2c0a157e086150c8af81e4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,683 - distributed.worker - ERROR - Compute Failed
Key:       fconv-106ca717ef6451550e4f678b0cbf4602
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,781 - distributed.worker - ERROR - Compute Failed
Key:       fconv-99a478c501725821215250df92fda860
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,869 - distributed.worker - ERROR - Compute Failed
Key:       fconv-156afff0db0fe461901f4aa413f00732
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:31,967 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7275a16b374ed972d87c71580a58b97d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,061 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b43f708da15e0e0ac239066bc7f104c9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,163 - distributed.worker - ERROR - Compute Failed
Key:       fconv-44efa3ea2538ac30d31eb3a9a7925c17
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,251 - distributed.worker - ERROR - Compute Failed
Key:       fconv-34102a2946f8e820ddcd268907d9cb83
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,343 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ffa56adcb27ab49a591f5f351084616f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,447 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3ef9cd26f8f20a7144c18decdd39a7b5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,539 - distributed.worker - ERROR - Compute Failed
Key:       fconv-742ab60552891c3a1a04f372d3413bea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,636 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ef4573010ff9a61a42cf96df482486fa
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,728 - distributed.worker - ERROR - Compute Failed
Key:       fconv-510d6115ade004de639088d88c8dba75
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,816 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9ccc57e1c29991adb1b981b2a2fc1431
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:32,909 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f466bd3f55a348b05c80f5d3fd37d27e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,007 - distributed.worker - ERROR - Compute Failed
Key:       fconv-109b46605459c903a5feadfdd76b5949
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,104 - distributed.worker - ERROR - Compute Failed
Key:       fconv-137d23dc398074244da84bd520aa1ca1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,200 - distributed.worker - ERROR - Compute Failed
Key:       fconv-eca3d68150473b64a88be0f51c826f5c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,293 - distributed.worker - ERROR - Compute Failed
Key:       fconv-48e76f31bad427c52955889dfc6cbf47
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,384 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a55080c607fef584d96d5338af6936d2
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,471 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8741568de1986268b35a2998b746fbd4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,562 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c4352aaeb15558ef53b5c74302b58cb9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,662 - distributed.worker - ERROR - Compute Failed
Key:       fconv-feff51148af2d52e01fdac04ac8f2879
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,751 - distributed.worker - ERROR - Compute Failed
Key:       fconv-711051112520633dcf89833a4f66acfc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,844 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ff8cb667f9cc2bb247dd3380111728cb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:33,946 - distributed.worker - ERROR - Compute Failed
Key:       fconv-47e164127850e6aa6e297e6344fd0e0b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,032 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e4bcfdabd6ce020897703370d4fc8311
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,137 - distributed.worker - ERROR - Compute Failed
Key:       fconv-02dd7c3b0d080130d564c4c6f99cdf41
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,228 - distributed.worker - ERROR - Compute Failed
Key:       fconv-837a5defe4f646a980127b53c4f9612e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,323 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0523a33eda3a4466470c0498e0d6d3b0
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,415 - distributed.worker - ERROR - Compute Failed
Key:       fconv-02d59fd3df8ad8d4b5c6fa6881029288
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,506 - distributed.worker - ERROR - Compute Failed
Key:       fconv-182da13c2555456bc72098733d77179f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,604 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ed9ee849cb59e56c02e19d85d5be17e3
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,771 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3d474a2211fb6f6594f3a411895c1c27
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,860 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0d54342cb71f05d02b0f6032c9edff3e
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:34,953 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b214a7168e84de4644ac35b7628e9d26
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,052 - distributed.worker - ERROR - Compute Failed
Key:       fconv-701b13492d983a3ff541f499fcd0363f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,153 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3c4c7a71ac77695766cc05d198c64ea7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,251 - distributed.worker - ERROR - Compute Failed
Key:       fconv-67753e3df2419474f8c6afed92e96d3f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,345 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fb2e8be7567fbf860a3b0f4031125521
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,437 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9cfd64820998bee62349a2d7293c8494
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,530 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c5d0d87bd80b27e75f657d7bfe0bdcd0
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,634 - distributed.worker - ERROR - Compute Failed
Key:       fconv-db1b6963fb84179f517f5631ff5d58cf
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,722 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3332af8a5891351af4a946897c150877
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,820 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e806dc4c1af02e1fec68bfbc8b056c55
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:35,909 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cf8eadad5a5a32510c34e318909ed13d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,005 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7d0d69242a1ef5b0363b5c597a541ee2
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,110 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c0c12372bbf901d385f273ddd153c093
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,205 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8408f69b6bd3c8dca87fe5e68339ffbd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,294 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f0ce423aa2bdb8e267161cfb9c8d3d41
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,388 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4962dede81200e53c0c54eac130624a7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,487 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9963a3f7a3374a43f083282e9f9181bd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,579 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8144d8db60598902b55421c150905426
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,674 - distributed.worker - ERROR - Compute Failed
Key:       fconv-da6a0c6636d7d659900eac6d274003e7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,766 - distributed.worker - ERROR - Compute Failed
Key:       fconv-df343c5b9dca3c490099bb1ebe72462c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,861 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6dafa78331e0bda3a7d7d4ab3b15d5f6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:36,966 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a956b49f4938fd95c8b7a220563cd150
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,069 - distributed.worker - ERROR - Compute Failed
Key:       fconv-56010710bf6911f96110cff3df5161ed
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,163 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b63bd89db258edceb6b37426f09d8e7d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,263 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a2b3b90de294d5a4975a84216014f977
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,352 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a0da541c24f850a4d87b00986a570546
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,448 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6121794cec671e406d3deccba8824bc5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,542 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0bfbdf2577a8adc78c74e66c0c7cb26c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,638 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9612c6c701e57d9e9f4c396d8be2dbfa
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,730 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8dc45aed10f32bf2338b638cc548616f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,821 - distributed.worker - ERROR - Compute Failed
Key:       fconv-574a720ac98d043d6a7d65e20929ef0f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:37,912 - distributed.worker - ERROR - Compute Failed
Key:       fconv-68f8fda51aac988e25b0099d3da502ea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,004 - distributed.worker - ERROR - Compute Failed
Key:       fconv-0076875baa486018bb47a0a55568b85a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,100 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2cef2afcc94e1fdba937c69a431c3361
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,197 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bbc873c75f13972e6269528caabe5d25
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,290 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c6c275a08d77abd0abf9d25bc7ca6e53
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,383 - distributed.worker - ERROR - Compute Failed
Key:       fconv-60241952def92f6a9ba5a853d01ef727
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,476 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1a7940b24d968952fc7d1c6843589375
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,571 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9361fe0d219929ef849a27dad22ec0ca
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,667 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cdd9d9f60e2bce2347cecb2de722a720
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,763 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1e952ea53740ea5ef5737ad887cb2fea
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,849 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cd33652236fdd00e9c4bb558a15b6e38
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:38,941 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b4a4b780fd9634f3f56ddabc3efcb5e5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,032 - distributed.worker - ERROR - Compute Failed
Key:       fconv-486dd7a60c41b2edc68ae25109c00a81
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,128 - distributed.worker - ERROR - Compute Failed
Key:       fconv-367c2b07038e3abae3741e0b04a83fbd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,221 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1f3395f2f60e24960ab818086bb5bb46
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,313 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d19223d05ed0686fde67652734330d44
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,404 - distributed.worker - ERROR - Compute Failed
Key:       fconv-53c3b706fc6a47d64698f3e22a2567de
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,500 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ccdf0e97eb489946a2f8f6ca1b5a5eb6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,590 - distributed.worker - ERROR - Compute Failed
Key:       fconv-dd618d47613aff588dd05d5210986938
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,688 - distributed.worker - ERROR - Compute Failed
Key:       fconv-4422360cc7b74167194db8e5fbbe6206
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,790 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d3114347b481a2cd6f90ab77fcbd0ecf
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,888 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d957ebc127035459187478ff1ea7e146
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:39,976 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8eb28c0a10405f5a95cd61b4a548d752
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,070 - distributed.worker - ERROR - Compute Failed
Key:       fconv-78d512f51bea22781cbec21418804024
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,163 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b4547a4c83542906daa0d6711ea70450
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,266 - distributed.worker - ERROR - Compute Failed
Key:       fconv-49f5890823aa1878982209cc2d97c7a1
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,357 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2a00e095bad54b63d550d7d0082765c9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,452 - distributed.worker - ERROR - Compute Failed
Key:       fconv-096cbc5b6b421bcfa0943be26279b969
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,549 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ee21d57d7384b8774c3e5dfefd173042
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,643 - distributed.worker - ERROR - Compute Failed
Key:       fconv-53c39fcce77fb79d42fe9f7c3b25cdbc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,730 - distributed.worker - ERROR - Compute Failed
Key:       fconv-852411909c4fecbad9bd78891efea0ae
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,821 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9deeb9cfb62843e5fde38ed387ba5238
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:40,912 - distributed.worker - ERROR - Compute Failed
Key:       fconv-608accbcf12318ceaf4d559f527ab7d8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,002 - distributed.worker - ERROR - Compute Failed
Key:       fconv-62d0bd4559aeb45a320d5de87b02e5c9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,096 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f7455591a931521ea8b78fb583c86832
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,194 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2626381174d0c5fc7402fcd3ad51fe22
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,293 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e45bb2aaf4fb15d1a04aeaa80528be1f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,385 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8861da744f32f0eea22fab1700b4912f
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,484 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2b5ed1d3904e36e41d7f95e56afcff83
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,583 - distributed.worker - ERROR - Compute Failed
Key:       fconv-88caf3725d68235b329f9d36b146cb38
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,671 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1850c5778e153a1167e8f7a72e770597
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,762 - distributed.worker - ERROR - Compute Failed
Key:       fconv-04185cbb56bb76705c2bfb3dbdbff899
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,861 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d52c5956c532a04db9fc0ce948e3124d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:41,952 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1af1eaa8f7573af76776a5dde3c3ebd9
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,043 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1f7729b458a65e06330b12be143ee8fd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,144 - distributed.worker - ERROR - Compute Failed
Key:       fconv-12dafc905519418d0eed0a67244fba48
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,247 - distributed.worker - ERROR - Compute Failed
Key:       fconv-940f0532983163747619d82826ce16a7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,337 - distributed.worker - ERROR - Compute Failed
Key:       fconv-a49fc7ba2cbeddfe63332b017dbb0279
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,433 - distributed.worker - ERROR - Compute Failed
Key:       fconv-43f5a962f9451224d08e12da40575fb7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,530 - distributed.worker - ERROR - Compute Failed
Key:       fconv-380348aff452d9d881eb5d5f9402fe6a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,629 - distributed.worker - ERROR - Compute Failed
Key:       fconv-465aa6f9947b3ece32d08d031386d74a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,722 - distributed.worker - ERROR - Compute Failed
Key:       fconv-07634cbd35f43a7bfd22aa4772137e82
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,823 - distributed.worker - ERROR - Compute Failed
Key:       fconv-46103474beddd7a869964a960e9f2158
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:42,916 - distributed.worker - ERROR - Compute Failed
Key:       fconv-09aaa002b3bbacd6528050d1490d8cc8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,007 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9ad481b5ce009580f237a47a7a61af4c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,105 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ebd114aad7fb977bfcc52fb5e4b50602
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,192 - distributed.worker - ERROR - Compute Failed
Key:       fconv-7740987da54734b6c1fb239cab2b7c81
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,283 - distributed.worker - ERROR - Compute Failed
Key:       fconv-fd47bc6f3e0eca729b6b68e75bc8938c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,377 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f852b2894ae62f74525bdba05cacd1e5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,510 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e5b3c5bfceab0404373b558245087e3d
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,577 - distributed.worker - ERROR - Compute Failed
Key:       fconv-51f0ca1c60ec19461ffecced5238c766
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,670 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e6cdb656dd3bbfa429b7d692e0ec7d59
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,761 - distributed.worker - ERROR - Compute Failed
Key:       fconv-43c0e8f2dd4f9e2ca660810b41cea8c6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,859 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b842ec0f4124cc2e29591d2fb171bea8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:43,957 - distributed.worker - ERROR - Compute Failed
Key:       fconv-bcd6ac4515d71ec57164555684b2b6e8
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,053 - distributed.worker - ERROR - Compute Failed
Key:       fconv-f5991db3d6a49cf0ccd436127509dc8a
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,148 - distributed.worker - ERROR - Compute Failed
Key:       fconv-98b1416ef4b7cc6d75163fa435f384c3
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,248 - distributed.worker - ERROR - Compute Failed
Key:       fconv-8b387ca3927ed966a9a830fc2b94b961
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,347 - distributed.worker - ERROR - Compute Failed
Key:       fconv-3ff2a2ada9ba9cf8a35c4883da2fcdcd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,435 - distributed.worker - ERROR - Compute Failed
Key:       fconv-10e3be9bebb4787a8d9c517069d032a5
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,531 - distributed.worker - ERROR - Compute Failed
Key:       fconv-05785c3c8b3fa3f1b08e72e3306506fb
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,628 - distributed.worker - ERROR - Compute Failed
Key:       fconv-de72c273da02a19a9b8f8dc45c66766b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,725 - distributed.worker - ERROR - Compute Failed
Key:       fconv-b58546d7ddbc30c42caf4813c97e234c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,819 - distributed.worker - ERROR - Compute Failed
Key:       fconv-09dc8aac892f54f036b181f3c3850a76
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:44,910 - distributed.worker - ERROR - Compute Failed
Key:       fconv-6c3ceaddb2b718d3f3c8eb0446adf5d6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,001 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cd39cffe29d96a31c8066428a71ef5ae
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,094 - distributed.worker - ERROR - Compute Failed
Key:       fconv-02c20267d553a60180404a61cc1d27f4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,199 - distributed.worker - ERROR - Compute Failed
Key:       fconv-08f541904b7faaf77ce4b6d122447496
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,296 - distributed.worker - ERROR - Compute Failed
Key:       fconv-23e512802052c3cc533f9680e091c8de
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,390 - distributed.worker - ERROR - Compute Failed
Key:       fconv-1772265dabf37b7ed2c65ed1c47759bc
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,487 - distributed.worker - ERROR - Compute Failed
Key:       fconv-cb4d696e4bdb706ff25dd45e1df3d768
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,581 - distributed.worker - ERROR - Compute Failed
Key:       fconv-07522b0c21e6df082597e6beeb8beac7
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,671 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9545716707b5ee2c77d117da6a1a2889
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,764 - distributed.worker - ERROR - Compute Failed
Key:       fconv-eeafd06f115d77c27236599de380e534
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,857 - distributed.worker - ERROR - Compute Failed
Key:       fconv-67d30f16c9e73f8135e101d129e770f3
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:45,949 - distributed.worker - ERROR - Compute Failed
Key:       fconv-e5320dc6eacf9e1ede197d0fe1a73472
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,045 - distributed.worker - ERROR - Compute Failed
Key:       fconv-ad23e0a13b07695b4a22296683f103dd
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,138 - distributed.worker - ERROR - Compute Failed
Key:       fconv-238f8463baa9fc645b1dcaa8791456e4
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,232 - distributed.worker - ERROR - Compute Failed
Key:       fconv-2ddfd2891e5077ae8efbcbe7d67c2d68
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,331 - distributed.worker - ERROR - Compute Failed
Key:       fconv-24a5bc3466ad406575353739eedf132b
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,422 - distributed.worker - ERROR - Compute Failed
Key:       fconv-c0565ba5d76233e1a01cc32e8cadc111
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,521 - distributed.worker - ERROR - Compute Failed
Key:       fconv-02d64a34f7ad13f132c5bcb8f404859c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,618 - distributed.worker - ERROR - Compute Failed
Key:       fconv-34665201f99a02c6202c9bbb69615ed6
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[-0.98826299,  0.99806792,  2.28055338, -1.50815329],
       [ 0.65679599, -1.20878961, -1.1781562 , -0.84330078],
       [-0.0261701 , -1.08832652, -1.60227746, -1.06041489],
       [-0.45327593, -0.85540029,  0.32723852, -0.07108255]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,710 - distributed.worker - ERROR - Compute Failed
Key:       fconv-9eec08cfdf4d2edd4737b6adb0201573
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.11163485, -1.24699731, -1.62796614, -0.37306861],
       [-0.8772471 , -0.19632645, -2.20540546, -0.19588019],
       [ 1.45792265,  0.16478257, -1.14016664,  0.04631598],
       [ 0.59164355, -0.04683107,  0.5424388 ,  2.05470644]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

2024-09-20 06:47:46,814 - distributed.worker - ERROR - Compute Failed
Key:       fconv-28703358f87600f40ee825a3c2976b7c
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.52899275, -0.52427405,  0.89770557, -0.35720198],
       [-2.70633575, -1.10276735,  2.45281879,  1.3708096 ],
       [-0.13947925,  1.89313211, -1.19474475,  0.75201314],
       [-0.44877652,  0.91503085,  0.26433525,  0.84484219]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''
client.close()
2024-09-20 06:47:46,857 - distributed.worker - ERROR - Compute Failed
Key:       fconv-d1e5b048ce109477c61d94b60832bbd2
State:     executing
Function:  fconv
args:      ((array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]]), array([[ 0.31797753,  0.38908825,  1.58100326, -0.05047756],
       [-1.1967979 , -0.27896225, -1.47514997,  0.10825964],
       [ 0.21093185, -0.45748411,  0.67272069, -0.23243961],
       [ 0.05610073,  1.29165519,  0.55556176,  1.21244187]])))
kwargs:    {}
Exception: 'TypeError("fconv() missing 1 required positional argument: \'random_filter\'")'
Traceback: ''

Conclusions#

  • Ray is the most effective at speeding up the convolution workload by fully utilizing all available processes

  • Multiprocessing is second in effectiveness

  • Dask delivers the least speedup; perhaps due to having only six processes on the dask.distributed client

About this notebook#

This notebook was developed by David Shupe (shupe@ipac.caltech.edu) in conjunction with Jessica Krick and the IRSA Science Platform team at IPAC.

Citations#

If you use these software packages in your work, please use the following citations:

  • Dask: Dask Development Team (2016). Dask: Library for dynamic task scheduling. URL https://dask.org

  • Ray: The Ray Development Team. URL https://docs.ray.io