GraphOptions kelas akhir publik
Tipe protobuf tensorflow.GraphOptions
Kelas Bersarang
kelas | GraphOptions.Builder | Tipe protobuf tensorflow.GraphOptions |
Konstanta
ke dalam | BUILD_COST_MODEL_AFTER_FIELD_NUMBER | |
ke dalam | BUILD_COST_MODEL_FIELD_NUMBER | |
ke dalam | ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER | |
ke dalam | ENABLE_RECV_SCHEDULING_FIELD_NUMBER | |
ke dalam | INFER_SHAPES_FIELD_NUMBER | |
ke dalam | OPTIMIZER_OPTIONS_FIELD_NUMBER | |
ke dalam | PLACE_PRUNED_GRAPH_FIELD_NUMBER | |
ke dalam | REWRITE_OPTIONS_FIELD_NUMBER | |
ke dalam | TIMELINE_STEP_FIELD_NUMBER |
Metode Publik
boolean | sama dengan (Objek objek) |
panjang | dapatkanBuildCostModel () The number of steps to run before returning a cost model detailing the memory usage and performance of each node of the graph. |
panjang | dapatkanBuildCostModelAfter () The number of steps to skip before collecting statistics for the cost model. |
GraphOptions statis | |
Opsi Grafik | |
com.google.protobuf.Descriptors.Descriptor statis terakhir | |
boolean | getEnableBfloat16Sendrecv () If true, transfer float values between processes as bfloat16. |
boolean | getEnableRecvScheduling () If true, use control flow to schedule the activation of Recv nodes. |
boolean | dapatkan InferShapes () Annotate each Node with Op output shape data, to the extent it can be statically inferred. |
Opsi Pengoptimal | dapatkan Opsi Pengoptimal () Options controlling how graph is optimized. |
OptimizerOptionsOrBuilder | dapatkanOptimizerOptionsOrBuilder () Options controlling how graph is optimized. |
boolean | dapatkanPlacePrunedGraph () Only place the subgraphs that are run, rather than the entire graph. |
Konfigurasi Penulis Ulang | dapatkan Opsi Penulisan Ulang () Options that control the type and amount of graph rewriting. |
Penulis UlangConfigOrBuilder | dapatkanRewriteOptionsOrBuilder () Options that control the type and amount of graph rewriting. |
ke dalam | |
ke dalam | dapatkan TimelineStep () If > 0, record a timeline every this many steps. |
final com.google.protobuf.UnknownFieldSet | |
boolean | hasOptimizerOptions () Options controlling how graph is optimized. |
boolean | hasRewriteOptions () Options that control the type and amount of graph rewriting. |
ke dalam | Kode hash () |
boolean terakhir | |
GraphOptions.Builder statis | |
GraphOptions.Builder statis | newBuilder (prototipe GraphOptions ) |
GraphOptions.Builder | |
GraphOptions statis | parseDelimitedFrom (masukan Aliran Masukan) |
GraphOptions statis | parseDelimitedFrom (masukan InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
GraphOptions statis | parseFrom (data ByteBuffer) |
GraphOptions statis | parseFrom (com.google.protobuf.CodedInputStream masukan, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
GraphOptions statis | parseFrom (data ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
GraphOptions statis | parseFrom (com.google.protobuf.CodedInputStream masukan) |
GraphOptions statis | parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
GraphOptions statis | parseFrom (com.google.protobuf.ByteString data) |
GraphOptions statis | parseFrom (masukan InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
GraphOptions statis | parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
statis | pengurai () |
GraphOptions.Builder | |
ruang kosong | writeTo (com.google.protobuf.CodedOutputStream keluaran) |
Metode Warisan
Konstanta
int akhir statis publik BUILD_COST_MODEL_AFTER_FIELD_NUMBER
Nilai Konstan: 9
int akhir statis publik BUILD_COST_MODEL_FIELD_NUMBER
Nilai Konstan: 4
int final statis publik ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER
Nilai Konstan: 7
int akhir statis publik ENABLE_RECV_SCHEDULING_FIELD_NUMBER
Nilai Konstan: 2
int akhir statis publik INFER_SHAPES_FIELD_NUMBER
Nilai Konstan: 5
int akhir statis publik OPTIMIZER_OPTIONS_FIELD_NUMBER
Nilai Konstan: 3
int akhir statis publik PLACE_PRUNED_GRAPH_FIELD_NUMBER
Nilai Konstan: 6
int final statis publik REWRITE_OPTIONS_FIELD_NUMBER
Nilai Konstan: 10
int final statis publik TIMELINE_STEP_FIELD_NUMBER
Nilai Konstan: 8
Metode Publik
boolean publik sama (Obj objek)
getBuildCostModel publik yang panjang ()
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 () panjang publik
The number of steps to skip before collecting statistics for the cost model.
int64 build_cost_model_after = 9;
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor ()
boolean publik getEnableBfloat16Sendrecv ()
If true, transfer float values between processes as bfloat16.
bool enable_bfloat16_sendrecv = 7;
boolean publik getEnableRecvScheduling ()
If true, use control flow to schedule the activation of Recv nodes. (Currently ignored.)
bool enable_recv_scheduling = 2;
getInferShapes boolean publik ()
Annotate each Node with Op output shape data, to the extent it can be statically inferred.
bool infer_shapes = 5;
Opsi Pengoptimal publik getOptimizerOptions ()
Options controlling how graph is optimized.
.tensorflow.OptimizerOptions optimizer_options = 3;
OptimizerOptionsOrBuilder publik getOptimizerOptionsOrBuilder ()
Options controlling how graph is optimized.
.tensorflow.OptimizerOptions optimizer_options = 3;
publik dapatkanParserForType ()
boolean publik 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;
publik 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;
publik 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;
publik int getSerializedSize ()
publik int getTimelineStep ()
If > 0, record a timeline every this many steps. EXPERIMENTAL: This currently has no effect in MasterSession.
int32 timeline_step = 8;
public final com.google.protobuf.UnknownFieldSet getUnknownFields ()
boolean publik hasOptimizerOptions ()
Options controlling how graph is optimized.
.tensorflow.OptimizerOptions optimizer_options = 3;
boolean publik 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;
kode hash int publik ()
boolean akhir publik diinisialisasi ()
GraphOptions statis publik parseDelimitedFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
Pengecualian IO |
---|
parseFrom GraphOptions statis publik (com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
Pengecualian IO |
---|
parseFrom GraphOptions statis publik (data ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
InvalidProtocolBufferException |
---|
parseFrom GraphOptions statis publik (com.google.protobuf.CodedInputStream masukan)
Melempar
Pengecualian IO |
---|
GraphOptions statis publik parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
InvalidProtocolBufferException |
---|
parseFrom GraphOptions statis publik (com.google.protobuf.ByteString data)
Melempar
InvalidProtocolBufferException |
---|
parseFrom GraphOptions statis publik (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
Pengecualian IO |
---|
parseFrom GraphOptions statis publik (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Melempar
InvalidProtocolBufferException |
---|
statis publik pengurai ()
public void writeTo (com.google.protobuf.CodedOutputStream keluaran)
Melempar
Pengecualian IO |
---|