RemoteServicesAgent[properties]
ネットワークコンピュータで実行されているLightweight Grid Managerの特性リストを含む.
詳細とオプション
例題
例
関連項目
テクニカルノート
関連するガイド
LightweightGridClient`
LightweightGridClient`
RemoteServicesAgent
RemoteServicesAgent[properties]
ネットワークコンピュータで実行されているLightweight Grid Managerの特性リストを含む.
詳細とオプション
- RemoteServicesAgentはRemoteServicesAgentInformationによって返される.
- RemoteServicesAgent式はRemoteServicesAgent[{properties}]の形式である.以下は使用可能な特性である.
-
"LaunchEnabled" エージェントが現行でカーネルの新設を許可しているかどうか "ContactURL" エージェントのURL "CPUArchitecture" エージェントをホストしているコンピュータのCPUアーキテクチャを示す文字列 "OperatingSystem" エージェントをホストしているコンピュータの$SystemID "PhysicalMemory" エージェントをホストしているコンピュータの物理メモリのメガバイト数 "ProcessorCount" エージェントをホストしているコンピュータの$ProcessorCount "Uptime" エージェントが開始されてからの時間(秒) "OperatingSystemVersion" Java os.version システム特性が示す,エージェントをホストしているコンピュータのオペレーティングシステムのバージョンを表す文字列 "AgentVersion" Lightweight Grid Managerソフトウェアのバージョン "DefaultServiceLicenseState" エージェントのデフォルトサービスのライセンス状況 "DefaultServiceEnabled" デフォルトサービスが現行で新たなカーネルの設定を許可しているかどうか "DefaultServiceKernelNumber" デフォルトサービスが同時設定を許可しているカーネルの最大数 "DefaultServiceMathematicaVersion" デフォルトサービスのために設定されている Mathematica カーネルの$VersionNumber "Configuration" エージェントの設定特性
例題
例 (1)
Needs["LightweightGridClient`"]agent = RemoteServicesAgentInformation["octet"]コンピュータのオペレーティングシステムと物理メモリ量を確認する:
Select[First[agent], MatchQ[#, ("OperatingSystem" | "PhysicalMemory") -> _]&]コンピュータがアイドルで新たなカーネルの設定ができるかどうかを調べる:
Select[First[agent], MatchQ[#, ("LaunchEnabled" | "DefaultServiceEnabled" | "KernelsRunning") -> _]&]agents = RemoteServicesAgentInformation[]readyagents = Cases[agents, RemoteServicesAgent[{___, "KernelsRunning" -> {}, ___}]]