Skip to content

[FEATURE] Need more straightforward usage examples. #29

Open
@xiezhipeng-git

Description

@xiezhipeng-git

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentationenhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions