Text Generation
Transformers
Safetensors
GGUF
English
qwen2
decompilation
reverse-engineering
python
bytecode
code
verified-generation
conversational
text-generation-inference
Instructions to use BlazingCustoms/pybytecode-v3-1.5b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BlazingCustoms/pybytecode-v3-1.5b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="BlazingCustoms/pybytecode-v3-1.5b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("BlazingCustoms/pybytecode-v3-1.5b") model = AutoModelForCausalLM.from_pretrained("BlazingCustoms/pybytecode-v3-1.5b", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use BlazingCustoms/pybytecode-v3-1.5b with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf BlazingCustoms/pybytecode-v3-1.5b:F16 # Run inference directly in the terminal: llama cli -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf BlazingCustoms/pybytecode-v3-1.5b:F16 # Run inference directly in the terminal: llama cli -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf BlazingCustoms/pybytecode-v3-1.5b:F16 # Run inference directly in the terminal: ./llama-cli -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf BlazingCustoms/pybytecode-v3-1.5b:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Use Docker
docker model run hf.co/BlazingCustoms/pybytecode-v3-1.5b:F16
- LM Studio
- Jan
- vLLM
How to use BlazingCustoms/pybytecode-v3-1.5b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "BlazingCustoms/pybytecode-v3-1.5b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BlazingCustoms/pybytecode-v3-1.5b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/BlazingCustoms/pybytecode-v3-1.5b:F16
- SGLang
How to use BlazingCustoms/pybytecode-v3-1.5b with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "BlazingCustoms/pybytecode-v3-1.5b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BlazingCustoms/pybytecode-v3-1.5b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "BlazingCustoms/pybytecode-v3-1.5b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BlazingCustoms/pybytecode-v3-1.5b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use BlazingCustoms/pybytecode-v3-1.5b with Ollama:
ollama run hf.co/BlazingCustoms/pybytecode-v3-1.5b:F16
- Unsloth Studio
How to use BlazingCustoms/pybytecode-v3-1.5b with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for BlazingCustoms/pybytecode-v3-1.5b to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for BlazingCustoms/pybytecode-v3-1.5b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for BlazingCustoms/pybytecode-v3-1.5b to start chatting
- Pi
How to use BlazingCustoms/pybytecode-v3-1.5b with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "BlazingCustoms/pybytecode-v3-1.5b:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use BlazingCustoms/pybytecode-v3-1.5b with Docker Model Runner:
docker model run hf.co/BlazingCustoms/pybytecode-v3-1.5b:F16
- Lemonade
How to use BlazingCustoms/pybytecode-v3-1.5b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull BlazingCustoms/pybytecode-v3-1.5b:F16
Run and chat with the model
lemonade run user.pybytecode-v3-1.5b-F16
List all available models
lemonade list
- Hermes Agent
How to use BlazingCustoms/pybytecode-v3-1.5b with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default BlazingCustoms/pybytecode-v3-1.5b:F16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use BlazingCustoms/pybytecode-v3-1.5b with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BlazingCustoms/pybytecode-v3-1.5b:F16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "BlazingCustoms/pybytecode-v3-1.5b:F16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
fix: co_filename in all 600 benchmark .pyc was the build-machine absolute path; now src/NNNNN.py as bench.jsonl declares (oracle fingerprint excludes co_filename; 600/600 preserved)
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- benchmarks/csn-3.12-licensed/pyc/00000.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00001.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00002.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00003.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00004.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00005.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00006.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00007.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00008.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00009.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00010.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00011.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00012.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00013.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00014.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00015.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00016.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00017.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00018.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00019.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00020.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00021.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00022.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00023.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00024.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00025.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00026.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00027.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00028.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00029.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00030.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00031.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00032.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00033.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00034.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00035.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00036.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00037.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00038.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00039.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00040.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00041.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00042.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00043.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00044.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00045.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00046.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00047.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00048.pyc +0 -0
- benchmarks/csn-3.12-licensed/pyc/00049.pyc +0 -0
benchmarks/csn-3.12-licensed/pyc/00000.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00000.pyc and b/benchmarks/csn-3.12-licensed/pyc/00000.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00001.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00001.pyc and b/benchmarks/csn-3.12-licensed/pyc/00001.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00002.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00002.pyc and b/benchmarks/csn-3.12-licensed/pyc/00002.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00003.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00003.pyc and b/benchmarks/csn-3.12-licensed/pyc/00003.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00004.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00004.pyc and b/benchmarks/csn-3.12-licensed/pyc/00004.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00005.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00005.pyc and b/benchmarks/csn-3.12-licensed/pyc/00005.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00006.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00006.pyc and b/benchmarks/csn-3.12-licensed/pyc/00006.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00007.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00007.pyc and b/benchmarks/csn-3.12-licensed/pyc/00007.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00008.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00008.pyc and b/benchmarks/csn-3.12-licensed/pyc/00008.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00009.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00009.pyc and b/benchmarks/csn-3.12-licensed/pyc/00009.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00010.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00010.pyc and b/benchmarks/csn-3.12-licensed/pyc/00010.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00011.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00011.pyc and b/benchmarks/csn-3.12-licensed/pyc/00011.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00012.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00012.pyc and b/benchmarks/csn-3.12-licensed/pyc/00012.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00013.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00013.pyc and b/benchmarks/csn-3.12-licensed/pyc/00013.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00014.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00014.pyc and b/benchmarks/csn-3.12-licensed/pyc/00014.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00015.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00015.pyc and b/benchmarks/csn-3.12-licensed/pyc/00015.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00016.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00016.pyc and b/benchmarks/csn-3.12-licensed/pyc/00016.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00017.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00017.pyc and b/benchmarks/csn-3.12-licensed/pyc/00017.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00018.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00018.pyc and b/benchmarks/csn-3.12-licensed/pyc/00018.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00019.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00019.pyc and b/benchmarks/csn-3.12-licensed/pyc/00019.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00020.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00020.pyc and b/benchmarks/csn-3.12-licensed/pyc/00020.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00021.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00021.pyc and b/benchmarks/csn-3.12-licensed/pyc/00021.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00022.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00022.pyc and b/benchmarks/csn-3.12-licensed/pyc/00022.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00023.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00023.pyc and b/benchmarks/csn-3.12-licensed/pyc/00023.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00024.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00024.pyc and b/benchmarks/csn-3.12-licensed/pyc/00024.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00025.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00025.pyc and b/benchmarks/csn-3.12-licensed/pyc/00025.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00026.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00026.pyc and b/benchmarks/csn-3.12-licensed/pyc/00026.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00027.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00027.pyc and b/benchmarks/csn-3.12-licensed/pyc/00027.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00028.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00028.pyc and b/benchmarks/csn-3.12-licensed/pyc/00028.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00029.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00029.pyc and b/benchmarks/csn-3.12-licensed/pyc/00029.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00030.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00030.pyc and b/benchmarks/csn-3.12-licensed/pyc/00030.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00031.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00031.pyc and b/benchmarks/csn-3.12-licensed/pyc/00031.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00032.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00032.pyc and b/benchmarks/csn-3.12-licensed/pyc/00032.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00033.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00033.pyc and b/benchmarks/csn-3.12-licensed/pyc/00033.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00034.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00034.pyc and b/benchmarks/csn-3.12-licensed/pyc/00034.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00035.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00035.pyc and b/benchmarks/csn-3.12-licensed/pyc/00035.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00036.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00036.pyc and b/benchmarks/csn-3.12-licensed/pyc/00036.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00037.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00037.pyc and b/benchmarks/csn-3.12-licensed/pyc/00037.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00038.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00038.pyc and b/benchmarks/csn-3.12-licensed/pyc/00038.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00039.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00039.pyc and b/benchmarks/csn-3.12-licensed/pyc/00039.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00040.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00040.pyc and b/benchmarks/csn-3.12-licensed/pyc/00040.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00041.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00041.pyc and b/benchmarks/csn-3.12-licensed/pyc/00041.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00042.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00042.pyc and b/benchmarks/csn-3.12-licensed/pyc/00042.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00043.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00043.pyc and b/benchmarks/csn-3.12-licensed/pyc/00043.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00044.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00044.pyc and b/benchmarks/csn-3.12-licensed/pyc/00044.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00045.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00045.pyc and b/benchmarks/csn-3.12-licensed/pyc/00045.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00046.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00046.pyc and b/benchmarks/csn-3.12-licensed/pyc/00046.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00047.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00047.pyc and b/benchmarks/csn-3.12-licensed/pyc/00047.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00048.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00048.pyc and b/benchmarks/csn-3.12-licensed/pyc/00048.pyc differ
|
|
|
benchmarks/csn-3.12-licensed/pyc/00049.pyc
CHANGED
|
Binary files a/benchmarks/csn-3.12-licensed/pyc/00049.pyc and b/benchmarks/csn-3.12-licensed/pyc/00049.pyc differ
|
|
|