|
Post by AnthroHeart on Mar 25, 2024 18:44:34 GMT
Here are the commands to run the C++ for Repeater Simple on app.datacamp.com: Use Python Code option, and put in each cell: !wget raw.githubusercontent.com/tsweet77/intention-repeater-simple/main/Intention_Repeater_Simple.cpp -O Intention_Repeater_Simple.cpp !wget www.intentionrepeater.com/CUDA/picosha2.h -O picosha2.h g++ -O3 -Wall -static Intention_Repeater_Simple.cpp -o Intention_Repeater_Simple -lz !./Intention_Repeater_Simple --imem 1 --intent "I am Love." --compress y --hashing y --dur 00:10:00 Results (You could do the same with Intention_Repeater_Simple_Multithreaded.cpp): Intention Repeater Simple by Anthro Teacher, WebGPT and Claude 3 Opus ^C0:00:10] Repeating: (105.495Q / 9.111EHz): I am Love. Interrupt signal (2) received.
|
|
|
Post by AnthroHeart on Mar 25, 2024 18:46:10 GMT
My home computer runs at 8.6EHz with Repeater Simple, so the datacamp server is a bit faster.
|
|
|
Post by nathanmyersc on Mar 25, 2024 21:45:18 GMT
Here are the commands to run the C++ for Repeater Simple on app.datacamp.com: Use Python Code option, and put in each cell: !wget raw.githubusercontent.com/tsweet77/intention-repeater-simple/main/Intention_Repeater_Simple.cpp -O Intention_Repeater_Simple.cpp !wget www.intentionrepeater.com/CUDA/picosha2.h -O picosha2.h g++ -O3 -Wall -static Intention_Repeater_Simple.cpp -o Intention_Repeater_Simple -lz !./Intention_Repeater_Simple --imem 1 --intent "I am Love." --compress y --hashing y --dur 00:10:00 Results (You could do the same with Intention_Repeater_Simple_Multithreaded.cpp): Intention Repeater Simple by Anthro Teacher, WebGPT and Claude 3 Opus ^C0:00:10] Repeating: (105.495Q / 9.111EHz): I am Love. Interrupt signal (2) received. Thanks. i had to do some weird shit asking the ai to fix it this was what my third block ended up like import subprocess
# Compile the C++ program and ensure the subprocess command output is captured in the Jupyter notebook
result = subprocess.run(["g++", "-O3", "-Wall", "-pthread", "Intention_Repeater_Simple_Multithreaded.cpp", "-o", "Intention_Repeater_Simple", "-lz"], capture_output=True, text=True)
# Print stdout and stderr to see the output and any errors
if result.stdout:
print("STDOUT:", result.stdout)
if result.stderr:
print("STDERR:", result.stderr)
else:
print("Compilation successful.")
|
|