mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-14 15:27:58 -05:00
13 lines
309 B
Bash
Executable File
13 lines
309 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
ROOT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
NAME=v0-parameters
|
|
EXE=${ROOT_DIR}/target/release/${NAME}
|
|
|
|
if ! [ -e "$EXE" ]; then
|
|
echo "Let's build the optimizer before running it ..."
|
|
fi
|
|
|
|
cd $ROOT_DIR
|
|
cargo run --release --quiet --bin v0-parameters -- $@
|