-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to VSC extension and Kernel Generator examples
- Loading branch information
Showing
13 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ data/ | |
**/__pycache__/ | ||
|
||
# Playground | ||
playground/ | ||
zz_playground/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
.gitignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"scopeName": "source.kerlang", | ||
"fileTypes": ["kerlang"], | ||
"patterns": [ | ||
{ | ||
"name": "comment.line.double-dash.kerlang", | ||
"name": "comment.line.number-sign.kerlang", | ||
"match": "# .*$" | ||
}, | ||
{ | ||
"name": "keyword.operator.kerlang", | ||
"match": "\\b(COPY|ADD|MUL|MULI|RELIN|NTT|INTT|MOD|MODUP|SQUARE)\\b" | ||
} | ||
"name": "keyword.other.kerlang", | ||
"match": "\b(COPY|ADD|MUL|MULI|RELIN|NTT|INTT|MOD|MODUP|SQUARE)\b" | ||
} | ||
], | ||
"repository": {}, | ||
"fileTypes": ["kerlang"] | ||
"repository": {} | ||
} |
Binary file not shown.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTEXT BGV 16384 1 | ||
DATA a 1 | ||
DATA b 1 | ||
DATA c 1 | ||
ADD c a b |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTEXT BGV 16384 4 | ||
DATA a 1 | ||
DATA b 1 | ||
DATA c 1 | ||
ADD c a b |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,3 @@ DATA a 1 | |
DATA b 1 | ||
DATA c 1 | ||
ADD c a b | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTEXT BGV 8192 4 | ||
DATA a 1 | ||
DATA b 1 | ||
DATA c 1 | ||
ADD c a b |
2 changes: 1 addition & 1 deletion
2
...orials/SimpleExamples/example_ADD_16K.ker → ...s/SimpleExamples/example_ADD_C16K4rns.ker
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CONTEXT BGV 16384 1 | ||
CONTEXT BGV 16384 4 | ||
DATA a 2 | ||
DATA b 2 | ||
DATA c 2 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTEXT BGV 8192 1 | ||
DATA a 2 | ||
DATA b 2 | ||
DATA c 2 | ||
ADD c a b |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTEXT BGV 8192 4 | ||
DATA a 2 | ||
DATA b 2 | ||
DATA c 2 | ||
ADD c a b |
File renamed without changes.