このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
numpartitions
データストアの区画数
説明
例
分割数
関数 mapreduce
の出力ファイルであるサンプル ファイル mapredout.mat
からデータストアを作成します。
ds = datastore('mapredout.mat');
既定の分割数を取得します。
n = numpartitions(ds)
n = 1
ds
には小さいファイルが 1 つしか含まれていないため、既定でその分割は 1 つのみとなります。
データストアを分割し、最初の部分に対応するデータストアを返します。
subds = partition(ds,n,1);
subds
内のデータを読み取ります。
while hasdata(subds) data = read(subds); end
データストアに並列アクセスするための分割数
現在の並列プール経由でデータストアへのアクセスを並列化するための分割数を取得します。Parallel Computing Toolbox がインストールされていなければなりません。
関数 mapreduce
の出力ファイルであるサンプル ファイル mapredout.mat
からデータストアを作成します。
ds = datastore('mapredout.mat');
現在の並列プール経由でデータストアへのアクセスを並列化するための分割数を取得します。
n = numpartitions(ds, gcp);
データストアを分割し、各部分のデータを読み取ります。
parfor ii=1:n subds = partition(ds,n,ii); while hasdata(subds) data = read(subds); end end
入力引数
拡張機能
スレッドベースの環境
MATLAB® の backgroundPool
を使用してバックグラウンドでコードを実行するか、Parallel Computing Toolbox™ の ThreadPool
を使用してコードを高速化します。
使用上の注意事項および制限事項:
スレッドベースの環境では、次のデータストアでのみ
numpartitions
を使用できます。ImageDatastore
オブジェクトcombine
またはtransform
を使用してImageDatastore
オブジェクトから作成するCombinedDatastore
、SequentialDatastore
、またはTransformedDatastore
オブジェクト
Parallel Computing Toolbox がある場合は、他のデータストアで
numpartitions
を使用できます。これを行うには、backgroundPool
またはThreadPool
を使用する代わりに、プロセスベースの並列プールを使用して関数を実行します (ProcessPool
またはClusterPool
を使用します)。
詳細については、スレッドベースの環境での MATLAB 関数の実行を参照してください。
バージョン履歴
R2015a で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)