Làm thế nào để người ta sử dụng đa xử lý để giải quyết các vấn đề song song đáng xấu hổ ?
Các vấn đề song song phổ biến thường bao gồm ba phần cơ bản:
- Đọc dữ liệu đầu vào (từ tệp, cơ sở dữ liệu, kết nối tcp, v.v.).
- Chạy các phép tính trên dữ liệu đầu vào, trong đó mỗi phép tính độc lập với bất kỳ phép tính nào khác .
- Ghi kết quả của các phép tính (vào tệp, cơ sở dữ liệu, kết nối tcp, v.v.).
Chúng ta có thể song song hóa chương trình theo hai chiều:
- Phần 2 có thể chạy trên nhiều lõi, vì mỗi phép tính là độc lập; thứ tự xử lý không quan trọng.
- Mỗi bộ phận có thể chạy độc lập. Phần 1 có thể đặt dữ liệu trên hàng đợi đầu vào, phần 2 có thể kéo dữ liệu ra khỏi hàng đợi đầu vào và đưa kết quả vào hàng đợi đầu ra, và phần 3 có thể kéo kết quả ra khỏi hàng đợi đầu ra và ghi chúng ra ngoài.
Đây có vẻ là một mẫu cơ bản nhất trong lập trình đồng thời, nhưng tôi vẫn chưa cố gắng giải quyết nó, vì vậy hãy viết một ví dụ chính tắc để minh họa cách thực hiện điều này bằng cách sử dụng đa xử lý .
Đây là vấn đề ví dụ: Cho một tệp CSV với các hàng số nguyên làm đầu vào, hãy tính tổng của chúng. Tách vấn đề thành ba phần, tất cả có thể chạy song song:
- Xử lý tệp đầu vào thành dữ liệu thô (danh sách / lặp lại các số nguyên)
- Tính toán tổng dữ liệu, song song
- Xuất ra các tổng
Dưới đây là chương trình Python truyền thống, ràng buộc một quy trình giải quyết ba tác vụ sau:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# basicsums.py
"""A program that reads integer values from a CSV file and writes out their
sums to another CSV file.
"""
import csv
import optparse
import sys
def make_cli_parser():
"""Make the command line interface parser."""
usage = "\n\n".join(["python %prog INPUT_CSV OUTPUT_CSV",
__doc__,
"""
ARGUMENTS:
INPUT_CSV: an input CSV file with rows of numbers
OUTPUT_CSV: an output file that will contain the sums\
"""])
cli_parser = optparse.OptionParser(usage)
return cli_parser
def parse_input_csv(csvfile):
"""Parses the input CSV and yields tuples with the index of the row
as the first element, and the integers of the row as the second
element.
The index is zero-index based.
:Parameters:
- `csvfile`: a `csv.reader` instance
"""
for i, row in enumerate(csvfile):
row = [int(entry) for entry in row]
yield i, row
def sum_rows(rows):
"""Yields a tuple with the index of each input list of integers
as the first element, and the sum of the list of integers as the
second element.
The index is zero-index based.
:Parameters:
- `rows`: an iterable of tuples, with the index of the original row
as the first element, and a list of integers as the second element
"""
for i, row in rows:
yield i, sum(row)
def write_results(csvfile, results):
"""Writes a series of results to an outfile, where the first column
is the index of the original row of data, and the second column is
the result of the calculation.
The index is zero-index based.
:Parameters:
- `csvfile`: a `csv.writer` instance to which to write results
- `results`: an iterable of tuples, with the index (zero-based) of
the original row as the first element, and the calculated result
from that row as the second element
"""
for result_row in results:
csvfile.writerow(result_row)
def main(argv):
cli_parser = make_cli_parser()
opts, args = cli_parser.parse_args(argv)
if len(args) != 2:
cli_parser.error("Please provide an input file and output file.")
infile = open(args[0])
in_csvfile = csv.reader(infile)
outfile = open(args[1], 'w')
out_csvfile = csv.writer(outfile)
# gets an iterable of rows that's not yet evaluated
input_rows = parse_input_csv(in_csvfile)
# sends the rows iterable to sum_rows() for results iterable, but
# still not evaluated
result_rows = sum_rows(input_rows)
# finally evaluation takes place as a chain in write_results()
write_results(out_csvfile, result_rows)
infile.close()
outfile.close()
if __name__ == '__main__':
main(sys.argv[1:])
Hãy lấy chương trình này và viết lại nó để sử dụng đa xử lý để song song hóa ba phần được nêu ở trên. Dưới đây là khung của chương trình song song mới này, cần được bổ sung để giải quyết các phần trong nhận xét:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# multiproc_sums.py
"""A program that reads integer values from a CSV file and writes out their
sums to another CSV file, using multiple processes if desired.
"""
import csv
import multiprocessing
import optparse
import sys
NUM_PROCS = multiprocessing.cpu_count()
def make_cli_parser():
"""Make the command line interface parser."""
usage = "\n\n".join(["python %prog INPUT_CSV OUTPUT_CSV",
__doc__,
"""
ARGUMENTS:
INPUT_CSV: an input CSV file with rows of numbers
OUTPUT_CSV: an output file that will contain the sums\
"""])
cli_parser = optparse.OptionParser(usage)
cli_parser.add_option('-n', '--numprocs', type='int',
default=NUM_PROCS,
help="Number of processes to launch [DEFAULT: %default]")
return cli_parser
def main(argv):
cli_parser = make_cli_parser()
opts, args = cli_parser.parse_args(argv)
if len(args) != 2:
cli_parser.error("Please provide an input file and output file.")
infile = open(args[0])
in_csvfile = csv.reader(infile)
outfile = open(args[1], 'w')
out_csvfile = csv.writer(outfile)
# Parse the input file and add the parsed data to a queue for
# processing, possibly chunking to decrease communication between
# processes.
# Process the parsed data as soon as any (chunks) appear on the
# queue, using as many processes as allotted by the user
# (opts.numprocs); place results on a queue for output.
#
# Terminate processes when the parser stops putting data in the
# input queue.
# Write the results to disk as soon as they appear on the output
# queue.
# Ensure all child processes have terminated.
# Clean up files.
infile.close()
outfile.close()
if __name__ == '__main__':
main(sys.argv[1:])
Bạn có thể tìm thấy những đoạn mã này, cũng như một đoạn mã khác có thể tạo tệp CSV mẫu cho mục đích thử nghiệm trên github .
Tôi sẽ đánh giá cao bất kỳ cái nhìn sâu sắc nào ở đây về cách bạn các chuyên gia đồng thời sẽ tiếp cận vấn đề này.
Đây là một số câu hỏi tôi đã có khi nghĩ về vấn đề này. Điểm thưởng khi giải quyết bất kỳ / tất cả:
- Tôi có nên có các quy trình con để đọc dữ liệu và đặt nó vào hàng đợi hay quy trình chính có thể thực hiện việc này mà không bị chặn cho đến khi tất cả đầu vào được đọc không?
- Tương tự như vậy, tôi nên có một quy trình con để ghi kết quả ra khỏi hàng đợi đã xử lý hay quy trình chính có thể thực hiện việc này mà không cần phải đợi tất cả kết quả?
- Tôi có nên sử dụng một nhóm quy trình cho các phép tính tổng không?
- Nếu có, tôi sẽ gọi phương thức nào trên pool để bắt đầu xử lý kết quả vào hàng đợi đầu vào, mà không chặn quá trình đầu vào và đầu ra? apply_async () ? map_async () ? imap () ? imap_unordered () ?
- Giả sử chúng ta không cần loại bỏ các hàng đợi đầu vào và đầu ra khi dữ liệu nhập vào chúng, nhưng có thể đợi cho đến khi tất cả đầu vào được phân tích cú pháp và tất cả kết quả được tính toán (ví dụ: vì chúng ta biết tất cả đầu vào và đầu ra sẽ nằm gọn trong bộ nhớ hệ thống). Chúng ta có nên thay đổi thuật toán theo bất kỳ cách nào (ví dụ: không chạy bất kỳ quy trình nào đồng thời với I / O) không?