Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document known ARM64 issues #2128

Merged
merged 11 commits into from
Jan 27, 2025
Prev Previous commit
Next Next commit
Document that this pipeline isn't supported on Arm64, Remove instruct…
…ions for performing the release build, no longer needed
  • Loading branch information
dagardner-nv committed Jan 22, 2025
commit ce7b4ad986af91d11aa2fe5b7e17aa07cd919851
14 changes: 7 additions & 7 deletions examples/digital_fingerprinting/visualization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@

We show here how to set up and run the Production DFP pipeline on Azure and Duo log data to generate input files for the DFP visualization UI. You can find more information about the Production DFP pipeline in this [README](../production/README.md) and the [DFP Developer Guide](../../../docs/source/developer_guide/guides/5_digital_fingerprinting.md).

## Supported Architectures
| Architecture | Supported | Issue |
|--------------|-----------|-------|
| x86_64 | ✔ | |
| aarch64 | ✘ | [#2125](https://github.com/nv-morpheus/Morpheus/issues/2125) |


## Prerequisites

To run the demo you will need the following:
Expand All @@ -30,17 +37,10 @@ To run the demo you will need the following:
git submodule update --init --recursive
```

## Build the Morpheus container
This is necessary to get the latest changes needed for DFP. From the root of the Morpheus repo:
```bash
./docker/build_container_release.sh
```

## Building Services via `docker compose`

```bash
cd examples/digital_fingerprinting/production
export MORPHEUS_CONTAINER_VERSION="$(git describe --tags --abbrev=0)-runtime"
docker compose build
```

Expand Down