tall/gather issue

6 次查看(过去 30 天)
Roro
Roro 2019-12-3
Hi everyone,
I have issue while using tall/gather function running in parallel pool in matlab, the error as below
Error using tall/gather (line 50)
An undefined function error was thrown on the workers for 'HelperGenerateSpeechDenoisingFeatures'. The file containing
'HelperGenerateSpeechDenoisingFeatures' might not be available on the workers. Specify the required files for this parallel pool
using the command: addAttachedFiles(pool, ...). See the documentation for parpool for more details.
Learn more about errors encountered during GATHER.
Error in XX (line 134)
[targets,predictors] = gather(targets,predictors);
Caused by:
Error using tall/cellfun (line 19)
Undefined function 'HelperGenerateSpeechDenoisingFeatures' for input arguments of type 'dsp.SampleRateConverter'.
how can I fix this issue please.
thanks

回答(1 个)

Edric Ellis
Edric Ellis 2019-12-4
This error means that the workers on your remote cluster cannot find code that they need to execute your tall array algorithm. You should try the suggestion from the error message, and do:
addAttachedFiles(gcp(), 'HelperGenerateSpeechDenoisingFeatures')

类别

Help CenterFile Exchange 中查找有关 Parallel Computing Fundamentals 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by