Skip to content

Commit

Permalink
remove unnecessary requirements files
Browse files Browse the repository at this point in the history
  • Loading branch information
cwharris committed Jan 17, 2024
1 parent 795645d commit 045a1bc
Show file tree
Hide file tree
Showing 29 changed files with 19 additions and 719 deletions.
129 changes: 0 additions & 129 deletions docker/conda/environments/cuda11.8_dev.yml

This file was deleted.

64 changes: 0 additions & 64 deletions docker/conda/environments/cuda11.8_examples.yml

This file was deleted.

25 changes: 0 additions & 25 deletions docker/conda/environments/cuda11.8_runtime.yml

This file was deleted.

5 changes: 1 addition & 4 deletions examples/digital_fingerprinting/production/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ COPY ./conda_env.yml ./

# Install DFP dependencies
RUN source activate morpheus \
&& mamba install -n base -c conda-forge conda-merge \
&& conda run -n base --live-stream conda-merge /workspace/docker/conda/environments/cuda11.8_dev.yml \
./conda_env.yml > ./merged.yml \
&& mamba env update -n morpheus --file ./merged.yml
&& mamba env update -n morpheus --file ../../conda/environments/examples_cuda-121_arch-x86_64.yaml

# Set the tracking URI for mlflow
ENV MLFLOW_TRACKING_URI="http://mlflow:5000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@ pip install -e /workspace

Install additonal required dependencies:
```bash
export CUDA_VER=11.8
mamba install -n base -c conda-forge conda-merge
conda run -n base --live-stream conda-merge docker/conda/environments/cuda${CUDA_VER}_dev.yml \
docker/conda/environments/cuda${CUDA_VER}_examples.yml > .tmp/merged.yml \
&& mamba env update -n ${CONDA_DEFAULT_ENV} --file .tmp/merged.yml
mamba env update \
-n ${CONDA_DEFAULT_ENV} \
--file ./morpheus/conda/environments/examples_cuda-121_arch-x86_64.yaml
```


Expand Down
7 changes: 3 additions & 4 deletions examples/gnn_fraud_detection_pipeline/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ Prior to running the GNN fraud detection pipeline, additional requirements must

```bash
export CUDA_VER=11.8
mamba install -n base -c conda-forge conda-merge
conda run -n base --live-stream conda-merge docker/conda/environments/cuda${CUDA_VER}_dev.yml \
examples/gnn_fraud_detection_pipeline/requirements.yml > .tmp/merged.yml \
&& mamba env update -n ${CONDA_DEFAULT_ENV} --file .tmp/merged.yml
mamba env update \
-n ${CONDA_DEFAULT_ENV} \
--file ./morpheus/conda/environments/examples_cuda-121_arch-x86_64.yaml
```

## Running
Expand Down
24 changes: 0 additions & 24 deletions examples/gnn_fraud_detection_pipeline/requirements.yml

This file was deleted.

8 changes: 3 additions & 5 deletions examples/llm/agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,9 @@ export SERPAPI_API_KEY="<YOUR_SERPAPI_API_KEY>"
Install the required dependencies.

```bash
export CUDA_VER=11.8
mamba install -n base -c conda-forge conda-merge
conda run -n base --live-stream conda-merge docker/conda/environments/cuda${CUDA_VER}_dev.yml \
docker/conda/environments/cuda${CUDA_VER}_examples.yml > .tmp/merged.yml \
&& mamba env update -n ${CONDA_DEFAULT_ENV} --file .tmp/merged.yml
mamba env update \
-n ${CONDA_DEFAULT_ENV} \
--file ./morpheus/conda/environments/examples_cuda-121_arch-x86_64.yaml
```


Expand Down
35 changes: 0 additions & 35 deletions examples/llm/agents/requirements.yaml

This file was deleted.

8 changes: 3 additions & 5 deletions examples/llm/completion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,9 @@ Before running the pipeline, ensure that the `NGC_API_KEY` environment variable
Install the required dependencies.

```bash
export CUDA_VER=11.8
mamba install -n base -c conda-forge conda-merge
conda run -n base --live-stream conda-merge docker/conda/environments/cuda${CUDA_VER}_dev.yml \
docker/conda/environments/cuda${CUDA_VER}_examples.yml > .tmp/merged.yml \
&& mamba env update -n ${CONDA_DEFAULT_ENV} --file .tmp/merged.yml
mamba env update \
-n ${CONDA_DEFAULT_ENV} \
--file ./morpheus/conda/environments/examples_cuda-121_arch-x86_64.yaml
```


Expand Down
38 changes: 0 additions & 38 deletions examples/llm/completion/requirements.yaml

This file was deleted.

Loading

0 comments on commit 045a1bc

Please sign in to comment.