Files
ROCm/docs/install/includes/4_windows-wheel-post-install.md
peterjunpark 3c61d4fb05 [docs/7.9.0] Add build from source overview page / Point to therocm-7.9.0 in components list (#5546)
* Update links to components to point the `therock-7.9.0` ref

* Add build from source page

* lint: fix caps and update .wordlist.txt

* add link to "development manuals" list

* add links to TheRock's development guide and fix step 4

* wording and fmt

* fix spacing

* fix fmt

* Fix documentation linting errors

* fix spacing
2025-10-21 12:41:56 -04:00

1.1 KiB

  1. Verify the ROCm installation.

    hipinfo
    
    .. dropdown:: Example output of ``hipinfo``
    
       .. code-block:: shell-session
    
          --------------------------------------------------------------------------------
          device#                           0
          Name:                             AMD Radeon(TM) 8060S Graphics
          pciBusID:                         197
          pciDeviceID:                      0
          pciDomainID:                      0
          multiProcessorCount:              20
    
          [output truncated]
    
  2. Inspect your ROCm installation in your Python environment.

    pip freeze
    where rocm-sdk
    dir .venv\Scripts
    
  3. Test your ROCm installation.

    rocm-sdk test
    

    To learn more about the rocm-sdk tool and to see example expected outputs, see Using ROCm Python packages (TheRock).

If you need to deactivate your Python virtual environment when finished,
run:

```shell
deactivate
```