Skip to content

Commit

Permalink
update cc script
Browse files Browse the repository at this point in the history
  • Loading branch information
meandmytram committed Apr 24, 2024
1 parent 23bdcfa commit 97cac24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/decoding/classical.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ pip install --no-index --upgrade pip
pip install --no-index numpy scipy opt_einsum tqdm qecstruct more_itertools

# Define arrays of system sizes and bond dimensions
system_sizes=(48 96 192 384)
bond_dims=(8 16 32 64 128 256 512 1024)
system_sizes=(96 192 384)
bond_dims=(128 256 512 1024)

# Create job submission scripts by iterating
# over each combination of system_size and bond_dim and submitting them
Expand All @@ -24,9 +24,9 @@ for system_size in "${system_sizes[@]}"; do
# Create a job submission script for each combination
cat > "submit-job-${system_size}-${bond_dim}.sh" <<EOS
#!/bin/bash
#SBATCH --time=24:00:00 # Time limit (hh:mm:ss)
#SBATCH --time=48:00:00 # Time limit (hh:mm:ss)
#SBATCH --cpus-per-task=1 # Number of CPU cores per task
#SBATCH --mem=32000 # Memory per node
#SBATCH --mem=64000 # Memory per node
#SBATCH --job-name=decoding-classical-ldpc-${system_size}-${bond_dim} # Descriptive job name
#SBATCH --output=decoding-classical-ldpc-${system_size}-${bond_dim}-%j.out # Standard output and error log
Expand Down

0 comments on commit 97cac24

Please sign in to comment.