Skip to content

Commit

Permalink
Address Paul's comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robadob committed Nov 20, 2023
1 parent db6b47d commit 7d02394
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/python/codegen/test_codegen_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
from random import randint
import typing

def return_two():
return 2

AGENT_COUNT = 100
STEPS = 5

TEN: pyflamegpu.constant = 10
TWO: typing.Final = 2
TWO: typing.Final = return_two()

@pyflamegpu.device_function
def add_2(a : int) -> int:
Expand Down

0 comments on commit 7d02394

Please sign in to comment.