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
# Base OS | |
FROM ubuntu:22.04 | |
# Install dependencies | |
RUN apt-get update && apt-get install -y \ | |
python3 python3-pip nodejs npm \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Install Python libraries | |
RUN pip3 install numpy numba jax jaxlib scipy matplotlib |
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
import numpy as np | |
import h5py | |
import json | |
import csv | |
import pickle | |
from datetime import datetime | |
import logging | |
from pathlib import Path | |
import matplotlib.pyplot as plt | |
from scipy.integrate import odeint |
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
import numpy as np | |
import matplotlib.pyplot as plt | |
import pygame | |
from scipy.io.wavfile import write | |
import time | |
import threading | |
import sys | |
import cmd | |
import os |
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
import torch | |
from complextensor import ComplexTensor | |
import logging | |
# Configure logging for debug output | |
logging.basicConfig(level=logging.DEBUG) | |
logger = logging.getLogger("test_new_tensor") | |
# Define constants | |
ψ = 44.8 |
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
# this code manages entanglement and superposition of tensors etc... | |
# should be able to handle superposition and entanglement, more testing is needed | |
import torch | |
import numpy as np | |
from complextensor import ComplexTensor | |
from typing import List | |
import logging |
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
import torch | |
import numpy as np | |
import pickle | |
from complextensor import ComplexTensor | |
from qt_state_processor import QuantumStateProcessor | |
from quantum_random_character_generator import MISTransform, generate_random_characters | |
import os | |
from concurrent.futures import ThreadPoolExecutor, as_completed | |
import queue | |
import logging |
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
# new_state_of_matter_test.py | |
import torch | |
import numpy as np | |
from complextensor import ComplexTensor | |
from quantum_em_mis_core import MISTransform, EnhancedQuantumWaveFunction | |
from datetime import datetime | |
import logging | |
from pathlib import Path |