GraphOptions

공개 최종 클래스 GraphOptions

Protobuf 유형 tensorflow.GraphOptions

중첩 클래스

수업 GraphOptions.Builder Protobuf 유형 tensorflow.GraphOptions

상수

정수 BUILD_COST_MODEL_AFTER_FIELD_NUMBER
정수 BUILD_COST_MODEL_FIELD_NUMBER
정수 ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER
정수 ENABLE_RECV_SCHEDULING_FIELD_NUMBER
정수 INFER_SHAPES_FIELD_NUMBER
정수 OPTIMIZER_OPTIONS_FIELD_NUMBER
정수 PLACE_PRUNED_GRAPH_FIELD_NUMBER
정수 REWRITE_OPTIONS_FIELD_NUMBER
정수 TIMELINE_STEP_FIELD_NUMBER

공개 방법

부울
같음 (객체 객체)
getBuildCostModel ()
 The number of steps to run before returning a cost model detailing
 the memory usage and performance of each node of the graph.
getBuildCostModelAfter ()
 The number of steps to skip before collecting statistics for the
 cost model.
정적 그래프 옵션
그래프옵션
최종 정적 com.google.protobuf.Descriptors.Descriptor
부울
getEnableBfloat16Sendrecv ()
 If true, transfer float values between processes as bfloat16.
부울
getEnableRecvScheduling ()
 If true, use control flow to schedule the activation of Recv nodes.
부울
getInferShapes ()
 Annotate each Node with Op output shape data, to the extent it can
 be statically inferred.
최적화 옵션
getOptimizerOptions ()
 Options controlling how graph is optimized.
최적화 옵션 또는 빌더
getOptimizerOptionsOrBuilder ()
 Options controlling how graph is optimized.
부울
getPlacePrunedGraph ()
 Only place the subgraphs that are run, rather than the entire graph.
RewriterConfig
getRewriteOptions ()
 Options that control the type and amount of graph rewriting.
RewriterConfigOrBuilder
getRewriteOptionsOrBuilder ()
 Options that control the type and amount of graph rewriting.
정수
정수
getTimelineStep ()
 If > 0, record a timeline every this many steps.
최종 com.google.protobuf.UnknownFieldSet
부울
hasOptimizerOptions ()
 Options controlling how graph is optimized.
부울
hasRewriteOptions ()
 Options that control the type and amount of graph rewriting.
