Skip to content

Commit 28ffe28

Browse files
committed
fix: aggregation mode install
1 parent fc95827 commit 28ffe28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infra/aggregation_mode/aggregation_mode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ read -p "Enter a block number for SP1 (last_aggregated_block): " num && echo "{\
109109
read -p "Enter a block number for Risc0 (last_aggregated_block): " num && echo "{\"last_aggregated_block\":$num}" > $HOME/config/proof-aggregator-risc0.last_aggregated_block.json
110110

111111
# Build the proof_aggregator
112-
make install_aggregation_mode
112+
make proof_aggregator_install
113113

114114
# Copy run script
115115
cp ./infra/aggregation_mode/run.sh $HOME/run.sh

infra/aggregation_mode/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ echo "Starting Aggregation Mode in $SLEEP seconds..."
66
sleep $SLEEP
77

88
echo "Starting SP1 Aggregation Mode..."
9-
AGGREGATOR=sp1 SP1_PROVER=cuda /home/user/.cargo/bin/proof_aggregator /home/user/config/config-proof-aggregator-sp1.yaml
9+
AGGREGATOR=sp1 SP1_PROVER=cuda /home/user/.cargo/bin/proof_aggregator_gpu /home/user/config/config-proof-aggregator-sp1.yaml
1010
docker stop $(docker ps -a -q) ## stop all containers
1111
echo "SP1 Aggregation Mode finished"
1212

1313
echo "Starting Risc0 Aggregation Mode..."
14-
AGGREGATOR=risc0 /home/user/.cargo/bin/proof_aggregator /home/user/config/config-proof-aggregator-risc0.yaml
14+
AGGREGATOR=risc0 /home/user/.cargo/bin/proof_aggregator_gpu /home/user/config/config-proof-aggregator-risc0.yaml
1515
echo "Risc0 Aggregation Mode finished"

0 commit comments

Comments
 (0)