תפעול

ממשק ציבורי אופ
תת-מחלקות עקיפות ידועות

ממשק סמן לכל עטיפות ההפעלה.

עטיפות פעולה מספקות ממשקים מוקלדים מאוד לפעולות בנייה וביצוע ללא שימוש במילואים ואינדקסים, כנדרש בשיעורי הליבה.

ממשק זה מאפשר לשמור על הפניות לכל עטיפת פעולה באמצעות סוג משותף.

 // All values returned by an Ops call can be referred as a Op
 Op split = ops.array().split(...);
 Op shape = ops.array().shape(...);

 // All operations could be added to an Op collection
 Collection<Op> allOps = Arrays.asList(split, shape);
 

,
ממשק ציבורי OP
תת -סוגים עקיפים ידועים

A marker interface for all operation wrappers.

Operation wrappers provide strongly typed interfaces for building and execution operations without the use of literals and indexes, as required in the core classes.

This interface allows keeping references to any operation wrapper using a common type.

 // All values returned by an Ops call can be referred as a Op
 Op split = ops.array().split(...);
 Op shape = ops.array().shape(...);

 // All operations could be added to an Op collection
 Collection<Op> allOps = Arrays.asList(split, shape);