Open
Description
I have reviewed the usage examples once, but I still don't fully understand how to use it. Now I hope to complete a simple task as an example according to the data I provided.
A simple multi-variable addition task
a = [i for i in range(10)]
b = [i for i in range(10,0,-1)]
# c=a+b
def add(a,b):
return a+b
c = map(add,a,b)
for i in c:
print(i)
How can the above code be efficiently implemented using pyper? It is convenient to subsequently modify and input other types of data, such as large model generation parameters, for parallel reasoning.
@pyper-dev