Câu hỏi được gắn thẻ «joblib»

2
Làm thế nào để thực hiện song song, trì hoãn theo cách mà vòng lặp song song cho dừng lại khi đầu ra xuống dưới ngưỡng?
Giả sử tôi có đoạn mã sau: from scipy import * import multiprocessing as mp num_cores = mp.cpu_count() from joblib import Parallel, delayed import matplotlib.pyplot as plt def func(x,y): return y/x def main(y, xmin,xmax, dx): x = arange(xmin,xmax,dx) output = Parallel(n_jobs=num_cores)(delayed(func)(i, y) for i in x) return x, asarray(output) def …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.