Component Analysis

Description

Component detection. Currently, only AI Vector component detection is supported. Parallel execution is not supported.

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas 200I/500 A2 inference product

Atlas inference product

Atlas training product

Command

asys diagnose -r=component -d=deviceId --output=path

Parameters

  • r: specifies the detection mode. This parameter is mandatory. Set it to component, indicating component detection.

    Display of the detection result:

    • If no device is specified but there is only one device, only the status of this device is displayed.
    • If the status of all devices is Pass or Fail, Pass - All or Fail - All is displayed.
    • If the status of one or more devices is inconsistent, the status of each device is displayed in sequence. For example, if there are four devices, Pass, Pass, Fail, and Fail are displayed.
    • If the check result is Fail, view the debug_info.txt file to locate the fault.
  • d: specifies the ID of the device to be detected. This parameter is optional. If this parameter is not set, the detection results of all devices are displayed by default. Pass indicates that the result is normal, and Warn indicates that the result is abnormal.
  • output (optional): It specifies the directory for storing the detection result file diagnose_result_{time_stamp}.txt. If the command does not contain the output parameter, the output is not flushed to the disk and is displayed only on the terminal screen. If the value of output is empty or invalid, the specified directory does not have the write permission, or the directory fails to be created, the asys tool exits and reports an error.

Usage Example and Output Description

  • No device is specified, and all devices are normal. The following uses four devices as an example:
     asys diagnose -r=component
     +------------------------+------------------------+
     | Group of 4 Device      | Diagnostic Result      |
     +========================+========================+
     +--- Component ----------+------------------------+
     | AI Vector              | Pass - All             |
     +------------------------+------------------------+
  • No device is specified, and some devices are normal. The following uses four devices as an example:
    asys diagnose -r=component
     +------------------------+------------------------+
     | Group of 4 Device      | Diagnostic Result      |
     +========================+========================+
     +--- Component ----------+------------------------+
     | AI Vector              | Pass, Fail, Pass, Fail |
     +------------------------+------------------------+
  • A device is specified. The following uses device 0 as an example:
    asys diagnose -d=0 -r=component
     +------------------------+------------------------+
     | Device ID: 0           | Diagnostic Result      |
     +========================+========================+
     +--- Component ----------+------------------------+
     | AI Vector              | Pass                   |
     +------------------------+------------------------+