작업

공개 인터페이스 Op
알려진 간접 하위 클래스

모든 작동 포장지에 대한 마커 인터페이스.

작동 포장지는 핵심 클래스에서 필요에 따라 리터럴 및 인덱스를 사용하지 않고 구축 및 실행 작업을위한 강력하게 입력 된 인터페이스를 제공합니다.

이 인터페이스를 사용하면 공통 유형을 사용하여 모든 작업 래퍼를 ​​참조 할 수 있습니다.

 // 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);