Fix typo in the method spelling

This commit is contained in:
Oleksandr Pavlyk
2025-07-22 14:13:41 -05:00
parent 893cefb400
commit 526856db4e

View File

@@ -43,7 +43,7 @@ def add_two(state):
def add_float(state):
N = state.get_int64("elements")
v = state.get_gloat64("v")
v = state.get_float64("v")
name = state.get_string("name")
a = cuda.to_device(np.random.random(N).astype(np.float32))
b = cuda.to_device(np.random.random(N).astype(np.float32))