Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e915ca4
SWE-agent local model WIP commit
ikhillan Oct 7, 2025
3ac817d
Add ollama server startup in swe-agent
jhdavis8 Oct 7, 2025
22600f2
Remove model name from ollama serve command, not needed and in wrong …
jhdavis8 Oct 7, 2025
b2c6af1
WIP w/ adding Klaud's config suggestions
Oct 23, 2025
f426764
Modified .gitignore to include .envrc
ikhillan Oct 23, 2025
9da9146
Cleaned up unnecessary optional SWEAgentTranslator params
ikhillan Oct 23, 2025
3554274
Updated self._swe_agent_model_name initialization in __init__
ikhillan Oct 23, 2025
7ae1977
Add --swe-agent-config to add_args()
ikhillan Oct 23, 2025
8f90863
Delete generated translation_task files
ikhillan Oct 23, 2025
5dcddc6
Updated launch_ollama_server() to mute Ollama startup logs
Oct 28, 2025
1dd87f7
Deleted unnecessary repro_script() function
Oct 28, 2025
9829a6a
Fixed minor style issue
Oct 28, 2025
7d7b08d
Fixed small bug in launch_ollama_server
Oct 28, 2025
be519bc
Change typo for swe-agent-parser choices
Nov 4, 2025
f2a7eb2
Added multi-config file support and vLLM support in SWEAgentTranslator
ikhillan Nov 14, 2025
ab5de16
Fix bugs related to launching vllm server in SWEAgentTranslator
ikhillan Nov 15, 2025
1bf8a37
Fixed small errors w/ vLLM setup for SWE-agent on perlmutter
ikhillan Nov 15, 2025
24a4cd7
Fixed issue w/ removing openai part of model for vllm
ikhillan Nov 15, 2025
53a60f9
WIP Klaud's suggestions
Dec 3, 2025
66e51e5
Made changes w/ Josh and Klaud WIP
Dec 3, 2025
9ffd703
Updated prompt for SWE-agent
Dec 17, 2025
6062bdc
Added temporary Makefile fix
ikhillan Dec 17, 2025
10916b4
Update Makefile fix in SWEAgentTranslator
ikhillan Dec 17, 2025
1372b93
Fix conditional part of fixing Makefiles
ikhillan Dec 17, 2025
5116468
Add ninja dep for Kokkos
jhdavis8 Feb 6, 2026
69fed2e
Codex implementation WIP
ikhillan Mar 3, 2026
82c9552
Modified codex command call
ikhillan Mar 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ __pycache__

tmp*
.env
.envrc
.venv

.request_cache_*.pkl
Expand Down
1 change: 1 addition & 0 deletions config/gesserit-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"llvm": "",
"cuda": "",
"kokkos": "",
"ninja": "",
"sm": "86",
"exec_check": "ncu",
"exec_check_fail_text": "==WARNING== No kernels were profiled."
Expand Down
1 change: 1 addition & 0 deletions config/perlmutter-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"llvm": "module load PrgEnv-llvm",
"cuda": "module load cudatoolkit",
"kokkos": "module load kokkos-gpu",
"ninja": "",
"sm": "80",
"exec_check": "ncu",
"exec_check_fail_text": "==WARNING== No kernels were profiled."
Expand Down
1 change: 1 addition & 0 deletions config/zaratan-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"llvm": "spack load llvm && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/scratch/zt1/project/bhatele-lab/user/jhdavis/spack-install/linux-rhel8-zen2/gcc-11.3.0/llvm-19.1.7-owz26zzxphj6x4xfgxsyxgfhvktvs4kd/lib/x86_64-unknown-linux-gnu/",
"cuda": "module load cuda/gcc/11.3.0/zen2/12.3.0",
"kokkos": "spack load kokkos",
"ninja": "spack load ninja",
"sm": "80",
"exec_check": "~/llms4hpc/code-translation/src/drivers/exec-check.sh",
"exec_check_fail_text": "No GPU kernels launched!!"
Expand Down
Empty file added src/translate/codex/__init__.py
Empty file.
Loading