Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions scenarios/fibonacci/cape-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,30 @@
"content": "(con integer 75025)"
}
},
{
"name": "fibonacci_100",
"description": "Fibonacci of 100 should return 354224848179261915075",
"input": {
"type": "uplc",
"value": "(con integer 100)"
},
"expected": {
"type": "value",
"content": "(con integer 354224848179261915075)"
}
},
{
"name": "fibonacci_217",
"description": "Fibonacci of 217 should return 1001919737325604309473206237898433933302481297",
"input": {
"type": "uplc",
"value": "(con integer 217)"
},
"expected": {
"type": "value",
"content": "(con integer 1001919737325604309473206237898433933302481297)"
}
},
{
"name": "fibonacci_negative",
"description": "Fibonacci of negative number should return the negative number itself based on current implementation",
Expand Down
32 changes: 23 additions & 9 deletions submissions/fibonacci/OpShin_1.0.0_nielstron/metrics.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,20 @@
"memory_units": 331254,
"name": "fibonacci_25"
},
{
"cpu_units": 235581218,
"description": "Fibonacci of 100 should return 354224848179261915075",
"execution_result": "success",
"memory_units": 1269211,
"name": "fibonacci_100"
},
{
"cpu_units": 507522713,
"description": "Fibonacci of 217 should return 1001919737325604309473206237898433933302481297",
"execution_result": "success",
"memory_units": 2732561,
"name": "fibonacci_217"
},
{
"cpu_units": 1289439,
"description": "Fibonacci of negative number should return the negative number itself based on current implementation",
Expand All @@ -83,26 +97,26 @@
},
"measurements": {
"cpu_units": {
"maximum": 61296653,
"median": 14821553,
"maximum": 507522713,
"median": 21792818,
"minimum": 1289439,
"sum": 240131414,
"sum": 983235345,
"sum_negative": 0,
"sum_positive": 240131414
"sum_positive": 983235345
},
"memory_units": {
"maximum": 331254,
"median": 81134,
"maximum": 2732561,
"median": 118652,
"minimum": 7402,
"sum": 1306476,
"sum": 5308248,
"sum_negative": 0,
"sum_positive": 1306476
"sum_positive": 5308248
},
"script_size_bytes": 227,
"term_size": 285
},
"scenario": "fibonacci",
"timestamp": "2025-10-16T07:55:04Z",
"timestamp": "2025-10-21T13:11:26Z",
"version": "1.0.0",
"notes": "Generated using UPLC-CAPE measure tool"
}
Loading