정수
최종 부울
정적 GraphOptions.Builder
정적 GraphOptions.Builder
newBuilder ( GraphOptions 프로토타입)
GraphOptions.Builder
정적 그래프 옵션
parsDelimitedFrom (InputStream 입력)
정적 그래프 옵션
parseDelimitedFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 그래프 옵션
parsFrom (ByteBuffer 데이터)
정적 그래프 옵션
ParseFrom (com.google.protobuf.CodedInputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 그래프 옵션
ParseFrom (ByteBuffer 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 그래프 옵션
ParseFrom (com.google.protobuf.CodedInputStream 입력)
정적 그래프 옵션
parseFrom (byte[] 데이터, com.google.protobuf.ExtensionRegistryLite 확장Registry)
정적 그래프 옵션
ParseFrom (com.google.protobuf.ByteString 데이터)
정적 그래프 옵션
ParseFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
정적 그래프 옵션
ParseFrom (com.google.protobuf.ByteString 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
공전
파서 ()
GraphOptions.Builder
무효의
writeTo (com.google.protobuf.CodedOutputStream 출력)

상속된 메서드

상수

공개 정적 최종 int BUILD_COST_MODEL_AFTER_FIELD_NUMBER

상수값: 9

공개 정적 최종 int BUILD_COST_MODEL_FIELD_NUMBER

상수값: 4

공개 정적 최종 int ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER

상수값: 7

공개 정적 최종 int ENABLE_RECV_SCHEDULING_FIELD_NUMBER

상수값: 2

공개 정적 최종 int INFER_SHAPES_FIELD_NUMBER

상수값: 5

공개 정적 최종 int OPTIMIZER_OPTIONS_FIELD_NUMBER

상수값: 3

공개 정적 최종 int PLACE_PRUNED_GRAPH_FIELD_NUMBER

상수값: 6

공개 정적 최종 int REWRITE_OPTIONS_FIELD_NUMBER

상수값: 10

공개 정적 최종 int TIMELINE_STEP_FIELD_NUMBER

상수값: 8

공개 방법

공개 부울은 (객체 obj)와 같습니다 .

공개 긴 getBuildCostModel ()

 The number of steps to run before returning a cost model detailing
 the memory usage and performance of each node of the graph. 0 means
 no cost model.
 
int64 build_cost_model = 4;

공개 긴 getBuildCostModelAfter ()

 The number of steps to skip before collecting statistics for the
 cost model.
 
int64 build_cost_model_after = 9;

공개 정적 GraphOptions getDefaultInstance ()

공개 GraphOptions getDefaultInstanceForType ()

공개 정적 최종 com.google.protobuf.Descriptors.Descriptor getDescriptor ()

공개 부울 getEnableBfloat16Sendrecv ()

 If true, transfer float values between processes as bfloat16.
 
bool enable_bfloat16_sendrecv = 7;

공개 부울 getEnableRecvScheduling ()

 If true, use control flow to schedule the activation of Recv nodes.
 (Currently ignored.)
 
bool enable_recv_scheduling = 2;

공개 부울 getInferShapes ()

 Annotate each Node with Op output shape data, to the extent it can
 be statically inferred.
 
bool infer_shapes = 5;

공개 OptimizerOptions getOptimizerOptions ()

 Options controlling how graph is optimized.
 
.tensorflow.OptimizerOptions optimizer_options = 3;

공개 OptimizerOptionsOrBuilder getOptimizerOptionsOrBuilder ()

 Options controlling how graph is optimized.
 
.tensorflow.OptimizerOptions optimizer_options = 3;

공공의 getParserForType ()

공개 부울 getPlacePrunedGraph ()

 Only place the subgraphs that are run, rather than the entire graph.
 This is useful for interactive graph building, where one might
 produce graphs that cannot be placed during the debugging
 process.  In particular, it allows the client to continue work in
 a session after adding a node to a graph whose placement
 constraints are unsatisfiable.
 
bool place_pruned_graph = 6;

공개 RewriterConfig getRewriteOptions ()

 Options that control the type and amount of graph rewriting.
 Not currently configurable via the public Python API (i.e. there is no API
 stability guarantee if you import RewriterConfig explicitly).
 
.tensorflow.RewriterConfig rewrite_options = 10;

공개 RewriterConfigOrBuilder getRewriteOptionsOrBuilder ()

 Options that control the type and amount of graph rewriting.
 Not currently configurable via the public Python API (i.e. there is no API
 stability guarantee if you import RewriterConfig explicitly).
 
.tensorflow.RewriterConfig rewrite_options = 10;

공개 int getSerializedSize ()

공개 int getTimelineStep ()

 If > 0, record a timeline every this many steps.
 EXPERIMENTAL: This currently has no effect in MasterSession.
 
int32 timeline_step = 8;

공개 최종 com.google.protobuf.UnknownFieldSet getUnknownFields ()

공개 부울 hasOptimizerOptions ()

 Options controlling how graph is optimized.
 
.tensorflow.OptimizerOptions optimizer_options = 3;

공개 부울 hasRewriteOptions ()

 Options that control the type and amount of graph rewriting.
 Not currently configurable via the public Python API (i.e. there is no API
 stability guarantee if you import RewriterConfig explicitly).
 
.tensorflow.RewriterConfig rewrite_options = 10;

공개 int hashCode ()

공개 최종 부울 isInitialized ()

공개 정적 GraphOptions.Builder newBuilder ()

공개 정적 GraphOptions.Builder newBuilder ( GraphOptions 프로토타입)

공개 GraphOptions.Builder newBuilderForType ()

공개 정적 GraphOptions parseDelimitedFrom (InputStream 입력)

던지기
IO예외

공개 정적 GraphOptions parseDelimitedFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
IO예외

공개 정적 GraphOptions 구문 분석 (ByteBuffer 데이터)

던지기
잘못된프로토콜버퍼예외

공개 정적 GraphOptionsparseFrom ( com.google.protobuf.CodedInputStream 입력, com.google.protobuf.ExtensionRegistryLite 확장Registry)

던지기
IO예외

공개 정적 GraphOptions parsFrom (ByteBuffer 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 GraphOptions 구문 분석 (com.google.protobuf.CodedInputStream 입력)

던지기
IO예외

공개 정적 GraphOptions parsFrom (byte[] 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 GraphOptions 구문 분석 (com.google.protobuf.ByteString 데이터)

던지기
잘못된프로토콜버퍼예외

공개 정적 GraphOptionsparseFrom ( InputStream 입력, com.google.protobuf.ExtensionRegistryLite 확장Registry)

던지기
IO예외

공개 정적 GraphOptions 구문 분석 (com.google.protobuf.ByteString 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)

던지기
잘못된프로토콜버퍼예외

공개 정적 파서 ()

공개 GraphOptions.Builder toBuilder ()

공개 무효 writeTo (com.google.protobuf.CodedOutputStream 출력)

던지기
IO예외