tehranixyz commited on
Commit
a91da3f
·
verified ·
1 Parent(s): 83d387b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -3
README.md CHANGED
@@ -1,3 +1,51 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ ---
5
+
6
+ # CodeRosetta
7
+ ## Pushing the Boundaries of Unsupervised Code Translation for Parallel Programming
8
+ *Repository of CodeRosetta ([Paper](https://arxiv.org/abs/2410.20527), [Website](https://coderosetta.com/)).*
9
+
10
+
11
+ CodeRosetta is an EncoderDecoder translation model. It supports the translation of C++, CUDA, and Fortran.
12
+ This version of the model is fine-tuned for **C++ to CUDA translation.**
13
+
14
+ ### How to use
15
+
16
+ ```python
17
+ from transformers import AutoTokenizer, EncoderDecoderModel
18
+
19
+ # Load the CodeRosetta model and tokenizer
20
+ model = EncoderDecoderModel.from_pretrained('CodeRosetta/CodeRosetta_cuda2cpp_ft')
21
+ tokenizer = AutoTokenizer.from_pretrained('CodeRosetta/CodeRosetta_cuda2cpp_ft')
22
+
23
+ # Encode the input C++ Code
24
+ input_cpp_code = "void add_100 ( int numElements , int * data ) { for ( int idx = 0 ; idx < numElements ; idx ++ ) { data [ idx ] += 100 ; } }"
25
+ input_ids = tokenizer.encode(input_cpp_code, return_tensors="pt")
26
+
27
+ # Set the start token to <CUDA>
28
+ start_token = "<CUDA>"
29
+ decoder_start_token_id = tokenizer.convert_tokens_to_ids(start_token)
30
+
31
+ # Generate the CUDA code
32
+ output = model.generate(
33
+ input_ids=input_ids,
34
+ decoder_start_token_id=decoder_start_token_id,
35
+ max_length=256
36
+ )
37
+
38
+ # Decode and print the generated output
39
+ generated_code= tokenizer.decode(output[0], skip_special_tokens=True)
40
+ print(generated_code)
41
+ ```
42
+
43
+ ### BibTeX
44
+
45
+ ```bibtex
46
+ @inproceedings{coderosetta:neurips:2024,
47
+ title = {CodeRosetta: Pushing the Boundaries of Unsupervised Code Translation for Parallel Programming},
48
+ author = {TehraniJamsaz, Ali and Bhattacharjee, Arijit and Chen, Le and Ahmed, Nesreen K and Yazdanbakhsh, Amir and Jannesari, Ali},
49
+ booktitle = {NeurIPS},
50
+ year = {2024},
51
+ }