-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.json
More file actions
31 lines (31 loc) · 814 Bytes
/
input.json
File metadata and controls
31 lines (31 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"auth_token": "your_auth_token_here",
"machine":"cpu/gpu",
"params": {
"X_VALUE": "value1",
"Y_VALUE": "value2",
"Z_Value": "value3"
},
"gfalcon": [
{
"follow": "serial/parallel",
"language": "python",
"code": "print('Hello, world!')"
},
{
"follow": "serial/parallel",
"language": "c++",
"code": "#include <iostream>\nint main() {\n std::cout << \"Hello, world!\" << std::endl;\n return 0;\n}"
},
{
"follow": "serial/parallel",
"language": "javascript",
"code": "console.log('Hello, world!');"
},
{
"follow": "serial/parallel",
"language": "go",
"code": "package main\nimport \"fmt\"\nfunc main() {\n fmt.Println(\"Hello, world!\")\n}"
}
]
}