Last active
February 9, 2025 16:02
-
-
Save tam17aki/cacdcec989e6b363eed0e0e94777dcf8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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