Skip to content

Instantly share code, notes, and snippets.

@tam17aki
Last active February 9, 2025 16:02
Show Gist options
  • Save tam17aki/cacdcec989e6b363eed0e0e94777dcf8 to your computer and use it in GitHub Desktop.
Save tam17aki/cacdcec989e6b363eed0e0e94777dcf8 to your computer and use it in GitHub Desktop.
#!/bin/bash
CURDIR=$(cd $(dirname $0);pwd)
SRC=hopnet_1d_capacity_1bit.c
# SRC=hopnet_1d_capacity.c
HOPNET=hopnet_capacity
N_NEURONS=100 # The number of neurons
MAX_PATTERNS=30 # The maximum number of patterns
N_TRIALS=100 # The number of trials
FLIP_PROB=0.0 # The probability of bit flip
echo "gcc -Ofast -Wall ${SRC} -o ${HOPNET}"
gcc -Ofast -Wall ${SRC} -o ${HOPNET}
for ((i = 2; i <= ${MAX_PATTERNS}; i++)); do
echo -n "$i "
${CURDIR}/${HOPNET} -n ${N_NEURONS} -p $i -s ${FLIP_PROB} -m ${N_TRIALS}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment